1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
# frozen_string_literal: true
# WARNING ABOUT GENERATED CODE
#
# This file is generated. See the contributing guide for more information:
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
#
# WARNING ABOUT GENERATED CODE
module Aws::SSO
module Plugins
class Endpoints < Seahorse::Client::Plugin
option(
:endpoint_provider,
doc_type: 'Aws::SSO::EndpointProvider',
docstring: 'The endpoint provider used to resolve endpoints. Any '\
'object that responds to `#resolve_endpoint(parameters)` '\
'where `parameters` is a Struct similar to '\
'`Aws::SSO::EndpointParameters`'
) do |cfg|
Aws::SSO::EndpointProvider.new
end
# @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
when :get_role_credentials
Aws::SSO::Endpoints::GetRoleCredentials.build(context)
when :list_account_roles
Aws::SSO::Endpoints::ListAccountRoles.build(context)
when :list_accounts
Aws::SSO::Endpoints::ListAccounts.build(context)
when :logout
Aws::SSO::Endpoints::Logout.build(context)
end
end
end
def add_handlers(handlers, _config)
handlers.add(Handler, step: :build, priority: 75)
end
end
end
end
|