line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::SSM::PatchComplianceData; |
2
|
1
|
|
|
1
|
|
401
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
3
|
|
|
|
|
|
|
has Classification => (is => 'ro', isa => 'Str', required => 1); |
4
|
|
|
|
|
|
|
has InstalledTime => (is => 'ro', isa => 'Str', required => 1); |
5
|
|
|
|
|
|
|
has KBId => (is => 'ro', isa => 'Str', required => 1); |
6
|
|
|
|
|
|
|
has Severity => (is => 'ro', isa => 'Str', required => 1); |
7
|
|
|
|
|
|
|
has State => (is => 'ro', isa => 'Str', required => 1); |
8
|
|
|
|
|
|
|
has Title => (is => 'ro', isa => 'Str', required => 1); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::SSM::PatchComplianceData |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 USAGE |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
This class represents one of two things: |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
24
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::SSM::PatchComplianceData object: |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { Classification => $value, ..., Title => $value }); |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head3 Results returned from an API call |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::PatchComplianceData object: |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
35
|
|
|
|
|
|
|
$result->Att1->Classification |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 DESCRIPTION |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Information about the state of a patch on a particular instance as it |
40
|
|
|
|
|
|
|
relates to the patch baseline used to patch the instance. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 B<REQUIRED> Classification => Str |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
The classification of the patch (for example, SecurityUpdates, Updates, |
48
|
|
|
|
|
|
|
CriticalUpdates). |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head2 B<REQUIRED> InstalledTime => Str |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
The date/time the patch was installed on the instance. Note that not |
54
|
|
|
|
|
|
|
all operating systems provide this level of information. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 B<REQUIRED> KBId => Str |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
The operating system-specific ID of the patch. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head2 B<REQUIRED> Severity => Str |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
The severity of the patch (for example, Critical, Important, Moderate). |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head2 B<REQUIRED> State => Str |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
The state of the patch on the instance (INSTALLED, INSTALLED_OTHER, |
70
|
|
|
|
|
|
|
MISSING, NOT_APPLICABLE or FAILED). |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head2 B<REQUIRED> Title => Str |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
The title of the patch. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
=head1 SEE ALSO |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::SSM> |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
=cut |
90
|
|
|
|
|
|
|
|