Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateOpenZFSVolumeConfiguration

import type { UpdateOpenZFSVolumeConfiguration } from "https://aws-api.deno.dev/v0.3/services/fsx.ts?docs=full";

Used to specify changes to the OpenZFS configuration for the volume that you are updating.

interface UpdateOpenZFSVolumeConfiguration {
DataCompressionType?: OpenZFSDataCompressionType | null;
NfsExports?: OpenZFSNfsExport[] | null;
ReadOnly?: boolean | null;
StorageCapacityQuotaGiB?: number | null;
StorageCapacityReservationGiB?: number | null;
UserAndGroupQuotas?: OpenZFSUserOrGroupQuota[] | null;
}

§Properties

§
DataCompressionType?: OpenZFSDataCompressionType | null
[src]

Specifies the method used to compress the data on the volume. Unless the compression type is specified, volumes inherit the DataCompressionType value of their parent volume.

  • NONE - Doesn't compress the data on the volume.
  • ZSTD - Compresses the data in the volume using the Zstandard (ZSTD) compression algorithm. This algorithm reduces the amount of space used on your volume and has very little impact on compute resources.
§
NfsExports?: OpenZFSNfsExport[] | null
[src]

The configuration object for mounting a Network File System (NFS) file system.

§
ReadOnly?: boolean | null
[src]

A Boolean value indicating whether the volume is read-only.

§
StorageCapacityQuotaGiB?: number | null
[src]

The maximum amount of storage in gibibytes (GiB) that the volume can use from its parent. You can specify a quota larger than the storage on the parent volume.

§
StorageCapacityReservationGiB?: number | null
[src]

The amount of storage in gibibytes (GiB) to reserve from the parent volume. You can't reserve more storage than the parent volume has reserved.

§
UserAndGroupQuotas?: OpenZFSUserOrGroupQuota[] | null
[src]

An object specifying how much storage users or groups can use on the volume.