创建自定义镜像
更新时间:2024-01-26
创建自定义镜像
接口描述
本接口用于创建自定义镜像
请求结构
POST /v1/bvd/images
Host: bec.baidubce.com
Authorization: authorization string
X-Bce-Accesskey: accesskey
{
"desktopId": "",
"imageName": ""
}
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 |
---|---|---|---|---|
desktopId | 桌面ID | body | true | string |
imageName | 镜像名称 | body | true | string |
响应头域
除公共头域外,无其它特殊头域。
响应状态
状态码 | 说明 |
---|---|
200 | OK |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
响应参数
参数名称 | 参数说明 | 类型 |
---|---|---|
result | 返回结果 | ImageVo |
imageId | 镜像ID | string |
name | 镜像名称 | string |
imageType | 镜像类型: custom自定义 | string |
size | 镜像大小 | integer |
osType | 系统类型 | string |
osName | 系统名称 | string |
错误码
请参照错误返回章节的内容。
请求示例
POST /v1/bvd/images HTTP/1.1
Host: bec.baidubce.com
Authorization: bce-auth-v1/xxxxx
{
"desktopId": "vd-5oxyo2hw-cn-baoding-ix-derdg",
"imageName": "myimage"
}
响应示例
200 OK
{
"result": {
"imageId": "im-c7ogwfrw",
"name": "test_custom_image",
"imageType": "custom",
"size": 100,
"osType": "windows",
"osName": "Windows"
}
}