Networks
Update network
Rename network and/or update network tags. The request will only process the fields that are provided in the request body. Any fields that are not included will remain unchanged.
patch/cloud/v1/networks/{project_id}/{region_id}/{network_id}
Path parameters
project_idinteger required
Project ID
Example:1
Project ID
region_idinteger required
Region ID
Example:1
Region ID
network_idstring uuid4 required
Network ID
Example:b39792c3-3160-4356-912e-ba396c95cdcf
Network ID
Request body
Example request
{
"name": "some_name"
}Response
OK
Example response
{
"created_at": "2019-06-18T11:56:16+0000",
"creator_task_id": "fd50fdd1-0482-4c9b-b847-fc9924665af6",
"default": true,
"external": true,
"id": "eed97610-708d-43a5-a9a5-caebd2b7b4ee",
"mtu": 1500,
"name": "public",
"port_security_enabled": true,
"project_id": 1337,
"region": "Luxembourg 1",
"region_id": 7,
"segmentation_id": 9,
"subnets": [
"f00624ab-41bc-4d54-a723-1673ce32d997",
"41e0f698-4d39-483b-b77a-18eb070e4c09"
],
"tags": [
{
"key": "my-tag",
"read_only": false,
"value": "my-tag-value"
}
],
"type": "vlan",
"updated_at": "2019-06-18T11:57:00+0000"
}