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