SSM / Paginator / DescribeInstancePatchStatesForPatchGroup
DescribeInstancePatchStatesForPatchGroup#
- class SSM.Paginator.DescribeInstancePatchStatesForPatchGroup#
paginator = client.get_paginator('describe_instance_patch_states_for_patch_group')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
SSM.Client.describe_instance_patch_states_for_patch_group()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( PatchGroup='string', Filters=[ { 'Key': 'string', 'Values': [ 'string', ], 'Type': 'Equal'|'NotEqual'|'LessThan'|'GreaterThan' }, ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
PatchGroup (string) –
[REQUIRED]
The name of the patch group for which the patch state information should be retrieved.
Filters (list) –
Each entry in the array is a structure containing:
Key (string between 1 and 200 characters)
Values (array containing a single string)
Type (string “Equal”, “NotEqual”, “LessThan”, “GreaterThan”)
(dict) –
Defines a filter used in DescribeInstancePatchStatesForPatchGroup to scope down the information returned by the API.
Example: To filter for all managed nodes in a patch group having more than three patches with a
FailedCount
status, use the following for the filter:Value for
Key
:FailedCount
Value for
Type
:GreaterThan
Value for
Values
:3
Key (string) – [REQUIRED]
The key for the filter. Supported values include the following:
InstalledCount
InstalledOtherCount
InstalledPendingRebootCount
InstalledRejectedCount
MissingCount
FailedCount
UnreportedNotApplicableCount
NotApplicableCount
Values (list) – [REQUIRED]
The value for the filter. Must be an integer greater than or equal to 0.
(string) –
Type (string) – [REQUIRED]
The type of comparison that should be performed for the value.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextToken
will be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'InstancePatchStates': [ { 'InstanceId': 'string', 'PatchGroup': 'string', 'BaselineId': 'string', 'SnapshotId': 'string', 'InstallOverrideList': 'string', 'OwnerInformation': 'string', 'InstalledCount': 123, 'InstalledOtherCount': 123, 'InstalledPendingRebootCount': 123, 'InstalledRejectedCount': 123, 'MissingCount': 123, 'FailedCount': 123, 'UnreportedNotApplicableCount': 123, 'NotApplicableCount': 123, 'OperationStartTime': datetime(2015, 1, 1), 'OperationEndTime': datetime(2015, 1, 1), 'Operation': 'Scan'|'Install', 'LastNoRebootInstallOperationTime': datetime(2015, 1, 1), 'RebootOption': 'RebootIfNeeded'|'NoReboot', 'CriticalNonCompliantCount': 123, 'SecurityNonCompliantCount': 123, 'OtherNonCompliantCount': 123 }, ], }
Response Structure
(dict) –
InstancePatchStates (list) –
The high-level patch state for the requested managed nodes.
(dict) –
Defines the high-level patch compliance state for a managed node, providing information about the number of installed, missing, not applicable, and failed patches along with metadata about the operation when this information was gathered for the managed node.
InstanceId (string) –
The ID of the managed node the high-level patch compliance information was collected for.
PatchGroup (string) –
The name of the patch group the managed node belongs to.
BaselineId (string) –
The ID of the patch baseline used to patch the managed node.
SnapshotId (string) –
The ID of the patch baseline snapshot used during the patching operation when this compliance data was collected.
InstallOverrideList (string) –
An https URL or an Amazon Simple Storage Service (Amazon S3) path-style URL to a list of patches to be installed. This patch installation list, which you maintain in an S3 bucket in YAML format and specify in the SSM document
AWS-RunPatchBaseline
, overrides the patches specified by the default patch baseline.For more information about the
InstallOverrideList
parameter, see About the AWS-RunPatchBaseline SSM document in the Amazon Web Services Systems Manager User Guide.OwnerInformation (string) –
Placeholder information. This field will always be empty in the current release of the service.
InstalledCount (integer) –
The number of patches from the patch baseline that are installed on the managed node.
InstalledOtherCount (integer) –
The number of patches not specified in the patch baseline that are installed on the managed node.
InstalledPendingRebootCount (integer) –
The number of patches installed by Patch Manager since the last time the managed node was rebooted.
InstalledRejectedCount (integer) –
The number of patches installed on a managed node that are specified in a
RejectedPatches
list. Patches with a status ofInstalledRejected
were typically installed before they were added to aRejectedPatches
list.Note
If
ALLOW_AS_DEPENDENCY
is the specified option forRejectedPatchesAction
, the value ofInstalledRejectedCount
will always be0
(zero).MissingCount (integer) –
The number of patches from the patch baseline that are applicable for the managed node but aren’t currently installed.
FailedCount (integer) –
The number of patches from the patch baseline that were attempted to be installed during the last patching operation, but failed to install.
UnreportedNotApplicableCount (integer) –
The number of patches beyond the supported limit of
NotApplicableCount
that aren’t reported by name to Inventory. Inventory is a capability of Amazon Web Services Systems Manager.NotApplicableCount (integer) –
The number of patches from the patch baseline that aren’t applicable for the managed node and therefore aren’t installed on the node. This number may be truncated if the list of patch names is very large. The number of patches beyond this limit are reported in
UnreportedNotApplicableCount
.OperationStartTime (datetime) –
The time the most recent patching operation was started on the managed node.
OperationEndTime (datetime) –
The time the most recent patching operation completed on the managed node.
Operation (string) –
The type of patching operation that was performed: or
SCAN
assesses the patch compliance state.INSTALL
installs missing patches.
LastNoRebootInstallOperationTime (datetime) –
The time of the last attempt to patch the managed node with
NoReboot
specified as the reboot option.RebootOption (string) –
Indicates the reboot option specified in the patch baseline.
Note
Reboot options apply to
Install
operations only. Reboots aren’t attempted for Patch ManagerScan
operations.RebootIfNeeded
: Patch Manager tries to reboot the managed node if it installed any patches, or if any patches are detected with a status ofInstalledPendingReboot
.NoReboot
: Patch Manager attempts to install missing packages without trying to reboot the system. Patches installed with this option are assigned a status ofInstalledPendingReboot
. These patches might not be in effect until a reboot is performed.
CriticalNonCompliantCount (integer) –
The number of patches per node that are specified as
Critical
for compliance reporting in the patch baseline aren’t installed. These patches might be missing, have failed installation, were rejected, or were installed but awaiting a required managed node reboot. The status of these managed nodes isNON_COMPLIANT
.SecurityNonCompliantCount (integer) –
The number of patches per node that are specified as
Security
in a patch advisory aren’t installed. These patches might be missing, have failed installation, were rejected, or were installed but awaiting a required managed node reboot. The status of these managed nodes isNON_COMPLIANT
.OtherNonCompliantCount (integer) –
The number of patches per node that are specified as other than
Critical
orSecurity
but aren’t compliant with the patch baseline. The status of these managed nodes isNON_COMPLIANT
.