Nutanix · Schema

VmListResponse

Response for listing VMs.

Cloud ManagementHyperconvergedInfrastructureVirtualizationKubernetesDatabase

Properties

Name Type Description
api_version string API version.
metadata object
entities array List of VM intent responses.
View JSON Schema on GitHub

JSON Schema

nutanix-vmlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VmListResponse",
  "title": "VmListResponse",
  "type": "object",
  "description": "Response for listing VMs.",
  "properties": {
    "api_version": {
      "type": "string",
      "description": "API version."
    },
    "metadata": {
      "$ref": "#/components/schemas/ListMetadata"
    },
    "entities": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VmIntentResponse"
      },
      "description": "List of VM intent responses."
    }
  }
}