tencent cloud

文档反馈

DescribeSubnets

最后更新时间:2023-08-23 14:19:59

    1. API Description

    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.

    We recommend you to use API Explorer
    Try it
    API Explorer provides a range of capabilities, including online call, signature authentication, SDK code generation, and API quick search. It enables you to view the request, response, and auto-generated examples.

    2. Input Parameters

    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.
  • subnet-id - String - (Filter condition) Subnet instance name.
  • vpc-id - String - (Filter condition) VPC instance ID, such as vpc-f49l6u0z.
  • cidr-block - String - (Filter condition) Subnet IP range, such as 192.168.1.0.
  • is-default - Boolean - (Filter condition) Whether it is the default subnet.
  • is-remote-vpc-snat - Boolean - (Filter condition) Whether it is a VPC SNAT address pool subnet.
  • subnet-name - String - (Filter condition) Subnet name.
  • zone - String - (Filter condition) Availability zone.
  • tag-key - String - Required: No - (Filter condition) Filter by tag key.
  • tag:tag-key - String - Required: No - (Filter condition) Filter by tag key-value pair. Use a specific tag key to replace tag-key. For its usage, see example 2.
  • cdc-id - String - Required: No - (Filter condition) Filter by CDC ID to obtain subnets in the specified CDC.
  • is-cdc-subnet - String - Required: No - (Filter condition) Whether it is a CDC subnet. Valid values: 0 (no); 1 (yes).
  • Offset No String Offset. Default value: 0.
    Limit No String Number of returned results. Default value: 20. Maximum value: 100.

    3. Output Parameters

    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.

    4. Example

    Example1 Querying the list of subnets.

    This example shows you how to query the list of subnets.

    Input Example

    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"
            }
        ]
    }
    

    Output Example

    {
        "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"
        }
    }
    

    Example2 Querying the list of subnets bound with the tag

    This example shows you how to query subnet by tags.

    Input Example

    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"
            }
        ]
    }
    

    Output Example

    {
        "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"
        }
    }
    

    5. Developer Resources

    SDK

    TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.

    Command Line Interface

    6. Error Code

    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.