create_network
Create a new network on the Civo cloud platform by specifying a label and optional region for organizing cloud resources.
Instructions
Create a new network on Civo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
label | Yes | Network label | |
region | No | Region identifier |
Input Schema (JSON Schema)
{
"properties": {
"label": {
"description": "Network label",
"type": "string"
},
"region": {
"description": "Region identifier",
"type": "string"
}
},
"required": [
"label"
],
"type": "object"
}