File Coverage

blib/lib/Net/Amazon/S3/Operation/Object/Upload/Abort/Request.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             # ABSTRACT: An internal class to abort a multipart upload
2             $Net::Amazon::S3::Operation::Object::Upload::Abort::Request::VERSION = '0.991';
3             use Moose 0.85;
4 99     99   673  
  99         1904  
  99         613  
5             extends 'Net::Amazon::S3::Request::Object';
6              
7             with 'Net::Amazon::S3::Request::Role::Query::Param::Upload_id';
8             with 'Net::Amazon::S3::Request::Role::HTTP::Method::DELETE';
9              
10             __PACKAGE__->meta->make_immutable;
11              
12             1;
13              
14              
15             =pod
16              
17             =encoding UTF-8
18              
19             =head1 NAME
20              
21             Net::Amazon::S3::Operation::Object::Upload::Abort::Request - An internal class to abort a multipart upload
22              
23             =head1 VERSION
24              
25             version 0.991
26              
27             =head1 SYNOPSIS
28              
29             my $http_request = Net::Amazon::S3::Operation::Object::Upload::Abort::Request->new (
30             s3 => $s3,
31             bucket => $bucket,
32             key => $key
33             upload_id => $upload_id,
34             );
35              
36             =head1 DESCRIPTION
37              
38             This module aborts a multipart upload.
39              
40             =head1 NAME
41              
42             Net::Amazon::S3::Operation::Object::Upload::Abort::Request - An internal class to abort a multipart upload
43              
44             =head1 VERSION
45              
46             version 0.59
47              
48             =for test_synopsis no strict 'vars'
49              
50             =head1 METHODS
51              
52             =head2 http_request
53              
54             This method returns a HTTP::Request object.
55              
56             =head1 AUTHOR
57              
58             Pedro Figueiredo <me@pedrofigueiredo.org>
59              
60             =head1 COPYRIGHT AND LICENSE
61              
62             This software is copyright (c) 2013 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo.
63              
64             This is free software; you can redistribute it and/or modify it under
65             the same terms as the Perl 5 programming language system itself.
66              
67             =head1 AUTHOR
68              
69             Branislav Zahradník <barney@cpan.org>
70              
71             =head1 COPYRIGHT AND LICENSE
72              
73             This software is copyright (c) 2022 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník.
74              
75             This is free software; you can redistribute it and/or modify it under
76             the same terms as the Perl 5 programming language system itself.
77              
78             =cut