File Coverage

blib/lib/Paws/ECR/UploadLayerPartResponse.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::UploadLayerPartResponse;
3 1     1   579 use Moose;
  1         3  
  1         8  
4             has LastByteReceived => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'lastByteReceived' );
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::UploadLayerPartResponse
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 LastByteReceived => Int
21              
22             The integer value of the last byte received in the request.
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 request.
38              
39              
40             =head2 _request_id => Str
41              
42              
43             =cut
44              
45             1;