File Coverage

blib/lib/Cfn/Resource/AWS/ApiGateway/Method.pm
Criterion Covered Total %
statement 32 32 100.0
branch n/a
condition n/a
subroutine 12 12 100.0
pod 0 2 0.0
total 44 46 95.6


line stmt bran cond sub pod time code
1             # AWS::ApiGateway::Method generated from spec 5.3.0
2 4     4   2699 use Moose::Util::TypeConstraints;
  4         11  
  4         42  
3              
4             coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Method',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::ApiGateway::Method->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::ApiGateway::Method {
9 4     4   8699 use Moose;
  4         13  
  4         29  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::ApiGateway::Method', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 5 [ ]
15             }
16             sub supported_regions {
17 1     1 0 1100 [ '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::Method::IntegrationResponse',
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::Method::IntegrationResponse',
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::Method::IntegrationResponse')->coerce($_)
41             } @$_
42             ]);
43             };
44              
45             subtype 'Cfn::Resource::Properties::AWS::ApiGateway::Method::IntegrationResponse',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Method::IntegrationResponse',
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::Method::IntegrationResponseValue->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::AWS::ApiGateway::Method::IntegrationResponseValue {
59 4     4   29801 use Moose;
  4         11  
  4         23  
60 4     4   27014 use MooseX::StrictConstructor;
  4         11  
  4         39  
61             extends 'Cfn::Value::TypedValue';
62            
63             has ContentHandling => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has ResponseParameters => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             has ResponseTemplates => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
66             has SelectionPattern => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
67             has StatusCode => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
68             }
69             subtype 'ArrayOfCfn::Resource::Properties::AWS::ApiGateway::Method::MethodResponse',
70             as 'Cfn::Value',
71             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
72             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
73              
74             coerce 'ArrayOfCfn::Resource::Properties::AWS::ApiGateway::Method::MethodResponse',
75             from 'HashRef',
76             via {
77             if (my $f = Cfn::TypeLibrary::try_function($_)) {
78             return $f
79             } else {
80             die 'Only accepts functions';
81             }
82             },
83             from 'ArrayRef',
84             via {
85             Cfn::Value::Array->new(Value => [
86             map {
87             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::ApiGateway::Method::MethodResponse')->coerce($_)
88             } @$_
89             ]);
90             };
91              
92             subtype 'Cfn::Resource::Properties::AWS::ApiGateway::Method::MethodResponse',
93             as 'Cfn::Value';
94              
95             coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Method::MethodResponse',
96             from 'HashRef',
97             via {
98             if (my $f = Cfn::TypeLibrary::try_function($_)) {
99             return $f
100             } else {
101             return Cfn::Resource::Properties::AWS::ApiGateway::Method::MethodResponseValue->new( %$_ );
102             }
103             };
104              
105             package Cfn::Resource::Properties::AWS::ApiGateway::Method::MethodResponseValue {
106 4     4   15341 use Moose;
  4         26  
  4         31  
107 4     4   26313 use MooseX::StrictConstructor;
  4         9  
  4         23  
108             extends 'Cfn::Value::TypedValue';
109            
110             has ResponseModels => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
111             has ResponseParameters => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
112             has StatusCode => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
113             }
114              
115             subtype 'Cfn::Resource::Properties::AWS::ApiGateway::Method::Integration',
116             as 'Cfn::Value';
117              
118             coerce 'Cfn::Resource::Properties::AWS::ApiGateway::Method::Integration',
119             from 'HashRef',
120             via {
121             if (my $f = Cfn::TypeLibrary::try_function($_)) {
122             return $f
123             } else {
124             return Cfn::Resource::Properties::AWS::ApiGateway::Method::IntegrationValue->new( %$_ );
125             }
126             };
127              
128             package Cfn::Resource::Properties::AWS::ApiGateway::Method::IntegrationValue {
129 4     4   13471 use Moose;
  4         10  
  4         25  
130 4     4   26179 use MooseX::StrictConstructor;
  4         14  
  4         25  
131             extends 'Cfn::Value::TypedValue';
132            
133             has CacheKeyParameters => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
134             has CacheNamespace => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
135             has ConnectionId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
136             has ConnectionType => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
137             has ContentHandling => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
138             has Credentials => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
139             has IntegrationHttpMethod => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
140             has IntegrationResponses => (isa => 'ArrayOfCfn::Resource::Properties::AWS::ApiGateway::Method::IntegrationResponse', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
141             has PassthroughBehavior => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
142             has RequestParameters => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
143             has RequestTemplates => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
144             has TimeoutInMillis => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
145             has Type => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
146             has Uri => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
147             }
148              
149             package Cfn::Resource::Properties::AWS::ApiGateway::Method {
150 4     4   13838 use Moose;
  4         11  
  4         20  
151 4     4   26292 use MooseX::StrictConstructor;
  4         10  
  4         30  
152             extends 'Cfn::Resource::Properties';
153            
154             has ApiKeyRequired => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
155             has AuthorizationScopes => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
156             has AuthorizationType => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
157             has AuthorizerId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
158             has HttpMethod => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
159             has Integration => (isa => 'Cfn::Resource::Properties::AWS::ApiGateway::Method::Integration', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
160             has MethodResponses => (isa => 'ArrayOfCfn::Resource::Properties::AWS::ApiGateway::Method::MethodResponse', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
161             has OperationName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
162             has RequestModels => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
163             has RequestParameters => (isa => 'Cfn::Value::Hash|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
164             has RequestValidatorId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
165             has ResourceId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
166             has RestApiId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
167             }
168              
169             1;