获取可用的镜像仓库列表-GetImageBucketList

获取可用的Docker镜像仓库列表,包括公有和私有的。

Request Parameters

Parameter nameTypeDescriptionRequired
Regionstring地域, 参见 地域和可用区列表Yes
BucketNamestringDocker镜像仓库名称,不填返回所有的镜像仓库No
BucketTypestringAll:用户所有可见的仓库, User:用户个人创建的仓库 , Share:第三方公开镜像, 默认值:AllNo
OrderBystringDefault: 默认排序No
Limitint返回数据长度,默认为20No
Offsetint列表起始位置偏移量,默认为0No

Response Elements

Parameter nameTypeDescriptionRequired
RetCodeint操作返回码Yes
Actionstring操作名称Yes
TotalCountint满足条件的镜像总数No
ImageSetarray镜像列表,详见 ImageBucketListSetNo

ImageBucketListSet

Parameter nameTypeDescriptionRequired
BucketNamestringDocker镜像仓库名称No
BucketTypestringPrivate:私有,Public:公有No
ImageCountint仓库中含有的镜像个数No
CreateTimeint创建时间,格式为Unix时间戳No

Request Example

http(s)://api.ucloud.cn/?Action=GetImageBucketList
&Region=cn-bj2

Response Example

{
    "Action": "GetImageBucketListResponse",
    "TotalCount": 1,
    "RetCode": 0,
    "ImageSet": [
        {
            "BucketType": "Public",
            "BucketName": "ucsdr.ucloud.cn:5000/ucs/helloworld:6",
            "ImageCount": 10,
            "CreateTime": 1234567890
        }
    ]
}