rename_network
Change the name of an existing network in your Civo cloud infrastructure by providing the network ID and new label.
Instructions
Rename a network on Civo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Network ID | |
label | Yes | New network label | |
region | No | Region identifier |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Network ID",
"type": "string"
},
"label": {
"description": "New network label",
"type": "string"
},
"region": {
"description": "Region identifier",
"type": "string"
}
},
"required": [
"id",
"label"
],
"type": "object"
}