查询指定子网
更新时间:2021-12-24
接口描述
查询指定子网的详细信息。
请求结构
GET /v1/vpc/subnet/{subnetId} HTTP/1.1
Host: bec.baidubce.com
Authorization: authorization string
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必需 | 参数位置 | 描述 |
---|---|---|---|---|
subnetId | String | 是 | URL参数 | 待查询的子网ID |
返回头域
除公共头域,无其它特殊头域。
返回参数
参数名称 | 类型 | 描述 |
---|---|---|
subnet | Subnet | 返回的子网详情 |
请求示例
GET /v1/vpc/subnet/sbn-id5onybc HTTP/1.1
Host: bec.baidubce.com
ContentType: application/json
Authorization: bce auth v1/f81d3b34e48048fbb2634dc7882d7e21/2021 08 11T04:17:29Z/3600/host/74c506f68c65e26c633bfa104c863fffac5190fdec1ec24b7c03eb5d67d2e1de
返回示例
HTTP/1.1 200 OK
x-bce-request-id: 1214cca7 4ad5 451d 9215 71cb844c0a50
Date: Thu, 16 Mar 2021 06:29:48 GMT
Content Type: application/json;charset=UTF 8
Server: BWS
{
"subnet": {
"subnetId": "sbn-id5onybc",
"name": "test",
"cidr": "172.16.0.0/24",
"description": "test",
"availableIp": 251,
"usedIp": 1,
"vpcId": "vpc-pnqfsbl4",
"regionId": "cn-hangzhou-cm",
"createdTime": "2021-10-15T06:28:38Z",
"isDefault": false
}
}
Model对象定义
Subnet
参数名称 | 类型 | 描述 |
---|---|---|
subnetId | String | 子网ID |
name | String | 子网名称 |
cidr | String | 子网网段CIDR |
description | String | 子网描述 |
availableIp | Integer | 可用IP个数 |
usedIp | Integer | 已使用的IP个数 |
vpcId | String | 所属VPC ID |
regionId | String | 节点ID |
isDefault | Boolean | 是否是VPC的默认子网,true:是;false:否 |
createdTime | String | 子网创建时间(UTC) |