查询指定的IP地址组
更新时间:2024-04-28
描述
查询指定的IP地址组。
请求结构
GET /v{version}/ipSet/{ipSetId} HTTP/1.1
Host: bcc.bj.baidubce.com
Authorization: authorization string
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必需 | 参数位置 | 描述 |
---|---|---|---|---|
version | String | 是 | URL参数 | API版本号,目前取值为1 |
ipSetId | String | 是 | URL参数 | IP地址组的ID |
返回头域
除公共头域,无其它特殊头域。
返回参数
参数名称 | 类型 | 描述 |
---|---|---|
ipSetId | String | IP地址组的ID |
name | String | IP地址组的名称 |
description | String | IP地址组的描述 |
ipVersion | String | ipVersion,取值IPv4或IPv6 |
ipAddressInfo | List<TemplateIpAddressInfo> | 参数模板IP地址信息 |
bindedInstances | List<IpCollectionBindedInstance> | IP地址组绑定的实例 |
请求示例
GET /v1/ipSet/ips-w2d4kgc3x0y1 HTTP/1.1
Host: bcc.bj.baidubce.com
authorization: bce-auth-v1/c3119080364d11e8912505e5e0ae9978/2018-04-02T08:14:25Z/3600/host;x-bce-account;x-bce-client-ip;x-bce-date;x-bce-request-id;x-bce-security-token/6b93bfd5ca2328fcb5560fa57f56253d80a629f6aac9c9cb74adf9a055fceb53
返回示例
HTTP/1.1 200 OK
x-bce-request-id: 7e789a40-adac-414a-8bd4-916d6be61112
Date: Mon, 02 Apr 2019 08:14:25 GMT
Content-Type: application/json;charset=UTF-8
Server: BWS
{
"ipSet": "ips-w2d4kgc3x0y1",
"name": "test_ipSet",
"description": "",
"ipVersion": "IPv4",
"ipAddressInfo": [{
"ipAddress": "10.101.151.17",
"description": "ip address description"
}],
"bindedInstances": [{
"instanceId": "esg-w2kmnu1peqxg",
"instanceType": "ESG"
},
{
"instanceId": "esg-7c9yzhkfn9c2",
"instanceType": "ESG"
}
]
}