action netboxdemo_dcim_console_ports_trace { label: "dcim_console-ports_trace" description: "Trace a complete cable path and return each segment as a three-tuple of (termination, cable, termination)." provider: netboxdemo method: GET path: "/dcim/console-ports/{id}/trace/" encoding: json output: { type: "object" required: ["device", "name"] properties: { cable: { type: "object" properties: { id: { type: "integer" } label: { type: "string" } url: { type: "string" format: "uri" } } } connected_endpoint: { type: "object" description: "\nReturn the appropriate serializer for the type of connected object.\n" } connected_endpoint_type: { type: "string" } connection_status: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Not Connected", "Connected"] } value: { type: "boolean" enum: [false, true] } } } description: { type: "string" } 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" } tags: { type: "array" items: { type: "string" } } type: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["DE-9", "DB-25", "RJ-11", "RJ-12", "RJ-45", "USB Type A", "USB Type B", "USB Type C", "USB Mini A", "USB Mini B", "USB Micro A", "USB Micro B", "Other"] } value: { type: "string" enum: ["de-9", "db-25", "rj-11", "rj-12", "rj-45", "usb-a", "usb-b", "usb-c", "usb-mini-a", "usb-mini-b", "usb-micro-a", "usb-micro-b", "other"] } } } } } }