line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Glue::BatchGetPartitionResponse; |
3
|
1
|
|
|
1
|
|
493
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
4
|
|
|
|
|
|
|
has Partitions => (is => 'ro', isa => 'ArrayRef[Paws::Glue::Partition]'); |
5
|
|
|
|
|
|
|
has UnprocessedKeys => (is => 'ro', isa => 'ArrayRef[Paws::Glue::PartitionValueList]'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::Glue::BatchGetPartitionResponse |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 Partitions => ArrayRef[L<Paws::Glue::Partition>] |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
A list of the requested partitions. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 UnprocessedKeys => ArrayRef[L<Paws::Glue::PartitionValueList>] |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
A list of the partition values in the request for which partions were |
26
|
|
|
|
|
|
|
not returned. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 _request_id => Str |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=cut |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
1; |