action netboxdemo_ipam_ip_addresses_read { label: "ipam_ip-addresses_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/ipam/ip-addresses/{id}/" encoding: json output: { type: "object" required: ["address"] properties: { address: { type: "string" description: "IPv4 or IPv6 address (with mask)" } created: { type: "string" format: "date" } custom_fields: { type: "object" } description: { type: "string" } dns_name: { type: "string" description: "Hostname or FQDN (not case-sensitive)" } family: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["IPv4", "IPv6"] } value: { type: "integer" enum: [4, 6] } } } id: { type: "integer" } interface: { type: "object" required: ["name"] properties: { device: { type: "object" properties: { display_name: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } id: { type: "integer" } name: { type: "string" } url: { type: "string" } virtual_machine: { type: "object" required: ["name"] properties: { id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } } } last_updated: { type: "string" format: "date-time" } nat_inside: { type: "object" required: ["address"] properties: { address: { type: "string" description: "IPv4 or IPv6 address (with mask)" } family: { type: "string" } id: { type: "integer" } url: { type: "string" format: "uri" } } } nat_outside: { type: "object" additionalProperties: true } role: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Loopback", "Secondary", "Anycast", "VIP", "VRRP", "HSRP", "GLBP", "CARP"] } value: { type: "string" enum: ["loopback", "secondary", "anycast", "vip", "vrrp", "hsrp", "glbp", "carp"] } } } status: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Active", "Reserved", "Deprecated", "DHCP"] } value: { type: "string" enum: ["active", "reserved", "deprecated", "dhcp"] } } } tags: { type: "array" items: { type: "string" } } tenant: { type: "object" required: ["name", "slug"] properties: { id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } 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" } } } } } }