action netboxdemo_dcim_platforms_read { label: "dcim_platforms_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/dcim/platforms/{id}/" encoding: json output: { type: "object" required: ["name", "slug"] properties: { description: { type: "string" } device_count: { type: "integer" } id: { type: "integer" } manufacturer: { type: "object" required: ["name", "slug"] properties: { devicetype_count: { type: "integer" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } name: { type: "string" } napalm_args: { type: "string" description: "Additional arguments to pass when initiating the NAPALM driver (JSON format)" } napalm_driver: { type: "string" description: "The name of the NAPALM driver to use when interacting with devices" } slug: { type: "string" format: "slug" } virtualmachine_count: { type: "integer" } } } }