枚举监控空间资源
接口描述
GET
/monitor/ts/data/v1/subscriptions/:subscription_name/resourceGroups/:resource_group_name/zones/:zone/telemetryStations/:telemetry_station_name/resources
枚举监控空间资源
请求头(Request Header)
请求参数(Request Parameters)
名称 | 类型 | 必须 | 位置 | 默认值 | 取值范围 | 描述 |
---|---|---|---|---|---|---|
subscription_name | string | 是 | path | - | - | 订阅 |
resource_group_name | string | 是 | path | - | - | 资源组 |
zone | string | 是 | path | - | - | 可用区 |
telemetry_station_name | string | 是 | path | - | - | 监控空间 |
resource_ids | string | 否 | query | - | - | 资源id |
resource_type | string | 否 | query | - | - | 资源类型 |
product | string | 否 | query | - | - | 产品类型 |
resource_display_name_prefix | string | 否 | query | - | - | 资源名前缀 |
page.offset | int | 否 | query | - | - | 跳过多少个元素 |
page.size | int | 否 | query | - | - | 页大小 |
page.total | int | 否 | query | - | - | 总数 |
enabled_alert | boolean | 否 | query | - | - | 是否只搜索可告警资源 |
resource_types | string | 否 | query | - | - | 多个资源类型 |
请求体(Request Body)
请求示例(Request Example)
curl -XGET 'https://monitor.sensecoreapi.tech/monitor/ts/data/v1/subscriptions/224bae0c-a98f-41f5-b5d3-9f54aa98455f/resourceGroups/default/zones/cn-sh-01z/telemetryStations/ts-user-45a3a9e8-eae7-4b42-906b-27242d2c3ee4/resources?product=product.quark-afs' \
-H 'Content-Type: application/json'
响应(Response)
名称 | 类型 | 描述 |
---|---|---|
resources | []Resource | 资源列表 |
page | Page | 分页参数 |
其中Resource
如下
名称 | 类型 | 描述 |
---|---|---|
resource_type | ResourceType | 表示国际化枚举 |
resource_id | string | 资源 ID |
create_time | string | 资源创建时间 |
sku | string | 资源 SKU |
state | string | 告警状态 |
display_name | string | 资源展示名称 |
alert_rules_count | string | 告警规则计数 |
name | string | 资源唯一名称 |
gpu_model | string | GPU 类型 |
其中ResourceType
如下:
名称 | 类型 | 描述 |
---|---|---|
key | string | 枚举的键 |
label | string | 枚举的标签 |
其中Page
如下
名称 | 类型 | 描述 |
---|---|---|
offset | int | 跳过多少个元素 |
size | int | 页码 |
total | int | 总数 |
响应示例(Response Example)
{
"resources": [
{
"resource_type": {
"key": "resource_type.storage.afs.v1.volume",
"label": "文件存储卷"
},
"resource_id": "7b78ea3c-4eab-11ed-a17c-3a95372d82cb",
"create_time": "2023-06-15T02:28:00.703676Z",
"sku": "10 GB",
"state": "ALERTSTATE_INACTIVE",
"display_name": "yglv",
"alert_rules_count": 0,
"name": "ae79f112-023b-467e-a5e2-39fc32bb6adb",
"gpu_model": ""
},
{
"resource_type": {
"key": "resource_type.storage.afs.v2.volume",
"label": "文件存储卷 V2"
},
"resource_id": "db272bd9-94e8-11ee-a238-baefdf83dc43",
"create_time": "2023-12-07T10:13:02.622771Z",
"sku": "1000 GB",
"state": "ALERTSTATE_INACTIVE",
"display_name": "llm_data_for_910B",
"alert_rules_count": 0,
"name": "bc48b96f-f5a1-4edb-b3a7-4f9886c49514",
"gpu_model": ""
}
],
"page": null
}