Nutanix · Schema

StorageContainerInput

Input for creating or updating a storage container.

Cloud ManagementHyperconvergedInfrastructureVirtualizationKubernetesDatabase

Properties

Name Type Description
name string The name of the storage container.
storage_pool_uuid string UUID of the storage pool to use.
replication_factor integer Data replication factor.
compression_enabled boolean Whether to enable inline compression.
dedupe_enabled boolean Whether to enable deduplication.
View JSON Schema on GitHub

JSON Schema

nutanix-storagecontainerinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StorageContainerInput",
  "title": "StorageContainerInput",
  "type": "object",
  "description": "Input for creating or updating a storage container.",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the storage container."
    },
    "storage_pool_uuid": {
      "type": "string",
      "description": "UUID of the storage pool to use."
    },
    "replication_factor": {
      "type": "integer",
      "description": "Data replication factor.",
      "minimum": 2,
      "maximum": 3
    },
    "compression_enabled": {
      "type": "boolean",
      "description": "Whether to enable inline compression."
    },
    "dedupe_enabled": {
      "type": "boolean",
      "description": "Whether to enable deduplication."
    }
  }
}