line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ApiGateway::UsagePlanKey; |
3
|
1
|
|
|
1
|
|
521
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has Id => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'id'); |
5
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name'); |
6
|
|
|
|
|
|
|
has Type => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'type'); |
7
|
|
|
|
|
|
|
has Value => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'value'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
1; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::ApiGateway::UsagePlanKey |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 Id => Str |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The Id of a usage plan key. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head2 Name => Str |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
The name of a usage plan key. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 Type => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
The type of a usage plan key. Currently, the valid key type is |
34
|
|
|
|
|
|
|
C<API_KEY>. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 Value => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
The value of a usage plan key. |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head2 _request_id => Str |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=cut |
46
|
|
|
|
|
|
|
|