aws-sdk-ssm 1.197.0 → 1.199.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssm/client.rb +66 -10
- data/lib/aws-sdk-ssm/types.rb +71 -9
- data/lib/aws-sdk-ssm.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 827c0104a6f961847c8ff7b1cf74ee465d8ed4520fbd057e4bd2569b05516340
|
4
|
+
data.tar.gz: 8f3dea457c111e868f63c0b19d7312c6d343948c1c56af79dbd43e274066fe71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8797dc33af7b1a9f9fdbe4a236511fd13854c7c56d4bc407150569fd17057b667539d6826e00a2c44587fec257873ccfec345a80508d757e7c3f202e8a5a5a98
|
7
|
+
data.tar.gz: 44f53a22f9aaf638394cb90827c40499c78bf53c47185ce1f018b3fbf4436bb49ff0bd5bf5221d9d09f2da30403831ac2793665d6efdb875ee3265234059c883
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.199.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.198.0 (2025-07-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - July 2025 doc-only updates for Systems Manager.
|
13
|
+
|
4
14
|
1.197.0 (2025-06-30)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.199.0
|
data/lib/aws-sdk-ssm/client.rb
CHANGED
@@ -95,7 +95,7 @@ module Aws::SSM
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::SSM
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::SSM
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::SSM
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::SSM
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -5253,6 +5263,11 @@ module Aws::SSM
|
|
5253
5263
|
# You can specify the `NextToken` in a subsequent call to get the next
|
5254
5264
|
# set of results.
|
5255
5265
|
#
|
5266
|
+
# Parameter names can't contain spaces. The service removes any spaces
|
5267
|
+
# specified for the beginning or end of a parameter name. If the
|
5268
|
+
# specified name for a parameter contains spaces between characters, the
|
5269
|
+
# request fails with a `ValidationException` error.
|
5270
|
+
#
|
5256
5271
|
# If you change the KMS key alias for the KMS key used to encrypt a
|
5257
5272
|
# parameter, then you must also update the key alias the parameter uses
|
5258
5273
|
# to reference KMS. Otherwise, `DescribeParameters` retrieves whatever
|
@@ -7163,6 +7178,11 @@ module Aws::SSM
|
|
7163
7178
|
# Get information about a single parameter by specifying the parameter
|
7164
7179
|
# name.
|
7165
7180
|
#
|
7181
|
+
# Parameter names can't contain spaces. The service removes any spaces
|
7182
|
+
# specified for the beginning or end of a parameter name. If the
|
7183
|
+
# specified name for a parameter contains spaces between characters, the
|
7184
|
+
# request fails with a `ValidationException` error.
|
7185
|
+
#
|
7166
7186
|
# <note markdown="1"> To get information about more than one parameter at a time, use the
|
7167
7187
|
# GetParameters operation.
|
7168
7188
|
#
|
@@ -7222,6 +7242,11 @@ module Aws::SSM
|
|
7222
7242
|
|
7223
7243
|
# Retrieves the history of all changes to a parameter.
|
7224
7244
|
#
|
7245
|
+
# Parameter names can't contain spaces. The service removes any spaces
|
7246
|
+
# specified for the beginning or end of a parameter name. If the
|
7247
|
+
# specified name for a parameter contains spaces between characters, the
|
7248
|
+
# request fails with a `ValidationException` error.
|
7249
|
+
#
|
7225
7250
|
# If you change the KMS key alias for the KMS key used to encrypt a
|
7226
7251
|
# parameter, then you must also update the key alias the parameter uses
|
7227
7252
|
# to reference KMS. Otherwise, `GetParameterHistory` retrieves whatever
|
@@ -7300,6 +7325,11 @@ module Aws::SSM
|
|
7300
7325
|
#
|
7301
7326
|
# </note>
|
7302
7327
|
#
|
7328
|
+
# Parameter names can't contain spaces. The service removes any spaces
|
7329
|
+
# specified for the beginning or end of a parameter name. If the
|
7330
|
+
# specified name for a parameter contains spaces between characters, the
|
7331
|
+
# request fails with a `ValidationException` error.
|
7332
|
+
#
|
7303
7333
|
# @option params [required, Array<String>] :names
|
7304
7334
|
# The names or Amazon Resource Names (ARNs) of the parameters that you
|
7305
7335
|
# want to query. For parameters shared with you from another account,
|
@@ -7374,6 +7404,11 @@ module Aws::SSM
|
|
7374
7404
|
# You can specify the `NextToken` in a subsequent call to get the next
|
7375
7405
|
# set of results.
|
7376
7406
|
#
|
7407
|
+
# Parameter names can't contain spaces. The service removes any spaces
|
7408
|
+
# specified for the beginning or end of a parameter name. If the
|
7409
|
+
# specified name for a parameter contains spaces between characters, the
|
7410
|
+
# request fails with a `ValidationException` error.
|
7411
|
+
#
|
7377
7412
|
# @option params [required, String] :path
|
7378
7413
|
# The hierarchy for the parameter. Hierarchies start with a forward
|
7379
7414
|
# slash (/). The hierarchy is the parameter name except the last part of
|
@@ -7736,6 +7771,11 @@ module Aws::SSM
|
|
7736
7771
|
# label isn't associated with a parameter and the system displays it
|
7737
7772
|
# in the list of InvalidLabels.
|
7738
7773
|
#
|
7774
|
+
# * Parameter names can't contain spaces. The service removes any
|
7775
|
+
# spaces specified for the beginning or end of a parameter name. If
|
7776
|
+
# the specified name for a parameter contains spaces between
|
7777
|
+
# characters, the request fails with a `ValidationException` error.
|
7778
|
+
#
|
7739
7779
|
# @option params [required, String] :name
|
7740
7780
|
# The parameter name on which you want to attach one or more labels.
|
7741
7781
|
#
|
@@ -9273,6 +9313,14 @@ module Aws::SSM
|
|
9273
9313
|
# * ExecutionTime. The time the patch, association, or custom compliance
|
9274
9314
|
# item was applied to the managed node.
|
9275
9315
|
#
|
9316
|
+
# For State Manager associations, this represents the time when
|
9317
|
+
# compliance status was captured by the Systems Manager service during
|
9318
|
+
# its internal compliance aggregation workflow, not necessarily when
|
9319
|
+
# the association was executed on the managed node. State Manager
|
9320
|
+
# updates compliance information for all associations on an instance
|
9321
|
+
# whenever any association executes, which may result in multiple
|
9322
|
+
# associations showing the same execution time.
|
9323
|
+
#
|
9276
9324
|
# * Id: The patch, association, or custom compliance ID.
|
9277
9325
|
#
|
9278
9326
|
# * Title: A title.
|
@@ -9464,7 +9512,10 @@ module Aws::SSM
|
|
9464
9512
|
# hierarchies in parameter names. For example:
|
9465
9513
|
# `/Dev/Production/East/Project-ABC/MyParameter`
|
9466
9514
|
#
|
9467
|
-
# *
|
9515
|
+
# * Parameter names can't contain spaces. The service removes any
|
9516
|
+
# spaces specified for the beginning or end of a parameter name. If
|
9517
|
+
# the specified name for a parameter contains spaces between
|
9518
|
+
# characters, the request fails with a `ValidationException` error.
|
9468
9519
|
#
|
9469
9520
|
# * Parameter hierarchies are limited to a maximum depth of fifteen
|
9470
9521
|
# levels.
|
@@ -11451,6 +11502,11 @@ module Aws::SSM
|
|
11451
11502
|
|
11452
11503
|
# Remove a label or labels from a parameter.
|
11453
11504
|
#
|
11505
|
+
# Parameter names can't contain spaces. The service removes any spaces
|
11506
|
+
# specified for the beginning or end of a parameter name. If the
|
11507
|
+
# specified name for a parameter contains spaces between characters, the
|
11508
|
+
# request fails with a `ValidationException` error.
|
11509
|
+
#
|
11454
11510
|
# @option params [required, String] :name
|
11455
11511
|
# The name of the parameter from which you want to delete one or more
|
11456
11512
|
# labels.
|
@@ -13457,7 +13513,7 @@ module Aws::SSM
|
|
13457
13513
|
tracer: tracer
|
13458
13514
|
)
|
13459
13515
|
context[:gem_name] = 'aws-sdk-ssm'
|
13460
|
-
context[:gem_version] = '1.
|
13516
|
+
context[:gem_version] = '1.199.0'
|
13461
13517
|
Seahorse::Client::Request.new(handlers, context)
|
13462
13518
|
end
|
13463
13519
|
|
data/lib/aws-sdk-ssm/types.rb
CHANGED
@@ -2604,6 +2604,13 @@ module Aws::SSM
|
|
2604
2604
|
# @!attribute [rw] execution_time
|
2605
2605
|
# The time the execution ran as a datetime object that is saved in the
|
2606
2606
|
# following format: `yyyy-MM-dd'T'HH:mm:ss'Z'`
|
2607
|
+
#
|
2608
|
+
# For State Manager associations, this timestamp represents when the
|
2609
|
+
# compliance status was captured and reported by the Systems Manager
|
2610
|
+
# service, not when the underlying association was actually executed
|
2611
|
+
# on the managed node. To track actual association execution times,
|
2612
|
+
# use the DescribeAssociationExecutionTargets command or check the
|
2613
|
+
# association execution history in the Systems Manager console.
|
2607
2614
|
# @return [Time]
|
2608
2615
|
#
|
2609
2616
|
# @!attribute [rw] execution_id
|
@@ -2674,6 +2681,14 @@ module Aws::SSM
|
|
2674
2681
|
# A summary for the compliance item. The summary includes an execution
|
2675
2682
|
# ID, the execution type (for example, command), and the execution
|
2676
2683
|
# time.
|
2684
|
+
#
|
2685
|
+
# For State Manager associations, the `ExecutionTime` value represents
|
2686
|
+
# when the compliance status was captured and aggregated by the
|
2687
|
+
# Systems Manager service, not necessarily when the underlying
|
2688
|
+
# association was executed on the managed node. State Manager updates
|
2689
|
+
# compliance status for all associations on an instance whenever any
|
2690
|
+
# association executes, which means multiple associations may show the
|
2691
|
+
# same execution time even if they were executed at different times.
|
2677
2692
|
# @return [Types::ComplianceExecutionSummary]
|
2678
2693
|
#
|
2679
2694
|
# @!attribute [rw] details
|
@@ -11334,15 +11349,44 @@ module Aws::SSM
|
|
11334
11349
|
# One or more filters. Use a filter to return a more specific list of
|
11335
11350
|
# results.
|
11336
11351
|
#
|
11352
|
+
# **Example formats for the `aws ssm get-inventory` command:**
|
11353
|
+
#
|
11354
|
+
# `--filters
|
11355
|
+
# Key=AWS:InstanceInformation.AgentType,Values=amazon-ssm-agent,Type=Equal`
|
11356
|
+
#
|
11357
|
+
# `--filters
|
11358
|
+
# Key=AWS:InstanceInformation.AgentVersion,Values=3.3.2299.0,Type=Equal`
|
11359
|
+
#
|
11360
|
+
# `--filters
|
11361
|
+
# Key=AWS:InstanceInformation.ComputerName,Values=ip-192.0.2.0.us-east-2.compute.internal,Type=Equal`
|
11362
|
+
#
|
11363
|
+
# `--filters
|
11364
|
+
# Key=AWS:InstanceInformation.InstanceId,Values=i-0a4cd6ceffEXAMPLE,i-1a2b3c4d5e6EXAMPLE,Type=Equal`
|
11365
|
+
#
|
11366
|
+
# `--filters
|
11367
|
+
# Key=AWS:InstanceInformation.InstanceStatus,Values=Active,Type=Equal`
|
11368
|
+
#
|
11369
|
+
# `--filters
|
11370
|
+
# Key=AWS:InstanceInformation.IpAddress,Values=198.51.100.0,Type=Equal`
|
11371
|
+
#
|
11372
|
+
# `--filters Key=AWS:InstanceInformation.PlatformName,Values="Amazon
|
11373
|
+
# Linux",Type=Equal`
|
11374
|
+
#
|
11375
|
+
# `--filters
|
11376
|
+
# Key=AWS:InstanceInformation.PlatformType,Values=Linux,Type=Equal`
|
11377
|
+
#
|
11378
|
+
# `--filters
|
11379
|
+
# Key=AWS:InstanceInformation.PlatformVersion,Values=2023,Type=BeginWith`
|
11380
|
+
#
|
11381
|
+
# `--filters
|
11382
|
+
# Key=AWS:InstanceInformation.ResourceType,Values=EC2Instance,Type=Equal`
|
11383
|
+
#
|
11337
11384
|
# @!attribute [rw] key
|
11338
11385
|
# The name of the filter key.
|
11339
11386
|
# @return [String]
|
11340
11387
|
#
|
11341
11388
|
# @!attribute [rw] values
|
11342
|
-
# Inventory filter values.
|
11343
|
-
# node IDs are specified as values
|
11344
|
-
# `Key=AWS:InstanceInformation.InstanceId,Values= i-a12b3c4d5e6g,
|
11345
|
-
# i-1a2b3c4d5e6,Type=Equal`.
|
11389
|
+
# Inventory filter values.
|
11346
11390
|
# @return [Array<String>]
|
11347
11391
|
#
|
11348
11392
|
# @!attribute [rw] type
|
@@ -15697,7 +15741,9 @@ module Aws::SSM
|
|
15697
15741
|
# @return [Array<String>]
|
15698
15742
|
#
|
15699
15743
|
# @!attribute [rw] configuration
|
15700
|
-
# The value of the
|
15744
|
+
# The value of the repo configuration.
|
15745
|
+
#
|
15746
|
+
# **Example for yum repositories**
|
15701
15747
|
#
|
15702
15748
|
# `[main]`
|
15703
15749
|
#
|
@@ -15707,14 +15753,27 @@ module Aws::SSM
|
|
15707
15753
|
#
|
15708
15754
|
# `enabled=1`
|
15709
15755
|
#
|
15710
|
-
#
|
15711
|
-
# repository configuration, see [dnf.conf(5)][1].
|
15756
|
+
# For information about other options available for your yum
|
15757
|
+
# repository configuration, see [dnf.conf(5)][1] on the *man7.org*
|
15758
|
+
# website.
|
15712
15759
|
#
|
15713
|
-
#
|
15760
|
+
# **Examples for Ubuntu Server and Debian Server**
|
15761
|
+
#
|
15762
|
+
# `deb http://security.ubuntu.com/ubuntu jammy main`
|
15763
|
+
#
|
15764
|
+
# `deb https://site.example.com/debian distribution component1
|
15765
|
+
# component2 component3`
|
15766
|
+
#
|
15767
|
+
# Repo information for Ubuntu Server repositories must be specifed in
|
15768
|
+
# a single line. For more examples and information, see [jammy (5)
|
15769
|
+
# sources.list.5.gz][2] on the *Ubuntu Server Manuals* website and
|
15770
|
+
# [sources.list format][3] on the *Debian Wiki*.
|
15714
15771
|
#
|
15715
15772
|
#
|
15716
15773
|
#
|
15717
15774
|
# [1]: https://man7.org/linux/man-pages/man5/dnf.conf.5.html
|
15775
|
+
# [2]: https://manpages.ubuntu.com/manpages/jammy/man5/sources.list.5.html
|
15776
|
+
# [3]: https://wiki.debian.org/SourcesList#sources.list_format
|
15718
15777
|
# @return [String]
|
15719
15778
|
#
|
15720
15779
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-2014-11-06/PatchSource AWS API Documentation
|
@@ -15942,7 +16001,10 @@ module Aws::SSM
|
|
15942
16001
|
# hierarchies in parameter names. For example:
|
15943
16002
|
# `/Dev/Production/East/Project-ABC/MyParameter`
|
15944
16003
|
#
|
15945
|
-
# *
|
16004
|
+
# * Parameter names can't contain spaces. The service removes any
|
16005
|
+
# spaces specified for the beginning or end of a parameter name. If
|
16006
|
+
# the specified name for a parameter contains spaces between
|
16007
|
+
# characters, the request fails with a `ValidationException` error.
|
15946
16008
|
#
|
15947
16009
|
# * Parameter hierarchies are limited to a maximum depth of fifteen
|
15948
16010
|
# levels.
|
data/lib/aws-sdk-ssm.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.199.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|