forked from docs/doc-exports
Reviewed-by: Szirovicza Gergő <a94652429@noreply.gitea.eco.tsi-dev.otc-service.com> Reviewed-by: Sarda, Priya <prsarda@noreply.gitea.eco.tsi-dev.otc-service.com> Co-authored-by: fanqinying <fanqinying@huawei.com> Co-committed-by: fanqinying <fanqinying@huawei.com>
22 KiB
22 KiB
Creating a VPC
Function
This API is used to create a VPC.
Request Parameters
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
vpc |
Yes |
vpc object |
Parameter |
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
Parameter |
Type |
Description |
|---|---|---|
vpc |
vpc object |
Parameter |
Type |
Description |
|---|---|---|
id |
String |
Specifies a resource ID in UUID format. |
name |
String |
|
description |
String |
|
cidr |
String |
|
status |
String |
|
routes |
Array of route objects |
|
enterprise_project_id |
String |
|
tenant_id |
String |
|
created_at |
String |
|
updated_at |
String |
|
Parameter |
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": [],
"tenant_id": "087679f0aa80d32a2f4ec0172f5e902b",
"created_at": "2022-12-15T02:25:11",
"updated_at": "2022-12-15T02:25:11"
}
}
Status Code
See Status Codes.
Error Code
See Error Codes.
Parent topic: Virtual Private Cloud