action netbox_extras_custom_links_read { label: "extras_custom-links_read" description: "" provider: netbox method: GET path: "/extras/custom-links/{id}/" encoding: json output: { type: "object" required: ["content_types", "link_text", "link_url", "name"] properties: { button_class: { type: "string" description: "The class of the first link in a group will be used for the dropdown button" enum: ["outline-dark", "blue", "indigo", "purple", "pink", "red", "orange", "yellow", "green", "teal", "cyan", "gray", "black", "white", "ghost-dark"] } content_types: { type: "array" items: { type: "string" } } created: { type: "string" format: "date-time" } display: { type: "string" } enabled: { type: "boolean" } group_name: { type: "string" description: "Links with the same group will appear as a dropdown menu" } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } link_text: { type: "string" description: "Jinja2 template code for link text" } link_url: { type: "string" description: "Jinja2 template code for link URL" } name: { type: "string" } new_window: { type: "boolean" description: "Force link to open in a new window" } url: { type: "string" format: "uri" } weight: { type: "integer" } } } }