line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Discovery::GetDiscoverySummaryResponse; |
3
|
1
|
|
|
1
|
|
437
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
4
|
|
|
|
|
|
|
has AgentSummary => (is => 'ro', isa => 'Paws::Discovery::CustomerAgentInfo', traits => ['NameInRequest'], request_name => 'agentSummary' ); |
5
|
|
|
|
|
|
|
has Applications => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'applications' ); |
6
|
|
|
|
|
|
|
has ConnectorSummary => (is => 'ro', isa => 'Paws::Discovery::CustomerConnectorInfo', traits => ['NameInRequest'], request_name => 'connectorSummary' ); |
7
|
|
|
|
|
|
|
has Servers => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'servers' ); |
8
|
|
|
|
|
|
|
has ServersMappedToApplications => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'serversMappedToApplications' ); |
9
|
|
|
|
|
|
|
has ServersMappedtoTags => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'serversMappedtoTags' ); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::Discovery::GetDiscoverySummaryResponse |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 AgentSummary => L<Paws::Discovery::CustomerAgentInfo> |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Details about discovered agents, including agent status and health. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 Applications => Int |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The number of applications discovered. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 ConnectorSummary => L<Paws::Discovery::CustomerConnectorInfo> |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Details about discovered connectors, including connector status and |
35
|
|
|
|
|
|
|
health. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head2 Servers => Int |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
The number of servers discovered. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head2 ServersMappedToApplications => Int |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
The number of servers mapped to applications. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 ServersMappedtoTags => Int |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
The number of servers mapped to tags. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 _request_id => Str |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=cut |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
1; |