跳到主要内容

查询自定义镜像

描述

查询自定义镜像列表。

请求参数

参数名参数类型是否必填参数说明
ActionString操作方法:ListCloudPhoneCustomImage,此参数为公共参数,不必放body里面
RegionString机房标识,取值参见地域列表
KeyString关键字查询,可以查询镜像名称、镜像ID、镜像UUID
RootImageIdString原始镜像ID
StatusString镜像状态 NORMAL:正常 CREATING:创建中 CREATE_FAIL:创建失败
CreateStartTimeInteger创建开始时间戳,精确到毫秒,如1591344325000
CreateEndTimeInteger创建结束时间戳,精确到毫秒,如1591344325000
PageNoInteger页码,默认第1页,PageNo和PageSize都不传返回全部数据
PageSizeInteger每页数量,默认10条
ProductModelIdsArray产品型号数组

返回参数

名称类型说明
PagePage由Page组成的数组格式,返回分页信息,PageNo和PageSize都不传时不会返回该信息
ListList由List组成的数组格式,返回自定义镜像列表信息

Page

分页信息的数据类型

名称类型说明
PageSizeInteger页面总数
CurrentPageNoInteger当前分页数
TotalPageInteger总页数
TotalCountInteger总数

List

自定义镜像列表的数据类型

名称类型说明
IdString镜像ID
UuidString镜像UUID
NameString镜像名称
RootImageIdString原始镜像ID
RootImageNameString原始镜像名称
ProductModelIdsArray产品型号ID列表
StorageInteger存储大小,单位GB
IsRootInteger是否root 0否 1是
DescriptionString镜像描述
StatusString镜像状态 NORMAL:正常 CREATING:创建中 CREATE_FAIL:创建失败
CreateTimeInteger创建时间戳,精确到毫秒
UpdateTimeInteger修改时间戳,精确到毫秒

请求示例

post https://api.chinac.com/v2/?Action=ListCloudPhoneCustomImage&其他公共参数

返回示例

{
"code": 10000,
"message": "",
"data": {
"Page": {
"PageSize": 10,
"CurrentPageNo": 1,
"TotalPage": 1,
"TotalCount": 3
},
"List":[{
"Id": "aaaaaa",
"Uuid": "f5f72a07-5de3-4328-8863-537433c7042d",
"Name": "A2004210005",
"RootImageId": "bbbbb",
"RootImageName": "ccccc",
"ProductModelIds": [805013, 805014, 805015],
"Storage": 40,
"IsRoot": 1,
"Description": "xxxxx",
"Status": "NORMAL",
"CreateTime": 1591344325000,
"UpdateTime": 1591344325000
}, {
"Id": "bbbbbb",
"Uuid": "f5f72a07-5de3-4328-8863-537433c7042e",
"Name": "A2004210006",
"RootImageId": "bbbbb",
"RootImageName": "ccccc",
"ProductModelIds": [805013, 805014, 805015],
"Storage": 40,
"IsRoot": 1,
"Description": "xxxxx",
"Status": "NORMAL",
"CreateTime": 1591344325000,
"UpdateTime": 1591344325000
}]
}
}