aws-sdk-kms 1.106.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kms/client.rb +47 -40
- data/lib/aws-sdk-kms/types.rb +5 -5
- data/lib/aws-sdk-kms.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: 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,26 @@
|
|
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
|
+
|
19
|
+
1.107.0 (2025-07-21)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.106.0 (2025-06-26)
|
5
25
|
------------------
|
6
26
|
|
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. 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,22 +124,24 @@ 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]`
|
130
|
+
#
|
131
131
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
132
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
133
|
+
#
|
134
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
135
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
136
|
+
#
|
135
137
|
# * `~/.aws/credentials`
|
138
|
+
#
|
136
139
|
# * `~/.aws/config`
|
137
|
-
#
|
138
|
-
#
|
139
|
-
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
|
-
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
#
|
142
|
-
# to true.
|
140
|
+
#
|
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`.
|
143
145
|
#
|
144
146
|
# @option options [required, String] :region
|
145
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +169,11 @@ module Aws::KMS
|
|
167
169
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
170
|
# not retry instead of sleeping.
|
169
171
|
#
|
172
|
+
# @option options [Array<String>] :auth_scheme_preference
|
173
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
174
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
175
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
176
|
+
#
|
170
177
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
178
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
179
|
# this client.
|
@@ -253,8 +260,8 @@ module Aws::KMS
|
|
253
260
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
261
|
#
|
255
262
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
263
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
264
|
+
# When not specified, 'default' is used.
|
258
265
|
#
|
259
266
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
267
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,8 +381,8 @@ module Aws::KMS
|
|
374
381
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
382
|
#
|
376
383
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
378
|
-
# 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:
|
379
386
|
#
|
380
387
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
381
388
|
# tokens.
|
@@ -779,7 +786,7 @@ module Aws::KMS
|
|
779
786
|
#
|
780
787
|
#
|
781
788
|
#
|
782
|
-
# [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
|
783
790
|
#
|
784
791
|
# @option params [required, String] :target_key_id
|
785
792
|
# Associates the alias with the specified [customer managed key][1]. The
|
@@ -805,7 +812,7 @@ module Aws::KMS
|
|
805
812
|
#
|
806
813
|
#
|
807
814
|
#
|
808
|
-
# [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
|
809
816
|
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/find-cmk-id-arn.html
|
810
817
|
#
|
811
818
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -1515,9 +1522,9 @@ module Aws::KMS
|
|
1515
1522
|
# source of its key material, its key policy, description, tags, and
|
1516
1523
|
# other properties.
|
1517
1524
|
#
|
1518
|
-
# <note markdown="1"> KMS has replaced the term *customer master key (CMK)* with *
|
1519
|
-
# and *KMS key*. The concept has not changed. To
|
1520
|
-
# 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.
|
1521
1528
|
#
|
1522
1529
|
# </note>
|
1523
1530
|
#
|
@@ -3626,8 +3633,8 @@ module Aws::KMS
|
|
3626
3633
|
#
|
3627
3634
|
#
|
3628
3635
|
#
|
3629
|
-
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-
|
3630
|
-
# [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
|
3631
3638
|
# [3]: https://docs.aws.amazon.com/kms/latest/developerguide/multi-region-keys-overview.html
|
3632
3639
|
# [4]: https://docs.aws.amazon.com/kms/latest/developerguide/keystore-cloudhsm.html
|
3633
3640
|
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/keystore-external.html
|
@@ -3664,7 +3671,7 @@ module Aws::KMS
|
|
3664
3671
|
#
|
3665
3672
|
#
|
3666
3673
|
#
|
3667
|
-
# [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
|
3668
3675
|
#
|
3669
3676
|
# @option params [Array<String>] :grant_tokens
|
3670
3677
|
# A list of grant tokens.
|
@@ -4069,9 +4076,9 @@ module Aws::KMS
|
|
4069
4076
|
# [4]: https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html
|
4070
4077
|
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
|
4071
4078
|
# [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-
|
4073
|
-
# [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-
|
4074
|
-
# [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
|
4075
4082
|
# [10]: https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html
|
4076
4083
|
# [11]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html
|
4077
4084
|
# [12]: https://docs.aws.amazon.com/kms/latest/developerguide/accessing-kms.html#programming-eventual-consistency
|
@@ -4361,14 +4368,14 @@ module Aws::KMS
|
|
4361
4368
|
#
|
4362
4369
|
#
|
4363
4370
|
# [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-
|
4371
|
+
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-mgn-key
|
4365
4372
|
# [3]: https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html
|
4366
4373
|
# [4]: https://docs.aws.amazon.com/kms/latest/developerguide/hmac.html
|
4367
4374
|
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html
|
4368
4375
|
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
|
4369
4376
|
# [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-
|
4371
|
-
# [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
|
4372
4379
|
# [10]: https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html
|
4373
4380
|
# [11]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html
|
4374
4381
|
# [12]: https://docs.aws.amazon.com/kms/latest/developerguide/accessing-kms.html#programming-eventual-consistency
|
@@ -6200,7 +6207,7 @@ module Aws::KMS
|
|
6200
6207
|
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html
|
6201
6208
|
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
|
6202
6209
|
# [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-
|
6210
|
+
# [8]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-key
|
6204
6211
|
# [9]: https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html
|
6205
6212
|
# [10]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html
|
6206
6213
|
# [11]: https://docs.aws.amazon.com/kms/latest/developerguide/accessing-kms.html#programming-eventual-consistency
|
@@ -9193,8 +9200,8 @@ module Aws::KMS
|
|
9193
9200
|
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
|
9194
9201
|
# [7]: https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys-import-key-material.html
|
9195
9202
|
# [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-
|
9197
|
-
# [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
|
9198
9205
|
# [11]: https://docs.aws.amazon.com/kms/latest/developerguide/key-state.html
|
9199
9206
|
# [12]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-api-permissions-reference.html
|
9200
9207
|
# [13]: https://docs.aws.amazon.com/kms/latest/developerguide/accessing-kms.html#programming-eventual-consistency
|
@@ -9726,10 +9733,10 @@ module Aws::KMS
|
|
9726
9733
|
#
|
9727
9734
|
#
|
9728
9735
|
#
|
9729
|
-
# [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
|
9730
9737
|
# [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-
|
9732
|
-
# [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
|
9733
9740
|
# [5]: https://docs.aws.amazon.com/kms/latest/developerguide/key-store-overview.html
|
9734
9741
|
# [6]: https://docs.aws.amazon.com/kms/latest/developerguide/kms-alias.html
|
9735
9742
|
# [7]: https://docs.aws.amazon.com/kms/latest/developerguide/tagging-keys.html
|
@@ -9846,7 +9853,7 @@ module Aws::KMS
|
|
9846
9853
|
#
|
9847
9854
|
#
|
9848
9855
|
#
|
9849
|
-
# [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
|
9850
9857
|
# [2]: https://docs.aws.amazon.com/kms/latest/developerguide/abac.html
|
9851
9858
|
# [3]: https://docs.aws.amazon.com/kms/latest/developerguide/tagging-keys.html
|
9852
9859
|
# [4]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
@@ -10004,8 +10011,8 @@ module Aws::KMS
|
|
10004
10011
|
#
|
10005
10012
|
#
|
10006
10013
|
#
|
10007
|
-
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-
|
10008
|
-
# [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
|
10009
10016
|
#
|
10010
10017
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
10011
10018
|
#
|
@@ -11023,7 +11030,7 @@ module Aws::KMS
|
|
11023
11030
|
tracer: tracer
|
11024
11031
|
)
|
11025
11032
|
context[:gem_name] = 'aws-sdk-kms'
|
11026
|
-
context[:gem_version] = '1.
|
11033
|
+
context[:gem_version] = '1.110.0'
|
11027
11034
|
Seahorse::Client::Request.new(handlers, context)
|
11028
11035
|
end
|
11029
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
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.
|
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
|