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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7930276ce6eca53007fd2104001f7c52b2acdcb121e2dbe0d56af25a7ca01fc1
4
- data.tar.gz: d78c7611da70583675372d49d619b3ab778218853580146a6400c51efb059a00
3
+ metadata.gz: b4a1245a0ce9f256b242d9083d7ef0ec8089d2365f8be248e9cbbcba19740e19
4
+ data.tar.gz: be8fdf03ea44d0bf7f0833027aa9e4bd97d69405d3c813e417fe82fe89c7e9dc
5
5
  SHA512:
6
- metadata.gz: 88c919ef85e66ad57f7790e2997d8f54a57f2801e7100aaa0b5a60a7ccf222263db1a6cce817ef565a3061a6d3b062cf5841992a89723a76ebdc0e33f6bd13fc
7
- data.tar.gz: e7bfa848433ee67dee870280a39f1a5ec20fa04e970116832807aef69373b692f41b2c8f7caf852d164c11572e66d1e2f32f480a4f3bafb18372c749648af910
6
+ metadata.gz: 557118e5b0ed89c0f79fd3bb7d795679a7922ef873511275a478d3d3fcaab767b0d52ecb73087709da0e920ad619012ac6ae0c019709fd208389a68da0d7a6f3
7
+ data.tar.gz: dab7f3e6d3f618ef130146e70a45fd187fe157dbfe539187ab186144e57d37754684fb0c3c49377d169007e17a9d6cb327843d654a0c74854fda90720a51f556
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.38.0 (2024-02-23)
5
+ ------------------
6
+
7
+ * Feature - Clarify possible values for KmsKeyArn and EncryptionDescription.
8
+
4
9
  1.37.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.37.0
1
+ 1.38.0
@@ -1661,7 +1661,7 @@ module Aws::QLDB
1661
1661
  params: params,
1662
1662
  config: config)
1663
1663
  context[:gem_name] = 'aws-sdk-qldb'
1664
- context[:gem_version] = '1.37.0'
1664
+ context[:gem_version] = '1.38.0'
1665
1665
  Seahorse::Client::Request.new(handlers, context)
1666
1666
  end
1667
1667
 
@@ -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?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
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"
@@ -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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-qldb/customizations'
52
52
  # @!group service
53
53
  module Aws::QLDB
54
54
 
55
- GEM_VERSION = '1.37.0'
55
+ GEM_VERSION = '1.38.0'
56
56
 
57
57
  end
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.37.0
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-01-26 00:00:00.000000000 Z
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