/** *

Describes a virtual tape object.

*/ export interface _Tape { /** *

The Amazon Resource Name (ARN) of the virtual tape.

*/ TapeARN?: string; /** *

The barcode that identifies a specific virtual tape.

*/ TapeBarcode?: string; /** *

The date the virtual tape was created.

*/ TapeCreatedDate?: Date | string | number; /** *

The size, in bytes, of the virtual tape capacity.

*/ TapeSizeInBytes?: number; /** *

The current state of the virtual tape.

*/ TapeStatus?: string; /** *

The virtual tape library (VTL) device that the virtual tape is associated with.

*/ VTLDevice?: string; /** *

For archiving virtual tapes, indicates how much data remains to be uploaded before archiving is complete.

Range: 0 (not started) to 100 (complete).

*/ Progress?: number; /** *

The size, in bytes, of data stored on the virtual tape.

This value is not available for tapes created prior to May 13, 2015.

*/ TapeUsedInBytes?: number; /** *

The Amazon Resource Name (ARN) of the AWS KMS key used for Amazon S3 server side encryption. This value can only be set when KMSEncrypted is true. Optional.

*/ KMSKey?: string; /** *

The ID of the pool that contains tapes that will be archived. The tapes in this pool are archived in the S3 storage class that is associated with the pool. When you use your backup application to eject the tape, the tape is archived directly into the storage class (Glacier or Deep Archive) that corresponds to the pool.

Valid values: "GLACIER", "DEEP_ARCHIVE"

*/ PoolId?: string; } export interface _UnmarshalledTape extends _Tape { /** *

The date the virtual tape was created.

*/ TapeCreatedDate?: Date; }