查询服务列表
功能介绍
该接口用于查询推理服务列表。
URI
GET /v1/{project_id}/infer-services
参数说明请参见表1。
名称 |
是否必选 |
类型 |
说明 |
---|---|---|---|
project_id |
是 |
String |
项目编号,用于资源隔离。获取方法请参见获取项目ID。 |
workspace_id |
否 |
String |
工作空间ID,默认为0。 |
响应消息
响应参数请参见表2。
参数名称 |
是否必选 |
参数类型 |
说明 |
---|---|---|---|
service_id |
是 |
String |
服务ID。 |
service_name |
是 |
String |
服务名称。 |
description |
否 |
String |
服务描述信息。 |
infer_type |
是 |
String |
服务类型,real-time表示实时服务。 |
status |
是 |
String |
服务状态,deploying、running、stopped、concerning。 |
is_shared |
是 |
Boolean |
是否是共享服务。 |
invocation_times |
是 |
String |
服务总调用次数。 |
failed_times |
是 |
String |
服务失败调用次数。 |
publish_time |
是 |
Long |
服务发布时间。 |
update_time |
是 |
Long |
服务更新时间。 |
示例
- 成功响应示例
{ "is_success": true, "services": [ { "service_id": "84746641-9af3-4fa6-b6ed-850e1f63416c", "service_name": "res-model-vpc2", "description": "test cusom image", "infer_type": "real-time", "status": "stopped", "is_shared": false, "invocation_times": "0", "failed_times": "0", "publish_time": 1547866687137, "update_time": 1547866687137 } ] }
- 失败响应示例
{ "is_success": false, "error_code": "res.2301", "error_msg": "Failed to resolve the token from the request." }
状态码
状态码请参见状态码。