Class: Aws::SageMakerRuntimeHTTP2::EndpointProvider

Inherits:
Object
  • Object
show all
Defined in:
gems/aws-sdk-sagemakerruntimehttp2/lib/aws-sdk-sagemakerruntimehttp2/endpoint_provider.rb

Instance Method Summary collapse

Instance Method Details

#resolve_endpoint(parameters) ⇒ Object

Raises:

  • (ArgumentError)


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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# File 'gems/aws-sdk-sagemakerruntimehttp2/lib/aws-sdk-sagemakerruntimehttp2/endpoint_provider.rb', line 12

def resolve_endpoint(parameters)
  if Aws::Endpoints::Matchers.set?(parameters.endpoint)
    if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
      raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
    end
    if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
      raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
    end
    return Aws::Endpoints::Endpoint.new(url: parameters.endpoint, headers: {}, properties: {})
  end
  if Aws::Endpoints::Matchers.set?(parameters.region)
    if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-cn") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-b") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-iso-f") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-eusc") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-eusc") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-eusc") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-eusc") && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
        return Aws::Endpoints::Endpoint.new(url: "https://runtime-fips.sagemaker.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}:8443", headers: {}, properties: {})
      end
      if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.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://runtime.sagemaker-fips.#{parameters.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?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, false)
        if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
          return Aws::Endpoints::Endpoint.new(url: "https://runtime.sagemaker-fips.#{parameters.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?(parameters.use_fips, false) && Aws::Endpoints::Matchers.boolean_equals?(parameters.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://runtime.sagemaker.#{parameters.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://runtime.sagemaker.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
    end
  end
  raise ArgumentError, "Invalid Configuration: Missing Region"
  raise ArgumentError, 'No endpoint could be resolved'

end