Creating a VPC¶
Function¶
This API is used to create a VPC.
URI¶
POST /v1/{project_id}/vpcs
Table 1 describes the parameters.
Name | Mandatory | Description |
---|---|---|
project_id | Yes | Specifies the project ID. For details about how to obtain a project ID, see Obtaining a Project ID. |
Request Parameters¶
Name | Mandatory | Type | Description |
---|---|---|---|
name | No | String |
|
description | No | String |
|
cidr | No | String |
|
Example Request¶
Create a VPC named vpc and set its CIDR block to 192.168.0.0/16.
POST https://{Endpoint}/v1/{project_id}/vpcs { "vpc": { "name": "vpc", "description": "test", "cidr": "192.168.0.0/16" } }
Response Parameters¶
Name | Type | Description |
---|---|---|
id | String | Specifies a resource ID in UUID format. |
name | String |
|
description | String |
|
cidr | String |
|
status | String |
|
routes | Array of route objects |
|
enable_shared_snat | Boolean | Specifies whether the shared SNAT function is enabled. The value true indicates that the function is enabled, and the value false indicates that the function is not enabled. |
Name | Type | Description |
---|---|---|
destination | String |
|
nexthop | String |
|
Example Response¶
{
"vpc":
{
"id": "99d9d709-8478-4b46-9f3f-2206b1023fd3",
"name": "vpc",
"description": "test",
"cidr": "192.168.0.0/16",
"status": "CREATING",
"routes": []
}
}
Status Code¶
See Status Codes.
Error Code¶
See Error Codes.