File Coverage

blib/lib/Cfn/Resource/AWS/ApiGateway/Deployment.pm
Criterion Covered Total %
statement 44 44 100.0
branch n/a
condition n/a
subroutine 16 16 100.0
pod 0 2 0.0
total 60 62 96.7


line stmt bran cond sub pod time code
1             # AWS::ApiGateway::Deployment generated from spec 5.3.0
2 4     4   2822 use Moose::Util::TypeConstraints;
  4         11  
  4         41  
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   8691 use Moose;
  4         13  
  4         29  
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 1115 [ '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-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::AWS::ApiGateway::Deployment::MethodSettingValue->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::AWS::ApiGateway::Deployment::MethodSettingValue {
59 4     4   29901 use Moose;
  4         12  
  4         21  
60 4     4   26143 use MooseX::StrictConstructor;
  4         11  
  4         35  
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::AWS::ApiGateway::Deployment::CanarySettingValue->new( %$_ );
85             }
86             };
87              
88             package Cfn::Resource::Properties::AWS::ApiGateway::Deployment::CanarySettingValue {
89 4     4   14483 use Moose;
  4         20  
  4         25  
90 4     4   26004 use MooseX::StrictConstructor;
  4         11  
  4         23  
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::AWS::ApiGateway::Deployment::AccessLogSettingValue->new( %$_ );
108             }
109             };
110              
111             package Cfn::Resource::Properties::AWS::ApiGateway::Deployment::AccessLogSettingValue {
112 4     4   13409 use Moose;
  4         12  
  4         24  
113 4     4   25792 use MooseX::StrictConstructor;
  4         12  
  4         23  
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::AWS::ApiGateway::Deployment::StageDescriptionValue->new( %$_ );
130             }
131             };
132              
133             package Cfn::Resource::Properties::AWS::ApiGateway::Deployment::StageDescriptionValue {
134 4     4   13319 use Moose;
  4         12  
  4         19  
135 4     4   26152 use MooseX::StrictConstructor;
  4         11  
  4         22  
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::AWS::ApiGateway::Deployment::DeploymentCanarySettingsValue->new( %$_ );
169             }
170             };
171              
172             package Cfn::Resource::Properties::AWS::ApiGateway::Deployment::DeploymentCanarySettingsValue {
173 4     4   14656 use Moose;
  4         11  
  4         160  
174 4     4   26404 use MooseX::StrictConstructor;
  4         13  
  4         21  
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   12874 use Moose;
  4         109  
  4         24  
184 4     4   26253 use MooseX::StrictConstructor;
  4         15  
  4         22  
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;