File Coverage

blib/lib/Paws/Glacier/UploadArchive.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::Glacier::UploadArchive;
3 1     1   626 use Moose;
  1         4  
  1         11  
4             has AccountId => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'accountId', required => 1);
5             has ArchiveDescription => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'archiveDescription');
6             has Body => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'body');
7             has Checksum => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'checksum');
8             has VaultName => (is => 'ro', isa => 'Str', traits => ['ParamInURI'], uri_name => 'vaultName', required => 1);
9              
10 1     1   10747 use MooseX::ClassAttribute;
  1         4  
  1         10  
11             class_has _stream_param => (is => 'ro', default => 'Body');
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'UploadArchive');
13             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/{accountId}/vaults/{vaultName}/archives');
14             class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST');
15             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Glacier::ArchiveCreationOutput');
16             class_has _result_key => (isa => 'Str', is => 'ro');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::Glacier::UploadArchive - Arguments for method UploadArchive on Paws::Glacier
24              
25             =head1 DESCRIPTION
26              
27             This class represents the parameters used for calling the method UploadArchive on the
28             Amazon Glacier service. Use the attributes of this class
29             as arguments to method UploadArchive.
30              
31             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UploadArchive.
32              
33             As an example:
34              
35             $service_obj->UploadArchive(Att1 => $value1, Att2 => $value2, ...);
36              
37             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.
38              
39             =head1 ATTRIBUTES
40              
41              
42             =head2 B<REQUIRED> AccountId => Str
43              
44             The C<AccountId> value is the AWS account ID of the account that owns
45             the vault. You can either specify an AWS account ID or optionally a
46             single 'C<->' (hyphen), in which case Amazon Glacier uses the AWS
47             account ID associated with the credentials used to sign the request. If
48             you use an account ID, do not include any hyphens ('-') in the ID.
49              
50              
51              
52             =head2 ArchiveDescription => Str
53              
54             The optional description of the archive you are uploading.
55              
56              
57              
58             =head2 Body => Str
59              
60             The data to upload.
61              
62              
63              
64             =head2 Checksum => Str
65              
66             The SHA256 tree hash of the data being uploaded.
67              
68              
69              
70             =head2 B<REQUIRED> VaultName => Str
71              
72             The name of the vault.
73              
74              
75              
76              
77             =head1 SEE ALSO
78              
79             This class forms part of L<Paws>, documenting arguments for method UploadArchive in L<Paws::Glacier>
80              
81             =head1 BUGS and CONTRIBUTIONS
82              
83             The source code is located here: https://github.com/pplu/aws-sdk-perl
84              
85             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
86              
87             =cut
88