forked from docs/virtual-private-cloud
20 KiB
20 KiB
- original_name
vpc_api01_0001.html
Creating a VPC
Function
This API is used to create a VPC.
URI
POST /v1/{project_id}/vpcs
Table 1 <vpc_api01_0001__table3672032>
describes the parameters.
Name | Mandatory | Description |
---|---|---|
project_id | Yes | Specifies the project ID. |
Request Parameters
Name | Mandatory | Type | Description |
---|---|---|---|
vpc | Yes | vpc <vpc_api01_0001__table33750194> object |
Specifies the VPC objects. <vpc_api01_0001__table33750194> |
Name | Mandatory | Type | Description |
---|---|---|---|
name | No | String |
|
description | No | String |
|
cidr | No | String |
|
enterprise_project_id | 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", "enterprise_project_id": "0aad99bc-f5f6-4f78-8404-c598d76b0ed2" } }
Response Parameters
Name | Type | Description |
---|---|---|
vpc | vpc <vpc_api01_0001__table39714111> object |
Specifies the VPC objects. <vpc_api01_0001__table39714111> |
Name | Type | Description |
---|---|---|
id | String | Specifies a resource ID in UUID format. |
name | String |
|
description | String |
|
cidr | String |
|
status | String |
|
routes | Array of route <vpc_api01_0001__table3576833291556> 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. |
enterprise_project_id | String |
|
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",
"enterprise_project_id": "0aad99bc-f5f6-4f78-8404-c598d76b0ed2",
"routes": []
}
}
Status Code
See Status Codes <vpc_api_0002>
.
Error Code
See Error Codes <vpc_api_0003>
.