VMware · Schema

DatacenterInfo

Detailed datacenter information

Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization

Properties

Name Type Description
name string Display name of the datacenter
datastore_folder string Datastore folder identifier
host_folder string Host folder identifier
network_folder string Network folder identifier
vm_folder string VM folder identifier
View JSON Schema on GitHub

JSON Schema

vmware-datacenterinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatacenterInfo",
  "title": "DatacenterInfo",
  "type": "object",
  "description": "Detailed datacenter information",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name of the datacenter",
      "example": "Example Title"
    },
    "datastore_folder": {
      "type": "string",
      "description": "Datastore folder identifier",
      "example": "example_value"
    },
    "host_folder": {
      "type": "string",
      "description": "Host folder identifier",
      "example": "example_value"
    },
    "network_folder": {
      "type": "string",
      "description": "Network folder identifier",
      "example": "example_value"
    },
    "vm_folder": {
      "type": "string",
      "description": "VM folder identifier",
      "example": "example_value"
    }
  }
}