File Coverage

blib/lib/Cfn/Resource/AWS/IoTSiteWise/Asset.pm
Criterion Covered Total %
statement 26 26 100.0
branch n/a
condition n/a
subroutine 10 10 100.0
pod 0 2 0.0
total 36 38 94.7


line stmt bran cond sub pod time code
1             # AWS::IoTSiteWise::Asset generated from spec 20.1.0
2 1     1   726 use Moose::Util::TypeConstraints;
  1         3  
  1         10  
3              
4             coerce 'Cfn::Resource::Properties::AWS::IoTSiteWise::Asset',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::IoTSiteWise::Asset->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::IoTSiteWise::Asset {
9 1     1   2237 use Moose;
  1         3  
  1         7  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::IoTSiteWise::Asset', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 7 [ 'AssetArn','AssetId' ]
15             }
16             sub supported_regions {
17 1     1 0 1175 [ 'ap-southeast-1','ap-southeast-2','eu-central-1','eu-west-1','us-east-1','us-west-2' ]
18             }
19             }
20              
21              
22             subtype 'ArrayOfCfn::Resource::Properties::AWS::IoTSiteWise::Asset::AssetProperty',
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::IoTSiteWise::Asset::AssetProperty',
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::IoTSiteWise::Asset::AssetProperty')->coerce($_)
41             } @$_
42             ]);
43             };
44              
45             subtype 'Cfn::Resource::Properties::AWS::IoTSiteWise::Asset::AssetProperty',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::IoTSiteWise::Asset::AssetProperty',
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::IoTSiteWise::Asset::AssetProperty->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::IoTSiteWise::Asset::AssetProperty {
59 1     1   7724 use Moose;
  1         3  
  1         7  
60 1     1   6573 use MooseX::StrictConstructor;
  1         3  
  1         10  
61             extends 'Cfn::Value::TypedValue';
62            
63             has Alias => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has LogicalId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             has NotificationState => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
66             }
67             subtype 'ArrayOfCfn::Resource::Properties::AWS::IoTSiteWise::Asset::AssetHierarchy',
68             as 'Cfn::Value',
69             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
70             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
71              
72             coerce 'ArrayOfCfn::Resource::Properties::AWS::IoTSiteWise::Asset::AssetHierarchy',
73             from 'HashRef',
74             via {
75             if (my $f = Cfn::TypeLibrary::try_function($_)) {
76             return $f
77             } else {
78             die 'Only accepts functions';
79             }
80             },
81             from 'ArrayRef',
82             via {
83             Cfn::Value::Array->new(Value => [
84             map {
85             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::IoTSiteWise::Asset::AssetHierarchy')->coerce($_)
86             } @$_
87             ]);
88             };
89              
90             subtype 'Cfn::Resource::Properties::AWS::IoTSiteWise::Asset::AssetHierarchy',
91             as 'Cfn::Value';
92              
93             coerce 'Cfn::Resource::Properties::AWS::IoTSiteWise::Asset::AssetHierarchy',
94             from 'HashRef',
95             via {
96             if (my $f = Cfn::TypeLibrary::try_function($_)) {
97             return $f
98             } else {
99             return Cfn::Resource::Properties::Object::AWS::IoTSiteWise::Asset::AssetHierarchy->new( %$_ );
100             }
101             };
102              
103             package Cfn::Resource::Properties::Object::AWS::IoTSiteWise::Asset::AssetHierarchy {
104 1     1   3831 use Moose;
  1         3  
  1         8  
105 1     1   6820 use MooseX::StrictConstructor;
  1         2  
  1         6  
106             extends 'Cfn::Value::TypedValue';
107            
108             has ChildAssetId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
109             has LogicalId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
110             }
111              
112             package Cfn::Resource::Properties::AWS::IoTSiteWise::Asset {
113 1     1   3409 use Moose;
  1         2  
  1         7  
114 1     1   6859 use MooseX::StrictConstructor;
  1         3  
  1         6  
115             extends 'Cfn::Resource::Properties';
116            
117             has AssetHierarchies => (isa => 'ArrayOfCfn::Resource::Properties::AWS::IoTSiteWise::Asset::AssetHierarchy', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
118             has AssetModelId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
119             has AssetName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
120             has AssetProperties => (isa => 'ArrayOfCfn::Resource::Properties::AWS::IoTSiteWise::Asset::AssetProperty', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
121             has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
122             }
123              
124             1;
125             ### main pod documentation begin ###
126              
127             =encoding UTF-8
128              
129             =head1 NAME
130              
131             Cfn::Resource::AWS::IoTSiteWise::Asset - Cfn resource for AWS::IoTSiteWise::Asset
132              
133             =head1 DESCRIPTION
134              
135             This module implements a Perl module that represents the CloudFormation object AWS::IoTSiteWise::Asset.
136              
137             See L<Cfn> for more information on how to use it.
138              
139             =head1 AUTHOR
140              
141             Jose Luis Martinez
142             CAPSiDE
143             jlmartinez@capside.com
144              
145             =head1 COPYRIGHT and LICENSE
146              
147             Copyright (c) 2013 by CAPSiDE
148             This code is distributed under the Apache 2 License. The full text of the
149             license can be found in the LICENSE file included with this module.
150              
151             =cut