list_public_ip_addresses
Retrieve and filter public IP addresses in CloudStack zones using zone ID, allocation status, and static NAT configuration for efficient network management.
Instructions
List public IP addresses
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| allocatedonly | No | Show only allocated IPs | |
| isstaticnat | No | Filter by static NAT enabled | |
| zoneid | No | Zone ID to filter IPs |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"allocatedonly": {
"default": true,
"description": "Show only allocated IPs",
"type": "boolean"
},
"isstaticnat": {
"description": "Filter by static NAT enabled",
"type": "boolean"
},
"zoneid": {
"description": "Zone ID to filter IPs",
"type": "string"
}
},
"type": "object"
}