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

AdministrativeAction

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

Describes a specific Amazon FSx administrative action for the current Windows, Lustre, or OpenZFS file system.

interface AdministrativeAction {
AdministrativeActionType?: AdministrativeActionType | null;
FailureDetails?: AdministrativeActionFailureDetails | null;
ProgressPercent?: number | null;
RequestTime?: Date | number | null;
Status?: Status | null;
TargetFileSystemValues?: FileSystem | null;
TargetSnapshotValues?: Snapshot | null;
TargetVolumeValues?: Volume | null;
}

§Properties

§
AdministrativeActionType?: AdministrativeActionType | null
[src]
§
ProgressPercent?: number | null
[src]

The percentage-complete status of a STORAGE_OPTIMIZATION administrative action. Does not apply to any other administrative action type.

§
RequestTime?: Date | number | null
[src]

The time that the administrative action request was received.

§
Status?: Status | null
[src]

Describes the status of the administrative action, as follows:

  • FAILED - Amazon FSx failed to process the administrative action successfully.
  • IN_PROGRESS - Amazon FSx is processing the administrative action.
  • PENDING - Amazon FSx is waiting to process the administrative action.
  • COMPLETED - Amazon FSx has finished processing the administrative task.
  • UPDATED_OPTIMIZING - For a storage-capacity increase update, Amazon FSx has updated the file system with the new storage capacity, and is now performing the storage-optimization process.
§
TargetFileSystemValues?: FileSystem | null
[src]

Describes the target value for the administration action, provided in the UpdateFileSystem operation. Returned for FILE_SYSTEM_UPDATE administrative actions.

§
TargetSnapshotValues?: Snapshot | null
[src]
§
TargetVolumeValues?: Volume | null
[src]