module Aws module Partitions # @api private class EndpointProvider # Intentionally marked private. The format of the endpoint rules # is an implementation detail. # @api private def initialize(rules) @rules = rules end # @param [String] region # @param [String] service The endpoint prefix for the service, e.g. "monitoring" for # cloudwatch. # @api private Use the static class methods instead. def resolve(region, service) "https://" + endpoint_for(region, service) end # @api private Use the static class methods instead. def signing_region(region, service) get_partition(region). fetch("services", {}). fetch(service, {}). fetch("endpoints", {}). fetch(region, {}). fetch("credentialScope", {}). fetch("region", region) end # @api private Use the static class methods instead. def dns_suffix_for(region) partition = get_partition(region) partition['dnsSuffix'] end private def endpoint_for(region, service) partition = get_partition(region) endpoint = default_endpoint(partition, service, region) service_cfg = partition.fetch("services", {}).fetch(service, {}) # Check for service-level default endpoint. endpoint = service_cfg.fetch("defaults", {}).fetch("hostname", endpoint) # Check for global endpoint. if service_cfg["isRegionalized"] == false region = service_cfg.fetch("partitionEndpoint", region) end # Check for service/region level endpoint. endpoint = service_cfg.fetch("endpoints", {}). fetch(region, {}).fetch("hostname", endpoint) endpoint end def default_endpoint(partition, service, region) hostname_template = partition["defaults"]["hostname"] hostname_template. sub('{region}', region). sub('{service}', service). sub('{dnsSuffix}', partition["dnsSuffix"]) end def get_partition(region) partition_containing_region(region) || partition_matching_region(region) || default_partition end def partition_containing_region(region) @rules['partitions'].find do |p| p['regions'].key?(region) end end def partition_matching_region(region) @rules['partitions'].find do |p| region.match(p["regionRegex"]) || p['services'].values.find { |svc| svc['endpoints'].key?(region) if svc.key? 'endpoints' } end end def default_partition @rules['partitions'].find { |p| p["partition"] == "aws" } || @rules['partitions'].first end class << self def resolve(region, service) default_provider.resolve(region, service) end def signing_region(region, service) default_provider.signing_region(region, service) end def dns_suffix_for(region) default_provider.dns_suffix_for(region) end private def default_provider @default_provider ||= EndpointProvider.new(Partitions.defaults) end end end end end