PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::StorageGateway::CreateTapes; use Moose; has ClientToken => (is => 'ro', isa => 'Str', required => 1); has GatewayARN => (is => 'ro', isa => 'Str', required => 1); has KMSEncrypted => (is => 'ro', isa => 'Bool'); has KMSKey => (is => 'ro', isa => 'Str'); has NumTapesToCreate => (is => 'ro', isa => 'Int', required => 1); has PoolId => (is => 'ro', isa => 'Str'); has Tags => (is => 'ro', isa => 'ArrayRef[Paws::StorageGateway::Tag]'); has TapeBarcodePrefix => (is => 'ro', isa => 'Str', required => 1); has TapeSizeInBytes => (is => 'ro', isa => 'Int', required => 1); has Worm => (is => 'ro', isa => 'Bool'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateTapes'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::StorageGateway::CreateTapesOutput'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::StorageGateway::CreateTapes - Arguments for method CreateTapes on L =head1 DESCRIPTION This class represents the parameters used for calling the method CreateTapes on the L service. Use the attributes of this class as arguments to method CreateTapes. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateTapes. =head1 SYNOPSIS my $storagegateway = Paws->service('StorageGateway'); # To create a virtual tape # Creates one or more virtual tapes. my $CreateTapesOutput = $storagegateway->CreateTapes( 'ClientToken' => 77777, 'GatewayARN' => 'arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B', 'NumTapesToCreate' => 3, 'TapeBarcodePrefix' => 'TEST', 'TapeSizeInBytes' => 107374182400 ); # Results: my $TapeARNs = $CreateTapesOutput->TapeARNs; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 B ClientToken => Str A unique identifier that you use to retry a request. If you retry a request, use the same C you specified in the initial request. Using the same C prevents creating the tape multiple times. =head2 B GatewayARN => Str The unique Amazon Resource Name (ARN) that represents the gateway to associate the virtual tapes with. Use the ListGateways operation to return a list of gateways for your account and AWS Region. =head2 KMSEncrypted => Bool Set to C to use Amazon S3 server-side encryption with your own AWS KMS key, or C to use a key managed by Amazon S3. Optional. Valid Values: C | C =head2 KMSKey => Str The Amazon Resource Name (ARN) of a symmetric customer master key (CMK) used for Amazon S3 server-side encryption. Storage Gateway does not support asymmetric CMKs. This value can only be set when C is C. Optional. =head2 B NumTapesToCreate => Int The number of virtual tapes that you want to create. =head2 PoolId => Str The ID of the pool that you want to add your tape to for archiving. The tape in this pool is 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 | C =head2 Tags => ArrayRef[L] A list of up to 50 tags that can be assigned to a virtual tape. Each tag is a key-value pair. Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and the maximum length for a tag's value is 256. =head2 B TapeBarcodePrefix => Str A prefix that you append to the barcode of the virtual tape you are creating. This prefix makes the barcode unique. The prefix must be 1-4 characters in length and must be one of the uppercase letters from A to Z. =head2 B TapeSizeInBytes => Int The size, in bytes, of the virtual tapes that you want to create. The size must be aligned by gigabyte (1024*1024*1024 bytes). =head2 Worm => Bool Set to C if the tape you are creating is to be configured as a write-once-read-many (WORM) tape. =head1 SEE ALSO This class forms part of L, documenting arguments for method CreateTapes in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut