aws-sdk-kms 1.28.0 → 1.29.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/lib/aws-sdk-kms.rb +1 -1
- data/lib/aws-sdk-kms/client.rb +4 -4
- data/lib/aws-sdk-kms/types.rb +35 -7
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 390a07e2032bb5b13eda47e864a9ed55c9274aa9
|
4
|
+
data.tar.gz: 69953b632d5845c997248f12b64fb627039c0a9e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67394aa6a7da595a5387944e31f3585a6a210b3724d19d35519d7403f030b6b23a7c2ee64e7755e6ba759ef27c86aae01fd1ce8918e030ecfb5b88aa0320b87e
|
7
|
+
data.tar.gz: 56b2a2843623751e0085783be6c4c48cc7d364396b4ca43f26059a558ad7d9b6ffb386701051380f5f13469c65dc2a037eb1d0252a1b5bcfb8148f886157b2b6
|
data/lib/aws-sdk-kms.rb
CHANGED
data/lib/aws-sdk-kms/client.rb
CHANGED
@@ -1626,7 +1626,7 @@ module Aws::KMS
|
|
1626
1626
|
# resp.custom_key_stores[0].cloud_hsm_cluster_id #=> String
|
1627
1627
|
# resp.custom_key_stores[0].trust_anchor_certificate #=> String
|
1628
1628
|
# resp.custom_key_stores[0].connection_state #=> String, one of "CONNECTED", "CONNECTING", "FAILED", "DISCONNECTED", "DISCONNECTING"
|
1629
|
-
# resp.custom_key_stores[0].connection_error_code #=> String, one of "INVALID_CREDENTIALS", "CLUSTER_NOT_FOUND", "NETWORK_ERRORS", "INTERNAL_ERROR", "INSUFFICIENT_CLOUDHSM_HSMS", "USER_LOCKED_OUT", "USER_NOT_FOUND", "USER_LOGGED_IN"
|
1629
|
+
# resp.custom_key_stores[0].connection_error_code #=> String, one of "INVALID_CREDENTIALS", "CLUSTER_NOT_FOUND", "NETWORK_ERRORS", "INTERNAL_ERROR", "INSUFFICIENT_CLOUDHSM_HSMS", "USER_LOCKED_OUT", "USER_NOT_FOUND", "USER_LOGGED_IN", "SUBNET_NOT_FOUND"
|
1630
1630
|
# resp.custom_key_stores[0].creation_date #=> Time
|
1631
1631
|
# resp.next_marker #=> String
|
1632
1632
|
# resp.truncated #=> Boolean
|
@@ -4791,8 +4791,8 @@ module Aws::KMS
|
|
4791
4791
|
#
|
4792
4792
|
# @option params [String] :message_type
|
4793
4793
|
# Tells AWS KMS whether the value of the `Message` parameter is a
|
4794
|
-
# message or message digest.
|
4795
|
-
# indicate a message digest, enter `DIGEST`.
|
4794
|
+
# message or message digest. The default value, RAW, indicates a
|
4795
|
+
# message. To indicate a message digest, enter `DIGEST`.
|
4796
4796
|
#
|
4797
4797
|
# @option params [Array<String>] :grant_tokens
|
4798
4798
|
# A list of grant tokens.
|
@@ -5375,7 +5375,7 @@ module Aws::KMS
|
|
5375
5375
|
params: params,
|
5376
5376
|
config: config)
|
5377
5377
|
context[:gem_name] = 'aws-sdk-kms'
|
5378
|
-
context[:gem_version] = '1.
|
5378
|
+
context[:gem_version] = '1.29.0'
|
5379
5379
|
Seahorse::Client::Request.new(handlers, context)
|
5380
5380
|
end
|
5381
5381
|
|
data/lib/aws-sdk-kms/types.rb
CHANGED
@@ -920,6 +920,15 @@ module Aws::KMS
|
|
920
920
|
# * `NETWORK_ERRORS` - Network errors are preventing AWS KMS from
|
921
921
|
# connecting to the custom key store.
|
922
922
|
#
|
923
|
+
# * `SUBNET_NOT_FOUND` - A subnet in the AWS CloudHSM cluster
|
924
|
+
# configuration was deleted. If AWS KMS cannot find all of the
|
925
|
+
# subnets that were configured for the cluster when the custom key
|
926
|
+
# store was created, attempts to connect fail. To fix this error,
|
927
|
+
# create a cluster from a backup and associate it with your custom
|
928
|
+
# key store. This process includes selecting a VPC and subnets. For
|
929
|
+
# details, see [How to Fix a Connection Failure][1] in the *AWS Key
|
930
|
+
# Management Service Developer Guide*.
|
931
|
+
#
|
923
932
|
# * `USER_LOCKED_OUT` - The `kmsuser` CU account is locked out of the
|
924
933
|
# associated AWS CloudHSM cluster due to too many failed password
|
925
934
|
# attempts. Before you can connect your custom key store to its AWS
|
@@ -2382,14 +2391,16 @@ module Aws::KMS
|
|
2382
2391
|
# @!attribute [rw] public_key
|
2383
2392
|
# The exported public key.
|
2384
2393
|
#
|
2385
|
-
#
|
2386
|
-
# (
|
2387
|
-
#
|
2394
|
+
# The value is a DER-encoded X.509 public key, also known as
|
2395
|
+
# `SubjectPublicKeyInfo` (SPKI), as defined in [RFC 5280][1]. When you
|
2396
|
+
# use the HTTP API or the AWS CLI, the value is Base64-encoded.
|
2397
|
+
# Otherwise, it is not Base64-encoded.
|
2398
|
+
#
|
2399
|
+
#
|
2388
2400
|
#
|
2389
2401
|
#
|
2390
2402
|
#
|
2391
|
-
# [1]: https://
|
2392
|
-
# [2]: https://www.openssl.org/docs/man1.0.2/man1/asn1parse.html
|
2403
|
+
# [1]: https://tools.ietf.org/html/rfc5280
|
2393
2404
|
# @return [String]
|
2394
2405
|
#
|
2395
2406
|
# @!attribute [rw] customer_master_key_spec
|
@@ -3988,8 +3999,8 @@ module Aws::KMS
|
|
3988
3999
|
#
|
3989
4000
|
# @!attribute [rw] message_type
|
3990
4001
|
# Tells AWS KMS whether the value of the `Message` parameter is a
|
3991
|
-
# message or message digest.
|
3992
|
-
# indicate a message digest, enter `DIGEST`.
|
4002
|
+
# message or message digest. The default value, RAW, indicates a
|
4003
|
+
# message. To indicate a message digest, enter `DIGEST`.
|
3993
4004
|
# @return [String]
|
3994
4005
|
#
|
3995
4006
|
# @!attribute [rw] grant_tokens
|
@@ -4028,6 +4039,23 @@ module Aws::KMS
|
|
4028
4039
|
#
|
4029
4040
|
# @!attribute [rw] signature
|
4030
4041
|
# The cryptographic signature that was generated for the message.
|
4042
|
+
#
|
4043
|
+
# * When used with the supported RSA signing algorithms, the encoding
|
4044
|
+
# of this value is defined by [PKCS #1 in RFC 8017][1].
|
4045
|
+
#
|
4046
|
+
# * When used with the `ECDSA_SHA_256`, `ECDSA_SHA_384`, or
|
4047
|
+
# `ECDSA_SHA_512` signing algorithms, this value is a DER-encoded
|
4048
|
+
# object as defined by ANS X9.62–2005 and [RFC 3279 Section
|
4049
|
+
# 2.2.3][2]. This is the most commonly used signature format and is
|
4050
|
+
# appropriate for most uses.
|
4051
|
+
#
|
4052
|
+
# When you use the HTTP API or the AWS CLI, the value is
|
4053
|
+
# Base64-encoded. Otherwise, it is not Base64-encoded.
|
4054
|
+
#
|
4055
|
+
#
|
4056
|
+
#
|
4057
|
+
# [1]: https://tools.ietf.org/html/rfc8017
|
4058
|
+
# [2]: https://tools.ietf.org/html/rfc3279#section-2.2.3
|
4031
4059
|
# @return [String]
|
4032
4060
|
#
|
4033
4061
|
# @!attribute [rw] signing_algorithm
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.29.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-02-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|