aws-sdk-ssm 1.149.0 → 1.150.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +70 -58
- data/lib/aws-sdk-ssm/types.rb +79 -66
- data/lib/aws-sdk-ssm.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 184ef695f37be946e4b3ab18c4d2fcaa4dc552e477a11aac3ec092faa676a4d1
|
4
|
+
data.tar.gz: '09c9d87e13f3751694c140a5c56ff7d09ddb2d4706831d0b948521a119891d7d'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 66acf8563fb457dc15813ad4e5f8bb7d8f8c62e7c692061c55d02a5eadadb2d4e40f52a2eb0352e0af4825ddb481d046f801b8586a1477805a4837ecfc8af9d4
|
7
|
+
data.tar.gz: d1e3423290c640e0f27e566a867c9dadcd91a1b110cf2ccab548274f1622808f12e05019b815f25f83e83a3927fc57005ab8162fdeebded5bfc9b3f76fc7f7a5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.150.0 (2023-03-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This Patch Manager release supports creating, updating, and deleting Patch Baselines for AmazonLinux2023, AlmaLinux.
|
8
|
+
|
4
9
|
1.149.0 (2023-02-22)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.150.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -431,11 +431,11 @@ module Aws::SSM
|
|
431
431
|
#
|
432
432
|
# Use the ID of the resource. Here are some examples:
|
433
433
|
#
|
434
|
-
# `MaintenanceWindow
|
434
|
+
# `MaintenanceWindow`: `mw-012345abcde`
|
435
435
|
#
|
436
|
-
# `PatchBaseline
|
436
|
+
# `PatchBaseline`: `pb-012345abcde`
|
437
437
|
#
|
438
|
-
# `Automation
|
438
|
+
# `Automation`: `example-c160-4567-8519-012345abcde`
|
439
439
|
#
|
440
440
|
# `OpsMetadata` object: `ResourceID` for tagging is created from the
|
441
441
|
# Amazon Resource Name (ARN) for the object. Specifically, `ResourceID`
|
@@ -448,7 +448,7 @@ module Aws::SSM
|
|
448
448
|
# For the `Document` and `Parameter` values, use the name of the
|
449
449
|
# resource.
|
450
450
|
#
|
451
|
-
# `ManagedInstance
|
451
|
+
# `ManagedInstance`: `mi-012345abcde`
|
452
452
|
#
|
453
453
|
# <note markdown="1"> The `ManagedInstance` type for this API operation is only for
|
454
454
|
# on-premises managed nodes. You must specify the name of the managed
|
@@ -504,9 +504,9 @@ module Aws::SSM
|
|
504
504
|
# The type of resource that you want to associate with an OpsItem.
|
505
505
|
# OpsCenter supports the following types:
|
506
506
|
#
|
507
|
-
# `AWS::SSMIncidents::IncidentRecord
|
507
|
+
# `AWS::SSMIncidents::IncidentRecord`: an Incident Manager incident.
|
508
508
|
#
|
509
|
-
# `AWS::SSM::Document
|
509
|
+
# `AWS::SSM::Document`: a Systems Manager (SSM) document.
|
510
510
|
#
|
511
511
|
# @option params [required, String] :resource_uri
|
512
512
|
# The Amazon Resource Name (ARN) of the Amazon Web Services resource
|
@@ -1949,17 +1949,17 @@ module Aws::SSM
|
|
1949
1949
|
# The action for Patch Manager to take on patches included in the
|
1950
1950
|
# `RejectedPackages` list.
|
1951
1951
|
#
|
1952
|
-
# * <b> <code>ALLOW_AS_DEPENDENCY</code> </b
|
1952
|
+
# * <b> <code>ALLOW_AS_DEPENDENCY</code> </b>: A package in the
|
1953
1953
|
# `Rejected` patches list is installed only if it is a dependency of
|
1954
1954
|
# another package. It is considered compliant with the patch baseline,
|
1955
1955
|
# and its status is reported as `InstalledOther`. This is the default
|
1956
1956
|
# action if no option is specified.
|
1957
1957
|
#
|
1958
|
-
# * <b> <code>BLOCK</code> </b
|
1959
|
-
#
|
1960
|
-
#
|
1961
|
-
#
|
1962
|
-
#
|
1958
|
+
# * <b> <code>BLOCK</code> </b>: Packages in the `RejectedPatches` list,
|
1959
|
+
# and packages that include them as dependencies, aren't installed
|
1960
|
+
# under any circumstances. If a package was installed before it was
|
1961
|
+
# added to the Rejected patches list, it is considered non-compliant
|
1962
|
+
# with the patch baseline, and its status is reported as
|
1963
1963
|
# `InstalledRejected`.
|
1964
1964
|
#
|
1965
1965
|
# @option params [String] :description
|
@@ -2000,7 +2000,7 @@ module Aws::SSM
|
|
2000
2000
|
# @example Request syntax with placeholder values
|
2001
2001
|
#
|
2002
2002
|
# resp = client.create_patch_baseline({
|
2003
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
|
2003
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX, ALMA_LINUX, AMAZON_LINUX_2023
|
2004
2004
|
# name: "BaselineName", # required
|
2005
2005
|
# global_filters: {
|
2006
2006
|
# patch_filters: [ # required
|
@@ -4928,7 +4928,7 @@ module Aws::SSM
|
|
4928
4928
|
# resp.baseline_identities #=> Array
|
4929
4929
|
# resp.baseline_identities[0].baseline_id #=> String
|
4930
4930
|
# resp.baseline_identities[0].baseline_name #=> String
|
4931
|
-
# resp.baseline_identities[0].operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "AMAZON_LINUX_2022", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX"
|
4931
|
+
# resp.baseline_identities[0].operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "AMAZON_LINUX_2022", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX", "ALMA_LINUX", "AMAZON_LINUX_2023"
|
4932
4932
|
# resp.baseline_identities[0].baseline_description #=> String
|
4933
4933
|
# resp.baseline_identities[0].default_baseline #=> Boolean
|
4934
4934
|
# resp.next_token #=> String
|
@@ -5041,7 +5041,7 @@ module Aws::SSM
|
|
5041
5041
|
# resp.mappings[0].patch_group #=> String
|
5042
5042
|
# resp.mappings[0].baseline_identity.baseline_id #=> String
|
5043
5043
|
# resp.mappings[0].baseline_identity.baseline_name #=> String
|
5044
|
-
# resp.mappings[0].baseline_identity.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "AMAZON_LINUX_2022", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX"
|
5044
|
+
# resp.mappings[0].baseline_identity.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "AMAZON_LINUX_2022", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX", "ALMA_LINUX", "AMAZON_LINUX_2023"
|
5045
5045
|
# resp.mappings[0].baseline_identity.baseline_description #=> String
|
5046
5046
|
# resp.mappings[0].baseline_identity.default_baseline #=> Boolean
|
5047
5047
|
# resp.next_token #=> String
|
@@ -5136,7 +5136,7 @@ module Aws::SSM
|
|
5136
5136
|
# @example Request syntax with placeholder values
|
5137
5137
|
#
|
5138
5138
|
# resp = client.describe_patch_properties({
|
5139
|
-
# operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
|
5139
|
+
# operating_system: "WINDOWS", # required, accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX, ALMA_LINUX, AMAZON_LINUX_2023
|
5140
5140
|
# property: "PRODUCT", # required, accepts PRODUCT, PRODUCT_FAMILY, CLASSIFICATION, MSRC_SEVERITY, PRIORITY, SEVERITY
|
5141
5141
|
# patch_set: "OS", # accepts OS, APPLICATION
|
5142
5142
|
# max_results: 1,
|
@@ -5633,13 +5633,13 @@ module Aws::SSM
|
|
5633
5633
|
# @example Request syntax with placeholder values
|
5634
5634
|
#
|
5635
5635
|
# resp = client.get_default_patch_baseline({
|
5636
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
|
5636
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX, ALMA_LINUX, AMAZON_LINUX_2023
|
5637
5637
|
# })
|
5638
5638
|
#
|
5639
5639
|
# @example Response structure
|
5640
5640
|
#
|
5641
5641
|
# resp.baseline_id #=> String
|
5642
|
-
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "AMAZON_LINUX_2022", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX"
|
5642
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "AMAZON_LINUX_2022", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX", "ALMA_LINUX", "AMAZON_LINUX_2023"
|
5643
5643
|
#
|
5644
5644
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetDefaultPatchBaseline AWS API Documentation
|
5645
5645
|
#
|
@@ -5690,7 +5690,7 @@ module Aws::SSM
|
|
5690
5690
|
# instance_id: "InstanceId", # required
|
5691
5691
|
# snapshot_id: "SnapshotId", # required
|
5692
5692
|
# baseline_override: {
|
5693
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
|
5693
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX, ALMA_LINUX, AMAZON_LINUX_2023
|
5694
5694
|
# global_filters: {
|
5695
5695
|
# patch_filters: [ # required
|
5696
5696
|
# {
|
@@ -6735,11 +6735,11 @@ module Aws::SSM
|
|
6735
6735
|
# @option params [Array<Types::ParameterStringFilter>] :parameter_filters
|
6736
6736
|
# Filters to limit the request results.
|
6737
6737
|
#
|
6738
|
-
# <note markdown="1"> The following `Key` values are supported for `GetParametersByPath
|
6738
|
+
# <note markdown="1"> The following `Key` values are supported for `GetParametersByPath`:
|
6739
6739
|
# `Type`, `KeyId`, and `Label`.
|
6740
6740
|
#
|
6741
6741
|
# The following `Key` values aren't supported for
|
6742
|
-
# `GetParametersByPath
|
6742
|
+
# `GetParametersByPath`: `tag`, `DataType`, `Name`, `Path`, and `Tier`.
|
6743
6743
|
#
|
6744
6744
|
# </note>
|
6745
6745
|
#
|
@@ -6844,7 +6844,7 @@ module Aws::SSM
|
|
6844
6844
|
#
|
6845
6845
|
# resp.baseline_id #=> String
|
6846
6846
|
# resp.name #=> String
|
6847
|
-
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "AMAZON_LINUX_2022", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX"
|
6847
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "AMAZON_LINUX_2022", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX", "ALMA_LINUX", "AMAZON_LINUX_2023"
|
6848
6848
|
# resp.global_filters.patch_filters #=> Array
|
6849
6849
|
# resp.global_filters.patch_filters[0].key #=> String, one of "ARCH", "ADVISORY_ID", "BUGZILLA_ID", "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "CVE_ID", "EPOCH", "MSRC_SEVERITY", "NAME", "PATCH_ID", "SECTION", "PRIORITY", "REPOSITORY", "RELEASE", "SEVERITY", "SECURITY", "VERSION"
|
6850
6850
|
# resp.global_filters.patch_filters[0].values #=> Array
|
@@ -6905,14 +6905,14 @@ module Aws::SSM
|
|
6905
6905
|
#
|
6906
6906
|
# resp = client.get_patch_baseline_for_patch_group({
|
6907
6907
|
# patch_group: "PatchGroup", # required
|
6908
|
-
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX
|
6908
|
+
# operating_system: "WINDOWS", # accepts WINDOWS, AMAZON_LINUX, AMAZON_LINUX_2, AMAZON_LINUX_2022, UBUNTU, REDHAT_ENTERPRISE_LINUX, SUSE, CENTOS, ORACLE_LINUX, DEBIAN, MACOS, RASPBIAN, ROCKY_LINUX, ALMA_LINUX, AMAZON_LINUX_2023
|
6909
6909
|
# })
|
6910
6910
|
#
|
6911
6911
|
# @example Response structure
|
6912
6912
|
#
|
6913
6913
|
# resp.baseline_id #=> String
|
6914
6914
|
# resp.patch_group #=> String
|
6915
|
-
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "AMAZON_LINUX_2022", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX"
|
6915
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "AMAZON_LINUX_2022", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX", "ALMA_LINUX", "AMAZON_LINUX_2023"
|
6916
6916
|
#
|
6917
6917
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/GetPatchBaselineForPatchGroup AWS API Documentation
|
6918
6918
|
#
|
@@ -8659,12 +8659,11 @@ module Aws::SSM
|
|
8659
8659
|
# standard-parameter tier. If you use the advanced-parameter tier, you
|
8660
8660
|
# can specify one of the following as the default:
|
8661
8661
|
#
|
8662
|
-
# * **Advanced
|
8662
|
+
# * **Advanced**: With this option, Parameter Store evaluates all
|
8663
8663
|
# requests as advanced parameters.
|
8664
8664
|
#
|
8665
|
-
# * **Intelligent-Tiering
|
8666
|
-
#
|
8667
|
-
# advanced.
|
8665
|
+
# * **Intelligent-Tiering**: With this option, Parameter Store evaluates
|
8666
|
+
# each request to determine if the parameter is standard or advanced.
|
8668
8667
|
#
|
8669
8668
|
# If the request doesn't include any options that require an advanced
|
8670
8669
|
# parameter, the parameter is created in the standard-parameter tier.
|
@@ -8945,23 +8944,23 @@ module Aws::SSM
|
|
8945
8944
|
# You can specify targets using managed node IDs, resource group names,
|
8946
8945
|
# or tags that have been applied to managed nodes.
|
8947
8946
|
#
|
8948
|
-
# **Example 1
|
8947
|
+
# **Example 1**: Specify managed node IDs
|
8949
8948
|
#
|
8950
8949
|
# `Key=InstanceIds,Values=<instance-id-1>,<instance-id-2>,<instance-id-3>`
|
8951
8950
|
#
|
8952
|
-
# **Example 2
|
8951
|
+
# **Example 2**: Use tag key-pairs applied to managed nodes
|
8953
8952
|
#
|
8954
8953
|
# `Key=tag:<my-tag-key>,Values=<my-tag-value-1>,<my-tag-value-2>`
|
8955
8954
|
#
|
8956
|
-
# **Example 3
|
8955
|
+
# **Example 3**: Use tag-keys applied to managed nodes
|
8957
8956
|
#
|
8958
8957
|
# `Key=tag-key,Values=<my-tag-key-1>,<my-tag-key-2>`
|
8959
8958
|
#
|
8960
|
-
# **Example 4
|
8959
|
+
# **Example 4**: Use resource group names
|
8961
8960
|
#
|
8962
8961
|
# `Key=resource-groups:Name,Values=<resource-group-name>`
|
8963
8962
|
#
|
8964
|
-
# **Example 5
|
8963
|
+
# **Example 5**: Use filters for resource group types
|
8965
8964
|
#
|
8966
8965
|
# `Key=resource-groups:ResourceTypeFilters,Values=<resource-type-1>,<resource-type-2>`
|
8967
8966
|
#
|
@@ -9073,7 +9072,7 @@ module Aws::SSM
|
|
9073
9072
|
# `RegisterTaskWithMaintenanceWindow`.
|
9074
9073
|
#
|
9075
9074
|
# For more information, see the following topics in the in the *Amazon
|
9076
|
-
# Web Services Systems Manager User Guide
|
9075
|
+
# Web Services Systems Manager User Guide*:
|
9077
9076
|
#
|
9078
9077
|
# * [Using service-linked roles for Systems Manager][1]
|
9079
9078
|
#
|
@@ -9177,10 +9176,10 @@ module Aws::SSM
|
|
9177
9176
|
# Indicates whether tasks should continue to run after the cutoff time
|
9178
9177
|
# specified in the maintenance windows is reached.
|
9179
9178
|
#
|
9180
|
-
# * `CONTINUE_TASK
|
9181
|
-
#
|
9179
|
+
# * `CONTINUE_TASK`: When the cutoff time is reached, any tasks that are
|
9180
|
+
# running continue. The default value.
|
9182
9181
|
#
|
9183
|
-
# * `CANCEL_TASK
|
9182
|
+
# * `CANCEL_TASK`:
|
9184
9183
|
#
|
9185
9184
|
# * For Automation, Lambda, Step Functions tasks: When the cutoff time
|
9186
9185
|
# is reached, any task invocations that are already running
|
@@ -9313,7 +9312,7 @@ module Aws::SSM
|
|
9313
9312
|
#
|
9314
9313
|
# MaintenanceWindow: mw-012345abcde
|
9315
9314
|
#
|
9316
|
-
# `Automation
|
9315
|
+
# `Automation`: `example-c160-4567-8519-012345abcde`
|
9317
9316
|
#
|
9318
9317
|
# PatchBaseline: pb-012345abcde
|
9319
9318
|
#
|
@@ -9379,6 +9378,8 @@ module Aws::SSM
|
|
9379
9378
|
# The Amazon Resource Name (ARN) of the service setting to reset. The
|
9380
9379
|
# setting ID can be one of the following.
|
9381
9380
|
#
|
9381
|
+
# * `/ssm/managed-instance/default-ec2-instance-management-role`
|
9382
|
+
#
|
9382
9383
|
# * `/ssm/automation/customer-script-log-destination`
|
9383
9384
|
#
|
9384
9385
|
# * `/ssm/automation/customer-script-log-group-name`
|
@@ -11273,7 +11274,7 @@ module Aws::SSM
|
|
11273
11274
|
# `RegisterTaskWithMaintenanceWindow`.
|
11274
11275
|
#
|
11275
11276
|
# For more information, see the following topics in the in the *Amazon
|
11276
|
-
# Web Services Systems Manager User Guide
|
11277
|
+
# Web Services Systems Manager User Guide*:
|
11277
11278
|
#
|
11278
11279
|
# * [Using service-linked roles for Systems Manager][1]
|
11279
11280
|
#
|
@@ -11390,10 +11391,10 @@ module Aws::SSM
|
|
11390
11391
|
# Indicates whether tasks should continue to run after the cutoff time
|
11391
11392
|
# specified in the maintenance windows is reached.
|
11392
11393
|
#
|
11393
|
-
# * `CONTINUE_TASK
|
11394
|
-
#
|
11394
|
+
# * `CONTINUE_TASK`: When the cutoff time is reached, any tasks that are
|
11395
|
+
# running continue. The default value.
|
11395
11396
|
#
|
11396
|
-
# * `CANCEL_TASK
|
11397
|
+
# * `CANCEL_TASK`:
|
11397
11398
|
#
|
11398
11399
|
# * For Automation, Lambda, Step Functions tasks: When the cutoff time
|
11399
11400
|
# is reached, any task invocations that are already running
|
@@ -11867,17 +11868,17 @@ module Aws::SSM
|
|
11867
11868
|
# The action for Patch Manager to take on patches included in the
|
11868
11869
|
# `RejectedPackages` list.
|
11869
11870
|
#
|
11870
|
-
# * <b> <code>ALLOW_AS_DEPENDENCY</code> </b
|
11871
|
+
# * <b> <code>ALLOW_AS_DEPENDENCY</code> </b>: A package in the
|
11871
11872
|
# `Rejected` patches list is installed only if it is a dependency of
|
11872
11873
|
# another package. It is considered compliant with the patch baseline,
|
11873
11874
|
# and its status is reported as `InstalledOther`. This is the default
|
11874
11875
|
# action if no option is specified.
|
11875
11876
|
#
|
11876
|
-
# * <b> <code>BLOCK</code> </b
|
11877
|
-
#
|
11878
|
-
#
|
11879
|
-
#
|
11880
|
-
#
|
11877
|
+
# * <b> <code>BLOCK</code> </b>: Packages in the `RejectedPatches` list,
|
11878
|
+
# and packages that include them as dependencies, aren't installed
|
11879
|
+
# under any circumstances. If a package was installed before it was
|
11880
|
+
# added to the `Rejected` patches list, it is considered non-compliant
|
11881
|
+
# with the patch baseline, and its status is reported as
|
11881
11882
|
# `InstalledRejected`.
|
11882
11883
|
#
|
11883
11884
|
# @option params [String] :description
|
@@ -11961,7 +11962,7 @@ module Aws::SSM
|
|
11961
11962
|
#
|
11962
11963
|
# resp.baseline_id #=> String
|
11963
11964
|
# resp.name #=> String
|
11964
|
-
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "AMAZON_LINUX_2022", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX"
|
11965
|
+
# resp.operating_system #=> String, one of "WINDOWS", "AMAZON_LINUX", "AMAZON_LINUX_2", "AMAZON_LINUX_2022", "UBUNTU", "REDHAT_ENTERPRISE_LINUX", "SUSE", "CENTOS", "ORACLE_LINUX", "DEBIAN", "MACOS", "RASPBIAN", "ROCKY_LINUX", "ALMA_LINUX", "AMAZON_LINUX_2023"
|
11965
11966
|
# resp.global_filters.patch_filters #=> Array
|
11966
11967
|
# resp.global_filters.patch_filters[0].key #=> String, one of "ARCH", "ADVISORY_ID", "BUGZILLA_ID", "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", "CVE_ID", "EPOCH", "MSRC_SEVERITY", "NAME", "PATCH_ID", "SECTION", "PRIORITY", "REPOSITORY", "RELEASE", "SEVERITY", "SECURITY", "VERSION"
|
11967
11968
|
# resp.global_filters.patch_filters[0].values #=> Array
|
@@ -12075,7 +12076,7 @@ module Aws::SSM
|
|
12075
12076
|
# Update the service setting for the account.
|
12076
12077
|
#
|
12077
12078
|
# @option params [required, String] :setting_id
|
12078
|
-
# The Amazon Resource Name (ARN) of the service setting to
|
12079
|
+
# The Amazon Resource Name (ARN) of the service setting to update. For
|
12079
12080
|
# example,
|
12080
12081
|
# `arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled`.
|
12081
12082
|
# The setting ID can be one of the following.
|
@@ -12096,26 +12097,37 @@ module Aws::SSM
|
|
12096
12097
|
#
|
12097
12098
|
# * `/ssm/parameter-store/high-throughput-enabled`
|
12098
12099
|
#
|
12100
|
+
# <note markdown="1"> Permissions to update the
|
12101
|
+
# `/ssm/managed-instance/default-ec2-instance-management-role` setting
|
12102
|
+
# should only be provided to administrators. Implement least privilege
|
12103
|
+
# access when allowing individuals to configure or modify the Default
|
12104
|
+
# Host Management Configuration.
|
12105
|
+
#
|
12106
|
+
# </note>
|
12107
|
+
#
|
12099
12108
|
# @option params [required, String] :setting_value
|
12100
12109
|
# The new value to specify for the service setting. The following list
|
12101
12110
|
# specifies the available values for each setting.
|
12102
12111
|
#
|
12103
|
-
# * `/ssm/
|
12112
|
+
# * `/ssm/managed-instance/default-ec2-instance-management-role: The
|
12113
|
+
# name of an IAM role`
|
12114
|
+
#
|
12115
|
+
# * `/ssm/automation/customer-script-log-destination`: `CloudWatch`
|
12104
12116
|
#
|
12105
|
-
# * `/ssm/automation/customer-script-log-group-name
|
12117
|
+
# * `/ssm/automation/customer-script-log-group-name`: The name of an
|
12106
12118
|
# Amazon CloudWatch Logs log group
|
12107
12119
|
#
|
12108
|
-
# * `/ssm/documents/console/public-sharing-permission
|
12120
|
+
# * `/ssm/documents/console/public-sharing-permission`: `Enable` or
|
12109
12121
|
# `Disable`
|
12110
12122
|
#
|
12111
|
-
# * `/ssm/managed-instance/activation-tier
|
12123
|
+
# * `/ssm/managed-instance/activation-tier`: `standard` or `advanced`
|
12112
12124
|
#
|
12113
|
-
# * `/ssm/opsinsights/opscenter
|
12125
|
+
# * `/ssm/opsinsights/opscenter`: `Enabled` or `Disabled`
|
12114
12126
|
#
|
12115
|
-
# * `/ssm/parameter-store/default-parameter-tier
|
12127
|
+
# * `/ssm/parameter-store/default-parameter-tier`: `Standard`,
|
12116
12128
|
# `Advanced`, `Intelligent-Tiering`
|
12117
12129
|
#
|
12118
|
-
# * `/ssm/parameter-store/high-throughput-enabled
|
12130
|
+
# * `/ssm/parameter-store/high-throughput-enabled`: `true` or `false`
|
12119
12131
|
#
|
12120
12132
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
12121
12133
|
#
|
@@ -12148,7 +12160,7 @@ module Aws::SSM
|
|
12148
12160
|
params: params,
|
12149
12161
|
config: config)
|
12150
12162
|
context[:gem_name] = 'aws-sdk-ssm'
|
12151
|
-
context[:gem_version] = '1.
|
12163
|
+
context[:gem_version] = '1.150.0'
|
12152
12164
|
Seahorse::Client::Request.new(handlers, context)
|
12153
12165
|
end
|
12154
12166
|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -112,11 +112,11 @@ module Aws::SSM
|
|
112
112
|
#
|
113
113
|
# Use the ID of the resource. Here are some examples:
|
114
114
|
#
|
115
|
-
# `MaintenanceWindow
|
115
|
+
# `MaintenanceWindow`: `mw-012345abcde`
|
116
116
|
#
|
117
|
-
# `PatchBaseline
|
117
|
+
# `PatchBaseline`: `pb-012345abcde`
|
118
118
|
#
|
119
|
-
# `Automation
|
119
|
+
# `Automation`: `example-c160-4567-8519-012345abcde`
|
120
120
|
#
|
121
121
|
# `OpsMetadata` object: `ResourceID` for tagging is created from the
|
122
122
|
# Amazon Resource Name (ARN) for the object. Specifically,
|
@@ -130,7 +130,7 @@ module Aws::SSM
|
|
130
130
|
# For the `Document` and `Parameter` values, use the name of the
|
131
131
|
# resource.
|
132
132
|
#
|
133
|
-
# `ManagedInstance
|
133
|
+
# `ManagedInstance`: `mi-012345abcde`
|
134
134
|
#
|
135
135
|
# <note markdown="1"> The `ManagedInstance` type for this API operation is only for
|
136
136
|
# on-premises managed nodes. You must specify the name of the managed
|
@@ -247,9 +247,9 @@ module Aws::SSM
|
|
247
247
|
# The type of resource that you want to associate with an OpsItem.
|
248
248
|
# OpsCenter supports the following types:
|
249
249
|
#
|
250
|
-
# `AWS::SSMIncidents::IncidentRecord
|
250
|
+
# `AWS::SSMIncidents::IncidentRecord`: an Incident Manager incident.
|
251
251
|
#
|
252
|
-
# `AWS::SSM::Document
|
252
|
+
# `AWS::SSM::Document`: a Systems Manager (SSM) document.
|
253
253
|
# @return [String]
|
254
254
|
#
|
255
255
|
# @!attribute [rw] resource_uri
|
@@ -2024,15 +2024,15 @@ module Aws::SSM
|
|
2024
2024
|
# @!attribute [rw] value
|
2025
2025
|
# The filter value. Valid values for each filter key are as follows:
|
2026
2026
|
#
|
2027
|
-
# * **InvokedAfter
|
2027
|
+
# * **InvokedAfter**: Specify a timestamp to limit your results. For
|
2028
2028
|
# example, specify `2021-07-07T00:00:00Z` to see a list of command
|
2029
2029
|
# executions occurring July 7, 2021, and later.
|
2030
2030
|
#
|
2031
|
-
# * **InvokedBefore
|
2031
|
+
# * **InvokedBefore**: Specify a timestamp to limit your results. For
|
2032
2032
|
# example, specify `2021-07-07T00:00:00Z` to see a list of command
|
2033
2033
|
# executions from before July 7, 2021.
|
2034
2034
|
#
|
2035
|
-
# * **Status
|
2035
|
+
# * **Status**: Specify a valid command status to see a list of all
|
2036
2036
|
# command executions with that status. The status choices depend on
|
2037
2037
|
# the API you call.
|
2038
2038
|
#
|
@@ -2091,19 +2091,19 @@ module Aws::SSM
|
|
2091
2091
|
#
|
2092
2092
|
# * `Terminated`
|
2093
2093
|
#
|
2094
|
-
# * **DocumentName
|
2094
|
+
# * **DocumentName**: Specify name of the Amazon Web Services Systems
|
2095
2095
|
# Manager document (SSM document) for which you want to see command
|
2096
2096
|
# execution results. For example, specify `AWS-RunPatchBaseline` to
|
2097
2097
|
# see command executions that used this SSM document to perform
|
2098
2098
|
# security patching operations on managed nodes.
|
2099
2099
|
#
|
2100
|
-
# * **ExecutionStage
|
2100
|
+
# * **ExecutionStage**: Specify one of the following values
|
2101
2101
|
# (`ListCommands` operations only):
|
2102
2102
|
#
|
2103
|
-
# * `Executing
|
2103
|
+
# * `Executing`: Returns a list of command executions that are
|
2104
2104
|
# currently still running.
|
2105
2105
|
#
|
2106
|
-
# * `Complete
|
2106
|
+
# * `Complete`: Returns a list of command executions that have
|
2107
2107
|
# already completed.
|
2108
2108
|
# @return [String]
|
2109
2109
|
#
|
@@ -3802,13 +3802,13 @@ module Aws::SSM
|
|
3802
3802
|
# The action for Patch Manager to take on patches included in the
|
3803
3803
|
# `RejectedPackages` list.
|
3804
3804
|
#
|
3805
|
-
# * <b> <code>ALLOW_AS_DEPENDENCY</code> </b
|
3805
|
+
# * <b> <code>ALLOW_AS_DEPENDENCY</code> </b>: A package in the
|
3806
3806
|
# `Rejected` patches list is installed only if it is a dependency of
|
3807
3807
|
# another package. It is considered compliant with the patch
|
3808
3808
|
# baseline, and its status is reported as `InstalledOther`. This is
|
3809
3809
|
# the default action if no option is specified.
|
3810
3810
|
#
|
3811
|
-
# * <b> <code>BLOCK</code> </b
|
3811
|
+
# * <b> <code>BLOCK</code> </b>: Packages in the `RejectedPatches`
|
3812
3812
|
# list, and packages that include them as dependencies, aren't
|
3813
3813
|
# installed under any circumstances. If a package was installed
|
3814
3814
|
# before it was added to the Rejected patches list, it is considered
|
@@ -6122,10 +6122,10 @@ module Aws::SSM
|
|
6122
6122
|
# @!attribute [rw] mappings
|
6123
6123
|
# Each entry in the array contains:
|
6124
6124
|
#
|
6125
|
-
# * `PatchGroup
|
6125
|
+
# * `PatchGroup`: string (between 1 and 256 characters. Regex:
|
6126
6126
|
# `^([\p\{L\}\p\{Z\}\p\{N\}_.:/=+\-@]*)$)`
|
6127
6127
|
#
|
6128
|
-
# * `PatchBaselineIdentity
|
6128
|
+
# * `PatchBaselineIdentity`: A `PatchBaselineIdentity` element.
|
6129
6129
|
# @return [Array<Types::PatchGroupPatchBaselineMapping>]
|
6130
6130
|
#
|
6131
6131
|
# @!attribute [rw] next_token
|
@@ -7994,9 +7994,9 @@ module Aws::SSM
|
|
7994
7994
|
#
|
7995
7995
|
# The map has the following format:
|
7996
7996
|
#
|
7997
|
-
# * `Key
|
7997
|
+
# * `Key`: string, between 1 and 255 characters
|
7998
7998
|
#
|
7999
|
-
# * `Value
|
7999
|
+
# * `Value`: an array of strings, each between 1 and 255 characters
|
8000
8000
|
# @return [Array<Hash<String,Types::MaintenanceWindowTaskParameterValueExpression>>]
|
8001
8001
|
#
|
8002
8002
|
# @!attribute [rw] priority
|
@@ -8573,11 +8573,11 @@ module Aws::SSM
|
|
8573
8573
|
# @!attribute [rw] parameter_filters
|
8574
8574
|
# Filters to limit the request results.
|
8575
8575
|
#
|
8576
|
-
# <note markdown="1"> The following `Key` values are supported for `GetParametersByPath
|
8576
|
+
# <note markdown="1"> The following `Key` values are supported for `GetParametersByPath`:
|
8577
8577
|
# `Type`, `KeyId`, and `Label`.
|
8578
8578
|
#
|
8579
8579
|
# The following `Key` values aren't supported for
|
8580
|
-
# `GetParametersByPath
|
8580
|
+
# `GetParametersByPath`: `tag`, `DataType`, `Name`, `Path`, and
|
8581
8581
|
# `Tier`.
|
8582
8582
|
#
|
8583
8583
|
# </note>
|
@@ -9535,11 +9535,11 @@ module Aws::SSM
|
|
9535
9535
|
#
|
9536
9536
|
# </note>
|
9537
9537
|
#
|
9538
|
-
# * `RebootIfNeeded
|
9538
|
+
# * `RebootIfNeeded`: Patch Manager tries to reboot the managed node
|
9539
9539
|
# if it installed any patches, or if any patches are detected with a
|
9540
9540
|
# status of `InstalledPendingReboot`.
|
9541
9541
|
#
|
9542
|
-
# * `NoReboot
|
9542
|
+
# * `NoReboot`: Patch Manager attempts to install missing packages
|
9543
9543
|
# without trying to reboot the system. Patches installed with this
|
9544
9544
|
# option are assigned a status of `InstalledPendingReboot`. These
|
9545
9545
|
# patches might not be in effect until a reboot is performed.
|
@@ -9599,15 +9599,15 @@ module Aws::SSM
|
|
9599
9599
|
# Defines a filter used in DescribeInstancePatchStatesForPatchGroup to
|
9600
9600
|
# scope down the information returned by the API.
|
9601
9601
|
#
|
9602
|
-
# **Example
|
9602
|
+
# **Example**: To filter for all managed nodes in a patch group having
|
9603
9603
|
# more than three patches with a `FailedCount` status, use the following
|
9604
9604
|
# for the filter:
|
9605
9605
|
#
|
9606
|
-
# * Value for `Key
|
9606
|
+
# * Value for `Key`: `FailedCount`
|
9607
9607
|
#
|
9608
|
-
# * Value for `Type
|
9608
|
+
# * Value for `Type`: `GreaterThan`
|
9609
9609
|
#
|
9610
|
-
# * Value for `Values
|
9610
|
+
# * Value for `Values`: `3`
|
9611
9611
|
#
|
9612
9612
|
# @!attribute [rw] key
|
9613
9613
|
# The key for the filter. Supported values include the following:
|
@@ -12535,12 +12535,12 @@ module Aws::SSM
|
|
12535
12535
|
# @!attribute [rw] notification_type
|
12536
12536
|
# The type of notification.
|
12537
12537
|
#
|
12538
|
-
# * `Command
|
12538
|
+
# * `Command`: Receive notification when the status of a command
|
12539
12539
|
# changes.
|
12540
12540
|
#
|
12541
|
-
# * `Invocation
|
12542
|
-
#
|
12543
|
-
#
|
12541
|
+
# * `Invocation`: For commands sent to multiple managed nodes, receive
|
12542
|
+
# notification on a per-node basis when the status of a command
|
12543
|
+
# changes.
|
12544
12544
|
# @return [String]
|
12545
12545
|
#
|
12546
12546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/NotificationConfig AWS API Documentation
|
@@ -14786,10 +14786,10 @@ module Aws::SSM
|
|
14786
14786
|
# standard-parameter tier. If you use the advanced-parameter tier, you
|
14787
14787
|
# can specify one of the following as the default:
|
14788
14788
|
#
|
14789
|
-
# * **Advanced
|
14789
|
+
# * **Advanced**: With this option, Parameter Store evaluates all
|
14790
14790
|
# requests as advanced parameters.
|
14791
14791
|
#
|
14792
|
-
# * **Intelligent-Tiering
|
14792
|
+
# * **Intelligent-Tiering**: With this option, Parameter Store
|
14793
14793
|
# evaluates each request to determine if the parameter is standard
|
14794
14794
|
# or advanced.
|
14795
14795
|
#
|
@@ -15068,23 +15068,23 @@ module Aws::SSM
|
|
15068
15068
|
# You can specify targets using managed node IDs, resource group
|
15069
15069
|
# names, or tags that have been applied to managed nodes.
|
15070
15070
|
#
|
15071
|
-
# **Example 1
|
15071
|
+
# **Example 1**: Specify managed node IDs
|
15072
15072
|
#
|
15073
15073
|
# `Key=InstanceIds,Values=<instance-id-1>,<instance-id-2>,<instance-id-3>`
|
15074
15074
|
#
|
15075
|
-
# **Example 2
|
15075
|
+
# **Example 2**: Use tag key-pairs applied to managed nodes
|
15076
15076
|
#
|
15077
15077
|
# `Key=tag:<my-tag-key>,Values=<my-tag-value-1>,<my-tag-value-2>`
|
15078
15078
|
#
|
15079
|
-
# **Example 3
|
15079
|
+
# **Example 3**: Use tag-keys applied to managed nodes
|
15080
15080
|
#
|
15081
15081
|
# `Key=tag-key,Values=<my-tag-key-1>,<my-tag-key-2>`
|
15082
15082
|
#
|
15083
|
-
# **Example 4
|
15083
|
+
# **Example 4**: Use resource group names
|
15084
15084
|
#
|
15085
15085
|
# `Key=resource-groups:Name,Values=<resource-group-name>`
|
15086
15086
|
#
|
15087
|
-
# **Example 5
|
15087
|
+
# **Example 5**: Use filters for resource group types
|
15088
15088
|
#
|
15089
15089
|
# `Key=resource-groups:ResourceTypeFilters,Values=<resource-type-1>,<resource-type-2>`
|
15090
15090
|
#
|
@@ -15194,7 +15194,7 @@ module Aws::SSM
|
|
15194
15194
|
# is created when you run `RegisterTaskWithMaintenanceWindow`.
|
15195
15195
|
#
|
15196
15196
|
# For more information, see the following topics in the in the *Amazon
|
15197
|
-
# Web Services Systems Manager User Guide
|
15197
|
+
# Web Services Systems Manager User Guide*:
|
15198
15198
|
#
|
15199
15199
|
# * [Using service-linked roles for Systems Manager][1]
|
15200
15200
|
#
|
@@ -15309,10 +15309,10 @@ module Aws::SSM
|
|
15309
15309
|
# Indicates whether tasks should continue to run after the cutoff time
|
15310
15310
|
# specified in the maintenance windows is reached.
|
15311
15311
|
#
|
15312
|
-
# * `CONTINUE_TASK
|
15312
|
+
# * `CONTINUE_TASK`: When the cutoff time is reached, any tasks that
|
15313
15313
|
# are running continue. The default value.
|
15314
15314
|
#
|
15315
|
-
# * `CANCEL_TASK
|
15315
|
+
# * `CANCEL_TASK`:
|
15316
15316
|
#
|
15317
15317
|
# * For Automation, Lambda, Step Functions tasks: When the cutoff
|
15318
15318
|
# time is reached, any task invocations that are already running
|
@@ -15421,7 +15421,7 @@ module Aws::SSM
|
|
15421
15421
|
#
|
15422
15422
|
# MaintenanceWindow: mw-012345abcde
|
15423
15423
|
#
|
15424
|
-
# `Automation
|
15424
|
+
# `Automation`: `example-c160-4567-8519-012345abcde`
|
15425
15425
|
#
|
15426
15426
|
# PatchBaseline: pb-012345abcde
|
15427
15427
|
#
|
@@ -15467,6 +15467,8 @@ module Aws::SSM
|
|
15467
15467
|
# The Amazon Resource Name (ARN) of the service setting to reset. The
|
15468
15468
|
# setting ID can be one of the following.
|
15469
15469
|
#
|
15470
|
+
# * `/ssm/managed-instance/default-ec2-instance-management-role`
|
15471
|
+
#
|
15470
15472
|
# * `/ssm/automation/customer-script-log-destination`
|
15471
15473
|
#
|
15472
15474
|
# * `/ssm/automation/customer-script-log-group-name`
|
@@ -15907,16 +15909,16 @@ module Aws::SSM
|
|
15907
15909
|
# The data type name for including resource data sync state. There are
|
15908
15910
|
# four sync states:
|
15909
15911
|
#
|
15910
|
-
# `OrganizationNotExists
|
15912
|
+
# `OrganizationNotExists`: Your organization doesn't exist.
|
15911
15913
|
#
|
15912
|
-
# `NoPermissions
|
15914
|
+
# `NoPermissions`: The system can't locate the service-linked role.
|
15913
15915
|
# This role is automatically created when a user creates a resource
|
15914
15916
|
# data sync in Explorer.
|
15915
15917
|
#
|
15916
|
-
# `InvalidOrganizationalUnit
|
15918
|
+
# `InvalidOrganizationalUnit`: You specified or selected an invalid
|
15917
15919
|
# unit in the resource data sync configuration.
|
15918
15920
|
#
|
15919
|
-
# `TrustedAccessDisabled
|
15921
|
+
# `TrustedAccessDisabled`: You disabled Systems Manager access in the
|
15920
15922
|
# organization in Organizations.
|
15921
15923
|
# @return [String]
|
15922
15924
|
#
|
@@ -17405,13 +17407,13 @@ module Aws::SSM
|
|
17405
17407
|
#
|
17406
17408
|
# * `Key=tag-key,Values=<my-tag-key-1>,<my-tag-key-2>`
|
17407
17409
|
#
|
17408
|
-
# * **Run Command and Maintenance window targets only
|
17410
|
+
# * **Run Command and Maintenance window targets only**:
|
17409
17411
|
# `Key=resource-groups:Name,Values=<resource-group-name>`
|
17410
17412
|
#
|
17411
|
-
# * **Maintenance window targets only
|
17413
|
+
# * **Maintenance window targets only**:
|
17412
17414
|
# `Key=resource-groups:ResourceTypeFilters,Values=<resource-type-1>,<resource-type-2>`
|
17413
17415
|
#
|
17414
|
-
# * **Automation targets only
|
17416
|
+
# * **Automation targets only**:
|
17415
17417
|
# `Key=ResourceGroup;Values=<resource-group-name>`
|
17416
17418
|
#
|
17417
17419
|
# For example:
|
@@ -17422,23 +17424,23 @@ module Aws::SSM
|
|
17422
17424
|
#
|
17423
17425
|
# * `Key=tag-key,Values=Name,Instance-Type,CostCenter`
|
17424
17426
|
#
|
17425
|
-
# * **Run Command and Maintenance window targets only
|
17427
|
+
# * **Run Command and Maintenance window targets only**:
|
17426
17428
|
# `Key=resource-groups:Name,Values=ProductionResourceGroup`
|
17427
17429
|
#
|
17428
17430
|
# This example demonstrates how to target all resources in the
|
17429
17431
|
# resource group **ProductionResourceGroup** in your maintenance
|
17430
17432
|
# window.
|
17431
17433
|
#
|
17432
|
-
# * **Maintenance window targets only
|
17434
|
+
# * **Maintenance window targets only**:
|
17433
17435
|
# `Key=resource-groups:ResourceTypeFilters,Values=AWS::EC2::INSTANCE,AWS::EC2::VPC`
|
17434
17436
|
#
|
17435
17437
|
# This example demonstrates how to target only Amazon Elastic Compute
|
17436
17438
|
# Cloud (Amazon EC2) instances and VPCs in your maintenance window.
|
17437
17439
|
#
|
17438
|
-
# * **Automation targets only
|
17440
|
+
# * **Automation targets only**:
|
17439
17441
|
# `Key=ResourceGroup,Values=MyResourceGroup`
|
17440
17442
|
#
|
17441
|
-
# * **State Manager association targets only
|
17443
|
+
# * **State Manager association targets only**:
|
17442
17444
|
# `Key=InstanceIds,Values=*`
|
17443
17445
|
#
|
17444
17446
|
# This example demonstrates how to target all managed instances in the
|
@@ -18497,7 +18499,7 @@ module Aws::SSM
|
|
18497
18499
|
# is created when you run `RegisterTaskWithMaintenanceWindow`.
|
18498
18500
|
#
|
18499
18501
|
# For more information, see the following topics in the in the *Amazon
|
18500
|
-
# Web Services Systems Manager User Guide
|
18502
|
+
# Web Services Systems Manager User Guide*:
|
18501
18503
|
#
|
18502
18504
|
# * [Using service-linked roles for Systems Manager][1]
|
18503
18505
|
#
|
@@ -18627,10 +18629,10 @@ module Aws::SSM
|
|
18627
18629
|
# Indicates whether tasks should continue to run after the cutoff time
|
18628
18630
|
# specified in the maintenance windows is reached.
|
18629
18631
|
#
|
18630
|
-
# * `CONTINUE_TASK
|
18632
|
+
# * `CONTINUE_TASK`: When the cutoff time is reached, any tasks that
|
18631
18633
|
# are running continue. The default value.
|
18632
18634
|
#
|
18633
|
-
# * `CANCEL_TASK
|
18635
|
+
# * `CANCEL_TASK`:
|
18634
18636
|
#
|
18635
18637
|
# * For Automation, Lambda, Step Functions tasks: When the cutoff
|
18636
18638
|
# time is reached, any task invocations that are already running
|
@@ -19046,13 +19048,13 @@ module Aws::SSM
|
|
19046
19048
|
# The action for Patch Manager to take on patches included in the
|
19047
19049
|
# `RejectedPackages` list.
|
19048
19050
|
#
|
19049
|
-
# * <b> <code>ALLOW_AS_DEPENDENCY</code> </b
|
19051
|
+
# * <b> <code>ALLOW_AS_DEPENDENCY</code> </b>: A package in the
|
19050
19052
|
# `Rejected` patches list is installed only if it is a dependency of
|
19051
19053
|
# another package. It is considered compliant with the patch
|
19052
19054
|
# baseline, and its status is reported as `InstalledOther`. This is
|
19053
19055
|
# the default action if no option is specified.
|
19054
19056
|
#
|
19055
|
-
# * <b> <code>BLOCK</code> </b
|
19057
|
+
# * <b> <code>BLOCK</code> </b>: Packages in the `RejectedPatches`
|
19056
19058
|
# list, and packages that include them as dependencies, aren't
|
19057
19059
|
# installed under any circumstances. If a package was installed
|
19058
19060
|
# before it was added to the `Rejected` patches list, it is
|
@@ -19210,7 +19212,7 @@ module Aws::SSM
|
|
19210
19212
|
# The request body of the UpdateServiceSetting API operation.
|
19211
19213
|
#
|
19212
19214
|
# @!attribute [rw] setting_id
|
19213
|
-
# The Amazon Resource Name (ARN) of the service setting to
|
19215
|
+
# The Amazon Resource Name (ARN) of the service setting to update. For
|
19214
19216
|
# example,
|
19215
19217
|
# `arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled`.
|
19216
19218
|
# The setting ID can be one of the following.
|
@@ -19230,28 +19232,39 @@ module Aws::SSM
|
|
19230
19232
|
# * `/ssm/parameter-store/default-parameter-tier`
|
19231
19233
|
#
|
19232
19234
|
# * `/ssm/parameter-store/high-throughput-enabled`
|
19235
|
+
#
|
19236
|
+
# <note markdown="1"> Permissions to update the
|
19237
|
+
# `/ssm/managed-instance/default-ec2-instance-management-role` setting
|
19238
|
+
# should only be provided to administrators. Implement least privilege
|
19239
|
+
# access when allowing individuals to configure or modify the Default
|
19240
|
+
# Host Management Configuration.
|
19241
|
+
#
|
19242
|
+
# </note>
|
19233
19243
|
# @return [String]
|
19234
19244
|
#
|
19235
19245
|
# @!attribute [rw] setting_value
|
19236
19246
|
# The new value to specify for the service setting. The following list
|
19237
19247
|
# specifies the available values for each setting.
|
19238
19248
|
#
|
19239
|
-
# * `/ssm/
|
19249
|
+
# * `/ssm/managed-instance/default-ec2-instance-management-role: The
|
19250
|
+
# name of an IAM role`
|
19251
|
+
#
|
19252
|
+
# * `/ssm/automation/customer-script-log-destination`: `CloudWatch`
|
19240
19253
|
#
|
19241
|
-
# * `/ssm/automation/customer-script-log-group-name
|
19254
|
+
# * `/ssm/automation/customer-script-log-group-name`: The name of an
|
19242
19255
|
# Amazon CloudWatch Logs log group
|
19243
19256
|
#
|
19244
|
-
# * `/ssm/documents/console/public-sharing-permission
|
19257
|
+
# * `/ssm/documents/console/public-sharing-permission`: `Enable` or
|
19245
19258
|
# `Disable`
|
19246
19259
|
#
|
19247
|
-
# * `/ssm/managed-instance/activation-tier
|
19260
|
+
# * `/ssm/managed-instance/activation-tier`: `standard` or `advanced`
|
19248
19261
|
#
|
19249
|
-
# * `/ssm/opsinsights/opscenter
|
19262
|
+
# * `/ssm/opsinsights/opscenter`: `Enabled` or `Disabled`
|
19250
19263
|
#
|
19251
|
-
# * `/ssm/parameter-store/default-parameter-tier
|
19264
|
+
# * `/ssm/parameter-store/default-parameter-tier`: `Standard`,
|
19252
19265
|
# `Advanced`, `Intelligent-Tiering`
|
19253
19266
|
#
|
19254
|
-
# * `/ssm/parameter-store/high-throughput-enabled
|
19267
|
+
# * `/ssm/parameter-store/high-throughput-enabled`: `true` or `false`
|
19255
19268
|
# @return [String]
|
19256
19269
|
#
|
19257
19270
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/UpdateServiceSettingRequest AWS API Documentation
|
data/lib/aws-sdk-ssm.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ssm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.150.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|