显示Memcache-DescribeUMemcacheGroup

显示Memcache

Request Parameters

Parameter nameTypeDescriptionRequired
Regionstring地域。 参见 地域和可用区列表Yes
Zonestring可用区。参见 可用区列表No
ProjectIdstring项目ID。不填写为默认项目,子帐号必须填写。 请参考GetProjectList接口No
GroupIdstring组的ID,如果指定则获取描述,否则为列表操 作,需指定Offset/LimitNo
Offsetint分页显示的起始偏移, 默认值为0No
Limitint分页显示的条目数, 默认值为20No

Response Elements

Parameter nameTypeDescriptionRequired
RetCodeint操作返回码Yes
Actionstring操作名称Yes
TotalCountint组的总的节点个数No
DataSetarray组列表,参见 UMemcacheGroupSetNo

UMemcacheGroupSet

Parameter nameTypeDescriptionRequired
GroupIdstring组IDNo
Namestring组名称No
ConfigIdstring节点的配置IDNo
VirtualIPstring节点的虚拟IP地址No
Portint节点分配的服务端口No
Sizeint容量单位GBNo
UsedSizeint使用量单位MBNo
VersionstringMemcache版本信息,默认为1.4.31No
Statestring状态标记 Creating 初始化中 CreateFail 创建失败 Deleting 删除中 DeleteFail 删除失败 Running 运行 Resizing 容量调整中 ResizeFail 容量调整失败 Configing 配置中 ConfigFail 配置失败Restarting 重启中No
CreateTimeint创建时间 (UNIX时间戳)No
ModifyTimeint修改时间 (UNIX时间戳)No
ExpireTimeint过期时间 (UNIX时间戳)No
ChargeTypestring计费类型:Year,Month,Dynamic 默认DynamicNo
Tagstring业务组名称No

Request Example

https://api.ucloud.cn/?Action=DescribeUMemcacheGroup
&Region=cn-east-01
&GroupId=umemcache-00f986
&Offset=0
&Limit=20
&Tag=Default

Response Example

{
    "Action": "DescribeUMemcacheGroupResponse",
    "RetCode": 0,
    "DataSet": [
        {
            "Tag": "Default",
            "Name": "test1233",
            "UsedSize": 0,
            "VirtualIP": "x.xx.x.x",
            "ExpireTime": 12345,
            "State": "Running",
            "Version": "1.4.33",
            "CreateTime": 1522222,
            "ChargeType": "Month",
            "ModifyTime": 1522222,
            "ConfigId": "9a891891-c245-4b66-bcexxxxxxxxx",
            "GroupId": "umemcache-xxxxx",
            "Port": 11211,
            "Size": 2
        }
    ]
}