aws-sdk-firehose 1.65.0 → 1.66.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-firehose/client.rb +18 -1
- data/lib/aws-sdk-firehose/types.rb +17 -0
- data/lib/aws-sdk-firehose.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: df4b45c9045783c45c3649c1f5d1f703be3a541950e7a4c04fda2d728d445a35
|
|
4
|
+
data.tar.gz: 97932e004ff349f5ae7f9541b975c1720a42ec021f1cf13e013d4d3c25b7d594
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02d818ace9e09990d913e15c5c2f1965214b59c88bebe0c7a0c4cca03429cbabf4fbf41336df7d344f910ab0914a26453881501a4dcda6a399941651ff61d766
|
|
7
|
+
data.tar.gz: 58bbef740df208961d6820c30cce2c3def15134cd87fd602847f8cab27184f583a1b89336e1354b45e8515baea749c5248c9df58330a0387f7d2bdb8940e8575
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.66.0
|
|
@@ -544,9 +544,26 @@ module Aws::Firehose
|
|
|
544
544
|
#
|
|
545
545
|
# You can specify up to 50 tags when creating a delivery stream.
|
|
546
546
|
#
|
|
547
|
+
# If you specify tags in the `CreateDeliveryStream` action, Amazon Data
|
|
548
|
+
# Firehose performs an additional authorization on the
|
|
549
|
+
# `firehose:TagDeliveryStream` action to verify if users have
|
|
550
|
+
# permissions to create tags. If you do not provide this permission,
|
|
551
|
+
# requests to create new Firehose delivery streams with IAM resource
|
|
552
|
+
# tags will fail with an `AccessDeniedException` such as following.
|
|
553
|
+
#
|
|
554
|
+
# **AccessDeniedException**
|
|
555
|
+
#
|
|
556
|
+
# User: arn:aws:sts::x:assumed-role/x/x is not authorized to perform:
|
|
557
|
+
# firehose:TagDeliveryStream on resource:
|
|
558
|
+
# arn:aws:firehose:us-east-1:x:deliverystream/x with an explicit deny in
|
|
559
|
+
# an identity-based policy.
|
|
560
|
+
#
|
|
561
|
+
# For an example IAM policy, see [Tag example.][2]
|
|
562
|
+
#
|
|
547
563
|
#
|
|
548
564
|
#
|
|
549
565
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
|
|
566
|
+
# [2]: https://docs.aws.amazon.com/firehose/latest/APIReference/API_CreateDeliveryStream.html#API_CreateDeliveryStream_Examples
|
|
550
567
|
#
|
|
551
568
|
# @option params [Types::AmazonOpenSearchServerlessDestinationConfiguration] :amazon_open_search_serverless_destination_configuration
|
|
552
569
|
# The destination in the Serverless offering for Amazon OpenSearch
|
|
@@ -2864,7 +2881,7 @@ module Aws::Firehose
|
|
|
2864
2881
|
params: params,
|
|
2865
2882
|
config: config)
|
|
2866
2883
|
context[:gem_name] = 'aws-sdk-firehose'
|
|
2867
|
-
context[:gem_version] = '1.
|
|
2884
|
+
context[:gem_version] = '1.66.0'
|
|
2868
2885
|
Seahorse::Client::Request.new(handlers, context)
|
|
2869
2886
|
end
|
|
2870
2887
|
|
|
@@ -800,9 +800,26 @@ module Aws::Firehose
|
|
|
800
800
|
#
|
|
801
801
|
# You can specify up to 50 tags when creating a delivery stream.
|
|
802
802
|
#
|
|
803
|
+
# If you specify tags in the `CreateDeliveryStream` action, Amazon
|
|
804
|
+
# Data Firehose performs an additional authorization on the
|
|
805
|
+
# `firehose:TagDeliveryStream` action to verify if users have
|
|
806
|
+
# permissions to create tags. If you do not provide this permission,
|
|
807
|
+
# requests to create new Firehose delivery streams with IAM resource
|
|
808
|
+
# tags will fail with an `AccessDeniedException` such as following.
|
|
809
|
+
#
|
|
810
|
+
# **AccessDeniedException**
|
|
811
|
+
#
|
|
812
|
+
# User: arn:aws:sts::x:assumed-role/x/x is not authorized to perform:
|
|
813
|
+
# firehose:TagDeliveryStream on resource:
|
|
814
|
+
# arn:aws:firehose:us-east-1:x:deliverystream/x with an explicit deny
|
|
815
|
+
# in an identity-based policy.
|
|
816
|
+
#
|
|
817
|
+
# For an example IAM policy, see [Tag example.][2]
|
|
818
|
+
#
|
|
803
819
|
#
|
|
804
820
|
#
|
|
805
821
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
|
|
822
|
+
# [2]: https://docs.aws.amazon.com/firehose/latest/APIReference/API_CreateDeliveryStream.html#API_CreateDeliveryStream_Examples
|
|
806
823
|
# @return [Array<Types::Tag>]
|
|
807
824
|
#
|
|
808
825
|
# @!attribute [rw] amazon_open_search_serverless_destination_configuration
|
data/lib/aws-sdk-firehose.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-firehose
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
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-
|
|
11
|
+
date: 2024-03-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|