VMware · Schema
DatastoreSummary
Summary of a datastore in the vCenter inventory
Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization
Properties
| Name | Type | Description |
|---|---|---|
| datastore | string | Unique identifier of the datastore (e.g., datastore-15) |
| name | string | Display name of the datastore |
| type | string | Type of the datastore |
| free_space | integer | Free space in bytes |
| capacity | integer | Total capacity in bytes |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DatastoreSummary",
"title": "DatastoreSummary",
"type": "object",
"description": "Summary of a datastore in the vCenter inventory",
"required": [
"datastore",
"name"
],
"properties": {
"datastore": {
"type": "string",
"description": "Unique identifier of the datastore (e.g., datastore-15)",
"example": "example_value"
},
"name": {
"type": "string",
"description": "Display name of the datastore",
"example": "Example Title"
},
"type": {
"type": "string",
"description": "Type of the datastore",
"enum": [
"VMFS",
"NFS",
"NFS41",
"CIFS",
"VSAN",
"VFFS",
"VVOL"
],
"example": "VMFS"
},
"free_space": {
"type": "integer",
"description": "Free space in bytes",
"format": "int64",
"example": 10
},
"capacity": {
"type": "integer",
"description": "Total capacity in bytes",
"format": "int64",
"example": 10
}
}
}