line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SSM::DescribePatchGroupStateResult; |
3
|
1
|
|
|
1
|
|
436
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has Instances => (is => 'ro', isa => 'Int'); |
5
|
|
|
|
|
|
|
has InstancesWithFailedPatches => (is => 'ro', isa => 'Int'); |
6
|
|
|
|
|
|
|
has InstancesWithInstalledOtherPatches => (is => 'ro', isa => 'Int'); |
7
|
|
|
|
|
|
|
has InstancesWithInstalledPatches => (is => 'ro', isa => 'Int'); |
8
|
|
|
|
|
|
|
has InstancesWithMissingPatches => (is => 'ro', isa => 'Int'); |
9
|
|
|
|
|
|
|
has InstancesWithNotApplicablePatches => (is => 'ro', isa => 'Int'); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::SSM::DescribePatchGroupStateResult |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 Instances => Int |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
The number of instances in the patch group. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 InstancesWithFailedPatches => Int |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
The number of instances with patches from the patch baseline that |
30
|
|
|
|
|
|
|
failed to install. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 InstancesWithInstalledOtherPatches => Int |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
The number of instances with patches installed that aren't defined in |
36
|
|
|
|
|
|
|
the patch baseline. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 InstancesWithInstalledPatches => Int |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
The number of instances with installed patches. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 InstancesWithMissingPatches => Int |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The number of instances with missing patches from the patch baseline. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 InstancesWithNotApplicablePatches => Int |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The number of instances with patches that aren't applicable. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 _request_id => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=cut |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
1; |