def resolve_endpoint(parameters)
def resolve_endpoint(parameters)
region = parameters.region
use_dual_stack = parameters.use_dual_stack
use_fips = parameters.use_fips
endpoint = parameters.endpoint
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
end
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
end
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
end
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
end
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
end
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
if Aws::Endpoints::Matchers.string_equals?(region, "dkr-us-east-2")
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.us-east-2.amazonaws.com", headers: {}, properties: {})
end
if Aws::Endpoints::Matchers.string_equals?(region, "dkr-us-east-1")
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.us-east-1.amazonaws.com", headers: {}, properties: {})
end
if Aws::Endpoints::Matchers.string_equals?(region, "dkr-us-west-2")
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.us-west-2.amazonaws.com", headers: {}, properties: {})
end
if Aws::Endpoints::Matchers.string_equals?(region, "dkr-us-west-1")
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.us-west-1.amazonaws.com", headers: {}, properties: {})
end
if Aws::Endpoints::Matchers.string_equals?("aws", Aws::Endpoints::Matchers.attr(partition_result, "name"))
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
end
if Aws::Endpoints::Matchers.string_equals?(region, "dkr-us-gov-east-1")
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
end
if Aws::Endpoints::Matchers.string_equals?(region, "dkr-us-gov-west-1")
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.us-gov-west-1.amazonaws.com", headers: {}, properties: {})
end
if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
end
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
end
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
end
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
end
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
end
return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
end
raise ArgumentError, 'No endpoint could be resolved'
end