line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::Amazon::S3::Request::Service; |
2
|
|
|
|
|
|
|
# ABSTRACT: Base class for all S3 Service operations |
3
|
|
|
|
|
|
|
$Net::Amazon::S3::Request::Service::VERSION = '0.98'; |
4
|
96
|
|
|
96
|
|
64653
|
use Moose 0.85; |
|
96
|
|
|
|
|
2142
|
|
|
96
|
|
|
|
|
735
|
|
5
|
96
|
|
|
96
|
|
647043
|
use MooseX::StrictConstructor 0.16; |
|
96
|
|
|
|
|
2121
|
|
|
96
|
|
|
|
|
716
|
|
6
|
|
|
|
|
|
|
extends 'Net::Amazon::S3::Request'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
__END__ |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=pod |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=encoding UTF-8 |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Net::Amazon::S3::Request::Service - Base class for all S3 Service operations |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 VERSION |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
version 0.98 |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 AUTHOR |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Branislav Zahradník <barney@cpan.org> |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
35
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=cut |