File Coverage

blib/lib/Paws/Lightsail/GetOperationsForResourceResult.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::Lightsail::GetOperationsForResourceResult;
3 1     1   504 use Moose;
  1         3  
  1         7  
4             has NextPageCount => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextPageCount' );
5             has NextPageToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextPageToken' );
6             has Operations => (is => 'ro', isa => 'ArrayRef[Paws::Lightsail::Operation]', traits => ['NameInRequest'], request_name => 'operations' );
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::Lightsail::GetOperationsForResourceResult
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 NextPageCount => Str
20              
21             (Deprecated) Returns the number of pages of results that remain.
22              
23             In releases prior to June 12, 2017, this parameter returned C<null> by
24             the API. It is now deprecated, and the API returns the C<nextPageToken>
25             parameter instead.
26              
27              
28             =head2 NextPageToken => Str
29              
30             An identifier that was returned from the previous call to this
31             operation, which can be used to return the next set of items in the
32             list.
33              
34              
35             =head2 Operations => ArrayRef[L<Paws::Lightsail::Operation>]
36              
37             An array of key-value pairs containing information about the results of
38             your get operations for resource request.
39              
40              
41             =head2 _request_id => Str
42              
43              
44             =cut
45              
46             1;