Domain name for API request: vpc.tencentcloudapi.com.
This API is used to create a subnet.
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.
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: CreateSubnet. |
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 to be operated on. You can obtain the parameter value from the VpcId field in the returned result of DescribeVpcs API. |
SubnetName | Yes | String | The subnet name. The maximum length is 60 bytes. |
CidrBlock | Yes | String | The subnet IP address range. It must be within the VPC IP address range. Subnet IP address ranges cannot overlap with each other within the same VPC. |
Zone | Yes | String | The ID of the availability zone in which the subnet resides. You can set up disaster recovery across availability zones by choosing different availability zones for different subnets. |
Tags.N | No | Array of Tag | Bound tags, such as [{"Key": "city", "Value": "shanghai"}]. |
CdcId | No | String | CDC instance ID |
Parameter Name | Type | Description |
---|---|---|
Subnet | Subnet | Subnet object. |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
https://vpc.tencentcloudapi.com/?Action=CreateSubnet
&Version=2017-03-12
&VpcId=vpc-m3ul053f
&SubnetName=TestSubnet
&CidrBlock=10.8.0.0/16
&Zone=ap-guangzhou-1
&Tags.0.Key=city
&Tags.0.Value=shanghai
&<Common request parameters>
{
"Response": {
"Subnet": {
"VpcId": "vpc-m3ul053f",
"IsDefault": false,
"SubnetName": "TestSubnet",
"Zone": "ap-guangzhou-1",
"SubnetId": "subnet-2qhl25io",
"CidrBlock": "10.8.255.0/24",
"TotalIpAddressCount": 253,
"AvailableIpAddressCount": 253,
"TagSet": [
{
"Key": "city",
"Value": "shanghai"
}
]
}
}
}
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 | Incorrect parameter value. |
InvalidParameterValue.Empty | Missing parameters. |
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?