File Coverage

blib/lib/Net/Amazon/S3/Operation/Object/Tags/Delete/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             package Net::Amazon::S3::Operation::Object::Tags::Delete::Request;
2             # ABSTRACT: Internal class to build PutObjectTagging requests
3             $Net::Amazon::S3::Operation::Object::Tags::Delete::Request::VERSION = '0.99';
4 99     99   751 use Moose 0.85;
  99         2824  
  99         772  
5              
6             extends 'Net::Amazon::S3::Request::Object';
7              
8             with 'Net::Amazon::S3::Request::Role::HTTP::Method::DELETE';
9             with 'Net::Amazon::S3::Request::Role::Query::Action::Tagging';
10             with 'Net::Amazon::S3::Request::Role::Query::Param::Version_id';
11              
12             __PACKAGE__->meta->make_immutable;
13              
14             1;
15              
16             __END__
17              
18             =pod
19              
20             =encoding UTF-8
21              
22             =head1 NAME
23              
24             Net::Amazon::S3::Operation::Object::Tags::Delete::Request - Internal class to build PutObjectTagging requests
25              
26             =head1 VERSION
27              
28             version 0.99
29              
30             =head1 SYNOPSIS
31              
32             my $request = Net::Amazon::S3::Operation::Bucket::Tags::Delete::Request->new (
33             s3 => $s3,
34             bucket => $bucket,
35             );
36              
37             =head1 DESCRIPTION
38              
39             Implements a request part of an operation L<DeleteBucketTagging|https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketTagging.html>
40              
41             =head1 PROPERIES
42              
43             =head2 version_id
44              
45             Optional.
46              
47             =head1 AUTHOR
48              
49             Branislav Zahradník <barney@cpan.org>
50              
51             =head1 COPYRIGHT AND LICENSE
52              
53             This module is a part of L<Net::Amazon::S3> distribution.
54              
55             =head1 AUTHOR
56              
57             Branislav Zahradník <barney@cpan.org>
58              
59             =head1 COPYRIGHT AND LICENSE
60              
61             This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník.
62              
63             This is free software; you can redistribute it and/or modify it under
64             the same terms as the Perl 5 programming language system itself.
65              
66             =cut