# Generated by default/object.tt
use Moose;
has KMSKey => (is => 'ro', isa => 'Str');
has PoolEntryDate => (is => 'ro', isa => 'Str');
has PoolId => (is => 'ro', isa => 'Str');
has Progress => (is => 'ro', isa => 'Num');
has RetentionStartDate => (is => 'ro', isa => 'Str');
has TapeARN => (is => 'ro', isa => 'Str');
has TapeBarcode => (is => 'ro', isa => 'Str');
has TapeCreatedDate => (is => 'ro', isa => 'Str');
has TapeSizeInBytes => (is => 'ro', isa => 'Int');
has TapeStatus => (is => 'ro', isa => 'Str');
has TapeUsedInBytes => (is => 'ro', isa => 'Int');
has VTLDevice => (is => 'ro', isa => 'Str');
has Worm => (is => 'ro', isa => 'Bool');
1;
### main pod documentation begin ###
=head1 NAME
Paws::StorageGateway::Tape
=head1 USAGE
This class represents one of two things:
=head3 Arguments in a call to a service
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
Each attribute should be used as a named argument in the calls that expect this type of object.
As an example, if Att1 is expected to be a Paws::StorageGateway::Tape object:
$service_obj->Method(Att1 => { KMSKey => $value, ..., Worm => $value });
=head3 Results returned from an API call
Use accessors for each attribute. If Att1 is expected to be an Paws::StorageGateway::Tape object:
$result = $service_obj->Method(...);
$result->Att1->KMSKey
=head1 DESCRIPTION
Describes a virtual tape object.
=head1 ATTRIBUTES
=head2 KMSKey => Str
=head2 PoolEntryDate => Str
The date that the tape enters a custom tape pool.
=head2 PoolId => Str
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 (S3 Glacier or S3
Glacier Deep Archive) that corresponds to the pool.
Valid Values: C<GLACIER> | C<DEEP_ARCHIVE>
=head2 Progress => Num
For archiving virtual tapes, indicates how much data remains to be
uploaded before archiving is complete.
Range: 0 (not started) to 100 (complete).
=head2 RetentionStartDate => Str
The date that the tape is first archived with tape retention lock
enabled.
=head2 TapeARN => Str
The Amazon Resource Name (ARN) of the virtual tape.
=head2 TapeBarcode => Str
The barcode that identifies a specific virtual tape.
=head2 TapeCreatedDate => Str
The date the virtual tape was created.
=head2 TapeSizeInBytes => Int
The size, in bytes, of the virtual tape capacity.
=head2 TapeStatus => Str
The current state of the virtual tape.
=head2 TapeUsedInBytes => Int
The size, in bytes, of data stored on the virtual tape.
This value is not available for tapes created prior to May 13, 2015.
=head2 VTLDevice => Str
The virtual tape library (VTL) device that the virtual tape is
associated with.
=head2 Worm => Bool
If the tape is archived as write-once-read-many (WORM), this value is
C<true>.
=head1 SEE ALSO
This class forms part of L<Paws>, describing an object used in L<Paws::StorageGateway>
=head1 BUGS and CONTRIBUTIONS
The source code is located here: L<https://github.com/pplu/aws-sdk-perl>
=cut