File Coverage

blib/lib/Paws/StorageGateway/CreateTapes.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::StorageGateway::CreateTapes;
3 1     1   502 use Moose;
  1         3  
  1         8  
4             has ClientToken => (is => 'ro', isa => 'Str', required => 1);
5             has GatewayARN => (is => 'ro', isa => 'Str', required => 1);
6             has NumTapesToCreate => (is => 'ro', isa => 'Int', required => 1);
7             has TapeBarcodePrefix => (is => 'ro', isa => 'Str', required => 1);
8             has TapeSizeInBytes => (is => 'ro', isa => 'Int', required => 1);
9              
10 1     1   6460 use MooseX::ClassAttribute;
  1         3  
  1         8  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateTapes');
13             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::StorageGateway::CreateTapesOutput');
14             class_has _result_key => (isa => 'Str', is => 'ro');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::StorageGateway::CreateTapes - Arguments for method CreateTapes on Paws::StorageGateway
22              
23             =head1 DESCRIPTION
24              
25             This class represents the parameters used for calling the method CreateTapes on the
26             AWS Storage Gateway service. Use the attributes of this class
27             as arguments to method CreateTapes.
28              
29             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateTapes.
30              
31             As an example:
32              
33             $service_obj->CreateTapes(Att1 => $value1, Att2 => $value2, ...);
34              
35             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.
36              
37             =head1 ATTRIBUTES
38              
39              
40             =head2 B<REQUIRED> ClientToken => Str
41              
42             A unique identifier that you use to retry a request. If you retry a
43             request, use the same C<ClientToken> you specified in the initial
44             request.
45              
46             Using the same C<ClientToken> prevents creating the tape multiple
47             times.
48              
49              
50              
51             =head2 B<REQUIRED> GatewayARN => Str
52              
53             The unique Amazon Resource Name (ARN) that represents the gateway to
54             associate the virtual tapes with. Use the ListGateways operation to
55             return a list of gateways for your account and region.
56              
57              
58              
59             =head2 B<REQUIRED> NumTapesToCreate => Int
60              
61             The number of virtual tapes that you want to create.
62              
63              
64              
65             =head2 B<REQUIRED> TapeBarcodePrefix => Str
66              
67             A prefix that you append to the barcode of the virtual tape you are
68             creating. This prefix makes the barcode unique.
69              
70             The prefix must be 1 to 4 characters in length and must be one of the
71             uppercase letters from A to Z.
72              
73              
74              
75             =head2 B<REQUIRED> TapeSizeInBytes => Int
76              
77             The size, in bytes, of the virtual tapes that you want to create.
78              
79             The size must be aligned by gigabyte (1024*1024*1024 byte).
80              
81              
82              
83              
84             =head1 SEE ALSO
85              
86             This class forms part of L<Paws>, documenting arguments for method CreateTapes in L<Paws::StorageGateway>
87              
88             =head1 BUGS and CONTRIBUTIONS
89              
90             The source code is located here: https://github.com/pplu/aws-sdk-perl
91              
92             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
93              
94             =cut
95