Domain name for API request: vpc.tencentcloudapi.com.
This API (DescribeSubnets) is used to query the list of subnets.
A maximum of 100 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common Params. The value used for this API: DescribeSubnets. |
Version | Yes | String | Common Params. The value used for this API: 2017-03-12. |
Region | No | String | Common Params. This parameter is not required for this API. |
SubnetIds.N | No | Array of String | Queries the ID of the subnet instance, such as subnet-pxir56ns . Each request can have a maximum of 100 instances. SubnetIds and Filters cannot be specified at the same time. |
Filters.N | No | Array of Filter | Filter condition. SubnetIds and Filters cannot be specified at the same time.vpc-f49l6u0z .192.168.1.0 .tag-key . For its usage, see example 2.0 (no); 1 (yes). |
Offset | No | String | Offset. Default value: 0. |
Limit | No | String | Number of returned results. Default value: 20. Maximum value: 100. |
Parameter Name | Type | Description |
---|---|---|
TotalCount | Integer | The number of instances meeting the filter condition. |
SubnetSet | Array of Subnet | Subnet object. |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
This example shows you how to query the list of subnets.
POST / HTTP/1.1
Host: vpc.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeSubnets
<Common request parameters>
{
"Filters": [
{
"Values": [
"vpc-2at5y1pn"
],
"Name": "vpc-id"
},
{
"Values": [
"Default Guangzhou Zone 2 subnet"
],
"Name": "subnet-name"
},
{
"Values": [
"172.16.16.0"
],
"Name": "cidr-block"
},
{
"Values": [
"subnet-otu92seu"
],
"Name": "subnet-id"
},
{
"Values": [
"true"
],
"Name": "is-default"
}
]
}
{
"Response": {
"SubnetSet": [
{
"NetworkAclId": "",
"RouteTableId": "rtb-n0yr460a",
"VpcId": "vpc-n0yr460a",
"EnableBroadcast": false,
"Zone": "ap-guangzhou",
"Ipv6CidrBlock": "",
"AvailableIpAddressCount": 1,
"IsRemoteVpcSnat": false,
"SubnetName": "Subnet 1",
"TotalIpAddressCount": 1,
"IsCdcSubnet": 0,
"CdcId": "cluster-1234dert",
"TagSet": [
{
"Value": "ck",
"Key": "kc"
}
],
"CreatedTime": "2020-05-25 20:09:07",
"SubnetId": "subnet-bthucmmy",
"CidrBlock": "10.0.0.0/16",
"IsDefault": true
}
],
"TotalCount": 1,
"RequestId": "cccb2665-5d02-4d87-b9e7-757bb06e5beb"
}
}
This example shows you how to query subnet by tags.
POST / HTTP/1.1
Host: vpc.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeSubnets
<Common request parameters>
{
"Filters": [
{
"Values": [
"shanghai"
],
"Name": "tag:city"
}
]
}
{
"Response": {
"SubnetSet": [
{
"NetworkAclId": "",
"RouteTableId": "rtb-n0yr460a",
"VpcId": "vpc-n0yr460a",
"EnableBroadcast": false,
"Zone": "ap-guangzhou",
"Ipv6CidrBlock": "2001::85b:3c51:f5ff:ffda",
"AvailableIpAddressCount": 1,
"IsRemoteVpcSnat": false,
"SubnetName": "Subnet 2",
"TotalIpAddressCount": 1,
"IsCdcSubnet": 0,
"CdcId": "cluster-1234dert",
"TagSet": [
{
"Value": "gt",
"Key": "ku"
}
],
"CreatedTime": "2020-05-25 20:09:07",
"SubnetId": "subnet-bthucmmy",
"CidrBlock": "10.0.0.0/16",
"IsDefault": true
}
],
"TotalCount": 1,
"RequestId": "cccb2665-5d02-4d87-b9e7-757bb06e5beb"
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
Error Code | Description |
---|---|
InternalError.ModuleError | Internal module error |
InvalidParameter.Coexist | The parameters cannot be specified at the same time. |
InvalidParameter.FilterInvalidKey | The specified filter condition does not exist. |
InvalidParameter.FilterNotDict | The specified filter condition should be a key-value pair. |
InvalidParameter.FilterValuesNotList | The specified filter value should be a list. |
InvalidParameterValue.Empty | Missing parameters. |
InvalidParameterValue.LimitExceeded | The parameter value exceeds the limit. |
InvalidParameterValue.Malformed | Invalid input parameter format. |
InvalidParameterValue.Range | The parameter value is not in the specified range. |
ResourceNotFound | The resource does not exist. |
UnsupportedOperation | Unsupported operation. |
UnsupportedOperation.AppIdMismatch | The resource is not under the specified AppId. |
문제 해결에 도움이 되었나요?