File Coverage

blib/lib/Paws/Discovery/DescribeAgentsResponse.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::Discovery::DescribeAgentsResponse;
3 1     1   536 use Moose;
  1         3  
  1         8  
4             has AgentsInfo => (is => 'ro', isa => 'ArrayRef[Paws::Discovery::AgentInfo]', traits => ['NameInRequest'], request_name => 'agentsInfo' );
5             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::Discovery::DescribeAgentsResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 AgentsInfo => ArrayRef[L<Paws::Discovery::AgentInfo>]
19              
20             Lists agents or the Connector by ID or lists all agents/Connectors
21             associated with your user account if you did not specify an
22             agent/Connector ID. The output includes agent/Connector IDs, IP
23             addresses, media access control (MAC) addresses, agent/Connector
24             health, host name where the agent/Connector resides, and the version
25             number of each agent/Connector.
26              
27              
28             =head2 NextToken => Str
29              
30             Token to retrieve the next set of results. For example, if you
31             specified 100 IDs for C<DescribeAgentsRequest$agentIds> but set
32             C<DescribeAgentsRequest$maxResults> to 10, you received a set of 10
33             results along with this token. Use this token in the next query to
34             retrieve the next set of 10.
35              
36              
37             =head2 _request_id => Str
38              
39              
40             =cut
41              
42             1;