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::AssignTapePool; use Moose; has BypassGovernanceRetention => (is => 'ro', isa => 'Bool'); has PoolId => (is => 'ro', isa => 'Str', required => 1); has TapeARN => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'AssignTapePool'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::StorageGateway::AssignTapePoolOutput'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::StorageGateway::AssignTapePool - Arguments for method AssignTapePool on L =head1 DESCRIPTION This class represents the parameters used for calling the method AssignTapePool on the L service. Use the attributes of this class as arguments to method AssignTapePool. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to AssignTapePool. =head1 SYNOPSIS my $storagegateway = Paws->service('StorageGateway'); my $AssignTapePoolOutput = $storagegateway->AssignTapePool( PoolId => 'MyPoolId', TapeARN => 'MyTapeARN', BypassGovernanceRetention => 1, # OPTIONAL ); # Results: my $TapeARN = $AssignTapePoolOutput->TapeARN; # 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 BypassGovernanceRetention => Bool Set permissions to bypass governance retention. If the lock type of the archived tape is C, the tape's archived age is not older than C, and the user does not already have C, setting this to TRUE enables the user to bypass the retention lock. This parameter is set to true by default for calls from the console. Valid values: C | C =head2 B 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 B TapeARN => Str The unique Amazon Resource Name (ARN) of the virtual tape that you want to add to the tape pool. =head1 SEE ALSO This class forms part of L, documenting arguments for method AssignTapePool in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut