aws-sdk-kms 1.107.0 → 1.110.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kms/client.rb +33 -36
- data/lib/aws-sdk-kms/types.rb +5 -5
- data/lib/aws-sdk-kms.rb +1 -1
- 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: 15e7d7efeaaba1ac887a6439c24b1b8e98e32851984d32bc3ed74016f4d14943
|
4
|
+
data.tar.gz: 665e2e96cd79e4015b8678d225dfdb87f83e7192cbb3c5ccbee132869bedb5f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d79ceef96e527a642a4ce329084f17efd83849f897bbcd2dc414f274b1d844c56926d1f04155bda07c79d6b4a9f54a0a55a12aabb265541e14284a01b3cf44be
|
7
|
+
data.tar.gz: 580fb73fb43f498076d776daca030480bba1cf7d263432ceaa89c717b7ab9db70e71ccb15912aae0ac2d19d0d9179d895cc4b9c16ba6e4afa7ce11a9712a270a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.110.0 (2025-08-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.109.0 (2025-07-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.108.0 (2025-07-25)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Doc only update: fixed grammatical errors.
|
18
|
+
|
4
19
|
1.107.0 (2025-07-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.110.0
|
data/lib/aws-sdk-kms/client.rb
CHANGED
@@ -95,8 +95,8 @@ 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 used for authentication. This can be
|
99
|
-
# following classes:
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
102
102
|
# credentials.
|
@@ -124,8 +124,7 @@ module Aws::KMS
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
125
125
|
# from the Cognito Identity service.
|
126
126
|
#
|
127
|
-
# When `:credentials` are not configured directly, the following
|
128
|
-
# locations will be searched for credentials:
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
129
128
|
#
|
130
129
|
# * `Aws.config[:credentials]`
|
131
130
|
#
|
@@ -139,12 +138,10 @@ module Aws::KMS
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
-
# to `true`.
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
148
145
|
#
|
149
146
|
# @option options [required, String] :region
|
150
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -384,8 +381,8 @@ module Aws::KMS
|
|
384
381
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
385
382
|
#
|
386
383
|
# @option options [Aws::TokenProvider] :token_provider
|
387
|
-
# Your Bearer token used for authentication. This can be
|
388
|
-
# following classes:
|
384
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
385
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
389
386
|
#
|
390
387
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
391
388
|
# tokens.
|
@@ -789,7 +786,7 @@ module Aws::KMS
|
|
789
786
|
#
|
790
787
|
#
|
791
788
|
#
|
792
|
-
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-
|
789
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
|
793
790
|
#
|
794
791
|
# @option params [required, String] :target_key_id
|
795
792
|
# Associates the alias with the specified [customer managed key][1]. The
|
@@ -815,7 +812,7 @@ module Aws::KMS
|
|
815
812
|
#
|
816
813
|
#
|
817
814
|
#
|
818
|
-
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-
|
815
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
|
819
816
|
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/find-cmk-id-arn.html
|
820
817
|
#
|
821
818
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -1525,9 +1522,9 @@ module Aws::KMS
|
|
1525
1522
|
# source of its key material, its key policy, description, tags, and
|
1526
1523
|
# other properties.
|
1527
1524
|
#
|
1528
|
-
# <note markdown="1"> KMS has replaced the term *customer master key (CMK)* with *
|
1529
|
-
# and *KMS key*. The concept has not changed. To
|
1530
|
-
# changes, KMS is keeping some variations of this term.
|
1525
|
+
# <note markdown="1"> KMS has replaced the term *customer master key (CMK)* with *Key
|
1526
|
+
# Management Service key* and *KMS key*. The concept has not changed. To
|
1527
|
+
# prevent breaking changes, KMS is keeping some variations of this term.
|
1531
1528
|
#
|
1532
1529
|
# </note>
|
1533
1530
|
#
|
@@ -3636,8 +3633,8 @@ module Aws::KMS
|
|
3636
3633
|
#
|
3637
3634
|
#
|
3638
3635
|
#
|
3639
|
-
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-
|
3640
|
-
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-
|
3636
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
|
3637
|
+
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
|
3641
3638
|
# [3]: https://docs.aws.amazon.com/kms/latest/developerguide/multi-region-keys-overview.html
|
3642
3639
|
# [4]: https://docs.aws.amazon.com/kms/latest/developerguide/keystore-cloudhsm.html
|
3643
3640
|
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/keystore-external.html
|
@@ -3674,7 +3671,7 @@ module Aws::KMS
|
|
3674
3671
|
#
|
3675
3672
|
#
|
3676
3673
|
#
|
3677
|
-
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html
|
3674
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
|
3678
3675
|
#
|
3679
3676
|
# @option params [Array<String>] :grant_tokens
|
3680
3677
|
# A list of grant tokens.
|
@@ -4079,9 +4076,9 @@ module Aws::KMS
|
|
4079
4076
|
# [4]: https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html
|
4080
4077
|
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
|
4081
4078
|
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/rotate-keys.html#multi-region-rotate
|
4082
|
-
# [7]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-
|
4083
|
-
# [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-
|
4084
|
-
# [9]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-
|
4079
|
+
# [7]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
|
4080
|
+
# [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
|
4081
|
+
# [9]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-key
|
4085
4082
|
# [10]: https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html
|
4086
4083
|
# [11]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html
|
4087
4084
|
# [12]: https://docs.aws.amazon.com/kms/latest/developerguide/accessing-kms.html#programming-eventual-consistency
|
@@ -4371,14 +4368,14 @@ module Aws::KMS
|
|
4371
4368
|
#
|
4372
4369
|
#
|
4373
4370
|
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/rotating-keys-enable-disable.html
|
4374
|
-
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-
|
4371
|
+
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
|
4375
4372
|
# [3]: https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html
|
4376
4373
|
# [4]: https://docs.aws.amazon.com/kms/latest/developerguide/hmac.html
|
4377
4374
|
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html
|
4378
4375
|
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
|
4379
4376
|
# [7]: https://docs.aws.amazon.com/kms/latest/developerguide/rotate-keys.html#multi-region-rotate
|
4380
|
-
# [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-
|
4381
|
-
# [9]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-
|
4377
|
+
# [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
|
4378
|
+
# [9]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-key
|
4382
4379
|
# [10]: https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html
|
4383
4380
|
# [11]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html
|
4384
4381
|
# [12]: https://docs.aws.amazon.com/kms/latest/developerguide/accessing-kms.html#programming-eventual-consistency
|
@@ -6210,7 +6207,7 @@ module Aws::KMS
|
|
6210
6207
|
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html
|
6211
6208
|
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
|
6212
6209
|
# [7]: https://docs.aws.amazon.com/kms/latest/developerguide/rotate-keys.html#multi-region-rotate
|
6213
|
-
# [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-
|
6210
|
+
# [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
|
6214
6211
|
# [9]: https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html
|
6215
6212
|
# [10]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html
|
6216
6213
|
# [11]: https://docs.aws.amazon.com/kms/latest/developerguide/accessing-kms.html#programming-eventual-consistency
|
@@ -9203,8 +9200,8 @@ module Aws::KMS
|
|
9203
9200
|
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
|
9204
9201
|
# [7]: https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys-import-key-material.html
|
9205
9202
|
# [8]: https://docs.aws.amazon.com/kms/latest/developerguide/rotate-keys.html#multi-region-rotate
|
9206
|
-
# [9]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-
|
9207
|
-
# [10]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-
|
9203
|
+
# [9]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
|
9204
|
+
# [10]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-key
|
9208
9205
|
# [11]: https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html
|
9209
9206
|
# [12]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html
|
9210
9207
|
# [13]: https://docs.aws.amazon.com/kms/latest/developerguide/accessing-kms.html#programming-eventual-consistency
|
@@ -9736,10 +9733,10 @@ module Aws::KMS
|
|
9736
9733
|
#
|
9737
9734
|
#
|
9738
9735
|
#
|
9739
|
-
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-
|
9736
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
|
9740
9737
|
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/abac.html
|
9741
|
-
# [3]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-
|
9742
|
-
# [4]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-
|
9738
|
+
# [3]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
|
9739
|
+
# [4]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-key
|
9743
9740
|
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
|
9744
9741
|
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-alias.html
|
9745
9742
|
# [7]: https://docs.aws.amazon.com/kms/latest/developerguide/tagging-keys.html
|
@@ -9856,7 +9853,7 @@ module Aws::KMS
|
|
9856
9853
|
#
|
9857
9854
|
#
|
9858
9855
|
#
|
9859
|
-
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-
|
9856
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
|
9860
9857
|
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/abac.html
|
9861
9858
|
# [3]: https://docs.aws.amazon.com/kms/latest/developerguide/tagging-keys.html
|
9862
9859
|
# [4]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
@@ -10014,8 +10011,8 @@ module Aws::KMS
|
|
10014
10011
|
#
|
10015
10012
|
#
|
10016
10013
|
#
|
10017
|
-
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-
|
10018
|
-
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-
|
10014
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
|
10015
|
+
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
|
10019
10016
|
#
|
10020
10017
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
10021
10018
|
#
|
@@ -11033,7 +11030,7 @@ module Aws::KMS
|
|
11033
11030
|
tracer: tracer
|
11034
11031
|
)
|
11035
11032
|
context[:gem_name] = 'aws-sdk-kms'
|
11036
|
-
context[:gem_version] = '1.
|
11033
|
+
context[:gem_version] = '1.110.0'
|
11037
11034
|
Seahorse::Client::Request.new(handlers, context)
|
11038
11035
|
end
|
11039
11036
|
|
data/lib/aws-sdk-kms/types.rb
CHANGED
@@ -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-
|
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-
|
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
|
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-
|
6457
|
-
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-
|
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
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.
|
4
|
+
version: 1.110.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.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.
|
31
|
+
version: 3.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|