line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::Amazon::S3::Request::Role::Query::Action; |
2
|
|
|
|
|
|
|
# ABSTRACT: query action role |
3
|
|
|
|
|
|
|
$Net::Amazon::S3::Request::Role::Query::Action::VERSION = '0.99'; |
4
|
99
|
|
|
99
|
|
112543
|
use MooseX::Role::Parameterized; |
|
99
|
|
|
|
|
6010213
|
|
|
99
|
|
|
|
|
527
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
parameter action => ( |
7
|
|
|
|
|
|
|
is => 'ro', |
8
|
|
|
|
|
|
|
isa => 'Str', |
9
|
|
|
|
|
|
|
); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
role { |
12
|
|
|
|
|
|
|
my ($params) = @_; |
13
|
|
|
|
|
|
|
my $action = $params->action; |
14
|
|
|
|
|
|
|
|
15
|
368
|
|
|
368
|
|
1395
|
method '_request_query_action' => sub { $action }; |
|
|
|
|
368
|
|
|
|
|
|
|
|
368
|
|
|
|
|
|
|
|
368
|
|
|
|
|
|
|
|
368
|
|
|
|
|
|
|
|
368
|
|
|
|
16
|
|
|
|
|
|
|
}; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__END__ |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=pod |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=encoding UTF-8 |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 NAME |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Net::Amazon::S3::Request::Role::Query::Action - query action role |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 VERSION |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
version 0.99 |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 AUTHOR |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
Branislav Zahradník <barney@cpan.org> |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
43
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=cut |