cURL
curl --request POST \ --url https://console.cloud.timescale.com/public/api/v1/projects/{project_id}/vpcs/{vpc_id}/rename \ --header 'Content-Type: application/json' \ --data ' { "name": "my-renamed-vpc" } '
{ "id": "1234567890", "name": "my-production-vpc", "cidr": "10.0.0.0/16", "region_code": "us-east-1" }
Updates the name of a specific VPC.
The unique identifier of the project.
"rp1pz7uyae"
The unique identifier of the VPC.
"1234567890"
The new name for the VPC.
"my-renamed-vpc"
VPC renamed successfully.
"my-production-vpc"
"10.0.0.0/16"
"us-east-1"
Was this page helpful?