action netboxdemo_virtualization_clusters_read { label: "virtualization_clusters_read" description: "Call to super to allow for caching" provider: netboxdemo method: GET path: "/virtualization/clusters/{id}/" encoding: json output: { type: "object" required: ["name", "type"] properties: { comments: { type: "string" } created: { type: "string" format: "date" } custom_fields: { type: "object" } device_count: { type: "integer" } group: { type: "object" required: ["name", "slug"] properties: { cluster_count: { type: "integer" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } name: { type: "string" } site: { type: "object" required: ["name", "slug"] properties: { id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } tags: { type: "array" items: { type: "string" } } tenant: { type: "object" required: ["name", "slug"] properties: { id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } type: { type: "object" required: ["name", "slug"] properties: { cluster_count: { type: "integer" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } virtualmachine_count: { type: "integer" } } } }