File Coverage

blib/lib/Cfn/Resource/AWS/EKS/Nodegroup.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::EKS::Nodegroup generated from spec 18.4.0
2 1     1   751 use Moose::Util::TypeConstraints;
  1         2  
  1         12  
3              
4             coerce 'Cfn::Resource::Properties::AWS::EKS::Nodegroup',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::EKS::Nodegroup->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::EKS::Nodegroup {
9 1     1   2270 use Moose;
  1         3  
  1         7  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::EKS::Nodegroup', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 5 [ 'Arn','ClusterName','NodegroupName' ]
15             }
16             sub supported_regions {
17 1     1 0 1124 [ 'ap-east-1','ap-northeast-1','ap-northeast-2','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-west-1','us-west-2' ]
18             }
19             }
20              
21              
22              
23             subtype 'Cfn::Resource::Properties::AWS::EKS::Nodegroup::ScalingConfig',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::EKS::Nodegroup::ScalingConfig',
27             from 'HashRef',
28             via {
29             if (my $f = Cfn::TypeLibrary::try_function($_)) {
30             return $f
31             } else {
32             return Cfn::Resource::Properties::Object::AWS::EKS::Nodegroup::ScalingConfig->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::Object::AWS::EKS::Nodegroup::ScalingConfig {
37 1     1   7207 use Moose;
  1         3  
  1         13  
38 1     1   6495 use MooseX::StrictConstructor;
  1         2  
  1         9  
39             extends 'Cfn::Value::TypedValue';
40            
41             has DesiredSize => (isa => 'Cfn::Value::Double', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
42             has MaxSize => (isa => 'Cfn::Value::Double', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
43             has MinSize => (isa => 'Cfn::Value::Double', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
44             }
45              
46             subtype 'Cfn::Resource::Properties::AWS::EKS::Nodegroup::RemoteAccess',
47             as 'Cfn::Value';
48              
49             coerce 'Cfn::Resource::Properties::AWS::EKS::Nodegroup::RemoteAccess',
50             from 'HashRef',
51             via {
52             if (my $f = Cfn::TypeLibrary::try_function($_)) {
53             return $f
54             } else {
55             return Cfn::Resource::Properties::Object::AWS::EKS::Nodegroup::RemoteAccess->new( %$_ );
56             }
57             };
58              
59             package Cfn::Resource::Properties::Object::AWS::EKS::Nodegroup::RemoteAccess {
60 1     1   3744 use Moose;
  1         4  
  1         5  
61 1     1   6510 use MooseX::StrictConstructor;
  1         2  
  1         7  
62             extends 'Cfn::Value::TypedValue';
63            
64             has Ec2SshKey => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
65             has SourceSecurityGroups => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
66             }
67              
68             subtype 'Cfn::Resource::Properties::AWS::EKS::Nodegroup::LaunchTemplateSpecification',
69             as 'Cfn::Value';
70              
71             coerce 'Cfn::Resource::Properties::AWS::EKS::Nodegroup::LaunchTemplateSpecification',
72             from 'HashRef',
73             via {
74             if (my $f = Cfn::TypeLibrary::try_function($_)) {
75             return $f
76             } else {
77             return Cfn::Resource::Properties::Object::AWS::EKS::Nodegroup::LaunchTemplateSpecification->new( %$_ );
78             }
79             };
80              
81             package Cfn::Resource::Properties::Object::AWS::EKS::Nodegroup::LaunchTemplateSpecification {
82 1     1   3394 use Moose;
  1         2  
  1         6  
83 1     1   6497 use MooseX::StrictConstructor;
  1         5  
  1         5  
84             extends 'Cfn::Value::TypedValue';
85            
86             has Id => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
87             has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
88             has Version => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
89             }
90              
91             package Cfn::Resource::Properties::AWS::EKS::Nodegroup {
92 1     1   3297 use Moose;
  1         2  
  1         6  
93 1     1   6826 use MooseX::StrictConstructor;
  1         3  
  1         4  
94             extends 'Cfn::Resource::Properties';
95            
96             has AmiType => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
97             has ClusterName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
98             has DiskSize => (isa => 'Cfn::Value::Double', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
99             has ForceUpdateEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
100             has InstanceTypes => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
101             has Labels => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
102             has LaunchTemplate => (isa => 'Cfn::Resource::Properties::AWS::EKS::Nodegroup::LaunchTemplateSpecification', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
103             has NodeRole => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
104             has NodegroupName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
105             has ReleaseVersion => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
106             has RemoteAccess => (isa => 'Cfn::Resource::Properties::AWS::EKS::Nodegroup::RemoteAccess', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
107             has ScalingConfig => (isa => 'Cfn::Resource::Properties::AWS::EKS::Nodegroup::ScalingConfig', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
108             has Subnets => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
109             has Tags => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
110             has Version => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
111             }
112              
113             1;
114             ### main pod documentation begin ###
115              
116             =encoding UTF-8
117              
118             =head1 NAME
119              
120             Cfn::Resource::AWS::EKS::Nodegroup - Cfn resource for AWS::EKS::Nodegroup
121              
122             =head1 DESCRIPTION
123              
124             This module implements a Perl module that represents the CloudFormation object AWS::EKS::Nodegroup.
125              
126             See L<Cfn> for more information on how to use it.
127              
128             =head1 AUTHOR
129              
130             Jose Luis Martinez
131             CAPSiDE
132             jlmartinez@capside.com
133              
134             =head1 COPYRIGHT and LICENSE
135              
136             Copyright (c) 2013 by CAPSiDE
137             This code is distributed under the Apache 2 License. The full text of the
138             license can be found in the LICENSE file included with this module.
139              
140             =cut