解绑密钥对
接口描述
POST /compute/bms/data/v1/subscriptions/{subscription_name}/resourceGroups/{resource_group_name}/zones/{zone}/kaypair/unbind
请求头(Request Header)
请求参数(Request Parameters)
名称 | 类型 | 必须 | 位置 | 默认值 | 取值范围 | 描述 |
---|---|---|---|---|---|---|
subscription_name | string | 否 | path | - | - | 订阅 |
resource_group_name | string | 否 | path | - | - | 资源组 |
zone | string | 否 | path | - | - | 可用区 |
请求体(Request Body)
参数名 | 类型 | 必须 | 默认值 | 取值范围 | 描述 |
---|---|---|---|---|---|
key_id | string | 是 | - | - | 密钥对id |
instances | array | 是 | - | - | 裸金属实例uuid列表 |
请求示例(Request Example)
curl -L -X POST 'https://bms.cn-sh-01.sensecoreapi.dev/compute/bms/data/v1/subscriptions/2488c031-873f-4396-8b9e-98c68ca016ae/resourceGroups/default/zones/cn-sh-01a/keypair/unbind' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: xxx' \
--data-raw '{
"key_id": "0AF000F7000018B84C37A81C5A43603F",
"instances": [
"bca100b1-6f10-11ee-85b4-da68b9bf2c6e"
]
}'
响应参数(Response Parameters)
名称 | 类型 | 描述 |
---|---|---|
code | string | 执行结果 |
message | string | 消息 |
响应示例(Response Example)
{
"code":0,
"message":""
}