VMware · Schema
DatastoreInfo
Detailed datastore configuration and status
Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Display name of the datastore |
| type | string | |
| accessible | boolean | Whether the datastore is currently accessible |
| free_space | integer | Available free space in bytes |
| capacity | integer | Maximum capacity in bytes |
| thin_provisioning_supported | boolean | Whether thin provisioning is supported |
| multiple_host_access | boolean | Whether the datastore is accessible by multiple hosts |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DatastoreInfo",
"title": "DatastoreInfo",
"type": "object",
"description": "Detailed datastore configuration and status",
"properties": {
"name": {
"type": "string",
"description": "Display name of the datastore",
"example": "Example Title"
},
"type": {
"type": "string",
"enum": [
"VMFS",
"NFS",
"NFS41",
"CIFS",
"VSAN",
"VFFS",
"VVOL"
],
"example": "VMFS"
},
"accessible": {
"type": "boolean",
"description": "Whether the datastore is currently accessible",
"example": true
},
"free_space": {
"type": "integer",
"description": "Available free space in bytes",
"format": "int64",
"example": 10
},
"capacity": {
"type": "integer",
"description": "Maximum capacity in bytes",
"format": "int64",
"example": 10
},
"thin_provisioning_supported": {
"type": "boolean",
"description": "Whether thin provisioning is supported",
"example": true
},
"multiple_host_access": {
"type": "boolean",
"description": "Whether the datastore is accessible by multiple hosts",
"example": true
}
}
}