File Coverage

blib/lib/Cfn/Resource/AWS/CodeStar/GitHubRepository.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::CodeStar::GitHubRepository generated from spec 21.0.0
2 1     1   833 use Moose::Util::TypeConstraints;
  1         4  
  1         14  
3              
4             coerce 'Cfn::Resource::Properties::AWS::CodeStar::GitHubRepository',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::CodeStar::GitHubRepository->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::CodeStar::GitHubRepository {
9 1     1   2426 use Moose;
  1         3  
  1         9  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::CodeStar::GitHubRepository', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 5 [ ]
15             }
16             sub supported_regions {
17 1     1 0 1312 [ 'ap-northeast-1','ap-northeast-2','ap-south-1','ap-southeast-1','ap-southeast-2','ca-central-1','eu-central-1','eu-north-1','eu-west-1','eu-west-2','eu-west-3','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::CodeStar::GitHubRepository::S3',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::CodeStar::GitHubRepository::S3',
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::CodeStar::GitHubRepository::S3->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::Object::AWS::CodeStar::GitHubRepository::S3 {
37 1     1   8163 use Moose;
  1         3  
  1         7  
38 1     1   6806 use MooseX::StrictConstructor;
  1         8  
  1         12  
39             extends 'Cfn::Value::TypedValue';
40            
41             has Bucket => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
42             has Key => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
43             has ObjectVersion => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
44             }
45              
46             subtype 'Cfn::Resource::Properties::AWS::CodeStar::GitHubRepository::Code',
47             as 'Cfn::Value';
48              
49             coerce 'Cfn::Resource::Properties::AWS::CodeStar::GitHubRepository::Code',
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::CodeStar::GitHubRepository::Code->new( %$_ );
56             }
57             };
58              
59             package Cfn::Resource::Properties::Object::AWS::CodeStar::GitHubRepository::Code {
60 1     1   4007 use Moose;
  1         3  
  1         7  
61 1     1   6814 use MooseX::StrictConstructor;
  1         2  
  1         5  
62             extends 'Cfn::Value::TypedValue';
63            
64             has S3 => (isa => 'Cfn::Resource::Properties::AWS::CodeStar::GitHubRepository::S3', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             }
66              
67             package Cfn::Resource::Properties::AWS::CodeStar::GitHubRepository {
68 1     1   3289 use Moose;
  1         4  
  1         7  
69 1     1   6861 use MooseX::StrictConstructor;
  1         9  
  1         10  
70             extends 'Cfn::Resource::Properties';
71            
72             has Code => (isa => 'Cfn::Resource::Properties::AWS::CodeStar::GitHubRepository::Code', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
73             has ConnectionArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
74             has EnableIssues => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
75             has IsPrivate => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
76             has RepositoryAccessToken => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
77             has RepositoryDescription => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
78             has RepositoryName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
79             has RepositoryOwner => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
80             }
81              
82             1;
83             ### main pod documentation begin ###
84              
85             =encoding UTF-8
86              
87             =head1 NAME
88              
89             Cfn::Resource::AWS::CodeStar::GitHubRepository - Cfn resource for AWS::CodeStar::GitHubRepository
90              
91             =head1 DESCRIPTION
92              
93             This module implements a Perl module that represents the CloudFormation object AWS::CodeStar::GitHubRepository.
94              
95             See L<Cfn> for more information on how to use it.
96              
97             =head1 AUTHOR
98              
99             Jose Luis Martinez
100             CAPSiDE
101             jlmartinez@capside.com
102              
103             =head1 COPYRIGHT and LICENSE
104              
105             Copyright (c) 2013 by CAPSiDE
106             This code is distributed under the Apache 2 License. The full text of the
107             license can be found in the LICENSE file included with this module.
108              
109             =cut