class Aws::SSOOIDC::Plugins::Endpoints::Handler

@api private

def apply_endpoint_headers(context, headers)

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 call(context)

def call(context)
  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)
    context[:endpoint_params] = params
    context[:endpoint_properties] = endpoint.properties
  end
  context[:auth_scheme] =
    Aws::Endpoints.resolve_auth_scheme(context, endpoint)
  @handler.call(context)
end

def parameters_for_operation(context)

def parameters_for_operation(context)
  case context.operation_name
  when :create_token
    Aws::SSOOIDC::Endpoints::CreateToken.build(context)
  when :create_token_with_iam
    Aws::SSOOIDC::Endpoints::CreateTokenWithIAM.build(context)
  when :register_client
    Aws::SSOOIDC::Endpoints::RegisterClient.build(context)
  when :start_device_authorization
    Aws::SSOOIDC::Endpoints::StartDeviceAuthorization.build(context)
  end
end