aws-sdk-ssm 1.186.0 → 1.191.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +185 -99
- data/lib/aws-sdk-ssm/endpoint_provider.rb +14 -18
- data/lib/aws-sdk-ssm/types.rb +154 -78
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0cf59ccb8eeccc2f508b0927b7387de6f1244496a3f65248c7efeb19d89b8dee
|
4
|
+
data.tar.gz: 07dd8ae4bdcc32bafe5ac284c7406f12a044417248b72b6f4c2c1732a140ab19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0caffd58fae3ca04c79ace31884aa2ada349a1745575da2c3c715b725a80f8324050519ca721d63245d534b01b37b6ce28b3077dffe4eef68d47b21946bc2d15
|
7
|
+
data.tar.gz: 4af0b10fe3983290503268d99b4d4f3e445dbededbfebf706c020b93e33f53d2b1b200f05b9b8961ac43eee53876aa5d23c341c79b71ee641b474f9eb09d2710
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,31 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.191.0 (2025-02-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Systems Manager doc-only updates for Feb. 2025.
|
8
|
+
|
9
|
+
1.190.0 (2025-02-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.189.0 (2025-02-06)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.188.0 (2025-01-24)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Systems Manager doc-only update for January, 2025.
|
23
|
+
|
24
|
+
1.187.0 (2025-01-15)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
28
|
+
|
4
29
|
1.186.0 (2024-11-21)
|
5
30
|
------------------
|
6
31
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.191.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -7,34 +7,34 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
-
require 'seahorse/client/plugins/content_length
|
11
|
-
require 'aws-sdk-core/plugins/credentials_configuration
|
12
|
-
require 'aws-sdk-core/plugins/logging
|
13
|
-
require 'aws-sdk-core/plugins/param_converter
|
14
|
-
require 'aws-sdk-core/plugins/param_validator
|
15
|
-
require 'aws-sdk-core/plugins/user_agent
|
16
|
-
require 'aws-sdk-core/plugins/helpful_socket_errors
|
17
|
-
require 'aws-sdk-core/plugins/retry_errors
|
18
|
-
require 'aws-sdk-core/plugins/global_configuration
|
19
|
-
require 'aws-sdk-core/plugins/regional_endpoint
|
20
|
-
require 'aws-sdk-core/plugins/endpoint_discovery
|
21
|
-
require 'aws-sdk-core/plugins/endpoint_pattern
|
22
|
-
require 'aws-sdk-core/plugins/response_paging
|
23
|
-
require 'aws-sdk-core/plugins/stub_responses
|
24
|
-
require 'aws-sdk-core/plugins/idempotency_token
|
25
|
-
require 'aws-sdk-core/plugins/invocation_id
|
26
|
-
require 'aws-sdk-core/plugins/jsonvalue_converter
|
27
|
-
require 'aws-sdk-core/plugins/client_metrics_plugin
|
28
|
-
require 'aws-sdk-core/plugins/client_metrics_send_plugin
|
29
|
-
require 'aws-sdk-core/plugins/transfer_encoding
|
30
|
-
require 'aws-sdk-core/plugins/http_checksum
|
31
|
-
require 'aws-sdk-core/plugins/checksum_algorithm
|
32
|
-
require 'aws-sdk-core/plugins/request_compression
|
33
|
-
require 'aws-sdk-core/plugins/defaults_mode
|
34
|
-
require 'aws-sdk-core/plugins/recursion_detection
|
35
|
-
require 'aws-sdk-core/plugins/telemetry
|
36
|
-
require 'aws-sdk-core/plugins/sign
|
37
|
-
require 'aws-sdk-core/plugins/protocols/json_rpc
|
10
|
+
require 'seahorse/client/plugins/content_length'
|
11
|
+
require 'aws-sdk-core/plugins/credentials_configuration'
|
12
|
+
require 'aws-sdk-core/plugins/logging'
|
13
|
+
require 'aws-sdk-core/plugins/param_converter'
|
14
|
+
require 'aws-sdk-core/plugins/param_validator'
|
15
|
+
require 'aws-sdk-core/plugins/user_agent'
|
16
|
+
require 'aws-sdk-core/plugins/helpful_socket_errors'
|
17
|
+
require 'aws-sdk-core/plugins/retry_errors'
|
18
|
+
require 'aws-sdk-core/plugins/global_configuration'
|
19
|
+
require 'aws-sdk-core/plugins/regional_endpoint'
|
20
|
+
require 'aws-sdk-core/plugins/endpoint_discovery'
|
21
|
+
require 'aws-sdk-core/plugins/endpoint_pattern'
|
22
|
+
require 'aws-sdk-core/plugins/response_paging'
|
23
|
+
require 'aws-sdk-core/plugins/stub_responses'
|
24
|
+
require 'aws-sdk-core/plugins/idempotency_token'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id'
|
26
|
+
require 'aws-sdk-core/plugins/jsonvalue_converter'
|
27
|
+
require 'aws-sdk-core/plugins/client_metrics_plugin'
|
28
|
+
require 'aws-sdk-core/plugins/client_metrics_send_plugin'
|
29
|
+
require 'aws-sdk-core/plugins/transfer_encoding'
|
30
|
+
require 'aws-sdk-core/plugins/http_checksum'
|
31
|
+
require 'aws-sdk-core/plugins/checksum_algorithm'
|
32
|
+
require 'aws-sdk-core/plugins/request_compression'
|
33
|
+
require 'aws-sdk-core/plugins/defaults_mode'
|
34
|
+
require 'aws-sdk-core/plugins/recursion_detection'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry'
|
36
|
+
require 'aws-sdk-core/plugins/sign'
|
37
|
+
require 'aws-sdk-core/plugins/protocols/json_rpc'
|
38
38
|
|
39
39
|
module Aws::SSM
|
40
40
|
# An API client for SSM. To construct a client, you need to configure a `:region` and `:credentials`.
|
@@ -257,11 +257,34 @@ module Aws::SSM
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -565,8 +588,8 @@ module Aws::SSM
|
|
565
588
|
|
566
589
|
# Associates a related item to a Systems Manager OpsCenter OpsItem. For
|
567
590
|
# example, you can associate an Incident Manager incident or analysis
|
568
|
-
# with an OpsItem. Incident Manager and OpsCenter are
|
569
|
-
#
|
591
|
+
# with an OpsItem. Incident Manager and OpsCenter are tools in Amazon
|
592
|
+
# Web Services Systems Manager.
|
570
593
|
#
|
571
594
|
# @option params [required, String] :ops_item_id
|
572
595
|
# The ID of the OpsItem to which you want to associate a resource as a
|
@@ -679,10 +702,10 @@ module Aws::SSM
|
|
679
702
|
# your on-premises servers, edge devices, or virtual machine (VM) with
|
680
703
|
# Amazon Web Services Systems Manager. Registering these machines with
|
681
704
|
# Systems Manager makes it possible to manage them using Systems Manager
|
682
|
-
#
|
683
|
-
#
|
684
|
-
#
|
685
|
-
#
|
705
|
+
# tools. You use the activation code and ID when installing SSM Agent on
|
706
|
+
# machines in your hybrid environment. For more information about
|
707
|
+
# requirements for managing on-premises machines using Systems Manager,
|
708
|
+
# see [Using Amazon Web Services Systems Manager in hybrid and
|
686
709
|
# multicloud environments][1] in the *Amazon Web Services Systems
|
687
710
|
# Manager User Guide*.
|
688
711
|
#
|
@@ -814,10 +837,10 @@ module Aws::SSM
|
|
814
837
|
# targets, the association specifies a schedule for when the
|
815
838
|
# configuration is reapplied. For dynamic targets, such as an Amazon Web
|
816
839
|
# Services resource group or an Amazon Web Services autoscaling group,
|
817
|
-
# State Manager, a
|
818
|
-
#
|
819
|
-
#
|
820
|
-
#
|
840
|
+
# State Manager, a tool in Amazon Web Services Systems Manager applies
|
841
|
+
# the configuration when new managed nodes are added to the group. The
|
842
|
+
# association also specifies actions to take when applying the
|
843
|
+
# configuration. For example, an association for anti-virus software
|
821
844
|
# might run once a day. If the software isn't installed, then State
|
822
845
|
# Manager installs it. If the software is installed, but the service
|
823
846
|
# isn't running, then the association might instruct State Manager to
|
@@ -903,7 +926,7 @@ module Aws::SSM
|
|
903
926
|
# Choose the parameter that will define how your automation will branch
|
904
927
|
# out. This target is required for associations that use an Automation
|
905
928
|
# runbook and target resources by using rate controls. Automation is a
|
906
|
-
#
|
929
|
+
# tool in Amazon Web Services Systems Manager.
|
907
930
|
#
|
908
931
|
# @option params [String] :max_errors
|
909
932
|
# The number of errors that are allowed before the system stops sending
|
@@ -955,15 +978,27 @@ module Aws::SSM
|
|
955
978
|
# @option params [Boolean] :apply_only_at_cron_interval
|
956
979
|
# By default, when you create a new association, the system runs it
|
957
980
|
# immediately after it is created and then according to the schedule you
|
958
|
-
# specified
|
959
|
-
#
|
960
|
-
#
|
981
|
+
# specified and when target changes are detected. Specify `true` for
|
982
|
+
# `ApplyOnlyAtCronInterval`if you want the association to run only
|
983
|
+
# according to the schedule you specified.
|
984
|
+
#
|
985
|
+
# For more information, see [Understanding when associations are applied
|
986
|
+
# to resources][1] and [>About target updates with Automation
|
987
|
+
# runbooks][2] in the *Amazon Web Services Systems Manager User Guide*.
|
988
|
+
#
|
989
|
+
# This parameter isn't supported for rate expressions.
|
990
|
+
#
|
991
|
+
#
|
992
|
+
#
|
993
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#state-manager-about-scheduling
|
994
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#runbook-target-updates
|
961
995
|
#
|
962
996
|
# @option params [Array<String>] :calendar_names
|
963
|
-
# The names
|
997
|
+
# The names of Amazon Resource Names (ARNs) of the Change Calendar type
|
964
998
|
# documents you want to gate your associations under. The associations
|
965
999
|
# only run when that change calendar is open. For more information, see
|
966
|
-
# [Amazon Web Services Systems Manager Change Calendar][1]
|
1000
|
+
# [Amazon Web Services Systems Manager Change Calendar][1] in the
|
1001
|
+
# *Amazon Web Services Systems Manager User Guide*.
|
967
1002
|
#
|
968
1003
|
#
|
969
1004
|
#
|
@@ -2798,9 +2833,20 @@ module Aws::SSM
|
|
2798
2833
|
end
|
2799
2834
|
|
2800
2835
|
# Removes the server or virtual machine from the list of registered
|
2801
|
-
# servers.
|
2802
|
-
#
|
2803
|
-
#
|
2836
|
+
# servers.
|
2837
|
+
#
|
2838
|
+
# If you want to reregister an on-premises server, edge device, or VM,
|
2839
|
+
# you must use a different Activation Code and Activation ID than used
|
2840
|
+
# to register the machine previously. The Activation Code and Activation
|
2841
|
+
# ID must not have already been used on the maximum number of
|
2842
|
+
# activations specified when they were created. For more information,
|
2843
|
+
# see [Deregistering managed nodes in a hybrid and multicloud
|
2844
|
+
# environment][1] in the *Amazon Web Services Systems Manager User
|
2845
|
+
# Guide*.
|
2846
|
+
#
|
2847
|
+
#
|
2848
|
+
#
|
2849
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/fleet-manager-deregister-hybrid-nodes.html
|
2804
2850
|
#
|
2805
2851
|
# @option params [required, String] :instance_id
|
2806
2852
|
# The ID assigned to the managed node when you registered it using the
|
@@ -5643,8 +5689,8 @@ module Aws::SSM
|
|
5643
5689
|
|
5644
5690
|
# Deletes the association between an OpsItem and a related item. For
|
5645
5691
|
# example, this API operation can delete an Incident Manager incident
|
5646
|
-
# from an OpsItem. Incident Manager is a
|
5647
|
-
#
|
5692
|
+
# from an OpsItem. Incident Manager is a tool in Amazon Web Services
|
5693
|
+
# Systems Manager.
|
5648
5694
|
#
|
5649
5695
|
# @option params [required, String] :ops_item_id
|
5650
5696
|
# The ID of the OpsItem for which you want to delete an association
|
@@ -5887,7 +5933,7 @@ module Aws::SSM
|
|
5887
5933
|
# open. If one or more calendars in the request are closed, the status
|
5888
5934
|
# returned is `CLOSED`.
|
5889
5935
|
#
|
5890
|
-
# For more information about Change Calendar, a
|
5936
|
+
# For more information about Change Calendar, a tool in Amazon Web
|
5891
5937
|
# Services Systems Manager, see [Amazon Web Services Systems Manager
|
5892
5938
|
# Change Calendar][1] in the *Amazon Web Services Systems Manager User
|
5893
5939
|
# Guide*.
|
@@ -5897,7 +5943,7 @@ module Aws::SSM
|
|
5897
5943
|
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar.html
|
5898
5944
|
#
|
5899
5945
|
# @option params [required, Array<String>] :calendar_names
|
5900
|
-
# The names
|
5946
|
+
# The names of Amazon Resource Names (ARNs) of the Systems Manager
|
5901
5947
|
# documents (SSM documents) that represent the calendar entries for
|
5902
5948
|
# which you want to get the state.
|
5903
5949
|
#
|
@@ -6114,8 +6160,8 @@ module Aws::SSM
|
|
6114
6160
|
# Interface (CLI), the system attempts to use your local Amazon Web
|
6115
6161
|
# Services credentials and the operation fails. To avoid this, you can
|
6116
6162
|
# run the command in the Amazon Web Services Systems Manager console.
|
6117
|
-
# Use Run Command, a
|
6118
|
-
#
|
6163
|
+
# Use Run Command, a tool in Amazon Web Services Systems Manager, with
|
6164
|
+
# an SSM document that enables you to target a managed node with a
|
6119
6165
|
# script or command. For example, run the command using the
|
6120
6166
|
# `AWS-RunShellScript` document or the `AWS-RunPowerShellScript`
|
6121
6167
|
# document.
|
@@ -7257,8 +7303,8 @@ module Aws::SSM
|
|
7257
7303
|
req.send_request(options)
|
7258
7304
|
end
|
7259
7305
|
|
7260
|
-
# Retrieve information about one or more parameters
|
7261
|
-
# hierarchy.
|
7306
|
+
# Retrieve information about one or more parameters under a specified
|
7307
|
+
# level in a hierarchy.
|
7262
7308
|
#
|
7263
7309
|
# Request results are returned on a best-effort basis. If you specify
|
7264
7310
|
# `MaxResults` in the request, the response includes information up to
|
@@ -7770,8 +7816,8 @@ module Aws::SSM
|
|
7770
7816
|
# Returns all State Manager associations in the current Amazon Web
|
7771
7817
|
# Services account and Amazon Web Services Region. You can limit the
|
7772
7818
|
# results to a specific State Manager association document or managed
|
7773
|
-
# node by specifying a filter. State Manager is a
|
7774
|
-
#
|
7819
|
+
# node by specifying a filter. State Manager is a tool in Amazon Web
|
7820
|
+
# Services Systems Manager.
|
7775
7821
|
#
|
7776
7822
|
# @option params [Array<Types::AssociationFilter>] :association_filter_list
|
7777
7823
|
# One or more filters. Use a filter to return a more specific list of
|
@@ -8477,9 +8523,15 @@ module Aws::SSM
|
|
8477
8523
|
# filter criteria.
|
8478
8524
|
#
|
8479
8525
|
# @option params [String] :sync_name
|
8480
|
-
# The name of the resource data sync to
|
8481
|
-
#
|
8482
|
-
#
|
8526
|
+
# The name of the Amazon Web Services managed resource data sync to
|
8527
|
+
# retrieve information about.
|
8528
|
+
#
|
8529
|
+
# For cross-account/cross-Region configurations, this parameter is
|
8530
|
+
# required, and the name of the supported resource data sync is
|
8531
|
+
# `AWS-QuickSetup-ManagedNode`.
|
8532
|
+
#
|
8533
|
+
# For single account/single-Region configurations, the parameter is not
|
8534
|
+
# required.
|
8483
8535
|
#
|
8484
8536
|
# @option params [Array<Types::NodeFilter>] :filters
|
8485
8537
|
# One or more filters. Use a filter to return a more specific list of
|
@@ -8601,9 +8653,15 @@ module Aws::SSM
|
|
8601
8653
|
# aggregator you specify.
|
8602
8654
|
#
|
8603
8655
|
# @option params [String] :sync_name
|
8604
|
-
# The name of the resource data sync to
|
8605
|
-
#
|
8606
|
-
#
|
8656
|
+
# The name of the Amazon Web Services managed resource data sync to
|
8657
|
+
# retrieve information about.
|
8658
|
+
#
|
8659
|
+
# For cross-account/cross-Region configurations, this parameter is
|
8660
|
+
# required, and the name of the supported resource data sync is
|
8661
|
+
# `AWS-QuickSetup-ManagedNode`.
|
8662
|
+
#
|
8663
|
+
# For single account/single-Region configurations, the parameter is not
|
8664
|
+
# required.
|
8607
8665
|
#
|
8608
8666
|
# @option params [Array<Types::NodeFilter>] :filters
|
8609
8667
|
# One or more filters. Use a filter to generate a summary that matches
|
@@ -8774,8 +8832,8 @@ module Aws::SSM
|
|
8774
8832
|
end
|
8775
8833
|
|
8776
8834
|
# Lists all related-item resources associated with a Systems Manager
|
8777
|
-
# OpsCenter OpsItem. OpsCenter is a
|
8778
|
-
#
|
8835
|
+
# OpsCenter OpsItem. OpsCenter is a tool in Amazon Web Services Systems
|
8836
|
+
# Manager.
|
8779
8837
|
#
|
8780
8838
|
# @option params [String] :ops_item_id
|
8781
8839
|
# The ID of the OpsItem for which you want to list all related-item
|
@@ -9310,11 +9368,11 @@ module Aws::SSM
|
|
9310
9368
|
req.send_request(options)
|
9311
9369
|
end
|
9312
9370
|
|
9313
|
-
#
|
9371
|
+
# Create or update a parameter in Parameter Store.
|
9314
9372
|
#
|
9315
9373
|
# @option params [required, String] :name
|
9316
|
-
# The fully qualified name of the parameter that you want to
|
9317
|
-
#
|
9374
|
+
# The fully qualified name of the parameter that you want to create or
|
9375
|
+
# update.
|
9318
9376
|
#
|
9319
9377
|
# <note markdown="1"> You can't enter the Amazon Resource Name (ARN) for a parameter, only
|
9320
9378
|
# the parameter name itself.
|
@@ -9376,13 +9434,13 @@ module Aws::SSM
|
|
9376
9434
|
# value limit of 8 KB.
|
9377
9435
|
#
|
9378
9436
|
# <note markdown="1"> Parameters can't be referenced or nested in the values of other
|
9379
|
-
# parameters. You can't include
|
9380
|
-
# parameter value.
|
9437
|
+
# parameters. You can't include values wrapped in double brackets
|
9438
|
+
# `{{}}` or `{{ssm:parameter-name}}` in a parameter value.
|
9381
9439
|
#
|
9382
9440
|
# </note>
|
9383
9441
|
#
|
9384
9442
|
# @option params [String] :type
|
9385
|
-
# The type of parameter that you want to
|
9443
|
+
# The type of parameter that you want to create.
|
9386
9444
|
#
|
9387
9445
|
# <note markdown="1"> `SecureString` isn't currently supported for CloudFormation
|
9388
9446
|
# templates.
|
@@ -9403,7 +9461,7 @@ module Aws::SSM
|
|
9403
9461
|
# parameters that use the `SecureString` data type.
|
9404
9462
|
#
|
9405
9463
|
# If you don't specify a key ID, the system uses the default key
|
9406
|
-
# associated with your Amazon Web Services account which is not as
|
9464
|
+
# associated with your Amazon Web Services account, which is not as
|
9407
9465
|
# secure as using a custom key.
|
9408
9466
|
#
|
9409
9467
|
# * To use a custom KMS key, choose the `SecureString` data type with
|
@@ -9517,8 +9575,8 @@ module Aws::SSM
|
|
9517
9575
|
#
|
9518
9576
|
# @option params [String] :policies
|
9519
9577
|
# One or more policies to apply to a parameter. This operation takes a
|
9520
|
-
# JSON array. Parameter Store, a
|
9521
|
-
#
|
9578
|
+
# JSON array. Parameter Store, a tool in Amazon Web Services Systems
|
9579
|
+
# Manager supports the following policy types:
|
9522
9580
|
#
|
9523
9581
|
# Expiration: This policy deletes the parameter after it expires. When
|
9524
9582
|
# you create the policy, you specify the expiration date. You can update
|
@@ -10527,7 +10585,7 @@ module Aws::SSM
|
|
10527
10585
|
#
|
10528
10586
|
# @option params [Types::CloudWatchOutputConfig] :cloud_watch_output_config
|
10529
10587
|
# Enables Amazon Web Services Systems Manager to send Run Command output
|
10530
|
-
# to Amazon CloudWatch Logs. Run Command is a
|
10588
|
+
# to Amazon CloudWatch Logs. Run Command is a tool in Amazon Web
|
10531
10589
|
# Services Systems Manager.
|
10532
10590
|
#
|
10533
10591
|
# @option params [Types::AlarmConfiguration] :alarm_configuration
|
@@ -10754,8 +10812,11 @@ module Aws::SSM
|
|
10754
10812
|
#
|
10755
10813
|
# * `Key=OS,Value=Windows`
|
10756
10814
|
#
|
10757
|
-
# <note markdown="1">
|
10758
|
-
#
|
10815
|
+
# <note markdown="1"> The `Array Members` maximum value is reported as 1000. This number
|
10816
|
+
# includes capacity reserved for internal operations. When calling the
|
10817
|
+
# `StartAutomationExecution` action, you can specify a maximum of 5
|
10818
|
+
# tags. You can, however, use the AddTagsToResource action to add up to
|
10819
|
+
# a total of 50 tags to an existing automation configuration.
|
10759
10820
|
#
|
10760
10821
|
# </note>
|
10761
10822
|
#
|
@@ -10924,6 +10985,14 @@ module Aws::SSM
|
|
10924
10985
|
#
|
10925
10986
|
# * `Key=Region,Value=us-east-2`
|
10926
10987
|
#
|
10988
|
+
# <note markdown="1"> The `Array Members` maximum value is reported as 1000. This number
|
10989
|
+
# includes capacity reserved for internal operations. When calling the
|
10990
|
+
# `StartChangeRequestExecution` action, you can specify a maximum of 5
|
10991
|
+
# tags. You can, however, use the AddTagsToResource action to add up to
|
10992
|
+
# a total of 50 tags to an existing change request configuration.
|
10993
|
+
#
|
10994
|
+
# </note>
|
10995
|
+
#
|
10927
10996
|
# @option params [Time,DateTime,Date,Integer,String] :scheduled_end_time
|
10928
10997
|
# The time that the requester expects the runbook workflow related to
|
10929
10998
|
# the change request to complete. The time is an estimate only that the
|
@@ -11167,7 +11236,13 @@ module Aws::SSM
|
|
11167
11236
|
#
|
11168
11237
|
# @option params [Hash<String,Array>] :parameters
|
11169
11238
|
# The values you want to specify for the parameters defined in the
|
11170
|
-
# Session document.
|
11239
|
+
# Session document. For more information about these parameters, see
|
11240
|
+
# [Create a Session Manager preferences document][1] in the *Amazon Web
|
11241
|
+
# Services Systems Manager User Guide*.
|
11242
|
+
#
|
11243
|
+
#
|
11244
|
+
#
|
11245
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/getting-started-create-preferences-cli.html
|
11171
11246
|
#
|
11172
11247
|
# @return [Types::StartSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11173
11248
|
#
|
@@ -11334,8 +11409,8 @@ module Aws::SSM
|
|
11334
11409
|
#
|
11335
11410
|
# @option params [Hash<String,Array>] :parameters
|
11336
11411
|
# The parameters you want to update for the association. If you create a
|
11337
|
-
# parameter using Parameter Store, a
|
11338
|
-
#
|
11412
|
+
# parameter using Parameter Store, a tool in Amazon Web Services Systems
|
11413
|
+
# Manager, you can reference the parameter using
|
11339
11414
|
# `{{ssm:parameter-name}}`.
|
11340
11415
|
#
|
11341
11416
|
# @option params [String] :document_version
|
@@ -11394,7 +11469,7 @@ module Aws::SSM
|
|
11394
11469
|
# Choose the parameter that will define how your automation will branch
|
11395
11470
|
# out. This target is required for associations that use an Automation
|
11396
11471
|
# runbook and target resources by using rate controls. Automation is a
|
11397
|
-
#
|
11472
|
+
# tool in Amazon Web Services Systems Manager.
|
11398
11473
|
#
|
11399
11474
|
# @option params [String] :max_errors
|
11400
11475
|
# The number of errors that are allowed before the system stops sending
|
@@ -11438,8 +11513,8 @@ module Aws::SSM
|
|
11438
11513
|
#
|
11439
11514
|
# In `MANUAL` mode, you must specify the `AssociationId` as a parameter
|
11440
11515
|
# for the PutComplianceItems API operation. In this case, compliance
|
11441
|
-
# data isn't managed by State Manager, a
|
11442
|
-
#
|
11516
|
+
# data isn't managed by State Manager, a tool in Amazon Web Services
|
11517
|
+
# Systems Manager. It is managed by your direct call to the
|
11443
11518
|
# PutComplianceItems API operation.
|
11444
11519
|
#
|
11445
11520
|
# By default, all associations use `AUTO` mode.
|
@@ -11447,32 +11522,43 @@ module Aws::SSM
|
|
11447
11522
|
# @option params [Boolean] :apply_only_at_cron_interval
|
11448
11523
|
# By default, when you update an association, the system runs it
|
11449
11524
|
# immediately after it is updated and then according to the schedule you
|
11450
|
-
# specified. Specify
|
11451
|
-
#
|
11452
|
-
# for rate expressions.
|
11525
|
+
# specified. Specify `true` for `ApplyOnlyAtCronInterval` if you want
|
11526
|
+
# the association to run only according to the schedule you specified.
|
11453
11527
|
#
|
11454
11528
|
# If you chose this option when you created an association and later you
|
11455
|
-
# edit that association or you make changes to the
|
11456
|
-
# that association is based
|
11457
|
-
#
|
11458
|
-
#
|
11459
|
-
#
|
11460
|
-
#
|
11461
|
-
#
|
11462
|
-
#
|
11463
|
-
#
|
11464
|
-
#
|
11465
|
-
#
|
11529
|
+
# edit that association or you make changes to the Automation runbook or
|
11530
|
+
# SSM document on which that association is based, State Manager applies
|
11531
|
+
# the association at the next specified cron interval. For example, if
|
11532
|
+
# you chose the `Latest` version of an SSM document when you created an
|
11533
|
+
# association and you edit the association by choosing a different
|
11534
|
+
# document version on the Documents page, State Manager applies the
|
11535
|
+
# association at the next specified cron interval if you previously set
|
11536
|
+
# `ApplyOnlyAtCronInterval` to `true`. If this option wasn't selected,
|
11537
|
+
# State Manager immediately runs the association.
|
11538
|
+
#
|
11539
|
+
# For more information, see [Understanding when associations are applied
|
11540
|
+
# to resources][1] and [About target updates with Automation
|
11541
|
+
# runbooks][2] in the *Amazon Web Services Systems Manager User Guide*.
|
11542
|
+
#
|
11543
|
+
# This parameter isn't supported for rate expressions.
|
11544
|
+
#
|
11545
|
+
# You can reset this parameter. To do so, specify the
|
11466
11546
|
# `no-apply-only-at-cron-interval` parameter when you update the
|
11467
11547
|
# association from the command line. This parameter forces the
|
11468
11548
|
# association to run immediately after updating it and according to the
|
11469
11549
|
# interval specified.
|
11470
11550
|
#
|
11551
|
+
#
|
11552
|
+
#
|
11553
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#state-manager-about-scheduling
|
11554
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#runbook-target-updates
|
11555
|
+
#
|
11471
11556
|
# @option params [Array<String>] :calendar_names
|
11472
11557
|
# The names or Amazon Resource Names (ARNs) of the Change Calendar type
|
11473
11558
|
# documents you want to gate your associations under. The associations
|
11474
11559
|
# only run when that change calendar is open. For more information, see
|
11475
|
-
# [Amazon Web Services Systems Manager Change Calendar][1]
|
11560
|
+
# [Amazon Web Services Systems Manager Change Calendar][1] in the
|
11561
|
+
# *Amazon Web Services Systems Manager User Guide*.
|
11476
11562
|
#
|
11477
11563
|
#
|
11478
11564
|
#
|
@@ -13238,7 +13324,7 @@ module Aws::SSM
|
|
13238
13324
|
tracer: tracer
|
13239
13325
|
)
|
13240
13326
|
context[:gem_name] = 'aws-sdk-ssm'
|
13241
|
-
context[:gem_version] = '1.
|
13327
|
+
context[:gem_version] = '1.191.0'
|
13242
13328
|
Seahorse::Client::Request.new(handlers, context)
|
13243
13329
|
end
|
13244
13330
|
|
@@ -10,43 +10,39 @@
|
|
10
10
|
module Aws::SSM
|
11
11
|
class EndpointProvider
|
12
12
|
def resolve_endpoint(parameters)
|
13
|
-
|
14
|
-
|
15
|
-
use_fips = parameters.use_fips
|
16
|
-
endpoint = parameters.endpoint
|
17
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
13
|
+
if Aws::Endpoints::Matchers.set?(parameters.endpoint)
|
14
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
19
15
|
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
20
16
|
end
|
21
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
17
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
22
18
|
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
19
|
end
|
24
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
20
|
+
return Aws::Endpoints::Endpoint.new(url: parameters.endpoint, headers: {}, properties: {})
|
25
21
|
end
|
26
|
-
if Aws::Endpoints::Matchers.set?(region)
|
27
|
-
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
if Aws::Endpoints::Matchers.set?(parameters.region)
|
23
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
|
24
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
29
25
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
-
return Aws::Endpoints::Endpoint.new(url: "https://ssm-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
26
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ssm-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
31
27
|
end
|
32
28
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
29
|
end
|
34
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
30
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
35
31
|
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
32
|
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
37
|
-
return Aws::Endpoints::Endpoint.new(url: "https://ssm.#{region}.amazonaws.com", headers: {}, properties: {})
|
33
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ssm.#{parameters.region}.amazonaws.com", headers: {}, properties: {})
|
38
34
|
end
|
39
|
-
return Aws::Endpoints::Endpoint.new(url: "https://ssm-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ssm-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
40
36
|
end
|
41
37
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
42
38
|
end
|
43
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
39
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
44
40
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
45
|
-
return Aws::Endpoints::Endpoint.new(url: "https://ssm.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ssm.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
46
42
|
end
|
47
43
|
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
48
44
|
end
|
49
|
-
return Aws::Endpoints::Endpoint.new(url: "https://ssm.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://ssm.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
50
46
|
end
|
51
47
|
end
|
52
48
|
raise ArgumentError, "Invalid Configuration: Missing Region"
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -428,7 +428,7 @@ module Aws::SSM
|
|
428
428
|
# Choose the parameter that will define how your automation will
|
429
429
|
# branch out. This target is required for associations that use an
|
430
430
|
# Automation runbook and target resources by using rate controls.
|
431
|
-
# Automation is a
|
431
|
+
# Automation is a tool in Amazon Web Services Systems Manager.
|
432
432
|
# @return [String]
|
433
433
|
#
|
434
434
|
# @!attribute [rw] parameters
|
@@ -510,9 +510,9 @@ module Aws::SSM
|
|
510
510
|
#
|
511
511
|
# In `MANUAL` mode, you must specify the `AssociationId` as a
|
512
512
|
# parameter for the PutComplianceItems API operation. In this case,
|
513
|
-
# compliance data isn't managed by State Manager, a
|
514
|
-
#
|
515
|
-
#
|
513
|
+
# compliance data isn't managed by State Manager, a tool in Amazon
|
514
|
+
# Web Services Systems Manager. It is managed by your direct call to
|
515
|
+
# the PutComplianceItems API operation.
|
516
516
|
#
|
517
517
|
# By default, all associations use `AUTO` mode.
|
518
518
|
# @return [String]
|
@@ -529,7 +529,8 @@ module Aws::SSM
|
|
529
529
|
# The names or Amazon Resource Names (ARNs) of the Change Calendar
|
530
530
|
# type documents your associations are gated under. The associations
|
531
531
|
# only run when that change calendar is open. For more information,
|
532
|
-
# see [Amazon Web Services Systems Manager Change Calendar][1]
|
532
|
+
# see [Amazon Web Services Systems Manager Change Calendar][1] in the
|
533
|
+
# *Amazon Web Services Systems Manager User Guide*.
|
533
534
|
#
|
534
535
|
#
|
535
536
|
#
|
@@ -967,15 +968,15 @@ module Aws::SSM
|
|
967
968
|
#
|
968
969
|
# In `MANUAL` mode, you must specify the `AssociationId` as a
|
969
970
|
# parameter for the PutComplianceItems API operation. In this case,
|
970
|
-
# compliance data isn't managed by State Manager, a
|
971
|
-
#
|
972
|
-
#
|
971
|
+
# compliance data isn't managed by State Manager, a tool in Amazon
|
972
|
+
# Web Services Systems Manager. It is managed by your direct call to
|
973
|
+
# the PutComplianceItems API operation.
|
973
974
|
#
|
974
975
|
# By default, all associations use `AUTO` mode.
|
975
976
|
# @return [String]
|
976
977
|
#
|
977
978
|
# @!attribute [rw] apply_only_at_cron_interval
|
978
|
-
# By default, when you create
|
979
|
+
# By default, when you create new associations, the system runs it
|
979
980
|
# immediately after it is created and then according to the schedule
|
980
981
|
# you specified. Specify this option if you don't want an association
|
981
982
|
# to run immediately after you create it. This parameter isn't
|
@@ -987,7 +988,8 @@ module Aws::SSM
|
|
987
988
|
# type documents your associations are gated under. The associations
|
988
989
|
# for this version only run when that Change Calendar is open. For
|
989
990
|
# more information, see [Amazon Web Services Systems Manager Change
|
990
|
-
# Calendar][1]
|
991
|
+
# Calendar][1] in the *Amazon Web Services Systems Manager User
|
992
|
+
# Guide*.
|
991
993
|
#
|
992
994
|
#
|
993
995
|
#
|
@@ -2087,9 +2089,9 @@ module Aws::SSM
|
|
2087
2089
|
#
|
2088
2090
|
# @!attribute [rw] service_role
|
2089
2091
|
# The Identity and Access Management (IAM) service role that Run
|
2090
|
-
# Command, a
|
2091
|
-
#
|
2092
|
-
#
|
2092
|
+
# Command, a tool in Amazon Web Services Systems Manager, uses to act
|
2093
|
+
# on your behalf when sending notifications about command status
|
2094
|
+
# changes.
|
2093
2095
|
# @return [String]
|
2094
2096
|
#
|
2095
2097
|
# @!attribute [rw] notification_config
|
@@ -2379,9 +2381,9 @@ module Aws::SSM
|
|
2379
2381
|
#
|
2380
2382
|
# @!attribute [rw] service_role
|
2381
2383
|
# The Identity and Access Management (IAM) service role that Run
|
2382
|
-
# Command, a
|
2383
|
-
#
|
2384
|
-
#
|
2384
|
+
# Command, a tool in Amazon Web Services Systems Manager, uses to act
|
2385
|
+
# on your behalf when sending notifications about command status
|
2386
|
+
# changes on a per managed node basis.
|
2385
2387
|
# @return [String]
|
2386
2388
|
#
|
2387
2389
|
# @!attribute [rw] notification_config
|
@@ -2967,8 +2969,8 @@ module Aws::SSM
|
|
2967
2969
|
# @!attribute [rw] automation_target_parameter_name
|
2968
2970
|
# Specify the target for the association. This target is required for
|
2969
2971
|
# associations that use an Automation runbook and target resources by
|
2970
|
-
# using rate controls. Automation is a
|
2971
|
-
#
|
2972
|
+
# using rate controls. Automation is a tool in Amazon Web Services
|
2973
|
+
# Systems Manager.
|
2972
2974
|
# @return [String]
|
2973
2975
|
#
|
2974
2976
|
# @!attribute [rw] document_version
|
@@ -3037,26 +3039,39 @@ module Aws::SSM
|
|
3037
3039
|
#
|
3038
3040
|
# In `MANUAL` mode, you must specify the `AssociationId` as a
|
3039
3041
|
# parameter for the PutComplianceItems API operation. In this case,
|
3040
|
-
# compliance data isn't managed by State Manager, a
|
3041
|
-
#
|
3042
|
-
#
|
3042
|
+
# compliance data isn't managed by State Manager, a tool in Amazon
|
3043
|
+
# Web Services Systems Manager. It is managed by your direct call to
|
3044
|
+
# the PutComplianceItems API operation.
|
3043
3045
|
#
|
3044
3046
|
# By default, all associations use `AUTO` mode.
|
3045
3047
|
# @return [String]
|
3046
3048
|
#
|
3047
3049
|
# @!attribute [rw] apply_only_at_cron_interval
|
3048
|
-
# By default, when you create a new
|
3050
|
+
# By default, when you create a new association, the system runs it
|
3049
3051
|
# immediately after it is created and then according to the schedule
|
3050
|
-
# you specified
|
3051
|
-
#
|
3052
|
-
#
|
3052
|
+
# you specified and when target changes are detected. Specify `true`
|
3053
|
+
# for `ApplyOnlyAtCronInterval` if you want the association to run
|
3054
|
+
# only according to the schedule you specified.
|
3055
|
+
#
|
3056
|
+
# For more information, see [Understanding when associations are
|
3057
|
+
# applied to resources][1] and [>About target updates with
|
3058
|
+
# Automation runbooks][2] in the *Amazon Web Services Systems Manager
|
3059
|
+
# User Guide*.
|
3060
|
+
#
|
3061
|
+
# This parameter isn't supported for rate expressions.
|
3062
|
+
#
|
3063
|
+
#
|
3064
|
+
#
|
3065
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#state-manager-about-scheduling
|
3066
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#runbook-target-updates
|
3053
3067
|
# @return [Boolean]
|
3054
3068
|
#
|
3055
3069
|
# @!attribute [rw] calendar_names
|
3056
3070
|
# The names or Amazon Resource Names (ARNs) of the Change Calendar
|
3057
3071
|
# type documents your associations are gated under. The associations
|
3058
3072
|
# only run when that Change Calendar is open. For more information,
|
3059
|
-
# see [Amazon Web Services Systems Manager Change Calendar][1]
|
3073
|
+
# see [Amazon Web Services Systems Manager Change Calendar][1] in the
|
3074
|
+
# *Amazon Web Services Systems Manager User Guide*.
|
3060
3075
|
#
|
3061
3076
|
#
|
3062
3077
|
#
|
@@ -3235,7 +3250,7 @@ module Aws::SSM
|
|
3235
3250
|
# Choose the parameter that will define how your automation will
|
3236
3251
|
# branch out. This target is required for associations that use an
|
3237
3252
|
# Automation runbook and target resources by using rate controls.
|
3238
|
-
# Automation is a
|
3253
|
+
# Automation is a tool in Amazon Web Services Systems Manager.
|
3239
3254
|
# @return [String]
|
3240
3255
|
#
|
3241
3256
|
# @!attribute [rw] max_errors
|
@@ -3292,17 +3307,30 @@ module Aws::SSM
|
|
3292
3307
|
# @!attribute [rw] apply_only_at_cron_interval
|
3293
3308
|
# By default, when you create a new association, the system runs it
|
3294
3309
|
# immediately after it is created and then according to the schedule
|
3295
|
-
# you specified
|
3296
|
-
#
|
3297
|
-
#
|
3310
|
+
# you specified and when target changes are detected. Specify `true`
|
3311
|
+
# for `ApplyOnlyAtCronInterval`if you want the association to run only
|
3312
|
+
# according to the schedule you specified.
|
3313
|
+
#
|
3314
|
+
# For more information, see [Understanding when associations are
|
3315
|
+
# applied to resources][1] and [>About target updates with
|
3316
|
+
# Automation runbooks][2] in the *Amazon Web Services Systems Manager
|
3317
|
+
# User Guide*.
|
3318
|
+
#
|
3319
|
+
# This parameter isn't supported for rate expressions.
|
3320
|
+
#
|
3321
|
+
#
|
3322
|
+
#
|
3323
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#state-manager-about-scheduling
|
3324
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#runbook-target-updates
|
3298
3325
|
# @return [Boolean]
|
3299
3326
|
#
|
3300
3327
|
# @!attribute [rw] calendar_names
|
3301
|
-
# The names
|
3328
|
+
# The names of Amazon Resource Names (ARNs) of the Change Calendar
|
3302
3329
|
# type documents you want to gate your associations under. The
|
3303
3330
|
# associations only run when that change calendar is open. For more
|
3304
3331
|
# information, see [Amazon Web Services Systems Manager Change
|
3305
|
-
# Calendar][1]
|
3332
|
+
# Calendar][1] in the *Amazon Web Services Systems Manager User
|
3333
|
+
# Guide*.
|
3306
3334
|
#
|
3307
3335
|
#
|
3308
3336
|
#
|
@@ -6357,7 +6385,7 @@ module Aws::SSM
|
|
6357
6385
|
# @!attribute [rw] instances_with_unreported_not_applicable_patches
|
6358
6386
|
# The number of managed nodes with `NotApplicable` patches beyond the
|
6359
6387
|
# supported limit, which aren't reported by name to Inventory.
|
6360
|
-
# Inventory is a
|
6388
|
+
# Inventory is a tool in Amazon Web Services Systems Manager.
|
6361
6389
|
# @return [Integer]
|
6362
6390
|
#
|
6363
6391
|
# @!attribute [rw] instances_with_critical_non_compliant_patches
|
@@ -7529,7 +7557,7 @@ module Aws::SSM
|
|
7529
7557
|
end
|
7530
7558
|
|
7531
7559
|
# @!attribute [rw] calendar_names
|
7532
|
-
# The names
|
7560
|
+
# The names of Amazon Resource Names (ARNs) of the Systems Manager
|
7533
7561
|
# documents (SSM documents) that represent the calendar entries for
|
7534
7562
|
# which you want to get the state.
|
7535
7563
|
# @return [Array<String>]
|
@@ -10010,7 +10038,7 @@ module Aws::SSM
|
|
10010
10038
|
# @!attribute [rw] unreported_not_applicable_count
|
10011
10039
|
# The number of patches beyond the supported limit of
|
10012
10040
|
# `NotApplicableCount` that aren't reported by name to Inventory.
|
10013
|
-
# Inventory is a
|
10041
|
+
# Inventory is a tool in Amazon Web Services Systems Manager.
|
10014
10042
|
# @return [Integer]
|
10015
10043
|
#
|
10016
10044
|
# @!attribute [rw] not_applicable_count
|
@@ -12055,9 +12083,15 @@ module Aws::SSM
|
|
12055
12083
|
end
|
12056
12084
|
|
12057
12085
|
# @!attribute [rw] sync_name
|
12058
|
-
# The name of the resource data sync to
|
12059
|
-
#
|
12060
|
-
#
|
12086
|
+
# The name of the Amazon Web Services managed resource data sync to
|
12087
|
+
# retrieve information about.
|
12088
|
+
#
|
12089
|
+
# For cross-account/cross-Region configurations, this parameter is
|
12090
|
+
# required, and the name of the supported resource data sync is
|
12091
|
+
# `AWS-QuickSetup-ManagedNode`.
|
12092
|
+
#
|
12093
|
+
# For single account/single-Region configurations, the parameter is
|
12094
|
+
# not required.
|
12061
12095
|
# @return [String]
|
12062
12096
|
#
|
12063
12097
|
# @!attribute [rw] filters
|
@@ -12106,9 +12140,15 @@ module Aws::SSM
|
|
12106
12140
|
end
|
12107
12141
|
|
12108
12142
|
# @!attribute [rw] sync_name
|
12109
|
-
# The name of the resource data sync to
|
12110
|
-
#
|
12111
|
-
#
|
12143
|
+
# The name of the Amazon Web Services managed resource data sync to
|
12144
|
+
# retrieve information about.
|
12145
|
+
#
|
12146
|
+
# For cross-account/cross-Region configurations, this parameter is
|
12147
|
+
# required, and the name of the supported resource data sync is
|
12148
|
+
# `AWS-QuickSetup-ManagedNode`.
|
12149
|
+
#
|
12150
|
+
# For single account/single-Region configurations, the parameter is
|
12151
|
+
# not required.
|
12112
12152
|
# @return [String]
|
12113
12153
|
#
|
12114
12154
|
# @!attribute [rw] filters
|
@@ -14734,9 +14774,9 @@ module Aws::SSM
|
|
14734
14774
|
# @return [String]
|
14735
14775
|
#
|
14736
14776
|
# @!attribute [rw] policy_type
|
14737
|
-
# The type of policy. Parameter Store, a
|
14738
|
-
#
|
14739
|
-
#
|
14777
|
+
# The type of policy. Parameter Store, a tool in Amazon Web Services
|
14778
|
+
# Systems Manager, supports the following policy types: Expiration,
|
14779
|
+
# ExpirationNotification, and NoChangeNotification.
|
14740
14780
|
# @return [String]
|
14741
14781
|
#
|
14742
14782
|
# @!attribute [rw] policy_status
|
@@ -14886,6 +14926,12 @@ module Aws::SSM
|
|
14886
14926
|
|
14887
14927
|
# The parameter couldn't be found. Verify the name and try again.
|
14888
14928
|
#
|
14929
|
+
# <note markdown="1"> For the `DeleteParameter` and `GetParameter` actions, if the specified
|
14930
|
+
# parameter doesn't exist, the `ParameterNotFound` exception is *not*
|
14931
|
+
# recorded in CloudTrail event logs.
|
14932
|
+
#
|
14933
|
+
# </note>
|
14934
|
+
#
|
14889
14935
|
# @!attribute [rw] message
|
14890
14936
|
# @return [String]
|
14891
14937
|
#
|
@@ -15722,8 +15768,8 @@ module Aws::SSM
|
|
15722
15768
|
end
|
15723
15769
|
|
15724
15770
|
# @!attribute [rw] name
|
15725
|
-
# The fully qualified name of the parameter that you want to
|
15726
|
-
#
|
15771
|
+
# The fully qualified name of the parameter that you want to create or
|
15772
|
+
# update.
|
15727
15773
|
#
|
15728
15774
|
# <note markdown="1"> You can't enter the Amazon Resource Name (ARN) for a parameter,
|
15729
15775
|
# only the parameter name itself.
|
@@ -15789,14 +15835,14 @@ module Aws::SSM
|
|
15789
15835
|
# value limit of 8 KB.
|
15790
15836
|
#
|
15791
15837
|
# <note markdown="1"> Parameters can't be referenced or nested in the values of other
|
15792
|
-
# parameters. You can't include
|
15793
|
-
# a parameter value.
|
15838
|
+
# parameters. You can't include values wrapped in double brackets
|
15839
|
+
# `{{}}` or `{{ssm:parameter-name}}` in a parameter value.
|
15794
15840
|
#
|
15795
15841
|
# </note>
|
15796
15842
|
# @return [String]
|
15797
15843
|
#
|
15798
15844
|
# @!attribute [rw] type
|
15799
|
-
# The type of parameter that you want to
|
15845
|
+
# The type of parameter that you want to create.
|
15800
15846
|
#
|
15801
15847
|
# <note markdown="1"> `SecureString` isn't currently supported for CloudFormation
|
15802
15848
|
# templates.
|
@@ -15819,7 +15865,7 @@ module Aws::SSM
|
|
15819
15865
|
# parameters that use the `SecureString` data type.
|
15820
15866
|
#
|
15821
15867
|
# If you don't specify a key ID, the system uses the default key
|
15822
|
-
# associated with your Amazon Web Services account which is not as
|
15868
|
+
# associated with your Amazon Web Services account, which is not as
|
15823
15869
|
# secure as using a custom key.
|
15824
15870
|
#
|
15825
15871
|
# * To use a custom KMS key, choose the `SecureString` data type with
|
@@ -15939,8 +15985,8 @@ module Aws::SSM
|
|
15939
15985
|
#
|
15940
15986
|
# @!attribute [rw] policies
|
15941
15987
|
# One or more policies to apply to a parameter. This operation takes a
|
15942
|
-
# JSON array. Parameter Store, a
|
15943
|
-
#
|
15988
|
+
# JSON array. Parameter Store, a tool in Amazon Web Services Systems
|
15989
|
+
# Manager supports the following policy types:
|
15944
15990
|
#
|
15945
15991
|
# Expiration: This policy deletes the parameter after it expires. When
|
15946
15992
|
# you create the policy, you specify the expiration date. You can
|
@@ -17625,8 +17671,8 @@ module Aws::SSM
|
|
17625
17671
|
#
|
17626
17672
|
# @!attribute [rw] cloud_watch_output_config
|
17627
17673
|
# Enables Amazon Web Services Systems Manager to send Run Command
|
17628
|
-
# output to Amazon CloudWatch Logs. Run Command is a
|
17629
|
-
#
|
17674
|
+
# output to Amazon CloudWatch Logs. Run Command is a tool in Amazon
|
17675
|
+
# Web Services Systems Manager.
|
17630
17676
|
# @return [Types::CloudWatchOutputConfig]
|
17631
17677
|
#
|
17632
17678
|
# @!attribute [rw] alarm_configuration
|
@@ -18069,8 +18115,11 @@ module Aws::SSM
|
|
18069
18115
|
#
|
18070
18116
|
# * `Key=OS,Value=Windows`
|
18071
18117
|
#
|
18072
|
-
# <note markdown="1">
|
18073
|
-
#
|
18118
|
+
# <note markdown="1"> The `Array Members` maximum value is reported as 1000. This number
|
18119
|
+
# includes capacity reserved for internal operations. When calling the
|
18120
|
+
# `StartAutomationExecution` action, you can specify a maximum of 5
|
18121
|
+
# tags. You can, however, use the AddTagsToResource action to add up
|
18122
|
+
# to a total of 50 tags to an existing automation configuration.
|
18074
18123
|
#
|
18075
18124
|
# </note>
|
18076
18125
|
# @return [Array<Types::Tag>]
|
@@ -18193,6 +18242,14 @@ module Aws::SSM
|
|
18193
18242
|
# * `Key=Environment,Value=Production`
|
18194
18243
|
#
|
18195
18244
|
# * `Key=Region,Value=us-east-2`
|
18245
|
+
#
|
18246
|
+
# <note markdown="1"> The `Array Members` maximum value is reported as 1000. This number
|
18247
|
+
# includes capacity reserved for internal operations. When calling the
|
18248
|
+
# `StartChangeRequestExecution` action, you can specify a maximum of 5
|
18249
|
+
# tags. You can, however, use the AddTagsToResource action to add up
|
18250
|
+
# to a total of 50 tags to an existing change request configuration.
|
18251
|
+
#
|
18252
|
+
# </note>
|
18196
18253
|
# @return [Array<Types::Tag>]
|
18197
18254
|
#
|
18198
18255
|
# @!attribute [rw] scheduled_end_time
|
@@ -18302,7 +18359,13 @@ module Aws::SSM
|
|
18302
18359
|
#
|
18303
18360
|
# @!attribute [rw] parameters
|
18304
18361
|
# The values you want to specify for the parameters defined in the
|
18305
|
-
# Session document.
|
18362
|
+
# Session document. For more information about these parameters, see
|
18363
|
+
# [Create a Session Manager preferences document][1] in the *Amazon
|
18364
|
+
# Web Services Systems Manager User Guide*.
|
18365
|
+
#
|
18366
|
+
#
|
18367
|
+
#
|
18368
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/getting-started-create-preferences-cli.html
|
18306
18369
|
# @return [Hash<String,Array<String>>]
|
18307
18370
|
#
|
18308
18371
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartSessionRequest AWS API Documentation
|
@@ -18600,7 +18663,7 @@ module Aws::SSM
|
|
18600
18663
|
#
|
18601
18664
|
# Supported formats include the following.
|
18602
18665
|
#
|
18603
|
-
# **For all Systems Manager
|
18666
|
+
# **For all Systems Manager tools:**
|
18604
18667
|
#
|
18605
18668
|
# * `Key=tag-key,Values=tag-value-1,tag-value-2`
|
18606
18669
|
#
|
@@ -19061,8 +19124,8 @@ module Aws::SSM
|
|
19061
19124
|
#
|
19062
19125
|
# @!attribute [rw] parameters
|
19063
19126
|
# The parameters you want to update for the association. If you create
|
19064
|
-
# a parameter using Parameter Store, a
|
19065
|
-
#
|
19127
|
+
# a parameter using Parameter Store, a tool in Amazon Web Services
|
19128
|
+
# Systems Manager, you can reference the parameter using
|
19066
19129
|
# `{{ssm:parameter-name}}`.
|
19067
19130
|
# @return [Hash<String,Array<String>>]
|
19068
19131
|
#
|
@@ -19129,7 +19192,7 @@ module Aws::SSM
|
|
19129
19192
|
# Choose the parameter that will define how your automation will
|
19130
19193
|
# branch out. This target is required for associations that use an
|
19131
19194
|
# Automation runbook and target resources by using rate controls.
|
19132
|
-
# Automation is a
|
19195
|
+
# Automation is a tool in Amazon Web Services Systems Manager.
|
19133
19196
|
# @return [String]
|
19134
19197
|
#
|
19135
19198
|
# @!attribute [rw] max_errors
|
@@ -19177,9 +19240,9 @@ module Aws::SSM
|
|
19177
19240
|
#
|
19178
19241
|
# In `MANUAL` mode, you must specify the `AssociationId` as a
|
19179
19242
|
# parameter for the PutComplianceItems API operation. In this case,
|
19180
|
-
# compliance data isn't managed by State Manager, a
|
19181
|
-
#
|
19182
|
-
#
|
19243
|
+
# compliance data isn't managed by State Manager, a tool in Amazon
|
19244
|
+
# Web Services Systems Manager. It is managed by your direct call to
|
19245
|
+
# the PutComplianceItems API operation.
|
19183
19246
|
#
|
19184
19247
|
# By default, all associations use `AUTO` mode.
|
19185
19248
|
# @return [String]
|
@@ -19187,27 +19250,39 @@ module Aws::SSM
|
|
19187
19250
|
# @!attribute [rw] apply_only_at_cron_interval
|
19188
19251
|
# By default, when you update an association, the system runs it
|
19189
19252
|
# immediately after it is updated and then according to the schedule
|
19190
|
-
# you specified. Specify
|
19191
|
-
# to run
|
19192
|
-
#
|
19253
|
+
# you specified. Specify `true` for `ApplyOnlyAtCronInterval` if you
|
19254
|
+
# want the association to run only according to the schedule you
|
19255
|
+
# specified.
|
19193
19256
|
#
|
19194
19257
|
# If you chose this option when you created an association and later
|
19195
|
-
# you edit that association or you make changes to the
|
19196
|
-
# which that association is based
|
19197
|
-
#
|
19198
|
-
#
|
19199
|
-
#
|
19200
|
-
#
|
19201
|
-
#
|
19202
|
-
#
|
19203
|
-
#
|
19258
|
+
# you edit that association or you make changes to the Automation
|
19259
|
+
# runbook or SSM document on which that association is based, State
|
19260
|
+
# Manager applies the association at the next specified cron interval.
|
19261
|
+
# For example, if you chose the `Latest` version of an SSM document
|
19262
|
+
# when you created an association and you edit the association by
|
19263
|
+
# choosing a different document version on the Documents page, State
|
19264
|
+
# Manager applies the association at the next specified cron interval
|
19265
|
+
# if you previously set `ApplyOnlyAtCronInterval` to `true`. If this
|
19266
|
+
# option wasn't selected, State Manager immediately runs the
|
19204
19267
|
# association.
|
19205
19268
|
#
|
19206
|
-
#
|
19269
|
+
# For more information, see [Understanding when associations are
|
19270
|
+
# applied to resources][1] and [About target updates with Automation
|
19271
|
+
# runbooks][2] in the *Amazon Web Services Systems Manager User
|
19272
|
+
# Guide*.
|
19273
|
+
#
|
19274
|
+
# This parameter isn't supported for rate expressions.
|
19275
|
+
#
|
19276
|
+
# You can reset this parameter. To do so, specify the
|
19207
19277
|
# `no-apply-only-at-cron-interval` parameter when you update the
|
19208
19278
|
# association from the command line. This parameter forces the
|
19209
19279
|
# association to run immediately after updating it and according to
|
19210
19280
|
# the interval specified.
|
19281
|
+
#
|
19282
|
+
#
|
19283
|
+
#
|
19284
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#state-manager-about-scheduling
|
19285
|
+
# [2]: https://docs.aws.amazon.com/systems-manager/latest/userguide/state-manager-about.html#runbook-target-updates
|
19211
19286
|
# @return [Boolean]
|
19212
19287
|
#
|
19213
19288
|
# @!attribute [rw] calendar_names
|
@@ -19215,7 +19290,8 @@ module Aws::SSM
|
|
19215
19290
|
# type documents you want to gate your associations under. The
|
19216
19291
|
# associations only run when that change calendar is open. For more
|
19217
19292
|
# information, see [Amazon Web Services Systems Manager Change
|
19218
|
-
# Calendar][1]
|
19293
|
+
# Calendar][1] in the *Amazon Web Services Systems Manager User
|
19294
|
+
# Guide*.
|
19219
19295
|
#
|
19220
19296
|
#
|
19221
19297
|
#
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
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.191.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:
|
11
|
+
date: 2025-02-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|