aws-sdk-kms 1.105.0 → 1.107.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-kms/client.rb +24 -13
- data/lib/aws-sdk-kms/types.rb +5 -4
- 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: b5b7dc6fa3e64a2496dd52b1e554a7ab4e92e5dd66a7d882b2854a33d9dbed4f
|
4
|
+
data.tar.gz: 8d812b1c64cf11c939e1f5b26e54b23f807ed952461fe569ac666e1065c9f4f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59937cd3caf378005b2135f62f5e93f2157adc4a89e9755059bff821fe7e965062783bb0e5c3c67fe34a94e4dcf68b25aa835c07ed53bcfaeaf7752f95d6f299
|
7
|
+
data.tar.gz: 762bfe0de9cc5dcc565fd2285a681fe5878b53882d413d8ed22d7cf4630a64a3e2e02f00431bc23227c89b31235ce70c403d7ecdaa3acafab79951472527a07a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.107.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.106.0 (2025-06-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release updates AWS CLI examples for KMS APIs.
|
13
|
+
|
4
14
|
1.105.0 (2025-06-12)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.107.0
|
data/lib/aws-sdk-kms/client.rb
CHANGED
@@ -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
|
-
#
|
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::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
|
-
#
|
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
|
-
#
|
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
|
@@ -6908,10 +6918,11 @@ module Aws::KMS
|
|
6908
6918
|
# @option params [String] :import_type
|
6909
6919
|
# Indicates whether the key material being imported is previously
|
6910
6920
|
# associated with this KMS key or not. This parameter is optional and
|
6911
|
-
# only usable with symmetric encryption keys.
|
6912
|
-
#
|
6913
|
-
#
|
6914
|
-
#
|
6921
|
+
# only usable with symmetric encryption keys. If no key material has
|
6922
|
+
# ever been imported into the KMS key, and this parameter is omitted,
|
6923
|
+
# the parameter defaults to `NEW_KEY_MATERIAL`. After the first key
|
6924
|
+
# material is imported, if this parameter is omitted then the parameter
|
6925
|
+
# defaults to `EXISTING_KEY_MATERIAL`.
|
6915
6926
|
#
|
6916
6927
|
# @option params [String] :key_material_description
|
6917
6928
|
# Description for the key material being imported. This parameter is
|
@@ -11022,7 +11033,7 @@ module Aws::KMS
|
|
11022
11033
|
tracer: tracer
|
11023
11034
|
)
|
11024
11035
|
context[:gem_name] = 'aws-sdk-kms'
|
11025
|
-
context[:gem_version] = '1.
|
11036
|
+
context[:gem_version] = '1.107.0'
|
11026
11037
|
Seahorse::Client::Request.new(handlers, context)
|
11027
11038
|
end
|
11028
11039
|
|
data/lib/aws-sdk-kms/types.rb
CHANGED
@@ -3940,10 +3940,11 @@ module Aws::KMS
|
|
3940
3940
|
# @!attribute [rw] import_type
|
3941
3941
|
# Indicates whether the key material being imported is previously
|
3942
3942
|
# associated with this KMS key or not. This parameter is optional and
|
3943
|
-
# only usable with symmetric encryption keys.
|
3944
|
-
#
|
3945
|
-
#
|
3946
|
-
#
|
3943
|
+
# only usable with symmetric encryption keys. If no key material has
|
3944
|
+
# ever been imported into the KMS key, and this parameter is omitted,
|
3945
|
+
# the parameter defaults to `NEW_KEY_MATERIAL`. After the first key
|
3946
|
+
# material is imported, if this parameter is omitted then the
|
3947
|
+
# parameter defaults to `EXISTING_KEY_MATERIAL`.
|
3947
3948
|
# @return [String]
|
3948
3949
|
#
|
3949
3950
|
# @!attribute [rw] key_material_description
|
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.107.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
|