File Coverage

blib/lib/Paws/SSM/UpdatePatchBaselineResult.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::SSM::UpdatePatchBaselineResult;
3 1     1   633 use Moose;
  1         6  
  1         16  
4             has ApprovalRules => (is => 'ro', isa => 'Paws::SSM::PatchRuleGroup');
5             has ApprovedPatches => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
6             has ApprovedPatchesComplianceLevel => (is => 'ro', isa => 'Str');
7             has BaselineId => (is => 'ro', isa => 'Str');
8             has CreatedDate => (is => 'ro', isa => 'Str');
9             has Description => (is => 'ro', isa => 'Str');
10             has GlobalFilters => (is => 'ro', isa => 'Paws::SSM::PatchFilterGroup');
11             has ModifiedDate => (is => 'ro', isa => 'Str');
12             has Name => (is => 'ro', isa => 'Str');
13             has OperatingSystem => (is => 'ro', isa => 'Str');
14             has RejectedPatches => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
15              
16             has _request_id => (is => 'ro', isa => 'Str');
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::SSM::UpdatePatchBaselineResult
23              
24             =head1 ATTRIBUTES
25              
26              
27             =head2 ApprovalRules => L<Paws::SSM::PatchRuleGroup>
28              
29             A set of rules used to include patches in the baseline.
30              
31              
32             =head2 ApprovedPatches => ArrayRef[Str|Undef]
33              
34             A list of explicitly approved patches for the baseline.
35              
36              
37             =head2 ApprovedPatchesComplianceLevel => Str
38              
39             The compliance severity level assigned to the patch baseline after the
40             update completed.
41              
42             Valid values are: C<"CRITICAL">, C<"HIGH">, C<"MEDIUM">, C<"LOW">, C<"INFORMATIONAL">, C<"UNSPECIFIED">
43             =head2 BaselineId => Str
44              
45             The ID of the deleted patch baseline.
46              
47              
48             =head2 CreatedDate => Str
49              
50             The date when the patch baseline was created.
51              
52              
53             =head2 Description => Str
54              
55             A description of the Patch Baseline.
56              
57              
58             =head2 GlobalFilters => L<Paws::SSM::PatchFilterGroup>
59              
60             A set of global filters used to exclude patches from the baseline.
61              
62              
63             =head2 ModifiedDate => Str
64              
65             The date when the patch baseline was last modified.
66              
67              
68             =head2 Name => Str
69              
70             The name of the patch baseline.
71              
72              
73             =head2 OperatingSystem => Str
74              
75             The operating system rule used by the updated patch baseline.
76              
77             Valid values are: C<"WINDOWS">, C<"AMAZON_LINUX">, C<"UBUNTU">, C<"REDHAT_ENTERPRISE_LINUX">
78             =head2 RejectedPatches => ArrayRef[Str|Undef]
79              
80             A list of explicitly rejected patches for the baseline.
81              
82              
83             =head2 _request_id => Str
84              
85              
86             =cut
87              
88             1;