aws-sdk-firehose 1.75.0 → 1.77.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 +200 -2
- data/lib/aws-sdk-firehose/client_api.rb +68 -0
- data/lib/aws-sdk-firehose/types.rb +380 -8
- data/lib/aws-sdk-firehose.rb +1 -1
- data/sig/client.rbs +137 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +66 -0
- metadata +4 -4
data/sig/resource.rbs
CHANGED
@@ -51,6 +51,7 @@ module Aws
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?simple_json: bool,
|
53
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
55
|
?token_provider: untyped,
|
55
56
|
?use_dualstack_endpoint: bool,
|
56
57
|
?use_fips_endpoint: bool,
|
data/sig/types.rbs
CHANGED
@@ -134,6 +134,11 @@ module Aws::Firehose
|
|
134
134
|
SENSITIVE: []
|
135
135
|
end
|
136
136
|
|
137
|
+
class CatalogConfiguration
|
138
|
+
attr_accessor catalog_arn: ::String
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
137
142
|
class CloudWatchLoggingOptions
|
138
143
|
attr_accessor enabled: bool
|
139
144
|
attr_accessor log_group_name: ::String
|
@@ -169,6 +174,7 @@ module Aws::Firehose
|
|
169
174
|
attr_accessor amazon_open_search_serverless_destination_configuration: Types::AmazonOpenSearchServerlessDestinationConfiguration
|
170
175
|
attr_accessor msk_source_configuration: Types::MSKSourceConfiguration
|
171
176
|
attr_accessor snowflake_destination_configuration: Types::SnowflakeDestinationConfiguration
|
177
|
+
attr_accessor iceberg_destination_configuration: Types::IcebergDestinationConfiguration
|
172
178
|
SENSITIVE: []
|
173
179
|
end
|
174
180
|
|
@@ -253,6 +259,15 @@ module Aws::Firehose
|
|
253
259
|
attr_accessor http_endpoint_destination_description: Types::HttpEndpointDestinationDescription
|
254
260
|
attr_accessor snowflake_destination_description: Types::SnowflakeDestinationDescription
|
255
261
|
attr_accessor amazon_open_search_serverless_destination_description: Types::AmazonOpenSearchServerlessDestinationDescription
|
262
|
+
attr_accessor iceberg_destination_description: Types::IcebergDestinationDescription
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
266
|
+
class DestinationTableConfiguration
|
267
|
+
attr_accessor destination_table_name: ::String
|
268
|
+
attr_accessor destination_database_name: ::String
|
269
|
+
attr_accessor unique_keys: ::Array[::String]
|
270
|
+
attr_accessor s3_error_output_prefix: ::String
|
256
271
|
SENSITIVE: []
|
257
272
|
end
|
258
273
|
|
@@ -482,6 +497,45 @@ module Aws::Firehose
|
|
482
497
|
SENSITIVE: []
|
483
498
|
end
|
484
499
|
|
500
|
+
class IcebergDestinationConfiguration
|
501
|
+
attr_accessor destination_table_configuration_list: ::Array[Types::DestinationTableConfiguration]
|
502
|
+
attr_accessor buffering_hints: Types::BufferingHints
|
503
|
+
attr_accessor cloud_watch_logging_options: Types::CloudWatchLoggingOptions
|
504
|
+
attr_accessor processing_configuration: Types::ProcessingConfiguration
|
505
|
+
attr_accessor s3_backup_mode: ("FailedDataOnly" | "AllData")
|
506
|
+
attr_accessor retry_options: Types::RetryOptions
|
507
|
+
attr_accessor role_arn: ::String
|
508
|
+
attr_accessor catalog_configuration: Types::CatalogConfiguration
|
509
|
+
attr_accessor s3_configuration: Types::S3DestinationConfiguration
|
510
|
+
SENSITIVE: []
|
511
|
+
end
|
512
|
+
|
513
|
+
class IcebergDestinationDescription
|
514
|
+
attr_accessor destination_table_configuration_list: ::Array[Types::DestinationTableConfiguration]
|
515
|
+
attr_accessor buffering_hints: Types::BufferingHints
|
516
|
+
attr_accessor cloud_watch_logging_options: Types::CloudWatchLoggingOptions
|
517
|
+
attr_accessor processing_configuration: Types::ProcessingConfiguration
|
518
|
+
attr_accessor s3_backup_mode: ("FailedDataOnly" | "AllData")
|
519
|
+
attr_accessor retry_options: Types::RetryOptions
|
520
|
+
attr_accessor role_arn: ::String
|
521
|
+
attr_accessor catalog_configuration: Types::CatalogConfiguration
|
522
|
+
attr_accessor s3_destination_description: Types::S3DestinationDescription
|
523
|
+
SENSITIVE: []
|
524
|
+
end
|
525
|
+
|
526
|
+
class IcebergDestinationUpdate
|
527
|
+
attr_accessor destination_table_configuration_list: ::Array[Types::DestinationTableConfiguration]
|
528
|
+
attr_accessor buffering_hints: Types::BufferingHints
|
529
|
+
attr_accessor cloud_watch_logging_options: Types::CloudWatchLoggingOptions
|
530
|
+
attr_accessor processing_configuration: Types::ProcessingConfiguration
|
531
|
+
attr_accessor s3_backup_mode: ("FailedDataOnly" | "AllData")
|
532
|
+
attr_accessor retry_options: Types::RetryOptions
|
533
|
+
attr_accessor role_arn: ::String
|
534
|
+
attr_accessor catalog_configuration: Types::CatalogConfiguration
|
535
|
+
attr_accessor s3_configuration: Types::S3DestinationConfiguration
|
536
|
+
SENSITIVE: []
|
537
|
+
end
|
538
|
+
|
485
539
|
class InputFormatConfiguration
|
486
540
|
attr_accessor deserializer: Types::Deserializer
|
487
541
|
SENSITIVE: []
|
@@ -557,6 +611,7 @@ module Aws::Firehose
|
|
557
611
|
attr_accessor msk_cluster_arn: ::String
|
558
612
|
attr_accessor topic_name: ::String
|
559
613
|
attr_accessor authentication_configuration: Types::AuthenticationConfiguration
|
614
|
+
attr_accessor read_from_timestamp: ::Time
|
560
615
|
SENSITIVE: []
|
561
616
|
end
|
562
617
|
|
@@ -565,6 +620,7 @@ module Aws::Firehose
|
|
565
620
|
attr_accessor topic_name: ::String
|
566
621
|
attr_accessor authentication_configuration: Types::AuthenticationConfiguration
|
567
622
|
attr_accessor delivery_start_timestamp: ::Time
|
623
|
+
attr_accessor read_from_timestamp: ::Time
|
568
624
|
SENSITIVE: []
|
569
625
|
end
|
570
626
|
|
@@ -790,6 +846,12 @@ module Aws::Firehose
|
|
790
846
|
SENSITIVE: []
|
791
847
|
end
|
792
848
|
|
849
|
+
class SnowflakeBufferingHints
|
850
|
+
attr_accessor size_in_m_bs: ::Integer
|
851
|
+
attr_accessor interval_in_seconds: ::Integer
|
852
|
+
SENSITIVE: []
|
853
|
+
end
|
854
|
+
|
793
855
|
class SnowflakeDestinationConfiguration
|
794
856
|
attr_accessor account_url: ::String
|
795
857
|
attr_accessor private_key: ::String
|
@@ -810,6 +872,7 @@ module Aws::Firehose
|
|
810
872
|
attr_accessor s3_backup_mode: ("FailedDataOnly" | "AllData")
|
811
873
|
attr_accessor s3_configuration: Types::S3DestinationConfiguration
|
812
874
|
attr_accessor secrets_manager_configuration: Types::SecretsManagerConfiguration
|
875
|
+
attr_accessor buffering_hints: Types::SnowflakeBufferingHints
|
813
876
|
SENSITIVE: [:account_url, :private_key, :key_passphrase, :user, :database, :schema, :table, :meta_data_column_name, :content_column_name]
|
814
877
|
end
|
815
878
|
|
@@ -831,6 +894,7 @@ module Aws::Firehose
|
|
831
894
|
attr_accessor s3_backup_mode: ("FailedDataOnly" | "AllData")
|
832
895
|
attr_accessor s3_destination_description: Types::S3DestinationDescription
|
833
896
|
attr_accessor secrets_manager_configuration: Types::SecretsManagerConfiguration
|
897
|
+
attr_accessor buffering_hints: Types::SnowflakeBufferingHints
|
834
898
|
SENSITIVE: [:account_url, :user, :database, :schema, :table, :meta_data_column_name, :content_column_name]
|
835
899
|
end
|
836
900
|
|
@@ -853,6 +917,7 @@ module Aws::Firehose
|
|
853
917
|
attr_accessor s3_backup_mode: ("FailedDataOnly" | "AllData")
|
854
918
|
attr_accessor s3_update: Types::S3DestinationUpdate
|
855
919
|
attr_accessor secrets_manager_configuration: Types::SecretsManagerConfiguration
|
920
|
+
attr_accessor buffering_hints: Types::SnowflakeBufferingHints
|
856
921
|
SENSITIVE: [:account_url, :private_key, :key_passphrase, :user, :database, :schema, :table, :meta_data_column_name, :content_column_name]
|
857
922
|
end
|
858
923
|
|
@@ -988,6 +1053,7 @@ module Aws::Firehose
|
|
988
1053
|
attr_accessor http_endpoint_destination_update: Types::HttpEndpointDestinationUpdate
|
989
1054
|
attr_accessor amazon_open_search_serverless_destination_update: Types::AmazonOpenSearchServerlessDestinationUpdate
|
990
1055
|
attr_accessor snowflake_destination_update: Types::SnowflakeDestinationUpdate
|
1056
|
+
attr_accessor iceberg_destination_update: Types::IcebergDestinationUpdate
|
991
1057
|
SENSITIVE: []
|
992
1058
|
end
|
993
1059
|
|
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.77.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-09-03 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.
|
22
|
+
version: 3.203.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.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|