File Coverage

blib/lib/Paws/CloudSearchDomain/UploadDocumentsResponse.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::CloudSearchDomain::UploadDocumentsResponse;
3 1     1   863 use Moose;
  1         6  
  1         11  
4             has Adds => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'adds');
5             has Deletes => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'deletes');
6             has Status => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'status');
7             has Warnings => (is => 'ro', isa => 'ArrayRef[Paws::CloudSearchDomain::DocumentServiceWarning]', traits => ['NameInRequest'], request_name => 'warnings');
8              
9             has _request_id => (is => 'ro', isa => 'Str');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::CloudSearchDomain::UploadDocumentsResponse
17              
18             =head1 ATTRIBUTES
19              
20              
21             =head2 Adds => Int
22              
23             The number of documents that were added to the search domain.
24              
25              
26             =head2 Deletes => Int
27              
28             The number of documents that were deleted from the search domain.
29              
30              
31             =head2 Status => Str
32              
33             The status of an C<UploadDocumentsRequest>.
34              
35              
36             =head2 Warnings => ArrayRef[L<Paws::CloudSearchDomain::DocumentServiceWarning>]
37              
38             Any warnings returned by the document service about the documents being
39             uploaded.
40              
41              
42             =head2 _request_id => Str
43              
44              
45             =cut
46