Domain name for API request: vpc.tencentcloudapi.com.
This API is used to create a default VPC.
The default VPC is suitable for getting started with and launching public instances, and it can be used like any other VPCs. To create a standard VPC, for which you need to specify a VPC name, VPC IP range, subnet IP range, and subnet availability zone, use the regular CreateVpc API.
Under normal circumstances, this API may not create a default VPC. It depends on the network attributes (DescribeAccountAttributes) of your account.
You can also use the Force parameter to forcibly return a default VPC.
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: CreateDefaultVpc. |
Version | Yes | String | Common Params. The value used for this API: 2017-03-12. |
Region | Yes | String | Common Params. For more information, please see the list of regions supported by the product. |
Zone | No | String | The ID of the availability zone in which the subnet resides. This parameter can be obtained through the DescribeZones API, such as ap-guangzhou-1 . If it’s not specified, a random availability zone will be used. |
Force | No | Boolean | Whether to forcibly return a default VPC |
Parameter Name | Type | Description |
---|---|---|
Vpc | DefaultVpcSubnet | Default VPC and subnet IDs |
RequestId | String | The unique request ID, which is returned for each request. RequestId is required for locating a problem. |
https://vpc.tencentcloudapi.com/?Action=CreateDefaultVpc
&<Common request parameters>
{
"Response": {
"Vpc": {
"VpcId": "vpc-pin7sxcd",
"SubnetId": "subnet-ixzf2m42"
},
"RequestId": "a2353d77-5c08-49c4-a28a-632a8af5e294"
}
}
DescribeAccountAttributes
API supports both the classic network and VPC. If Force
is not set to true
, then the VpcId
returned will be 0
, indicating that do not create a VPC using default settings.https://vpc.tencentcloudapi.com/?Action=CreateDefaultVpc
&<Common request parameters>
{
"Response": {
"Vpc": {
"VpcId": "0",
"SubnetId": "0"
},
"RequestId": "c52dda11-9e53-440f-b034-6292f2144dd0"
}
}
https://vpc.tencentcloudapi.com/?Action=CreateDefaultVpc
&Force=true
&<Common request parameters>
{
"Response": {
"Vpc": {
"VpcId": "vpc-8mpwlbdv",
"SubnetId": "subnet-l9emqwnw"
},
"RequestId": "91348b0a-6846-49ff-822b-a21eef848c9f"
}
}
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 |
---|---|
InvalidParameterValue.Empty | Missing parameters. |
LimitExceeded | Quota limit is reached. |
ResourceInsufficient.CidrBlock | The IP range resources are insufficient. |
ResourceNotFound | The resource does not exist. |
本页内容是否解决了您的问题?