Sha256: cd5d76f455a36d40eae0daf183395d7780b9e51a9f01642903d646424f657682

Contents?: true

Size: 1.41 KB

Versions: 25

Compression:

Stored size: 1.41 KB

Contents

# frozen_string_literal: true

module Seahorse
  module Client
    module Plugins
      class Endpoint < Plugin

        option(:endpoint,
          doc_type: 'String, URI::HTTPS, URI::HTTP',
          docstring: <<-DOCS)
Normally you should not configure the `:endpoint` option
directly. This is normally constructed from the `:region`
option. Configuring `:endpoint` is normally reserved for
connecting to test or custom endpoints. The endpoint should
be a URI formatted like:

    'http://example.com'
    'https://example.com'
    'http://example.com:123'
          DOCS

        def add_handlers(handlers, config)
          handlers.add(Handler, priority: 90)
        end

        def after_initialize(client)
          endpoint = client.config.endpoint
          if endpoint.nil?
            msg = "missing required option `:endpoint'"
            raise ArgumentError, msg
          end

          endpoint = URI.parse(endpoint.to_s)
          if URI::HTTPS === endpoint or URI::HTTP === endpoint
            client.config.endpoint = endpoint
          else
            msg = 'expected :endpoint to be a HTTP or HTTPS endpoint'
            raise ArgumentError, msg
          end
        end

        class Handler < Client::Handler

          def call(context)
            context.http_request.endpoint = URI.parse(context.config.endpoint.to_s)
            @handler.call(context)
          end

        end
      end
    end
  end
end

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
aws-sdk-core-3.214.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.213.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.212.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.211.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.210.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.209.1 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.209.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.208.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.207.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.206.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.205.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.204.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.203.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.202.2 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.202.1 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.202.0 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.201.5 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.201.4 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.201.3 lib/seahorse/client/plugins/endpoint.rb
aws-sdk-core-3.201.2 lib/seahorse/client/plugins/endpoint.rb