line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# AWS::ApiGateway::Deployment generated from spec 18.4.0 |
2
|
4
|
|
|
4
|
|
2879
|
use Moose::Util::TypeConstraints; |
|
4
|
|
|
|
|
13
|
|
|
4
|
|
|
|
|
56
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment', |
5
|
|
|
|
|
|
|
from 'HashRef', |
6
|
|
|
|
|
|
|
via { Cfn::Resource::Properties::AWS::ApiGateway::Deployment->new( %$_ ) }; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
package Cfn::Resource::AWS::ApiGateway::Deployment { |
9
|
4
|
|
|
4
|
|
8948
|
use Moose; |
|
4
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
45
|
|
10
|
|
|
|
|
|
|
extends 'Cfn::Resource'; |
11
|
|
|
|
|
|
|
has Properties => (isa => 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment', is => 'rw', coerce => 1); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub AttributeList { |
14
|
1
|
|
|
1
|
0
|
3
|
[ ] |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
sub supported_regions { |
17
|
1
|
|
|
1
|
0
|
1134
|
[ '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::Deployment::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::Deployment::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::Deployment::MethodSetting')->coerce($_) |
41
|
|
|
|
|
|
|
} @$_ |
42
|
|
|
|
|
|
|
]); |
43
|
|
|
|
|
|
|
}; |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::MethodSetting', |
46
|
|
|
|
|
|
|
as 'Cfn::Value'; |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::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::Deployment::MethodSetting->new( %$_ ); |
55
|
|
|
|
|
|
|
} |
56
|
|
|
|
|
|
|
}; |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::ApiGateway::Deployment::MethodSetting { |
59
|
4
|
|
|
4
|
|
30813
|
use Moose; |
|
4
|
|
|
|
|
12
|
|
|
4
|
|
|
|
|
26
|
|
60
|
4
|
|
|
4
|
|
27296
|
use MooseX::StrictConstructor; |
|
4
|
|
|
|
|
12
|
|
|
4
|
|
|
|
|
39
|
|
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::Deployment::CanarySetting', |
76
|
|
|
|
|
|
|
as 'Cfn::Value'; |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::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::Deployment::CanarySetting->new( %$_ ); |
85
|
|
|
|
|
|
|
} |
86
|
|
|
|
|
|
|
}; |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::ApiGateway::Deployment::CanarySetting { |
89
|
4
|
|
|
4
|
|
15012
|
use Moose; |
|
4
|
|
|
|
|
12
|
|
|
4
|
|
|
|
|
22
|
|
90
|
4
|
|
|
4
|
|
26340
|
use MooseX::StrictConstructor; |
|
4
|
|
|
|
|
10
|
|
|
4
|
|
|
|
|
28
|
|
91
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
has PercentTraffic => (isa => 'Cfn::Value::Double', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
94
|
|
|
|
|
|
|
has StageVariableOverrides => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
95
|
|
|
|
|
|
|
has UseStageCache => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
96
|
|
|
|
|
|
|
} |
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::AccessLogSetting', |
99
|
|
|
|
|
|
|
as 'Cfn::Value'; |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::AccessLogSetting', |
102
|
|
|
|
|
|
|
from 'HashRef', |
103
|
|
|
|
|
|
|
via { |
104
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
105
|
|
|
|
|
|
|
return $f |
106
|
|
|
|
|
|
|
} else { |
107
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::ApiGateway::Deployment::AccessLogSetting->new( %$_ ); |
108
|
|
|
|
|
|
|
} |
109
|
|
|
|
|
|
|
}; |
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::ApiGateway::Deployment::AccessLogSetting { |
112
|
4
|
|
|
4
|
|
13875
|
use Moose; |
|
4
|
|
|
|
|
14
|
|
|
4
|
|
|
|
|
30
|
|
113
|
4
|
|
|
4
|
|
26791
|
use MooseX::StrictConstructor; |
|
4
|
|
|
|
|
12
|
|
|
4
|
|
|
|
|
22
|
|
114
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
has DestinationArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
117
|
|
|
|
|
|
|
has Format => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
118
|
|
|
|
|
|
|
} |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::StageDescription', |
121
|
|
|
|
|
|
|
as 'Cfn::Value'; |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::StageDescription', |
124
|
|
|
|
|
|
|
from 'HashRef', |
125
|
|
|
|
|
|
|
via { |
126
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
127
|
|
|
|
|
|
|
return $f |
128
|
|
|
|
|
|
|
} else { |
129
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::ApiGateway::Deployment::StageDescription->new( %$_ ); |
130
|
|
|
|
|
|
|
} |
131
|
|
|
|
|
|
|
}; |
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::ApiGateway::Deployment::StageDescription { |
134
|
4
|
|
|
4
|
|
13517
|
use Moose; |
|
4
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
23
|
|
135
|
4
|
|
|
4
|
|
26903
|
use MooseX::StrictConstructor; |
|
4
|
|
|
|
|
18
|
|
|
4
|
|
|
|
|
2351
|
|
136
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
has AccessLogSetting => (isa => 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::AccessLogSetting', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
139
|
|
|
|
|
|
|
has CacheClusterEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
140
|
|
|
|
|
|
|
has CacheClusterSize => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
141
|
|
|
|
|
|
|
has CacheDataEncrypted => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
142
|
|
|
|
|
|
|
has CacheTtlInSeconds => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
143
|
|
|
|
|
|
|
has CachingEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
144
|
|
|
|
|
|
|
has CanarySetting => (isa => 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::CanarySetting', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
145
|
|
|
|
|
|
|
has ClientCertificateId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
146
|
|
|
|
|
|
|
has DataTraceEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
147
|
|
|
|
|
|
|
has Description => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
148
|
|
|
|
|
|
|
has DocumentationVersion => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
149
|
|
|
|
|
|
|
has LoggingLevel => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
150
|
|
|
|
|
|
|
has MethodSettings => (isa => 'ArrayOfCfn::Resource::Properties::AWS::ApiGateway::Deployment::MethodSetting', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
151
|
|
|
|
|
|
|
has MetricsEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
152
|
|
|
|
|
|
|
has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
153
|
|
|
|
|
|
|
has ThrottlingBurstLimit => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
154
|
|
|
|
|
|
|
has ThrottlingRateLimit => (isa => 'Cfn::Value::Double', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
155
|
|
|
|
|
|
|
has TracingEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
156
|
|
|
|
|
|
|
has Variables => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
157
|
|
|
|
|
|
|
} |
158
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::DeploymentCanarySettings', |
160
|
|
|
|
|
|
|
as 'Cfn::Value'; |
161
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::DeploymentCanarySettings', |
163
|
|
|
|
|
|
|
from 'HashRef', |
164
|
|
|
|
|
|
|
via { |
165
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
166
|
|
|
|
|
|
|
return $f |
167
|
|
|
|
|
|
|
} else { |
168
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::ApiGateway::Deployment::DeploymentCanarySettings->new( %$_ ); |
169
|
|
|
|
|
|
|
} |
170
|
|
|
|
|
|
|
}; |
171
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::ApiGateway::Deployment::DeploymentCanarySettings { |
173
|
4
|
|
|
4
|
|
14591
|
use Moose; |
|
4
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
185
|
|
174
|
4
|
|
|
4
|
|
27490
|
use MooseX::StrictConstructor; |
|
4
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
24
|
|
175
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
176
|
|
|
|
|
|
|
|
177
|
|
|
|
|
|
|
has PercentTraffic => (isa => 'Cfn::Value::Double', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
178
|
|
|
|
|
|
|
has StageVariableOverrides => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
179
|
|
|
|
|
|
|
has UseStageCache => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
180
|
|
|
|
|
|
|
} |
181
|
|
|
|
|
|
|
|
182
|
|
|
|
|
|
|
package Cfn::Resource::Properties::AWS::ApiGateway::Deployment { |
183
|
4
|
|
|
4
|
|
13584
|
use Moose; |
|
4
|
|
|
|
|
115
|
|
|
4
|
|
|
|
|
25
|
|
184
|
4
|
|
|
4
|
|
26460
|
use MooseX::StrictConstructor; |
|
4
|
|
|
|
|
12
|
|
|
4
|
|
|
|
|
34
|
|
185
|
|
|
|
|
|
|
extends 'Cfn::Resource::Properties'; |
186
|
|
|
|
|
|
|
|
187
|
|
|
|
|
|
|
has DeploymentCanarySettings => (isa => 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::DeploymentCanarySettings', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
188
|
|
|
|
|
|
|
has Description => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
189
|
|
|
|
|
|
|
has RestApiId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
190
|
|
|
|
|
|
|
has StageDescription => (isa => 'Cfn::Resource::Properties::AWS::ApiGateway::Deployment::StageDescription', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
191
|
|
|
|
|
|
|
has StageName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
192
|
|
|
|
|
|
|
} |
193
|
|
|
|
|
|
|
|
194
|
|
|
|
|
|
|
1; |
195
|
|
|
|
|
|
|
### main pod documentation begin ### |
196
|
|
|
|
|
|
|
|
197
|
|
|
|
|
|
|
=encoding UTF-8 |
198
|
|
|
|
|
|
|
|
199
|
|
|
|
|
|
|
=head1 NAME |
200
|
|
|
|
|
|
|
|
201
|
|
|
|
|
|
|
Cfn::Resource::AWS::ApiGateway::Deployment - Cfn resource for AWS::ApiGateway::Deployment |
202
|
|
|
|
|
|
|
|
203
|
|
|
|
|
|
|
=head1 DESCRIPTION |
204
|
|
|
|
|
|
|
|
205
|
|
|
|
|
|
|
This module implements a Perl module that represents the CloudFormation object AWS::ApiGateway::Deployment. |
206
|
|
|
|
|
|
|
|
207
|
|
|
|
|
|
|
See L<Cfn> for more information on how to use it. |
208
|
|
|
|
|
|
|
|
209
|
|
|
|
|
|
|
=head1 AUTHOR |
210
|
|
|
|
|
|
|
|
211
|
|
|
|
|
|
|
Jose Luis Martinez |
212
|
|
|
|
|
|
|
CAPSiDE |
213
|
|
|
|
|
|
|
jlmartinez@capside.com |
214
|
|
|
|
|
|
|
|
215
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENSE |
216
|
|
|
|
|
|
|
|
217
|
|
|
|
|
|
|
Copyright (c) 2013 by CAPSiDE |
218
|
|
|
|
|
|
|
This code is distributed under the Apache 2 License. The full text of the |
219
|
|
|
|
|
|
|
license can be found in the LICENSE file included with this module. |
220
|
|
|
|
|
|
|
|
221
|
|
|
|
|
|
|
=cut |