aws-sdk-firehose 1.91.0 → 1.93.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-firehose/client.rb +2 -3
- data/lib/aws-sdk-firehose.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: 1fcf8c45eded28b87a40f3ff2d51458deff6b3d1def3ded9fe9f62c8fae64fa0
|
4
|
+
data.tar.gz: 400f6a1ef5e216aac64707702e7deacd1b66504484d8e4b3b97aa4b60a5744be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe6cffbc3aff1b5dfbd14b8ee650ae31c4937e05ed9eab9b4badfddd54921dd0369f31ef2c89051ab27e9a81872a18fda4818bea54fddc4b8526e2c78281bb10
|
7
|
+
data.tar.gz: bfc8f2ee93e1afbcea6d935a3438014ad7ddd77771b12e992990d5e472872e04f9424f95736d03a64c83b1d515028d521a5ba1124e86aceb1613f1ed53c80bd8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.93.0 (2025-05-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds catalogARN support for s3 tables multi-catalog catalogARNs.
|
8
|
+
|
9
|
+
1.92.0 (2025-05-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.91.0 (2025-05-01)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.93.0
|
@@ -200,8 +200,7 @@ module Aws::Firehose
|
|
200
200
|
# accepted modes and the configuration defaults that are included.
|
201
201
|
#
|
202
202
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
203
|
-
#
|
204
|
-
# to default service endpoint when available.
|
203
|
+
# When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
|
205
204
|
#
|
206
205
|
# @option options [Boolean] :disable_request_compression (false)
|
207
206
|
# When set to 'true' the request body will not be compressed
|
@@ -3320,7 +3319,7 @@ module Aws::Firehose
|
|
3320
3319
|
tracer: tracer
|
3321
3320
|
)
|
3322
3321
|
context[:gem_name] = 'aws-sdk-firehose'
|
3323
|
-
context[:gem_version] = '1.
|
3322
|
+
context[:gem_version] = '1.93.0'
|
3324
3323
|
Seahorse::Client::Request.new(handlers, context)
|
3325
3324
|
end
|
3326
3325
|
|
data/lib/aws-sdk-firehose.rb
CHANGED