lib/aws-sdk-augmentedairuntime/plugins/endpoints.rb in aws-sdk-augmentedairuntime-1.48.0 vs lib/aws-sdk-augmentedairuntime/plugins/endpoints.rb in aws-sdk-augmentedairuntime-1.49.0
- old
+ new
@@ -25,11 +25,11 @@
# @api private
class Handler < Seahorse::Client::Handler
def call(context)
unless context[:discovered_endpoint]
- params = parameters_for_operation(context)
+ params = Aws::AugmentedAIRuntime::Endpoints.parameters_for_operation(context)
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
context.http_request.endpoint = endpoint.url
apply_endpoint_headers(context, endpoint.headers)
@@ -63,24 +63,9 @@
.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 :delete_human_loop
- Aws::AugmentedAIRuntime::Endpoints::DeleteHumanLoop.build(context)
- when :describe_human_loop
- Aws::AugmentedAIRuntime::Endpoints::DescribeHumanLoop.build(context)
- when :list_human_loops
- Aws::AugmentedAIRuntime::Endpoints::ListHumanLoops.build(context)
- when :start_human_loop
- Aws::AugmentedAIRuntime::Endpoints::StartHumanLoop.build(context)
- when :stop_human_loop
- Aws::AugmentedAIRuntime::Endpoints::StopHumanLoop.build(context)
end
end
end
def add_handlers(handlers, _config)