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.
Note: This API supports Finance regions. If the common parameter Region is a Finance region, a domain name with the Finance region needs to be specified, for example: vpc.ap-shanghai-fsi.tencentcloudapi.com
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 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"}]. |
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": {
"RequestID": "354f4ac3-8546-4516-8c8a-69e3ab73aa8a",
"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. |
LimitExceeded | Quota limit is reached. |
MissingParameter | Missing parameter. |
ResourceNotFound | The resource does not exist. |
Was this page helpful?