aws-sdk-firehose 1.85.0 → 1.87.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 +43 -5
- data/lib/aws-sdk-firehose/client_api.rb +14 -0
- data/lib/aws-sdk-firehose/types.rb +398 -90
- data/lib/aws-sdk-firehose.rb +1 -1
- data/sig/client.rbs +7 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +15 -0
- metadata +4 -4
    
        data/lib/aws-sdk-firehose.rb
    CHANGED
    
    
    
        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),
         | 
| @@ -84,6 +86,9 @@ module Aws | |
| 84 86 | 
             
                  def create_delivery_stream: (
         | 
| 85 87 | 
             
                                                delivery_stream_name: ::String,
         | 
| 86 88 | 
             
                                                ?delivery_stream_type: ("DirectPut" | "KinesisStreamAsSource" | "MSKAsSource" | "DatabaseAsSource"),
         | 
| 89 | 
            +
                                                ?direct_put_source_configuration: {
         | 
| 90 | 
            +
                                                  throughput_hint_in_m_bs: ::Integer
         | 
| 91 | 
            +
                                                },
         | 
| 87 92 | 
             
                                                ?kinesis_stream_source_configuration: {
         | 
| 88 93 | 
             
                                                  kinesis_stream_arn: ::String,
         | 
| 89 94 | 
             
                                                  role_arn: ::String
         | 
| @@ -770,6 +775,7 @@ module Aws | |
| 770 775 | 
             
                                                    duration_in_seconds: ::Integer?
         | 
| 771 776 | 
             
                                                  }?,
         | 
| 772 777 | 
             
                                                  role_arn: ::String,
         | 
| 778 | 
            +
                                                  append_only: bool?,
         | 
| 773 779 | 
             
                                                  catalog_configuration: {
         | 
| 774 780 | 
             
                                                    catalog_arn: ::String?,
         | 
| 775 781 | 
             
                                                    warehouse_location: ::String?
         | 
| @@ -1606,6 +1612,7 @@ module Aws | |
| 1606 1612 | 
             
                                                duration_in_seconds: ::Integer?
         | 
| 1607 1613 | 
             
                                              }?,
         | 
| 1608 1614 | 
             
                                              role_arn: ::String?,
         | 
| 1615 | 
            +
                                              append_only: bool?,
         | 
| 1609 1616 | 
             
                                              catalog_configuration: {
         | 
| 1610 1617 | 
             
                                                catalog_arn: ::String?,
         | 
| 1611 1618 | 
             
                                                warehouse_location: ::String?
         | 
    
        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),
         | 
    
        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.87.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:  | 
| 11 | 
            +
            date: 2025-01-28 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.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. | 
| 32 | 
            +
                    version: 3.216.0
         | 
| 33 33 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 34 34 | 
             
              name: aws-sigv4
         | 
| 35 35 | 
             
              requirement: !ruby/object:Gem::Requirement
         |