line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::ApiGateway::RestApi; |
3
|
1
|
|
|
1
|
|
493
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has BinaryMediaTypes => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'binaryMediaTypes'); |
5
|
|
|
|
|
|
|
has CreatedDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'createdDate'); |
6
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'description'); |
7
|
|
|
|
|
|
|
has Id => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'id'); |
8
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name'); |
9
|
|
|
|
|
|
|
has Version => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'version'); |
10
|
|
|
|
|
|
|
has Warnings => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'warnings'); |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
### main pod documentation begin ### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Paws::ApiGateway::RestApi |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 BinaryMediaTypes => ArrayRef[Str|Undef] |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
The list of binary media types supported by the RestApi. By default, |
27
|
|
|
|
|
|
|
the RestApi supports only UTF-8-encoded text payloads. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 CreatedDate => Str |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
The timestamp when the API was created. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 Description => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
The API's description. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 Id => Str |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The API's identifier. This identifier is unique across all of your APIs |
43
|
|
|
|
|
|
|
in Amazon API Gateway. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head2 Name => Str |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
The API's name. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 Version => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
A version identifier for the API. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head2 Warnings => ArrayRef[Str|Undef] |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
The warning messages reported when C<failonwarnings> is turned on |
59
|
|
|
|
|
|
|
during API import. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 _request_id => Str |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=cut |
66
|
|
|
|
|
|
|
|