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 5.0.0
2 1     1   739 use Moose::Util::TypeConstraints;
  1         3  
  1         9  
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   2183 use Moose;
  1         3  
  1         8  
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 1031 [ '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::AWS::CodeStar::GitHubRepository::S3Value->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::AWS::CodeStar::GitHubRepository::S3Value {
37 1     1   7032 use Moose;
  1         3  
  1         6  
38 1     1   6533 use MooseX::StrictConstructor;
  1         4  
  1         11  
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::AWS::CodeStar::GitHubRepository::CodeValue->new( %$_ );
56             }
57             };
58              
59             package Cfn::Resource::Properties::AWS::CodeStar::GitHubRepository::CodeValue {
60 1     1   3522 use Moose;
  1         2  
  1         4  
61 1     1   6547 use MooseX::StrictConstructor;
  1         5  
  1         6  
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   3169 use Moose;
  1         5  
  1         11  
69 1     1   6488 use MooseX::StrictConstructor;
  1         2  
  1         5  
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 EnableIssues => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
74             has IsPrivate => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
75             has RepositoryAccessToken => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
76             has RepositoryDescription => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
77             has RepositoryName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
78             has RepositoryOwner => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
79             }
80              
81             1;