Updating a VPC
Function
This API is used to update information about a VPC.
Authorization Information
Each account has all the permissions required to call all APIs, but IAM users must be assigned the required permissions.
- If you are using role/policy-based authorization, see the required permissions in Permissions and Supported Actions.
- If you are using identity policy-based authorization, the following identity policy-based permissions are required.
Action
Access Level
Resource Type (*: required)
Condition Key
Alias
Dependencies
vpc:vpcs:update
Write
vpc *
- g:EnterpriseProjectId
- g:ResourceTag/<tag-key>
- vpc:VpcId
-
-
-
vpc:VpcBlockServiceEndpointStates
URI
PUT /v1/{project_id}/vpcs/{vpc_id}
|
Parameter |
Mandatory |
Description |
|---|---|---|
|
project_id |
Yes |
Specifies the project ID. For details about how to obtain a project ID, see Obtaining a Project ID. |
|
vpc_id |
Yes |
Specifies the VPC ID, which uniquely identifies the VPC. |
Request Parameters
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
vpc |
Yes |
vpc object |
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
name |
No |
String |
|
|
description |
No |
String |
|
|
cidr |
No |
String |
|
|
routes |
No |
Array of route objects |
|
|
enable_network_address_usage_metrics |
No |
Boolean |
|
|
Parameter |
Mandatory |
Type |
Description |
|---|---|---|---|
|
destination |
No |
String |
|
|
nexthop |
No |
String |
|
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
|
Parameter |
Type |
Description |
|---|---|---|
|
vpc |
vpc object |
|
Parameter |
Type |
Description |
|---|---|---|
|
id |
String |
Specifies a resource ID in UUID format. |
|
name |
String |
Specifies the VPC name. |
|
description |
String |
|
|
cidr |
String |
|
|
status |
String |
|
|
enterprise_project_id |
String |
NOTE:
For more information about enterprise projects and how to obtain enterprise project IDs, see the Enterprise Management User Guide. |
|
routes |
Array of route objects |
|
|
block_service_endpoint_states |
String |
|
|
enable_network_address_usage_metrics |
Boolean |
|
|
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": "vpc1",
"description": "test1",
"cidr": "192.168.0.0/16",
"status": "OK",
"enterprise_project_id": "0",
"routes": [],
"block_service_endpoint_states": "off",
"enable_network_address_usage_metrics": false,
"tenant_id": "087679f0aa80d32a2f4ec0172f5e902b",
"created_at": "2022-12-15T02:25:11",
"updated_at": "2022-12-15T06:23:15"
}
}
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