aws-sdk-qldb 1.37.0 → 1.38.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-qldb/client.rb +1 -1
- data/lib/aws-sdk-qldb/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-qldb/types.rb +6 -2
- data/lib/aws-sdk-qldb.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b4a1245a0ce9f256b242d9083d7ef0ec8089d2365f8be248e9cbbcba19740e19
|
|
4
|
+
data.tar.gz: be8fdf03ea44d0bf7f0833027aa9e4bd97d69405d3c813e417fe82fe89c7e9dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 557118e5b0ed89c0f79fd3bb7d795679a7922ef873511275a478d3d3fcaab767b0d52ecb73087709da0e920ad619012ac6ae0c019709fd208389a68da0d7a6f3
|
|
7
|
+
data.tar.gz: dab7f3e6d3f618ef130146e70a45fd187fe157dbfe539187ab186144e57d37754684fb0c3c49377d169007e17a9d6cb327843d654a0c74854fda90720a51f556
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.38.0
|
data/lib/aws-sdk-qldb/client.rb
CHANGED
|
@@ -32,7 +32,7 @@ module Aws::QLDB
|
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
33
|
end
|
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://qldb-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
37
|
end
|
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
data/lib/aws-sdk-qldb/types.rb
CHANGED
|
@@ -337,7 +337,9 @@ module Aws::QLDB
|
|
|
337
337
|
# @!attribute [rw] encryption_description
|
|
338
338
|
# Information about the encryption of data at rest in the ledger. This
|
|
339
339
|
# includes the current status, the KMS key, and when the key became
|
|
340
|
-
# inaccessible (in the case of an error).
|
|
340
|
+
# inaccessible (in the case of an error). If this parameter is
|
|
341
|
+
# undefined, the ledger uses an Amazon Web Services owned KMS key for
|
|
342
|
+
# encryption.
|
|
341
343
|
# @return [Types::LedgerEncryptionDescription]
|
|
342
344
|
#
|
|
343
345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/DescribeLedgerResponse AWS API Documentation
|
|
@@ -805,7 +807,9 @@ module Aws::QLDB
|
|
|
805
807
|
# The Amazon Resource Name (ARN) of the customer managed KMS key that
|
|
806
808
|
# the ledger uses for encryption at rest. If this parameter is
|
|
807
809
|
# undefined, the ledger uses an Amazon Web Services owned KMS key for
|
|
808
|
-
# encryption.
|
|
810
|
+
# encryption. It will display `AWS_OWNED_KMS_KEY` when updating the
|
|
811
|
+
# ledger's encryption configuration to the Amazon Web Services owned
|
|
812
|
+
# KMS key.
|
|
809
813
|
# @return [String]
|
|
810
814
|
#
|
|
811
815
|
# @!attribute [rw] encryption_status
|
data/lib/aws-sdk-qldb.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-qldb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.38.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: 2024-
|
|
11
|
+
date: 2024-02-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|