line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Glacier::ListJobsOutput; |
3
|
1
|
|
|
1
|
|
382
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has JobList => (is => 'ro', isa => 'ArrayRef[Paws::Glacier::GlacierJobDescription]'); |
5
|
|
|
|
|
|
|
has Marker => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
1; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::Glacier::ListJobsOutput |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 JobList => ArrayRef[L<Paws::Glacier::GlacierJobDescription>] |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
A list of job objects. Each job object contains metadata describing the |
22
|
|
|
|
|
|
|
job. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 Marker => Str |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
An opaque string used for pagination that specifies the job at which |
28
|
|
|
|
|
|
|
the listing of jobs should begin. You get the C<marker> value from a |
29
|
|
|
|
|
|
|
previous List Jobs response. You only need to include the marker if you |
30
|
|
|
|
|
|
|
are continuing the pagination of the results started in a previous List |
31
|
|
|
|
|
|
|
Jobs request. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 _request_id => Str |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=cut |
38
|
|
|
|
|
|
|
|