aws-sdk-kms 1.106.0 → 1.109.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 201524fcd7a495dca2dd60546a1056631fcd9d5d70bdcef9b46c77fc08716b19
4
- data.tar.gz: 3d6c1641f2d79bbef429d71379a933451de6151f7690a829cb67ad8bce4f6ce0
3
+ metadata.gz: 91bb17cc1547b9f6515de8eef5a8449fb78b9e03be660eae7755b25770e0d993
4
+ data.tar.gz: a18b0c5a07bc6a28c91ba0edd83a657803a4273fd3014583264d7e4c9f9bc5fd
5
5
  SHA512:
6
- metadata.gz: 17b3468e36b9929f90e68dc867df1368aa9ba865c45e1c78cd4cee22fd3e54cb8ffbc98330789c35bdcdd61e078db1281220e0a0362ed07b41fb0f83c69aafd2
7
- data.tar.gz: e9c97588b4eb8000829bf24febd171652b39d5a3809bf0169e89aeeccdf9b93a63fb30f05085ddd2510a16e0c7900131562072351dc3046124a949f78e9fff0b
6
+ metadata.gz: 308d6948ee1142a7c3a36466f4024e36db47964ca8931fc917e2bb1eaab438a573a8c592b60bb9732ee8efca116a6962b31ef302850aacb7fd986cedec3b432e
7
+ data.tar.gz: 2d25908b8ed3e445094cbc714ca15c0bf0933ed6415e41041c777917105c0aed51012faa0f47036b40b35d7f165d372b91f05fab42b6e90f41f8dc00fb40b294
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.109.0 (2025-07-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.108.0 (2025-07-25)
10
+ ------------------
11
+
12
+ * Feature - Doc only update: fixed grammatical errors.
13
+
14
+ 1.107.0 (2025-07-21)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.106.0 (2025-06-26)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.106.0
1
+ 1.109.0
@@ -95,7 +95,7 @@ module Aws::KMS
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::KMS
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
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
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::KMS
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::KMS
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
- # at HOME/.aws/credentials. When not specified, 'default' is used.
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::KMS
374
384
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
375
385
  #
376
386
  # @option options [Aws::TokenProvider] :token_provider
377
- # A Bearer Token Provider. This can be an instance of any one of the
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
@@ -779,7 +789,7 @@ module Aws::KMS
779
789
  #
780
790
  #
781
791
  #
782
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
792
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
783
793
  #
784
794
  # @option params [required, String] :target_key_id
785
795
  # Associates the alias with the specified [customer managed key][1]. The
@@ -805,7 +815,7 @@ module Aws::KMS
805
815
  #
806
816
  #
807
817
  #
808
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk
818
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
809
819
  # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/find-cmk-id-arn.html
810
820
  #
811
821
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
@@ -1515,9 +1525,9 @@ module Aws::KMS
1515
1525
  # source of its key material, its key policy, description, tags, and
1516
1526
  # other properties.
1517
1527
  #
1518
- # <note markdown="1"> KMS has replaced the term *customer master key (CMK)* with *KMS key*
1519
- # and *KMS key*. The concept has not changed. To prevent breaking
1520
- # changes, KMS is keeping some variations of this term.
1528
+ # <note markdown="1"> KMS has replaced the term *customer master key (CMK)* with *Key
1529
+ # Management Service key* and *KMS key*. The concept has not changed. To
1530
+ # prevent breaking changes, KMS is keeping some variations of this term.
1521
1531
  #
1522
1532
  # </note>
1523
1533
  #
@@ -3626,8 +3636,8 @@ module Aws::KMS
3626
3636
  #
3627
3637
  #
3628
3638
  #
3629
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk
3630
- # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
3639
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
3640
+ # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
3631
3641
  # [3]: https://docs.aws.amazon.com/kms/latest/developerguide/multi-region-keys-overview.html
3632
3642
  # [4]: https://docs.aws.amazon.com/kms/latest/developerguide/keystore-cloudhsm.html
3633
3643
  # [5]: https://docs.aws.amazon.com/kms/latest/developerguide/keystore-external.html
@@ -3664,7 +3674,7 @@ module Aws::KMS
3664
3674
  #
3665
3675
  #
3666
3676
  #
3667
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html##aws-managed-cmk
3677
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
3668
3678
  #
3669
3679
  # @option params [Array<String>] :grant_tokens
3670
3680
  # A list of grant tokens.
@@ -4069,9 +4079,9 @@ module Aws::KMS
4069
4079
  # [4]: https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html
4070
4080
  # [5]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
4071
4081
  # [6]: https://docs.aws.amazon.com/kms/latest/developerguide/rotate-keys.html#multi-region-rotate
4072
- # [7]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk
4073
- # [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
4074
- # [9]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk
4082
+ # [7]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
4083
+ # [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
4084
+ # [9]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-key
4075
4085
  # [10]: https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html
4076
4086
  # [11]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html
4077
4087
  # [12]: https://docs.aws.amazon.com/kms/latest/developerguide/accessing-kms.html#programming-eventual-consistency
@@ -4361,14 +4371,14 @@ module Aws::KMS
4361
4371
  #
4362
4372
  #
4363
4373
  # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/rotating-keys-enable-disable.html
4364
- # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk
4374
+ # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
4365
4375
  # [3]: https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html
4366
4376
  # [4]: https://docs.aws.amazon.com/kms/latest/developerguide/hmac.html
4367
4377
  # [5]: https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html
4368
4378
  # [6]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
4369
4379
  # [7]: https://docs.aws.amazon.com/kms/latest/developerguide/rotate-keys.html#multi-region-rotate
4370
- # [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
4371
- # [9]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk
4380
+ # [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
4381
+ # [9]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-key
4372
4382
  # [10]: https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html
4373
4383
  # [11]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html
4374
4384
  # [12]: https://docs.aws.amazon.com/kms/latest/developerguide/accessing-kms.html#programming-eventual-consistency
@@ -6200,7 +6210,7 @@ module Aws::KMS
6200
6210
  # [5]: https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html
6201
6211
  # [6]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
6202
6212
  # [7]: https://docs.aws.amazon.com/kms/latest/developerguide/rotate-keys.html#multi-region-rotate
6203
- # [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
6213
+ # [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
6204
6214
  # [9]: https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html
6205
6215
  # [10]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html
6206
6216
  # [11]: https://docs.aws.amazon.com/kms/latest/developerguide/accessing-kms.html#programming-eventual-consistency
@@ -9193,8 +9203,8 @@ module Aws::KMS
9193
9203
  # [6]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
9194
9204
  # [7]: https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys-import-key-material.html
9195
9205
  # [8]: https://docs.aws.amazon.com/kms/latest/developerguide/rotate-keys.html#multi-region-rotate
9196
- # [9]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
9197
- # [10]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk
9206
+ # [9]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
9207
+ # [10]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-key
9198
9208
  # [11]: https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html
9199
9209
  # [12]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html
9200
9210
  # [13]: https://docs.aws.amazon.com/kms/latest/developerguide/accessing-kms.html#programming-eventual-consistency
@@ -9726,10 +9736,10 @@ module Aws::KMS
9726
9736
  #
9727
9737
  #
9728
9738
  #
9729
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk
9739
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
9730
9740
  # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/abac.html
9731
- # [3]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
9732
- # [4]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk
9741
+ # [3]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
9742
+ # [4]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-key
9733
9743
  # [5]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
9734
9744
  # [6]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-alias.html
9735
9745
  # [7]: https://docs.aws.amazon.com/kms/latest/developerguide/tagging-keys.html
@@ -9846,7 +9856,7 @@ module Aws::KMS
9846
9856
  #
9847
9857
  #
9848
9858
  #
9849
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk
9859
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
9850
9860
  # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/abac.html
9851
9861
  # [3]: https://docs.aws.amazon.com/kms/latest/developerguide/tagging-keys.html
9852
9862
  # [4]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
@@ -10004,8 +10014,8 @@ module Aws::KMS
10004
10014
  #
10005
10015
  #
10006
10016
  #
10007
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk
10008
- # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
10017
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
10018
+ # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
10009
10019
  #
10010
10020
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
10011
10021
  #
@@ -11023,7 +11033,7 @@ module Aws::KMS
11023
11033
  tracer: tracer
11024
11034
  )
11025
11035
  context[:gem_name] = 'aws-sdk-kms'
11026
- context[:gem_version] = '1.106.0'
11036
+ context[:gem_version] = '1.109.0'
11027
11037
  Seahorse::Client::Request.new(handlers, context)
11028
11038
  end
11029
11039
 
@@ -291,7 +291,7 @@ module Aws::KMS
291
291
  #
292
292
  #
293
293
  #
294
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
294
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
295
295
  # @return [String]
296
296
  #
297
297
  # @!attribute [rw] target_key_id
@@ -319,7 +319,7 @@ module Aws::KMS
319
319
  #
320
320
  #
321
321
  #
322
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk
322
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
323
323
  # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/find-cmk-id-arn.html
324
324
  # @return [String]
325
325
  #
@@ -2118,7 +2118,7 @@ module Aws::KMS
2118
2118
  #
2119
2119
  #
2120
2120
  #
2121
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html##aws-managed-cmk
2121
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
2122
2122
  # @return [String]
2123
2123
  #
2124
2124
  # @!attribute [rw] grant_tokens
@@ -6453,8 +6453,8 @@ module Aws::KMS
6453
6453
  #
6454
6454
  #
6455
6455
  #
6456
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk
6457
- # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk
6456
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
6457
+ # [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
6458
6458
  # @return [String]
6459
6459
  #
6460
6460
  # @see http://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UpdateAliasRequest AWS API Documentation
data/lib/aws-sdk-kms.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::KMS
54
54
  autoload :EndpointProvider, 'aws-sdk-kms/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-kms/endpoints'
56
56
 
57
- GEM_VERSION = '1.106.0'
57
+ GEM_VERSION = '1.109.0'
58
58
 
59
59
  end
60
60
 
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-kms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.106.0
4
+ version: 1.109.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.225.0
21
+ version: 3.228.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.225.0
31
+ version: 3.228.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement