File Coverage

blib/lib/Paws/CodeCommit/RepositoryMetadata.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::CodeCommit::RepositoryMetadata;
2 1     1   501 use Moose;
  1         4  
  1         8  
3             has AccountId => (is => 'ro', isa => 'Str', request_name => 'accountId', traits => ['NameInRequest']);
4             has Arn => (is => 'ro', isa => 'Str');
5             has CloneUrlHttp => (is => 'ro', isa => 'Str', request_name => 'cloneUrlHttp', traits => ['NameInRequest']);
6             has CloneUrlSsh => (is => 'ro', isa => 'Str', request_name => 'cloneUrlSsh', traits => ['NameInRequest']);
7             has CreationDate => (is => 'ro', isa => 'Str', request_name => 'creationDate', traits => ['NameInRequest']);
8             has DefaultBranch => (is => 'ro', isa => 'Str', request_name => 'defaultBranch', traits => ['NameInRequest']);
9             has LastModifiedDate => (is => 'ro', isa => 'Str', request_name => 'lastModifiedDate', traits => ['NameInRequest']);
10             has RepositoryDescription => (is => 'ro', isa => 'Str', request_name => 'repositoryDescription', traits => ['NameInRequest']);
11             has RepositoryId => (is => 'ro', isa => 'Str', request_name => 'repositoryId', traits => ['NameInRequest']);
12             has RepositoryName => (is => 'ro', isa => 'Str', request_name => 'repositoryName', traits => ['NameInRequest']);
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::CodeCommit::RepositoryMetadata
20              
21             =head1 USAGE
22              
23             This class represents one of two things:
24              
25             =head3 Arguments in a call to a service
26              
27             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
28             Each attribute should be used as a named argument in the calls that expect this type of object.
29              
30             As an example, if Att1 is expected to be a Paws::CodeCommit::RepositoryMetadata object:
31              
32             $service_obj->Method(Att1 => { AccountId => $value, ..., RepositoryName => $value });
33              
34             =head3 Results returned from an API call
35              
36             Use accessors for each attribute. If Att1 is expected to be an Paws::CodeCommit::RepositoryMetadata object:
37              
38             $result = $service_obj->Method(...);
39             $result->Att1->AccountId
40              
41             =head1 DESCRIPTION
42              
43             Information about a repository.
44              
45             =head1 ATTRIBUTES
46              
47              
48             =head2 AccountId => Str
49              
50             The ID of the AWS account associated with the repository.
51              
52              
53             =head2 Arn => Str
54              
55             The Amazon Resource Name (ARN) of the repository.
56              
57              
58             =head2 CloneUrlHttp => Str
59              
60             The URL to use for cloning the repository over HTTPS.
61              
62              
63             =head2 CloneUrlSsh => Str
64              
65             The URL to use for cloning the repository over SSH.
66              
67              
68             =head2 CreationDate => Str
69              
70             The date and time the repository was created, in timestamp format.
71              
72              
73             =head2 DefaultBranch => Str
74              
75             The repository's default branch name.
76              
77              
78             =head2 LastModifiedDate => Str
79              
80             The date and time the repository was last modified, in timestamp
81             format.
82              
83              
84             =head2 RepositoryDescription => Str
85              
86             A comment or description about the repository.
87              
88              
89             =head2 RepositoryId => Str
90              
91             The ID of the repository.
92              
93              
94             =head2 RepositoryName => Str
95              
96             The repository's name.
97              
98              
99              
100             =head1 SEE ALSO
101              
102             This class forms part of L<Paws>, describing an object used in L<Paws::CodeCommit>
103              
104             =head1 BUGS and CONTRIBUTIONS
105              
106             The source code is located here: https://github.com/pplu/aws-sdk-perl
107              
108             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
109              
110             =cut
111