aws-sdk-ssm 1.186.0 → 1.188.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +76 -36
- data/lib/aws-sdk-ssm/types.rb +57 -40
- 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: 7058d77e7eb9e81eec7b01c224f6c3e194056b6127e4d0e4ae7da87f9df0aa15
|
4
|
+
data.tar.gz: 3dec0b266fbdaf217e83ca3395b16ddec44e8ebc7c194e31ba7b88923435c979
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03fa3804f03d7c42fc3a00d6cd2979dcc845fbaf9c834edd23a03698121421a933fc0107804f0a05165202c5424652fcd203ee37a665da879ebde8d1d5786382
|
7
|
+
data.tar.gz: e2bc614d447b15df4daabdf502ba0788dcb2a6864f558e083a1dcf73af38f7c0f5124ab4519fa4ef9e9002f6aa52943d8837761dd8651018bdc18bb5bff8541f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.188.0 (2025-01-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Systems Manager doc-only update for January, 2025.
|
8
|
+
|
9
|
+
1.187.0 (2025-01-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.186.0 (2024-11-21)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.188.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -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
|
@@ -5643,8 +5666,8 @@ module Aws::SSM
|
|
5643
5666
|
|
5644
5667
|
# Deletes the association between an OpsItem and a related item. For
|
5645
5668
|
# example, this API operation can delete an Incident Manager incident
|
5646
|
-
# from an OpsItem. Incident Manager is a
|
5647
|
-
#
|
5669
|
+
# from an OpsItem. Incident Manager is a tool in Amazon Web Services
|
5670
|
+
# Systems Manager.
|
5648
5671
|
#
|
5649
5672
|
# @option params [required, String] :ops_item_id
|
5650
5673
|
# The ID of the OpsItem for which you want to delete an association
|
@@ -5887,7 +5910,7 @@ module Aws::SSM
|
|
5887
5910
|
# open. If one or more calendars in the request are closed, the status
|
5888
5911
|
# returned is `CLOSED`.
|
5889
5912
|
#
|
5890
|
-
# For more information about Change Calendar, a
|
5913
|
+
# For more information about Change Calendar, a tool in Amazon Web
|
5891
5914
|
# Services Systems Manager, see [Amazon Web Services Systems Manager
|
5892
5915
|
# Change Calendar][1] in the *Amazon Web Services Systems Manager User
|
5893
5916
|
# Guide*.
|
@@ -6114,8 +6137,8 @@ module Aws::SSM
|
|
6114
6137
|
# Interface (CLI), the system attempts to use your local Amazon Web
|
6115
6138
|
# Services credentials and the operation fails. To avoid this, you can
|
6116
6139
|
# run the command in the Amazon Web Services Systems Manager console.
|
6117
|
-
# Use Run Command, a
|
6118
|
-
#
|
6140
|
+
# Use Run Command, a tool in Amazon Web Services Systems Manager, with
|
6141
|
+
# an SSM document that enables you to target a managed node with a
|
6119
6142
|
# script or command. For example, run the command using the
|
6120
6143
|
# `AWS-RunShellScript` document or the `AWS-RunPowerShellScript`
|
6121
6144
|
# document.
|
@@ -7257,8 +7280,8 @@ module Aws::SSM
|
|
7257
7280
|
req.send_request(options)
|
7258
7281
|
end
|
7259
7282
|
|
7260
|
-
# Retrieve information about one or more parameters
|
7261
|
-
# hierarchy.
|
7283
|
+
# Retrieve information about one or more parameters under a specified
|
7284
|
+
# level in a hierarchy.
|
7262
7285
|
#
|
7263
7286
|
# Request results are returned on a best-effort basis. If you specify
|
7264
7287
|
# `MaxResults` in the request, the response includes information up to
|
@@ -7770,8 +7793,8 @@ module Aws::SSM
|
|
7770
7793
|
# Returns all State Manager associations in the current Amazon Web
|
7771
7794
|
# Services account and Amazon Web Services Region. You can limit the
|
7772
7795
|
# results to a specific State Manager association document or managed
|
7773
|
-
# node by specifying a filter. State Manager is a
|
7774
|
-
#
|
7796
|
+
# node by specifying a filter. State Manager is a tool in Amazon Web
|
7797
|
+
# Services Systems Manager.
|
7775
7798
|
#
|
7776
7799
|
# @option params [Array<Types::AssociationFilter>] :association_filter_list
|
7777
7800
|
# One or more filters. Use a filter to return a more specific list of
|
@@ -8774,8 +8797,8 @@ module Aws::SSM
|
|
8774
8797
|
end
|
8775
8798
|
|
8776
8799
|
# Lists all related-item resources associated with a Systems Manager
|
8777
|
-
# OpsCenter OpsItem. OpsCenter is a
|
8778
|
-
#
|
8800
|
+
# OpsCenter OpsItem. OpsCenter is a tool in Amazon Web Services Systems
|
8801
|
+
# Manager.
|
8779
8802
|
#
|
8780
8803
|
# @option params [String] :ops_item_id
|
8781
8804
|
# The ID of the OpsItem for which you want to list all related-item
|
@@ -9376,8 +9399,8 @@ module Aws::SSM
|
|
9376
9399
|
# value limit of 8 KB.
|
9377
9400
|
#
|
9378
9401
|
# <note markdown="1"> Parameters can't be referenced or nested in the values of other
|
9379
|
-
# parameters. You can't include
|
9380
|
-
# parameter value.
|
9402
|
+
# parameters. You can't include values wrapped in double brackets
|
9403
|
+
# `{{}}` or `{{ssm:parameter-name}}` in a parameter value.
|
9381
9404
|
#
|
9382
9405
|
# </note>
|
9383
9406
|
#
|
@@ -9517,8 +9540,8 @@ module Aws::SSM
|
|
9517
9540
|
#
|
9518
9541
|
# @option params [String] :policies
|
9519
9542
|
# One or more policies to apply to a parameter. This operation takes a
|
9520
|
-
# JSON array. Parameter Store, a
|
9521
|
-
#
|
9543
|
+
# JSON array. Parameter Store, a tool in Amazon Web Services Systems
|
9544
|
+
# Manager supports the following policy types:
|
9522
9545
|
#
|
9523
9546
|
# Expiration: This policy deletes the parameter after it expires. When
|
9524
9547
|
# you create the policy, you specify the expiration date. You can update
|
@@ -10527,7 +10550,7 @@ module Aws::SSM
|
|
10527
10550
|
#
|
10528
10551
|
# @option params [Types::CloudWatchOutputConfig] :cloud_watch_output_config
|
10529
10552
|
# Enables Amazon Web Services Systems Manager to send Run Command output
|
10530
|
-
# to Amazon CloudWatch Logs. Run Command is a
|
10553
|
+
# to Amazon CloudWatch Logs. Run Command is a tool in Amazon Web
|
10531
10554
|
# Services Systems Manager.
|
10532
10555
|
#
|
10533
10556
|
# @option params [Types::AlarmConfiguration] :alarm_configuration
|
@@ -10754,8 +10777,11 @@ module Aws::SSM
|
|
10754
10777
|
#
|
10755
10778
|
# * `Key=OS,Value=Windows`
|
10756
10779
|
#
|
10757
|
-
# <note markdown="1">
|
10758
|
-
#
|
10780
|
+
# <note markdown="1"> The `Array Members` maximum value is reported as 1000. This number
|
10781
|
+
# includes capacity reserved for internal operations. When calling the
|
10782
|
+
# `StartAutomationExecution` action, you can specify a maximum of 5
|
10783
|
+
# tags. You can, however, use the AddTagsToResource action to add up to
|
10784
|
+
# a total of 50 tags to an existing automation configuration.
|
10759
10785
|
#
|
10760
10786
|
# </note>
|
10761
10787
|
#
|
@@ -10924,6 +10950,14 @@ module Aws::SSM
|
|
10924
10950
|
#
|
10925
10951
|
# * `Key=Region,Value=us-east-2`
|
10926
10952
|
#
|
10953
|
+
# <note markdown="1"> The `Array Members` maximum value is reported as 1000. This number
|
10954
|
+
# includes capacity reserved for internal operations. When calling the
|
10955
|
+
# `StartChangeRequestExecution` action, you can specify a maximum of 5
|
10956
|
+
# tags. You can, however, use the AddTagsToResource action to add up to
|
10957
|
+
# a total of 50 tags to an existing change request configuration.
|
10958
|
+
#
|
10959
|
+
# </note>
|
10960
|
+
#
|
10927
10961
|
# @option params [Time,DateTime,Date,Integer,String] :scheduled_end_time
|
10928
10962
|
# The time that the requester expects the runbook workflow related to
|
10929
10963
|
# the change request to complete. The time is an estimate only that the
|
@@ -11167,7 +11201,13 @@ module Aws::SSM
|
|
11167
11201
|
#
|
11168
11202
|
# @option params [Hash<String,Array>] :parameters
|
11169
11203
|
# The values you want to specify for the parameters defined in the
|
11170
|
-
# Session document.
|
11204
|
+
# Session document. For more information about these parameters, see
|
11205
|
+
# [Create a Session Manager preferences document][1] in the *Amazon Web
|
11206
|
+
# Services Systems Manager User Guide*.
|
11207
|
+
#
|
11208
|
+
#
|
11209
|
+
#
|
11210
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/getting-started-create-preferences-cli.html
|
11171
11211
|
#
|
11172
11212
|
# @return [Types::StartSessionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11173
11213
|
#
|
@@ -11334,8 +11374,8 @@ module Aws::SSM
|
|
11334
11374
|
#
|
11335
11375
|
# @option params [Hash<String,Array>] :parameters
|
11336
11376
|
# The parameters you want to update for the association. If you create a
|
11337
|
-
# parameter using Parameter Store, a
|
11338
|
-
#
|
11377
|
+
# parameter using Parameter Store, a tool in Amazon Web Services Systems
|
11378
|
+
# Manager, you can reference the parameter using
|
11339
11379
|
# `{{ssm:parameter-name}}`.
|
11340
11380
|
#
|
11341
11381
|
# @option params [String] :document_version
|
@@ -11394,7 +11434,7 @@ module Aws::SSM
|
|
11394
11434
|
# Choose the parameter that will define how your automation will branch
|
11395
11435
|
# out. This target is required for associations that use an Automation
|
11396
11436
|
# runbook and target resources by using rate controls. Automation is a
|
11397
|
-
#
|
11437
|
+
# tool in Amazon Web Services Systems Manager.
|
11398
11438
|
#
|
11399
11439
|
# @option params [String] :max_errors
|
11400
11440
|
# The number of errors that are allowed before the system stops sending
|
@@ -11438,8 +11478,8 @@ module Aws::SSM
|
|
11438
11478
|
#
|
11439
11479
|
# In `MANUAL` mode, you must specify the `AssociationId` as a parameter
|
11440
11480
|
# for the PutComplianceItems API operation. In this case, compliance
|
11441
|
-
# data isn't managed by State Manager, a
|
11442
|
-
#
|
11481
|
+
# data isn't managed by State Manager, a tool in Amazon Web Services
|
11482
|
+
# Systems Manager. It is managed by your direct call to the
|
11443
11483
|
# PutComplianceItems API operation.
|
11444
11484
|
#
|
11445
11485
|
# By default, all associations use `AUTO` mode.
|
@@ -13238,7 +13278,7 @@ module Aws::SSM
|
|
13238
13278
|
tracer: tracer
|
13239
13279
|
)
|
13240
13280
|
context[:gem_name] = 'aws-sdk-ssm'
|
13241
|
-
context[:gem_version] = '1.
|
13281
|
+
context[:gem_version] = '1.188.0'
|
13242
13282
|
Seahorse::Client::Request.new(handlers, context)
|
13243
13283
|
end
|
13244
13284
|
|
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]
|
@@ -967,9 +967,9 @@ module Aws::SSM
|
|
967
967
|
#
|
968
968
|
# In `MANUAL` mode, you must specify the `AssociationId` as a
|
969
969
|
# parameter for the PutComplianceItems API operation. In this case,
|
970
|
-
# compliance data isn't managed by State Manager, a
|
971
|
-
#
|
972
|
-
#
|
970
|
+
# compliance data isn't managed by State Manager, a tool in Amazon
|
971
|
+
# Web Services Systems Manager. It is managed by your direct call to
|
972
|
+
# the PutComplianceItems API operation.
|
973
973
|
#
|
974
974
|
# By default, all associations use `AUTO` mode.
|
975
975
|
# @return [String]
|
@@ -2087,9 +2087,9 @@ module Aws::SSM
|
|
2087
2087
|
#
|
2088
2088
|
# @!attribute [rw] service_role
|
2089
2089
|
# The Identity and Access Management (IAM) service role that Run
|
2090
|
-
# Command, a
|
2091
|
-
#
|
2092
|
-
#
|
2090
|
+
# Command, a tool in Amazon Web Services Systems Manager, uses to act
|
2091
|
+
# on your behalf when sending notifications about command status
|
2092
|
+
# changes.
|
2093
2093
|
# @return [String]
|
2094
2094
|
#
|
2095
2095
|
# @!attribute [rw] notification_config
|
@@ -2379,9 +2379,9 @@ module Aws::SSM
|
|
2379
2379
|
#
|
2380
2380
|
# @!attribute [rw] service_role
|
2381
2381
|
# The Identity and Access Management (IAM) service role that Run
|
2382
|
-
# Command, a
|
2383
|
-
#
|
2384
|
-
#
|
2382
|
+
# Command, a tool in Amazon Web Services Systems Manager, uses to act
|
2383
|
+
# on your behalf when sending notifications about command status
|
2384
|
+
# changes on a per managed node basis.
|
2385
2385
|
# @return [String]
|
2386
2386
|
#
|
2387
2387
|
# @!attribute [rw] notification_config
|
@@ -2967,8 +2967,8 @@ module Aws::SSM
|
|
2967
2967
|
# @!attribute [rw] automation_target_parameter_name
|
2968
2968
|
# Specify the target for the association. This target is required for
|
2969
2969
|
# associations that use an Automation runbook and target resources by
|
2970
|
-
# using rate controls. Automation is a
|
2971
|
-
#
|
2970
|
+
# using rate controls. Automation is a tool in Amazon Web Services
|
2971
|
+
# Systems Manager.
|
2972
2972
|
# @return [String]
|
2973
2973
|
#
|
2974
2974
|
# @!attribute [rw] document_version
|
@@ -3037,9 +3037,9 @@ module Aws::SSM
|
|
3037
3037
|
#
|
3038
3038
|
# In `MANUAL` mode, you must specify the `AssociationId` as a
|
3039
3039
|
# parameter for the PutComplianceItems API operation. In this case,
|
3040
|
-
# compliance data isn't managed by State Manager, a
|
3041
|
-
#
|
3042
|
-
#
|
3040
|
+
# compliance data isn't managed by State Manager, a tool in Amazon
|
3041
|
+
# Web Services Systems Manager. It is managed by your direct call to
|
3042
|
+
# the PutComplianceItems API operation.
|
3043
3043
|
#
|
3044
3044
|
# By default, all associations use `AUTO` mode.
|
3045
3045
|
# @return [String]
|
@@ -3235,7 +3235,7 @@ module Aws::SSM
|
|
3235
3235
|
# Choose the parameter that will define how your automation will
|
3236
3236
|
# branch out. This target is required for associations that use an
|
3237
3237
|
# Automation runbook and target resources by using rate controls.
|
3238
|
-
# Automation is a
|
3238
|
+
# Automation is a tool in Amazon Web Services Systems Manager.
|
3239
3239
|
# @return [String]
|
3240
3240
|
#
|
3241
3241
|
# @!attribute [rw] max_errors
|
@@ -6357,7 +6357,7 @@ module Aws::SSM
|
|
6357
6357
|
# @!attribute [rw] instances_with_unreported_not_applicable_patches
|
6358
6358
|
# The number of managed nodes with `NotApplicable` patches beyond the
|
6359
6359
|
# supported limit, which aren't reported by name to Inventory.
|
6360
|
-
# Inventory is a
|
6360
|
+
# Inventory is a tool in Amazon Web Services Systems Manager.
|
6361
6361
|
# @return [Integer]
|
6362
6362
|
#
|
6363
6363
|
# @!attribute [rw] instances_with_critical_non_compliant_patches
|
@@ -10010,7 +10010,7 @@ module Aws::SSM
|
|
10010
10010
|
# @!attribute [rw] unreported_not_applicable_count
|
10011
10011
|
# The number of patches beyond the supported limit of
|
10012
10012
|
# `NotApplicableCount` that aren't reported by name to Inventory.
|
10013
|
-
# Inventory is a
|
10013
|
+
# Inventory is a tool in Amazon Web Services Systems Manager.
|
10014
10014
|
# @return [Integer]
|
10015
10015
|
#
|
10016
10016
|
# @!attribute [rw] not_applicable_count
|
@@ -14734,9 +14734,9 @@ module Aws::SSM
|
|
14734
14734
|
# @return [String]
|
14735
14735
|
#
|
14736
14736
|
# @!attribute [rw] policy_type
|
14737
|
-
# The type of policy. Parameter Store, a
|
14738
|
-
#
|
14739
|
-
#
|
14737
|
+
# The type of policy. Parameter Store, a tool in Amazon Web Services
|
14738
|
+
# Systems Manager, supports the following policy types: Expiration,
|
14739
|
+
# ExpirationNotification, and NoChangeNotification.
|
14740
14740
|
# @return [String]
|
14741
14741
|
#
|
14742
14742
|
# @!attribute [rw] policy_status
|
@@ -15789,8 +15789,8 @@ module Aws::SSM
|
|
15789
15789
|
# value limit of 8 KB.
|
15790
15790
|
#
|
15791
15791
|
# <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.
|
15792
|
+
# parameters. You can't include values wrapped in double brackets
|
15793
|
+
# `{{}}` or `{{ssm:parameter-name}}` in a parameter value.
|
15794
15794
|
#
|
15795
15795
|
# </note>
|
15796
15796
|
# @return [String]
|
@@ -15939,8 +15939,8 @@ module Aws::SSM
|
|
15939
15939
|
#
|
15940
15940
|
# @!attribute [rw] policies
|
15941
15941
|
# One or more policies to apply to a parameter. This operation takes a
|
15942
|
-
# JSON array. Parameter Store, a
|
15943
|
-
#
|
15942
|
+
# JSON array. Parameter Store, a tool in Amazon Web Services Systems
|
15943
|
+
# Manager supports the following policy types:
|
15944
15944
|
#
|
15945
15945
|
# Expiration: This policy deletes the parameter after it expires. When
|
15946
15946
|
# you create the policy, you specify the expiration date. You can
|
@@ -17625,8 +17625,8 @@ module Aws::SSM
|
|
17625
17625
|
#
|
17626
17626
|
# @!attribute [rw] cloud_watch_output_config
|
17627
17627
|
# Enables Amazon Web Services Systems Manager to send Run Command
|
17628
|
-
# output to Amazon CloudWatch Logs. Run Command is a
|
17629
|
-
#
|
17628
|
+
# output to Amazon CloudWatch Logs. Run Command is a tool in Amazon
|
17629
|
+
# Web Services Systems Manager.
|
17630
17630
|
# @return [Types::CloudWatchOutputConfig]
|
17631
17631
|
#
|
17632
17632
|
# @!attribute [rw] alarm_configuration
|
@@ -18069,8 +18069,11 @@ module Aws::SSM
|
|
18069
18069
|
#
|
18070
18070
|
# * `Key=OS,Value=Windows`
|
18071
18071
|
#
|
18072
|
-
# <note markdown="1">
|
18073
|
-
#
|
18072
|
+
# <note markdown="1"> The `Array Members` maximum value is reported as 1000. This number
|
18073
|
+
# includes capacity reserved for internal operations. When calling the
|
18074
|
+
# `StartAutomationExecution` action, you can specify a maximum of 5
|
18075
|
+
# tags. You can, however, use the AddTagsToResource action to add up
|
18076
|
+
# to a total of 50 tags to an existing automation configuration.
|
18074
18077
|
#
|
18075
18078
|
# </note>
|
18076
18079
|
# @return [Array<Types::Tag>]
|
@@ -18193,6 +18196,14 @@ module Aws::SSM
|
|
18193
18196
|
# * `Key=Environment,Value=Production`
|
18194
18197
|
#
|
18195
18198
|
# * `Key=Region,Value=us-east-2`
|
18199
|
+
#
|
18200
|
+
# <note markdown="1"> The `Array Members` maximum value is reported as 1000. This number
|
18201
|
+
# includes capacity reserved for internal operations. When calling the
|
18202
|
+
# `StartChangeRequestExecution` action, you can specify a maximum of 5
|
18203
|
+
# tags. You can, however, use the AddTagsToResource action to add up
|
18204
|
+
# to a total of 50 tags to an existing change request configuration.
|
18205
|
+
#
|
18206
|
+
# </note>
|
18196
18207
|
# @return [Array<Types::Tag>]
|
18197
18208
|
#
|
18198
18209
|
# @!attribute [rw] scheduled_end_time
|
@@ -18302,7 +18313,13 @@ module Aws::SSM
|
|
18302
18313
|
#
|
18303
18314
|
# @!attribute [rw] parameters
|
18304
18315
|
# The values you want to specify for the parameters defined in the
|
18305
|
-
# Session document.
|
18316
|
+
# Session document. For more information about these parameters, see
|
18317
|
+
# [Create a Session Manager preferences document][1] in the *Amazon
|
18318
|
+
# Web Services Systems Manager User Guide*.
|
18319
|
+
#
|
18320
|
+
#
|
18321
|
+
#
|
18322
|
+
# [1]: https://docs.aws.amazon.com/systems-manager/latest/userguide/getting-started-create-preferences-cli.html
|
18306
18323
|
# @return [Hash<String,Array<String>>]
|
18307
18324
|
#
|
18308
18325
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/StartSessionRequest AWS API Documentation
|
@@ -18600,7 +18617,7 @@ module Aws::SSM
|
|
18600
18617
|
#
|
18601
18618
|
# Supported formats include the following.
|
18602
18619
|
#
|
18603
|
-
# **For all Systems Manager
|
18620
|
+
# **For all Systems Manager tools:**
|
18604
18621
|
#
|
18605
18622
|
# * `Key=tag-key,Values=tag-value-1,tag-value-2`
|
18606
18623
|
#
|
@@ -19061,8 +19078,8 @@ module Aws::SSM
|
|
19061
19078
|
#
|
19062
19079
|
# @!attribute [rw] parameters
|
19063
19080
|
# The parameters you want to update for the association. If you create
|
19064
|
-
# a parameter using Parameter Store, a
|
19065
|
-
#
|
19081
|
+
# a parameter using Parameter Store, a tool in Amazon Web Services
|
19082
|
+
# Systems Manager, you can reference the parameter using
|
19066
19083
|
# `{{ssm:parameter-name}}`.
|
19067
19084
|
# @return [Hash<String,Array<String>>]
|
19068
19085
|
#
|
@@ -19129,7 +19146,7 @@ module Aws::SSM
|
|
19129
19146
|
# Choose the parameter that will define how your automation will
|
19130
19147
|
# branch out. This target is required for associations that use an
|
19131
19148
|
# Automation runbook and target resources by using rate controls.
|
19132
|
-
# Automation is a
|
19149
|
+
# Automation is a tool in Amazon Web Services Systems Manager.
|
19133
19150
|
# @return [String]
|
19134
19151
|
#
|
19135
19152
|
# @!attribute [rw] max_errors
|
@@ -19177,9 +19194,9 @@ module Aws::SSM
|
|
19177
19194
|
#
|
19178
19195
|
# In `MANUAL` mode, you must specify the `AssociationId` as a
|
19179
19196
|
# parameter for the PutComplianceItems API operation. In this case,
|
19180
|
-
# compliance data isn't managed by State Manager, a
|
19181
|
-
#
|
19182
|
-
#
|
19197
|
+
# compliance data isn't managed by State Manager, a tool in Amazon
|
19198
|
+
# Web Services Systems Manager. It is managed by your direct call to
|
19199
|
+
# the PutComplianceItems API operation.
|
19183
19200
|
#
|
19184
19201
|
# By default, all associations use `AUTO` mode.
|
19185
19202
|
# @return [String]
|
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.188.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-01-24 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
|