批量禁用/启用 SLO¶
POST /api/v1/slo/batch_set_disable
概述¶
Body 请求参数¶
参数名 | 类型 | 必选 | 说明 |
---|---|---|---|
isDisable | boolean | Y | 开启/禁用,false:开启,true:禁用 允许为空: False |
sloUUIDs | array | Y | SLO 的 UUID 列表 允许为空: False |
参数补充说明¶
请求例子¶
curl 'https://openapi.guance.com/api/v1/slo/batch_set_disable' \
-H 'Content-Type: application/json' \
-H 'DF-API-KEY: <DF-API-KEY>' \
--data '{
"isDisable": false,
"sloUUIDs": [
"monitor_xxxx32",
"monitor_xxxx32"
]
}'