aws-sdk-cloudsearchdomain 1.46.0 → 1.48.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-cloudsearchdomain/client.rb +19 -2
- data/lib/aws-sdk-cloudsearchdomain.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +6 -6
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: '07558b6bb2f94a341478e6608068e71509eeb2e2e99d787e33adb02ed307e3ba'
         | 
| 4 | 
            +
              data.tar.gz: 0461a8621aa1229e049e0b42456ba5c0582f2e1259c403e72459a39c1ac9d41c
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 9021340cf916e1ad94bf21fe4df13168935e65344217a25833217b7f6c7aa6d7b958fc935e1c368ba0a084f0285881dbc496a291dcc7299bbe74d851cd52921f
         | 
| 7 | 
            +
              data.tar.gz: bb55e6800ded00365bc06225e47ffdc131590e457d9a60fb31377ef57a5b2e2253bbb5688f7dc5392668108c4bb0a3bad8c62219482dfcb86d6790b42a3e9523
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,6 +1,16 @@ | |
| 1 1 | 
             
            Unreleased Changes
         | 
| 2 2 | 
             
            ------------------
         | 
| 3 3 |  | 
| 4 | 
            +
            1.48.0 (2024-09-03)
         | 
| 5 | 
            +
            ------------------
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            1.47.0 (2024-07-02)
         | 
| 10 | 
            +
            ------------------
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
         | 
| 13 | 
            +
             | 
| 4 14 | 
             
            1.46.0 (2024-06-28)
         | 
| 5 15 | 
             
            ------------------
         | 
| 6 16 |  | 
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1. | 
| 1 | 
            +
            1.48.0
         | 
| @@ -29,6 +29,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb' | |
| 29 29 | 
             
            require 'aws-sdk-core/plugins/request_compression.rb'
         | 
| 30 30 | 
             
            require 'aws-sdk-core/plugins/defaults_mode.rb'
         | 
| 31 31 | 
             
            require 'aws-sdk-core/plugins/recursion_detection.rb'
         | 
| 32 | 
            +
            require 'aws-sdk-core/plugins/telemetry.rb'
         | 
| 32 33 | 
             
            require 'aws-sdk-core/plugins/signature_v4.rb'
         | 
| 33 34 | 
             
            require 'aws-sdk-core/plugins/protocols/rest_json.rb'
         | 
| 34 35 | 
             
            require 'aws-sdk-cloudsearchdomain/plugins/conditional_signing.rb'
         | 
| @@ -79,6 +80,7 @@ module Aws::CloudSearchDomain | |
| 79 80 | 
             
                add_plugin(Aws::Plugins::RequestCompression)
         | 
| 80 81 | 
             
                add_plugin(Aws::Plugins::DefaultsMode)
         | 
| 81 82 | 
             
                add_plugin(Aws::Plugins::RecursionDetection)
         | 
| 83 | 
            +
                add_plugin(Aws::Plugins::Telemetry)
         | 
| 82 84 | 
             
                add_plugin(Aws::Plugins::SignatureV4)
         | 
| 83 85 | 
             
                add_plugin(Aws::Plugins::Protocols::RestJson)
         | 
| 84 86 | 
             
                add_plugin(Aws::CloudSearchDomain::Plugins::ConditionalSigning)
         | 
| @@ -272,6 +274,16 @@ module Aws::CloudSearchDomain | |
| 272 274 | 
             
                #     ** Please note ** When response stubbing is enabled, no HTTP
         | 
| 273 275 | 
             
                #     requests are made, and retries are disabled.
         | 
| 274 276 | 
             
                #
         | 
| 277 | 
            +
                #   @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
         | 
| 278 | 
            +
                #     Allows you to provide a telemetry provider, which is used to
         | 
| 279 | 
            +
                #     emit telemetry data. By default, uses `NoOpTelemetryProvider` which
         | 
| 280 | 
            +
                #     will not record or emit any telemetry data. The SDK supports the
         | 
| 281 | 
            +
                #     following telemetry providers:
         | 
| 282 | 
            +
                #
         | 
| 283 | 
            +
                #     * OpenTelemetry (OTel) - To use the OTel provider, install and require the
         | 
| 284 | 
            +
                #     `opentelemetry-sdk` gem and then, pass in an instance of a
         | 
| 285 | 
            +
                #     `Aws::Telemetry::OTelProvider` for telemetry provider.
         | 
| 286 | 
            +
                #
         | 
| 275 287 | 
             
                #   @option options [Aws::TokenProvider] :token_provider
         | 
| 276 288 | 
             
                #     A Bearer Token Provider. This can be an instance of any one of the
         | 
| 277 289 | 
             
                #     following classes:
         | 
| @@ -958,14 +970,19 @@ module Aws::CloudSearchDomain | |
| 958 970 | 
             
                # @api private
         | 
| 959 971 | 
             
                def build_request(operation_name, params = {})
         | 
| 960 972 | 
             
                  handlers = @handlers.for(operation_name)
         | 
| 973 | 
            +
                  tracer = config.telemetry_provider.tracer_provider.tracer(
         | 
| 974 | 
            +
                    Aws::Telemetry.module_to_tracer_name('Aws::CloudSearchDomain')
         | 
| 975 | 
            +
                  )
         | 
| 961 976 | 
             
                  context = Seahorse::Client::RequestContext.new(
         | 
| 962 977 | 
             
                    operation_name: operation_name,
         | 
| 963 978 | 
             
                    operation: config.api.operation(operation_name),
         | 
| 964 979 | 
             
                    client: self,
         | 
| 965 980 | 
             
                    params: params,
         | 
| 966 | 
            -
                    config: config | 
| 981 | 
            +
                    config: config,
         | 
| 982 | 
            +
                    tracer: tracer
         | 
| 983 | 
            +
                  )
         | 
| 967 984 | 
             
                  context[:gem_name] = 'aws-sdk-cloudsearchdomain'
         | 
| 968 | 
            -
                  context[:gem_version] = '1. | 
| 985 | 
            +
                  context[:gem_version] = '1.48.0'
         | 
| 969 986 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 970 987 | 
             
                end
         | 
| 971 988 |  | 
    
        data/sig/client.rbs
    CHANGED
    
    
    
        data/sig/resource.rbs
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: aws-sdk-cloudsearchdomain
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.48.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,21 +29,21 @@ 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
         | 
| 36 36 | 
             
                requirements:
         | 
| 37 37 | 
             
                - - "~>"
         | 
| 38 38 | 
             
                  - !ruby/object:Gem::Version
         | 
| 39 | 
            -
                    version: '1. | 
| 39 | 
            +
                    version: '1.5'
         | 
| 40 40 | 
             
              type: :runtime
         | 
| 41 41 | 
             
              prerelease: false
         | 
| 42 42 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 43 43 | 
             
                requirements:
         | 
| 44 44 | 
             
                - - "~>"
         | 
| 45 45 | 
             
                  - !ruby/object:Gem::Version
         | 
| 46 | 
            -
                    version: '1. | 
| 46 | 
            +
                    version: '1.5'
         | 
| 47 47 | 
             
            description: Official AWS Ruby gem for Amazon CloudSearch Domain. This gem is part
         | 
| 48 48 | 
             
              of the AWS SDK for Ruby.
         | 
| 49 49 | 
             
            email:
         |