aws-sdk-kms 1.105.0 → 1.106.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kms/client.rb +6 -5
- data/lib/aws-sdk-kms/types.rb +5 -4
- data/lib/aws-sdk-kms.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 201524fcd7a495dca2dd60546a1056631fcd9d5d70bdcef9b46c77fc08716b19
|
4
|
+
data.tar.gz: 3d6c1641f2d79bbef429d71379a933451de6151f7690a829cb67ad8bce4f6ce0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17b3468e36b9929f90e68dc867df1368aa9ba865c45e1c78cd4cee22fd3e54cb8ffbc98330789c35bdcdd61e078db1281220e0a0362ed07b41fb0f83c69aafd2
|
7
|
+
data.tar.gz: e9c97588b4eb8000829bf24febd171652b39d5a3809bf0169e89aeeccdf9b93a63fb30f05085ddd2510a16e0c7900131562072351dc3046124a949f78e9fff0b
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.106.0
|
data/lib/aws-sdk-kms/client.rb
CHANGED
@@ -6908,10 +6908,11 @@ module Aws::KMS
|
|
6908
6908
|
# @option params [String] :import_type
|
6909
6909
|
# Indicates whether the key material being imported is previously
|
6910
6910
|
# associated with this KMS key or not. This parameter is optional and
|
6911
|
-
# only usable with symmetric encryption keys.
|
6912
|
-
#
|
6913
|
-
#
|
6914
|
-
#
|
6911
|
+
# only usable with symmetric encryption keys. If no key material has
|
6912
|
+
# ever been imported into the KMS key, and this parameter is omitted,
|
6913
|
+
# the parameter defaults to `NEW_KEY_MATERIAL`. After the first key
|
6914
|
+
# material is imported, if this parameter is omitted then the parameter
|
6915
|
+
# defaults to `EXISTING_KEY_MATERIAL`.
|
6915
6916
|
#
|
6916
6917
|
# @option params [String] :key_material_description
|
6917
6918
|
# Description for the key material being imported. This parameter is
|
@@ -11022,7 +11023,7 @@ module Aws::KMS
|
|
11022
11023
|
tracer: tracer
|
11023
11024
|
)
|
11024
11025
|
context[:gem_name] = 'aws-sdk-kms'
|
11025
|
-
context[:gem_version] = '1.
|
11026
|
+
context[:gem_version] = '1.106.0'
|
11026
11027
|
Seahorse::Client::Request.new(handlers, context)
|
11027
11028
|
end
|
11028
11029
|
|
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