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

AdministrativeActionType

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

Describes the type of administrative action, as follows:

  • FILE_SYSTEM_UPDATE - A file system update administrative action initiated from the Amazon FSx console, API (UpdateFileSystem), or CLI (update-file-system).
  • STORAGE_OPTIMIZATION - After the FILE_SYSTEM_UPDATE task to increase a file system's storage capacity has been completed successfully, a STORAGE_OPTIMIZATION task starts.
    • For Windows, storage optimization is the process of migrating the file system data to the new, larger disks.
    • For Lustre, storage optimization consists of rebalancing the data across the existing and newly added file servers.
    • For OpenZFS, storage optimization consists of migrating data from the older smaller disks to the newer larger disks. You can track the storage-optimization progress using the ProgressPercent property. When STORAGE_OPTIMIZATION has been completed successfully, the parent FILE_SYSTEM_UPDATE action status changes to COMPLETED. For more information, see Managing storage capacity in the Amazon FSx for Windows File Server User Guide, Managing storage and throughput capacity in the Amazon FSx for Lustre User Guide, and Managing storage capacity in the Amazon FSx for OpenZFS User Guide.
  • FILE_SYSTEM_ALIAS_ASSOCIATION - A file system update to associate a new Domain Name System (DNS) alias with the file system. For more information, see AssociateFileSystemAliases.
  • FILE_SYSTEM_ALIAS_DISASSOCIATION - A file system update to disassociate a DNS alias from the file system. For more information, see DisassociateFileSystemAliases.
  • VOLUME_UPDATE - A volume update to an Amazon FSx for NetApp ONTAP or Amazon FSx for OpenZFS volume initiated from the Amazon FSx console, API (UpdateVolume), or CLI (update-volume).
  • SNAPSHOT_UPDATE - A snapshot update to an Amazon FSx for OpenZFS volume initiated from the Amazon FSx console, API (UpdateSnapshot), or CLI (update-snapshot).
  • RELEASE_NFS_V3_LOCKS - Tracks the release of Network File System (NFS) V3 locks on an Amazon FSx for OpenZFS file system.
type AdministrativeActionType =
| "FILE_SYSTEM_UPDATE"
| "STORAGE_OPTIMIZATION"
| "FILE_SYSTEM_ALIAS_ASSOCIATION"
| "FILE_SYSTEM_ALIAS_DISASSOCIATION"
| "VOLUME_UPDATE"
| "SNAPSHOT_UPDATE"
| "RELEASE_NFS_V3_LOCKS"

§Type

§
"FILE_SYSTEM_UPDATE" | "STORAGE_OPTIMIZATION" | "FILE_SYSTEM_ALIAS_ASSOCIATION" | "FILE_SYSTEM_ALIAS_DISASSOCIATION" | "VOLUME_UPDATE" | "SNAPSHOT_UPDATE" | "RELEASE_NFS_V3_LOCKS" | cmnP.UnexpectedEnumValue
[src]