action netbox_ipam_l2vpns_read { label: "ipam_l2vpns_read" description: "" provider: netbox method: GET path: "/ipam/l2vpns/{id}/" encoding: json output: { type: "object" required: ["name", "slug"] properties: { comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } display: { type: "string" } export_targets: { type: "array" items: { type: "object" required: ["name"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" description: "Route target value (formatted in accordance with RFC 4360)" } url: { type: "string" format: "uri" } } } } id: { type: "integer" } identifier: { type: "integer" } import_targets: { type: "array" items: { type: "object" additionalProperties: true } } last_updated: { type: "string" format: "date-time" } name: { type: "string" } slug: { type: "string" format: "slug" } 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" } } } type: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["VPWS", "VPLS", "VXLAN", "VXLAN-EVPN", "MPLS EVPN", "PBB EVPN", "EPL", "EVPL", "Ethernet Private LAN", "Ethernet Virtual Private LAN", "Ethernet Private Tree", "Ethernet Virtual Private Tree"] } value: { type: "string" enum: ["vpws", "vpls", "vxlan", "vxlan-evpn", "mpls-evpn", "pbb-evpn", "epl", "evpl", "ep-lan", "evp-lan", "ep-tree", "evp-tree"] } } } url: { type: "string" format: "uri" } } } }