File Coverage

blib/lib/Paws/ECR/CompleteLayerUploadResponse.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              
2             package Paws::ECR::CompleteLayerUploadResponse;
3 1     1   523 use Moose;
  1         3  
  1         9  
4             has LayerDigest => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'layerDigest' );
5             has RegistryId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'registryId' );
6             has RepositoryName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'repositoryName' );
7             has UploadId => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'uploadId' );
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::ECR::CompleteLayerUploadResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 LayerDigest => Str
21              
22             The C<sha256> digest of the image layer.
23              
24              
25             =head2 RegistryId => Str
26              
27             The registry ID associated with the request.
28              
29              
30             =head2 RepositoryName => Str
31              
32             The repository name associated with the request.
33              
34              
35             =head2 UploadId => Str
36              
37             The upload ID associated with the layer.
38              
39              
40             =head2 _request_id => Str
41              
42              
43             =cut
44              
45             1;