# frozen_string_literal: true {{#generated_src_warning}} {{generated_src_warning}} {{/generated_src_warning}} module {{module_name}} module Plugins class Endpoints < Seahorse::Client::Plugin option( :endpoint_provider, doc_type: '{{module_name}}::EndpointProvider', docstring: 'The endpoint provider used to resolve endpoints. Any '\ 'object that responds to `#resolve_endpoint(parameters)` '\ 'where `parameters` is a Struct similar to '\ '`{{module_name}}::EndpointParameters`' ) do |cfg| {{module_name}}::EndpointProvider.new end {{#endpoint_options}} option( :{{name}}, doc_type: '{{doc_type}}', default: {{{default}}}, docstring: "{{{docstring}}}") {{/endpoint_options}} # @api private class Handler < Seahorse::Client::Handler def call(context) # If endpoint was discovered, do not resolve or apply the endpoint. unless context[:discovered_endpoint] params = parameters_for_operation(context) endpoint = context.config.endpoint_provider.resolve_endpoint(params) context.http_request.endpoint = endpoint.url apply_endpoint_headers(context, endpoint.headers) end context[:endpoint_params] = params context[:auth_scheme] = Aws::Endpoints.resolve_auth_scheme(context, endpoint) @handler.call(context) end private def apply_endpoint_headers(context, headers) headers.each do |key, values| value = values .compact .map { |s| Seahorse::Util.escape_header_list_string(s.to_s) } .join(',') context.http_request.headers[key] = value end end def parameters_for_operation(context) case context.operation_name {{#endpoint_classes}} when :{{operation_name}} {{module_name}}::Endpoints::{{class_name}}.build(context) {{/endpoint_classes}} end end end def add_handlers(handlers, _config) handlers.add(Handler, step: :build, priority: 75) end end end end