Domain name for API request: vpc.tencentcloudapi.com.
This API is used to create subnets in batches.
A maximum of 20 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.
This document describes the parameters for Signature V1. It's recommended to use the V3 signature, which provides higher security. Note that for Signature V3, the common parameters need to be placed in the HTTP Header. See details.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common parameter. The value used for this API: CreateSubnets. |
Version | Yes | String | Common parameter. The value used for this API: 2017-03-12. |
Region | Yes | String | Common parameter. For more information, please see the list of regions supported by the product. |
VpcId | Yes | String | The ID of the VPC instance, such as vpc-6v2ht8q5 . |
Subnets.N | Yes | Array of SubnetInput | The subnet object list. |
Tags.N | No | Array of Tag | Bound tags. Note that the collection of tags here is shared by all subnet objects in the list. You cannot specify tags for each subnet. Example: [{"Key": "city", "Value": "shanghai"}]. |
CdcId | No | String | ID of the CDC instance to which the subnets will be created |
Parameter Name | Type | Description |
---|---|---|
SubnetSet | Array of Subnet | The list of newly created subnets. |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
https://vpc.tencentcloudapi.com/?Action=CreateSubnets
&VpcId=vpc-6v2ht8q5
&Subnets.0.CidrBlock=10.4.14.0/24
&Subnets.0.SubnetName=t1
&Subnets.0.Zone=ap-guangzhou-2
&Subnets.1.CidrBlock=10.4.15.0/24
&Subnets.1.SubnetName=t2
&Subnets.1.Zone=ap-guangzhou-3
&Tags.0.Key=city
&Tags.0.Value=shanghai
&<Common request parameters>
{
"Response": {
"SubnetSet": [
{
"VpcId": "vpc-6v2ht8q5",
"SubnetId": "subnet-bxxo9gik",
"SubnetName": "t1",
"CidrBlock": "10.4.14.0/24",
"IsDefault": false,
"EnableBroadcast": false,
"Zone": "ap-guangzhou-2",
"RouteTableId": "rtb-3ryrwzuu",
"CreatedTime": "2018-11-29 19:16:45",
"TotalIpAddressCount": 253,
"AvailableIpAddressCount": 253,
"TagSet": [
{
"Key": "city",
"Value": "shanghai"
}
]
},
{
"VpcId": "vpc-6v2ht8q5",
"SubnetId": "subnet-f84xsjpa",
"SubnetName": "t2",
"CidrBlock": "10.4.15.0/24",
"IsDefault": false,
"EnableBroadcast": false,
"Zone": "ap-guangzhou-3",
"RouteTableId": "rtb-3ryrwzuu",
"CreatedTime": "2018-11-29 19:16:45",
"TotalIpAddressCount": 253,
"AvailableIpAddressCount": 253,
"TagSet": [
{
"Key": "city",
"Value": "shanghai"
}
]
}
],
"RequestId": "158ac65e-d504-42f6-baac-b716f5855254"
}
}
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 |
---|---|
InvalidParameter | A parameter error occurred. |
InvalidParameterValue.LimitExceeded | The parameter value exceeds the limit. |
InvalidParameterValue.Malformed | Invalid input parameter format. |
InvalidParameterValue.SubnetConflict | Subnet CIDR conflict. |
InvalidParameterValue.SubnetRange | Invalid subnet CIDR. |
InvalidParameterValue.TooLong | Invalid parameter value. The parameter value is too long. |
InvalidParameterValue.ZoneConflict | The Zone parameter value should be the zone where CDC resides. |
LimitExceeded | Quota limit is reached. |
MissingParameter | Missing parameter. |
ResourceNotFound | The resource does not exist. |
UnsupportedOperation.AppIdMismatch | The resource is not under the specified AppId. |
UnsupportedOperation.DcGatewaysNotFoundInVpc | No direct connect gateway exists in the specified VPC. |
Was this page helpful?