action netboxdemo_ipam_prefixes_available_ips_read { label: "ipam_prefixes_available-ips_read" description: "A convenience method for returning available IP addresses within a prefix. By default, the number of IPs\nreturned will be equivalent to PAGINATE_COUNT. An arbitrary limit (up to MAX_PAGE_SIZE, if set) may be passed,\nhowever results will not be paginated.\n\nThe advisory lock decorator uses a PostgreSQL advisory lock to prevent this API from being\ninvoked in parallel, which results in a race condition where multiple insertions can occur." provider: netboxdemo method: GET path: "/ipam/prefixes/{id}/available-ips/" encoding: json output: { type: "array" items: { type: "object" properties: { address: { type: "string" } family: { type: "integer" } vrf: { type: "object" required: ["name"] properties: { id: { type: "integer" } name: { type: "string" } prefix_count: { type: "integer" } rd: { type: "string" description: "Unique route distinguisher (as defined in RFC 4364)" } url: { type: "string" format: "uri" } } } } } } }