action vmware_list_nodes { label: "List nodes" description: "Get list of infrastructure nodes. Only admin users can retrieve this information." provider: vmware method: GET path: "/infra/nodes" encoding: json output: { type: "object" properties: { results: { type: "array" items: { type: "object" properties: { entity_type: { type: "string" enum: ["Node"] } id: { type: "string" description: "Entity Identifier" } } } } total_count: { type: "integer" } } } }