action vmware_get_node { label: "Show node details" description: "Get details of infrastructure nodes. Only admin users can get this information. The proxy id is\nrequired for adding a data source for selecting appropriate proxy node to add the data source." provider: vmware method: GET path: "/infra/nodes/{id}" encoding: json output: { type: "object" properties: { entity_type: { type: "string" enum: ["Node"] } id: { type: "string" } ip_address: { type: "string" } name: { type: "string" } node_id: { type: "string" } node_type: { type: "string" enum: ["PROXY_VM", "PLATFORM_VM"] } } } }