VMware · Schema

ResourcePoolSummary

Summary of a resource pool

Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization

Properties

Name Type Description
resource_pool string Unique identifier of the resource pool
name string Display name of the resource pool
View JSON Schema on GitHub

JSON Schema

vmware-resourcepoolsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourcePoolSummary",
  "title": "ResourcePoolSummary",
  "type": "object",
  "description": "Summary of a resource pool",
  "required": [
    "resource_pool",
    "name"
  ],
  "properties": {
    "resource_pool": {
      "type": "string",
      "description": "Unique identifier of the resource pool",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "description": "Display name of the resource pool",
      "example": "Example Title"
    }
  }
}