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
|
# File 'gems/aws-sdk-bcmdataexports/lib/aws-sdk-bcmdataexports/endpoint_provider.rb', line 12
def resolve_endpoint(parameters)
region = parameters.region
use_fips = parameters.use_fips
endpoint = parameters.endpoint
if Aws::Endpoints::Matchers.set?(endpoint)
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
end
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
end
if Aws::Endpoints::Matchers.set?(region)
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws")
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
return Aws::Endpoints::Endpoint.new(url: "https://bcm-data-exports-fips.#{region}.api.aws", headers: {}, properties: {})
end
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
end
return Aws::Endpoints::Endpoint.new(url: "https://bcm-data-exports.us-east-1.api.aws", headers: {}, properties: {"authSchemes"=>[{"name"=>"sigv4", "signingName"=>"bcm-data-exports", "signingRegion"=>"us-east-1"}]})
end
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
return Aws::Endpoints::Endpoint.new(url: "https://bcm-data-exports-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
end
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
end
return Aws::Endpoints::Endpoint.new(url: "https://bcm-data-exports.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
end
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
return Aws::Endpoints::Endpoint.new(url: "https://bcm-data-exports-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
end
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
end
return Aws::Endpoints::Endpoint.new(url: "https://bcm-data-exports.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
end
end
raise ArgumentError, "Invalid Configuration: Missing Region"
raise ArgumentError, 'No endpoint could be resolved'
end
|