VMware · Schema

LibraryCreateSpec

Specification for creating a content library

Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization

Properties

Name Type Description
name string Name for the new content library
description string Description of the content library
type string Library type
storage_backings array Storage backings for the library content
View JSON Schema on GitHub

JSON Schema

vmware-vsphere-library-create-spec-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LibraryCreateSpec",
  "type": "object",
  "description": "Specification for creating a content library",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the new content library"
    },
    "description": {
      "type": "string",
      "description": "Description of the content library"
    },
    "type": {
      "type": "string",
      "description": "Library type"
    },
    "storage_backings": {
      "type": "array",
      "description": "Storage backings for the library content"
    }
  }
}