Updating a VPC
Function
This API is used to update information about a VPC.
Request Parameters
Name |
Mandatory |
Type |
Description |
---|---|---|---|
vpc |
Yes |
vpc object |
Name |
Mandatory |
Type |
Description |
---|---|---|---|
name |
No |
String |
|
description |
No |
String |
|
cidr |
No |
String |
|
routes |
No |
Array of route objects |
|
Example Request
- Change the name, description, and CIDR block of the VPC whose ID is 99d9d709-8478-4b46-9f3f-2206b1023fd3 to vpc1, test1, and 192.168.0.0/16, respectively.
PUT https://{Endpoint}/v1/{project_id}/vpcs/99d9d709-8478-4b46-9f3f-2206b1023fd3 { "vpc": { "name": "vpc1", "description": "test1", "cidr": "192.168.0.0/16" } }
Response Parameters
Name |
Type |
Description |
---|---|---|
vpc |
vpc object |
Name |
Type |
Description |
---|---|---|
id |
String |
Specifies a resource ID in UUID format. |
name |
String |
Specifies the VPC name. |
description |
String |
|
cidr |
String |
|
status |
String |
|
routes |
Array of route objects |
|
Example Response
{ "vpc": { "id": "99d9d709-8478-4b46-9f3f-2206b1023fd3", "name": "vpc1", "description": "test1", "cidr": "192.168.0.0/16", "status": "OK" } }
Status Code
See Status Codes.
Error Code
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot