line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::Amazon::S3::Operation::Bucket::Location::Request; |
2
|
|
|
|
|
|
|
# ABSTRACT: An internal class to get a bucket's location constraint |
3
|
|
|
|
|
|
|
$Net::Amazon::S3::Operation::Bucket::Location::Request::VERSION = '0.99'; |
4
|
99
|
|
|
99
|
|
771
|
use Moose 0.85; |
|
99
|
|
|
|
|
2597
|
|
|
99
|
|
|
|
|
744
|
|
5
|
99
|
|
|
99
|
|
666673
|
use MooseX::StrictConstructor 0.16; |
|
99
|
|
|
|
|
2294
|
|
|
99
|
|
|
|
|
788
|
|
6
|
|
|
|
|
|
|
extends 'Net::Amazon::S3::Request::Bucket'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
with 'Net::Amazon::S3::Request::Role::Query::Action::Location'; |
9
|
|
|
|
|
|
|
with 'Net::Amazon::S3::Request::Role::HTTP::Method::GET'; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
__END__ |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=pod |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=encoding UTF-8 |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NAME |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Net::Amazon::S3::Operation::Bucket::Location::Request - An internal class to get a bucket's location constraint |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 VERSION |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
version 0.99 |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 SYNOPSIS |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
my $request = Net::Amazon::S3::Operation::Bucket::Location::Request->new ( |
32
|
|
|
|
|
|
|
s3 => $s3, |
33
|
|
|
|
|
|
|
bucket => $bucket, |
34
|
|
|
|
|
|
|
); |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 DESCRIPTION |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
This module gets a bucket's location constraint. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Implements operation L<< GetBucketLocation|https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLocation.html >> |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=for test_synopsis no strict 'vars' |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 METHODS |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 http_request |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
This method returns a HTTP::Request object. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 AUTHOR |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Branislav Zahradník <barney@cpan.org> |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
59
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=cut |