action netbox_ipam_fhrp_groups_read { label: "ipam_fhrp-groups_read" description: "" provider: netbox method: GET path: "/ipam/fhrp-groups/{id}/" encoding: json output: { type: "object" required: ["group_id", "protocol"] properties: { auth_key: { type: "string" } auth_type: { type: "string" enum: ["plaintext", "md5"] } comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } display: { type: "string" } group_id: { type: "integer" } id: { type: "integer" } ip_addresses: { type: "array" items: { 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" } } } } last_updated: { type: "string" format: "date-time" } name: { type: "string" } protocol: { type: "string" enum: ["vrrp2", "vrrp3", "carp", "clusterxl", "hsrp", "glbp", "other"] } 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" } } } } url: { type: "string" format: "uri" } } } }