create_network
Initiate network creation in CloudStack by defining essential parameters such as name, display text, network offering ID, zone ID, gateway, and netmask for efficient cloud resource management.
Instructions
Create a new network
Input Schema
Name | Required | Description | Default |
---|---|---|---|
displaytext | Yes | Network display text | |
gateway | No | Network gateway | |
name | Yes | Network name | |
netmask | No | Network netmask | |
networkofferingid | Yes | Network offering ID | |
zoneid | Yes | Zone ID |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"displaytext": {
"description": "Network display text",
"type": "string"
},
"gateway": {
"description": "Network gateway",
"type": "string"
},
"name": {
"description": "Network name",
"type": "string"
},
"netmask": {
"description": "Network netmask",
"type": "string"
},
"networkofferingid": {
"description": "Network offering ID",
"type": "string"
},
"zoneid": {
"description": "Zone ID",
"type": "string"
}
},
"required": [
"name",
"displaytext",
"networkofferingid",
"zoneid"
],
"type": "object"
}