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 18.4.0
2 4     4   2969 use Moose::Util::TypeConstraints;
  4         11  
  4         55  
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   9252 use Moose;
  4         13  
  4         39  
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 4 [ ]
15             }
16             sub supported_regions {
17 1     1 0 1188 [ '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::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::Object::AWS::ApiGateway::Method::IntegrationResponse->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::ApiGateway::Method::IntegrationResponse {
59 4     4   31735 use Moose;
  4         14  
  4         32  
60 4     4   27431 use MooseX::StrictConstructor;
  4         14  
  4         40  
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::Object::AWS::ApiGateway::Method::MethodResponse->new( %$_ );
102             }
103             };
104              
105             package Cfn::Resource::Properties::Object::AWS::ApiGateway::Method::MethodResponse {
106 4     4   15659 use Moose;
  4         10  
  4         29  
107 4     4   27761 use MooseX::StrictConstructor;
  4         13  
  4         26  
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::Object::AWS::ApiGateway::Method::Integration->new( %$_ );
125             }
126             };
127              
128             package Cfn::Resource::Properties::Object::AWS::ApiGateway::Method::Integration {
129 4     4   14720 use Moose;
  4         10  
  4         24  
130 4     4   27162 use MooseX::StrictConstructor;
  4         14  
  4         23  
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   14308 use Moose;
  4         12  
  4         23  
151 4     4   27609 use MooseX::StrictConstructor;
  4         16  
  4         28  
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;
170             ### main pod documentation begin ###
171              
172             =encoding UTF-8
173              
174             =head1 NAME
175              
176             Cfn::Resource::AWS::ApiGateway::Method - Cfn resource for AWS::ApiGateway::Method
177              
178             =head1 DESCRIPTION
179              
180             This module implements a Perl module that represents the CloudFormation object AWS::ApiGateway::Method.
181              
182             See L<Cfn> for more information on how to use it.
183              
184             =head1 AUTHOR
185              
186             Jose Luis Martinez
187             CAPSiDE
188             jlmartinez@capside.com
189              
190             =head1 COPYRIGHT and LICENSE
191              
192             Copyright (c) 2013 by CAPSiDE
193             This code is distributed under the Apache 2 License. The full text of the
194             license can be found in the LICENSE file included with this module.
195              
196             =cut