更新资源组信息
接口描述
PATCH /v1/subscriptions/{subscription_name}/resourceGroups/{name}
更新资源组信息
请求头(Request Header)
请求参数(Request Parameters)
名称 | 位置 | 类型 | 必须 | 描述 |
---|---|---|---|---|
subscription_name | path | string | true | 订阅标识 |
name | path | string | true | 资源组标识 |
请求体(Request Body)
名称 | 位置 | 类型 | 必须 | 描述 |
---|---|---|---|---|
body | body | ResourceGroupUpdate | true | none |
请求示例(Request Example)
curl --request PATCH \
--url https://management.sensecoreapi.dev/rmh/v1/subscriptions/string/resourceGroups/string \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {access-token}' \
--header 'Content-Type: application/json' \
--data '{"display_name":"string"}'
响应参数(Response Parameters)
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | OK | ResourceGroup |
响应示例(Response Example)
200 Response
{
"id": "string",
"rid": "string",
"name": "string",
"display_name": "string",
"subscription_name": "string",
"owner_id": "string",
"create_time": "2019-08-24T14:15:22Z",
"update_time": "2019-08-24T14:15:22Z",
"resource_amount": 0,
"subscription_display_name": "string",
"subscription_id": "string",
"subscription_rid": "string",
"billing_account": "string"
}
数据结构(Schemas)
ResourceGroup
名称 | 类型 | 必须 | 限制 | 描述 |
---|---|---|---|---|
id | string | false | read-only | 资源组ID |
rid | string | false | read-only | 资源组RID |
name | string | true | none | 资源组标识 |
display_name | string | false | none | 资源组名称 |
subscription_name | string | true | none | 订阅标识 |
owner_id | string | false | read-only | 所属者ID |
create_time | string(date-time) | false | read-only | 资源组创建时间 |
update_time | string(date-time) | false | read-only | 资源组更新时间 |
resource_amount | integer(int32) | false | read-only | 资源数量 |
subscription_display_name | string | false | read-only | 订阅别名 |
subscription_id | string | false | read-only | 订阅ID |
subscription_rid | string | false | read-only | 订阅RID |
billing_account | string | false | read-only | 付费账户(930弃用) |
ResourceGroupUpdate
名称 | 类型 | 必须 | 限制 | 描述 |
---|---|---|---|---|
display_name | string | false | none | 资源组名称 |