action netbox_ipam_ip_addresses_read { label: "ipam_ip-addresses_read" description: "" provider: netbox 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)" } assigned_object: { type: "object" } assigned_object_id: { type: "integer" } assigned_object_type: { type: "string" } comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } display: { 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" } last_updated: { type: "string" format: "date-time" } nat_inside: { type: "object" required: ["address"] properties: { address: { type: "string" description: "IPv4 or IPv6 address (with mask)" } display: { type: "string" } family: { type: "integer" } id: { type: "integer" } url: { type: "string" format: "uri" } } } nat_outside: { type: "array" items: { 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", "SLAAC"] } value: { type: "string" enum: ["active", "reserved", "deprecated", "dhcp", "slaac"] } } } tags: { type: "array" items: { type: "object" required: ["name", "slug"] properties: { color: { type: "string" } display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } } tenant: { type: "object" required: ["name", "slug"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } url: { type: "string" format: "uri" } vrf: { type: "object" required: ["name"] properties: { display: { type: "string" } 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" } } } } } }