action vmware_get_names { label: "Get names for entities" description: "Get names for entities.Limit of 1000 entities in a single request." provider: vmware method: POST path: "/entities/names" encoding: json input: { type: "object" properties: { entities: { type: "array" items: { type: "object" properties: { entity_id: { type: "string" } time: { type: "integer" format: "int64" } } } } } } output: { type: "object" properties: { entities: { type: "array" items: { type: "object" } } } } }