line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SSM::GetPatchBaselineForPatchGroupResult; |
3
|
1
|
|
|
1
|
|
459
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has BaselineId => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has OperatingSystem => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has PatchGroup => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::SSM::GetPatchBaselineForPatchGroupResult |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 BaselineId => Str |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
The ID of the patch baseline that should be used for the patch group. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 OperatingSystem => Str |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
The operating system rule specified for patch groups using the patch |
27
|
|
|
|
|
|
|
baseline. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Valid values are: C<"WINDOWS">, C<"AMAZON_LINUX">, C<"UBUNTU">, C<"REDHAT_ENTERPRISE_LINUX"> |
30
|
|
|
|
|
|
|
=head2 PatchGroup => Str |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
The name of the patch group. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 _request_id => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
1; |