aws-sdk-lakeformation 1.65.0 → 1.66.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e6255d472fd5ac1e84b1a9c35270b10bb53bde9f22d114814f145e2b843eb2fe
4
- data.tar.gz: 6fd815e9b9c514695fc172a27c9dd485ad3d47ca0d17f8fbbac2d5c932859ca8
3
+ metadata.gz: 297762db6f0b0b57151c3c56fa77e43f59c3993d8232bed5e5bd321315a01583
4
+ data.tar.gz: 72b0360763245bb6cfcb6c14b8f4c63779312da72affb42d60aec3d3fee6fd9a
5
5
  SHA512:
6
- metadata.gz: d530a1e386dabec99557eb2b38b8b214ef03cf8f8e80950ec924419e0a24de7c3e1a07b3ae1af7401f7a1668bbedb405d803d0b2b6660ee0aeb78fd94a6a7c31
7
- data.tar.gz: 1a0d9dd7497d59bba2631a676134127f23f41ec09fa8333195dc07d0c1d5df2bb6c3d0e71341bf93b0121ad585e005dd14ae4ee6180266a47c04bc5922338b2f
6
+ metadata.gz: f493a6948c0f950e5479355c450afdcd7b5581fbb99fa38c1d3140cada56908d377b123531d2d37ef6e00d9455e959fac60f94777e75248da895a9691f302b1a
7
+ data.tar.gz: 1ae4d79f565754be5e2a40e8dbbe8e44bc5131b87e29ff6843ec83312e0f8fdf4de60e827399406ab3c09fa3d271df9a4a9105f571ec2cd8fe0a87649bcc4e2b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.65.0 (2024-12-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.66.0
@@ -257,11 +257,34 @@ module Aws::LakeFormation
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -4144,7 +4167,7 @@ module Aws::LakeFormation
4144
4167
  tracer: tracer
4145
4168
  )
4146
4169
  context[:gem_name] = 'aws-sdk-lakeformation'
4147
- context[:gem_version] = '1.65.0'
4170
+ context[:gem_version] = '1.66.0'
4148
4171
  Seahorse::Client::Request.new(handlers, context)
4149
4172
  end
4150
4173
 
@@ -54,7 +54,7 @@ module Aws::LakeFormation
54
54
  autoload :EndpointProvider, 'aws-sdk-lakeformation/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-lakeformation/endpoints'
56
56
 
57
- GEM_VERSION = '1.65.0'
57
+ GEM_VERSION = '1.66.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lakeformation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.65.0
4
+ version: 1.66.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-12-03 00:00:00.000000000 Z
11
+ date: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.210.0
22
+ version: 3.216.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement