line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# AWS::ApiGateway::Stage generated from spec 18.4.0 |
2
|
4
|
|
|
4
|
|
3079
|
use Moose::Util::TypeConstraints; |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
45
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Stage', |
5
|
|
|
|
|
|
|
from 'HashRef', |
6
|
|
|
|
|
|
|
via { Cfn::Resource::Properties::AWS::ApiGateway::Stage->new( %$_ ) }; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
package Cfn::Resource::AWS::ApiGateway::Stage { |
9
|
4
|
|
|
4
|
|
9412
|
use Moose; |
|
4
|
|
|
|
|
13
|
|
|
4
|
|
|
|
|
35
|
|
10
|
|
|
|
|
|
|
extends 'Cfn::Resource'; |
11
|
|
|
|
|
|
|
has Properties => (isa => 'Cfn::Resource::Properties::AWS::ApiGateway::Stage', is => 'rw', coerce => 1); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub AttributeList { |
14
|
1
|
|
|
1
|
0
|
4
|
[ ] |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
sub supported_regions { |
17
|
1
|
|
|
1
|
0
|
1194
|
[ 'af-south-1','ap-east-1','ap-northeast-1','ap-northeast-2','ap-northeast-3','ap-south-1','ap-southeast-1','ap-southeast-2','ca-central-1','cn-north-1','cn-northwest-1','eu-central-1','eu-north-1','eu-south-1','eu-west-1','eu-west-2','eu-west-3','me-south-1','sa-east-1','us-east-1','us-east-2','us-gov-east-1','us-gov-west-1','us-west-1','us-west-2' ] |
18
|
|
|
|
|
|
|
} |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
subtype 'ArrayOfCfn::Resource::Properties::AWS::ApiGateway::Stage::MethodSetting', |
23
|
|
|
|
|
|
|
as 'Cfn::Value', |
24
|
|
|
|
|
|
|
where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') }, |
25
|
|
|
|
|
|
|
message { "$_ is not a Cfn::Value or a Cfn::Value::Function" }; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
coerce 'ArrayOfCfn::Resource::Properties::AWS::ApiGateway::Stage::MethodSetting', |
28
|
|
|
|
|
|
|
from 'HashRef', |
29
|
|
|
|
|
|
|
via { |
30
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
31
|
|
|
|
|
|
|
return $f |
32
|
|
|
|
|
|
|
} else { |
33
|
|
|
|
|
|
|
die 'Only accepts functions'; |
34
|
|
|
|
|
|
|
} |
35
|
|
|
|
|
|
|
}, |
36
|
|
|
|
|
|
|
from 'ArrayRef', |
37
|
|
|
|
|
|
|
via { |
38
|
|
|
|
|
|
|
Cfn::Value::Array->new(Value => [ |
39
|
|
|
|
|
|
|
map { |
40
|
|
|
|
|
|
|
Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::ApiGateway::Stage::MethodSetting')->coerce($_) |
41
|
|
|
|
|
|
|
} @$_ |
42
|
|
|
|
|
|
|
]); |
43
|
|
|
|
|
|
|
}; |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::ApiGateway::Stage::MethodSetting', |
46
|
|
|
|
|
|
|
as 'Cfn::Value'; |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Stage::MethodSetting', |
49
|
|
|
|
|
|
|
from 'HashRef', |
50
|
|
|
|
|
|
|
via { |
51
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
52
|
|
|
|
|
|
|
return $f |
53
|
|
|
|
|
|
|
} else { |
54
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::ApiGateway::Stage::MethodSetting->new( %$_ ); |
55
|
|
|
|
|
|
|
} |
56
|
|
|
|
|
|
|
}; |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::ApiGateway::Stage::MethodSetting { |
59
|
4
|
|
|
4
|
|
32055
|
use Moose; |
|
4
|
|
|
|
|
15
|
|
|
4
|
|
|
|
|
34
|
|
60
|
4
|
|
|
4
|
|
26843
|
use MooseX::StrictConstructor; |
|
4
|
|
|
|
|
17
|
|
|
4
|
|
|
|
|
42
|
|
61
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
has CacheDataEncrypted => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
64
|
|
|
|
|
|
|
has CacheTtlInSeconds => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
65
|
|
|
|
|
|
|
has CachingEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
66
|
|
|
|
|
|
|
has DataTraceEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
67
|
|
|
|
|
|
|
has HttpMethod => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
68
|
|
|
|
|
|
|
has LoggingLevel => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
69
|
|
|
|
|
|
|
has MetricsEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
70
|
|
|
|
|
|
|
has ResourcePath => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
71
|
|
|
|
|
|
|
has ThrottlingBurstLimit => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
72
|
|
|
|
|
|
|
has ThrottlingRateLimit => (isa => 'Cfn::Value::Double', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
73
|
|
|
|
|
|
|
} |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::ApiGateway::Stage::CanarySetting', |
76
|
|
|
|
|
|
|
as 'Cfn::Value'; |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Stage::CanarySetting', |
79
|
|
|
|
|
|
|
from 'HashRef', |
80
|
|
|
|
|
|
|
via { |
81
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
82
|
|
|
|
|
|
|
return $f |
83
|
|
|
|
|
|
|
} else { |
84
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::ApiGateway::Stage::CanarySetting->new( %$_ ); |
85
|
|
|
|
|
|
|
} |
86
|
|
|
|
|
|
|
}; |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::ApiGateway::Stage::CanarySetting { |
89
|
4
|
|
|
4
|
|
15254
|
use Moose; |
|
4
|
|
|
|
|
13
|
|
|
4
|
|
|
|
|
28
|
|
90
|
4
|
|
|
4
|
|
26697
|
use MooseX::StrictConstructor; |
|
4
|
|
|
|
|
12
|
|
|
4
|
|
|
|
|
24
|
|
91
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
has DeploymentId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
94
|
|
|
|
|
|
|
has PercentTraffic => (isa => 'Cfn::Value::Double', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
95
|
|
|
|
|
|
|
has StageVariableOverrides => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
96
|
|
|
|
|
|
|
has UseStageCache => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
97
|
|
|
|
|
|
|
} |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::ApiGateway::Stage::AccessLogSetting', |
100
|
|
|
|
|
|
|
as 'Cfn::Value'; |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Stage::AccessLogSetting', |
103
|
|
|
|
|
|
|
from 'HashRef', |
104
|
|
|
|
|
|
|
via { |
105
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
106
|
|
|
|
|
|
|
return $f |
107
|
|
|
|
|
|
|
} else { |
108
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::ApiGateway::Stage::AccessLogSetting->new( %$_ ); |
109
|
|
|
|
|
|
|
} |
110
|
|
|
|
|
|
|
}; |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::ApiGateway::Stage::AccessLogSetting { |
113
|
4
|
|
|
4
|
|
14175
|
use Moose; |
|
4
|
|
|
|
|
13
|
|
|
4
|
|
|
|
|
36
|
|
114
|
4
|
|
|
4
|
|
27599
|
use MooseX::StrictConstructor; |
|
4
|
|
|
|
|
13
|
|
|
4
|
|
|
|
|
23
|
|
115
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
116
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
has DestinationArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
118
|
|
|
|
|
|
|
has Format => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
119
|
|
|
|
|
|
|
} |
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
package Cfn::Resource::Properties::AWS::ApiGateway::Stage { |
122
|
4
|
|
|
4
|
|
13192
|
use Moose; |
|
4
|
|
|
|
|
28
|
|
|
4
|
|
|
|
|
27
|
|
123
|
4
|
|
|
4
|
|
26543
|
use MooseX::StrictConstructor; |
|
4
|
|
|
|
|
18
|
|
|
4
|
|
|
|
|
21
|
|
124
|
|
|
|
|
|
|
extends 'Cfn::Resource::Properties'; |
125
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
has AccessLogSetting => (isa => 'Cfn::Resource::Properties::AWS::ApiGateway::Stage::AccessLogSetting', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
127
|
|
|
|
|
|
|
has CacheClusterEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
128
|
|
|
|
|
|
|
has CacheClusterSize => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
129
|
|
|
|
|
|
|
has CanarySetting => (isa => 'Cfn::Resource::Properties::AWS::ApiGateway::Stage::CanarySetting', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
130
|
|
|
|
|
|
|
has ClientCertificateId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
131
|
|
|
|
|
|
|
has DeploymentId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
132
|
|
|
|
|
|
|
has Description => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
133
|
|
|
|
|
|
|
has DocumentationVersion => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
134
|
|
|
|
|
|
|
has MethodSettings => (isa => 'ArrayOfCfn::Resource::Properties::AWS::ApiGateway::Stage::MethodSetting', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
135
|
|
|
|
|
|
|
has RestApiId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
136
|
|
|
|
|
|
|
has StageName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
137
|
|
|
|
|
|
|
has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
138
|
|
|
|
|
|
|
has TracingEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
139
|
|
|
|
|
|
|
has Variables => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
140
|
|
|
|
|
|
|
} |
141
|
|
|
|
|
|
|
|
142
|
|
|
|
|
|
|
1; |
143
|
|
|
|
|
|
|
### main pod documentation begin ### |
144
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
=encoding UTF-8 |
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
=head1 NAME |
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
Cfn::Resource::AWS::ApiGateway::Stage - Cfn resource for AWS::ApiGateway::Stage |
150
|
|
|
|
|
|
|
|
151
|
|
|
|
|
|
|
=head1 DESCRIPTION |
152
|
|
|
|
|
|
|
|
153
|
|
|
|
|
|
|
This module implements a Perl module that represents the CloudFormation object AWS::ApiGateway::Stage. |
154
|
|
|
|
|
|
|
|
155
|
|
|
|
|
|
|
See L<Cfn> for more information on how to use it. |
156
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
=head1 AUTHOR |
158
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
Jose Luis Martinez |
160
|
|
|
|
|
|
|
CAPSiDE |
161
|
|
|
|
|
|
|
jlmartinez@capside.com |
162
|
|
|
|
|
|
|
|
163
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENSE |
164
|
|
|
|
|
|
|
|
165
|
|
|
|
|
|
|
Copyright (c) 2013 by CAPSiDE |
166
|
|
|
|
|
|
|
This code is distributed under the Apache 2 License. The full text of the |
167
|
|
|
|
|
|
|
license can be found in the LICENSE file included with this module. |
168
|
|
|
|
|
|
|
|
169
|
|
|
|
|
|
|
=cut |