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",
"title": "DatastoreInfo",
"type": "object",
"description": "Detailed datastore configuration and status",
"properties": {
"name": {
"type": "string",
"description": "Display name of the datastore"
},
"type": {
"type": "string"
},
"accessible": {
"type": "boolean",
"description": "Whether the datastore is currently accessible"
},
"free_space": {
"type": "integer",
"description": "Available free space in bytes"
},
"capacity": {
"type": "integer",
"description": "Maximum capacity in bytes"
},
"thin_provisioning_supported": {
"type": "boolean",
"description": "Whether thin provisioning is supported"
},
"multiple_host_access": {
"type": "boolean",
"description": "Whether the datastore is accessible by multiple hosts"
}
}
}