aws-sdk-firehose 1.86.0 → 1.88.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 +20 -5
- data/lib/aws-sdk-firehose/client_api.rb +14 -0
- data/lib/aws-sdk-firehose/endpoint_provider.rb +13 -17
- data/lib/aws-sdk-firehose/types.rb +398 -90
- data/lib/aws-sdk-firehose.rb +1 -1
- data/sig/client.rbs +5 -0
- data/sig/types.rbs +15 -0
- metadata +2 -2
data/lib/aws-sdk-firehose.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -86,6 +86,9 @@ module Aws
|
|
86
86
|
def create_delivery_stream: (
|
87
87
|
delivery_stream_name: ::String,
|
88
88
|
?delivery_stream_type: ("DirectPut" | "KinesisStreamAsSource" | "MSKAsSource" | "DatabaseAsSource"),
|
89
|
+
?direct_put_source_configuration: {
|
90
|
+
throughput_hint_in_m_bs: ::Integer
|
91
|
+
},
|
89
92
|
?kinesis_stream_source_configuration: {
|
90
93
|
kinesis_stream_arn: ::String,
|
91
94
|
role_arn: ::String
|
@@ -772,6 +775,7 @@ module Aws
|
|
772
775
|
duration_in_seconds: ::Integer?
|
773
776
|
}?,
|
774
777
|
role_arn: ::String,
|
778
|
+
append_only: bool?,
|
775
779
|
catalog_configuration: {
|
776
780
|
catalog_arn: ::String?,
|
777
781
|
warehouse_location: ::String?
|
@@ -1608,6 +1612,7 @@ module Aws
|
|
1608
1612
|
duration_in_seconds: ::Integer?
|
1609
1613
|
}?,
|
1610
1614
|
role_arn: ::String?,
|
1615
|
+
append_only: bool?,
|
1611
1616
|
catalog_configuration: {
|
1612
1617
|
catalog_arn: ::String?,
|
1613
1618
|
warehouse_location: ::String?
|
data/sig/types.rbs
CHANGED
@@ -162,6 +162,7 @@ module Aws::Firehose
|
|
162
162
|
class CreateDeliveryStreamInput
|
163
163
|
attr_accessor delivery_stream_name: ::String
|
164
164
|
attr_accessor delivery_stream_type: ("DirectPut" | "KinesisStreamAsSource" | "MSKAsSource" | "DatabaseAsSource")
|
165
|
+
attr_accessor direct_put_source_configuration: Types::DirectPutSourceConfiguration
|
165
166
|
attr_accessor kinesis_stream_source_configuration: Types::KinesisStreamSourceConfiguration
|
166
167
|
attr_accessor delivery_stream_encryption_configuration_input: Types::DeliveryStreamEncryptionConfigurationInput
|
167
168
|
attr_accessor s3_destination_configuration: Types::S3DestinationConfiguration
|
@@ -343,6 +344,16 @@ module Aws::Firehose
|
|
343
344
|
SENSITIVE: []
|
344
345
|
end
|
345
346
|
|
347
|
+
class DirectPutSourceConfiguration
|
348
|
+
attr_accessor throughput_hint_in_m_bs: ::Integer
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class DirectPutSourceDescription
|
353
|
+
attr_accessor throughput_hint_in_m_bs: ::Integer
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
346
357
|
class DocumentIdOptions
|
347
358
|
attr_accessor default_document_id_format: ("FIREHOSE_DEFAULT" | "NO_DOCUMENT_ID")
|
348
359
|
SENSITIVE: []
|
@@ -579,6 +590,7 @@ module Aws::Firehose
|
|
579
590
|
attr_accessor s3_backup_mode: ("FailedDataOnly" | "AllData")
|
580
591
|
attr_accessor retry_options: Types::RetryOptions
|
581
592
|
attr_accessor role_arn: ::String
|
593
|
+
attr_accessor append_only: bool
|
582
594
|
attr_accessor catalog_configuration: Types::CatalogConfiguration
|
583
595
|
attr_accessor s3_configuration: Types::S3DestinationConfiguration
|
584
596
|
SENSITIVE: []
|
@@ -594,6 +606,7 @@ module Aws::Firehose
|
|
594
606
|
attr_accessor s3_backup_mode: ("FailedDataOnly" | "AllData")
|
595
607
|
attr_accessor retry_options: Types::RetryOptions
|
596
608
|
attr_accessor role_arn: ::String
|
609
|
+
attr_accessor append_only: bool
|
597
610
|
attr_accessor catalog_configuration: Types::CatalogConfiguration
|
598
611
|
attr_accessor s3_destination_description: Types::S3DestinationDescription
|
599
612
|
SENSITIVE: []
|
@@ -609,6 +622,7 @@ module Aws::Firehose
|
|
609
622
|
attr_accessor s3_backup_mode: ("FailedDataOnly" | "AllData")
|
610
623
|
attr_accessor retry_options: Types::RetryOptions
|
611
624
|
attr_accessor role_arn: ::String
|
625
|
+
attr_accessor append_only: bool
|
612
626
|
attr_accessor catalog_configuration: Types::CatalogConfiguration
|
613
627
|
attr_accessor s3_configuration: Types::S3DestinationConfiguration
|
614
628
|
SENSITIVE: []
|
@@ -1031,6 +1045,7 @@ module Aws::Firehose
|
|
1031
1045
|
end
|
1032
1046
|
|
1033
1047
|
class SourceDescription
|
1048
|
+
attr_accessor direct_put_source_description: Types::DirectPutSourceDescription
|
1034
1049
|
attr_accessor kinesis_stream_source_description: Types::KinesisStreamSourceDescription
|
1035
1050
|
attr_accessor msk_source_description: Types::MSKSourceDescription
|
1036
1051
|
attr_accessor database_source_description: Types::DatabaseSourceDescription
|
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.88.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: 2025-
|
11
|
+
date: 2025-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|