资源加入资源分组
更新时间:2024-03-11
描述
- 本接口用于把资源加入到资源分组中
请求
请求结构
POST /v1/res/resource?force=false
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必需 | 参数位置 | 描述 |
---|---|---|---|---|
bindings | List<OpenGroupResInfo> | 是 | body | 需要绑定的资源和分组关系列表。 |
force | boolean | 否 | Query | 表示是否强制解决冲突,ture表示是,false表示否。 |
返回
返回头域
除公共头域,无其它特殊头域。
返回参数
参数名称 | 类型 | 描述 |
---|---|---|
response | List<BindResResponse> | 创建的资源组id |
错误码
无特殊返回错误码
示例
请求示例
POST /v1/res/resource?force=false HTTP/1.1
Host: resourcemanager.baidubce.com
content-type: application/json
Authorization: bce-auth-v1/04795b2a1d12490bbee94511b7b78d7e/2016-11-11T10:34:26Z/1800/host/9e5619677b3a461f5b95d061b88823634e8bbc0e6b46e5b3cecbb75f21906a3d
Content-Length: 20
{
"bindings":[
{
"resourceId":"i-xMfbkAtv",
"resourceType":"BCC",
"resourceRegion":"su",
"groupId":"RESG-uB4ujTmrgWc"
}, {
"resourceId":"v-c0rYs8uE",
"resourceType":"CDS",
"resourceRegion":"su",
"groupId":"RESG-uB4ujTmrgWc"
}
]}
返回示例
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
X-Bce-Request-Id: 8d51a788-e79d-4ced-a9e0-0662ec85b7f7
Server: BWS
{
"status":"todo", // todo表示存在冲突,done表示移动成功
"resGroups":[
{
"name":"测试资源组",
"type":"BCC",
"region":"bj",
"id":"i-xMfbkAtv",
"uuid":"xxxxxxxx-yyyy-zzzz-mmmm-nnnnnnnnnnnn",
"summary":"",
"url":"https://console.bce.baidu.com/bcc/#/bcc/instance/detail?instanceId=xxxxxxxx-yyyy-zzzz-mmmm-nnnnnnnnnnnn",
"groups":[
{
"name":"测试资源组",
"extra":"测试",
"parentUuid":"",
"groupId":"RESG-uB4ujTmrgWc"
}
]
}
],
}