VMware · Schema

DatacenterCreateSpec

Specification for creating a datacenter

Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization

Properties

Name Type Description
name string Name for the new datacenter
folder string Parent folder identifier
View JSON Schema on GitHub

JSON Schema

vmware-datacentercreatespec-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatacenterCreateSpec",
  "title": "DatacenterCreateSpec",
  "type": "object",
  "description": "Specification for creating a datacenter",
  "required": [
    "name",
    "folder"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the new datacenter",
      "example": "Example Title"
    },
    "folder": {
      "type": "string",
      "description": "Parent folder identifier",
      "example": "example_value"
    }
  }
}