aws-sdk-core 3.117.0 → 3.197.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +836 -0
- data/VERSION +1 -1
- data/lib/aws-defaults/default_configuration.rb +153 -0
- data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
- data/lib/aws-defaults.rb +3 -0
- data/lib/aws-sdk-core/arn.rb +13 -0
- data/lib/aws-sdk-core/assume_role_credentials.rb +21 -7
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +14 -10
- data/lib/aws-sdk-core/binary/decode_handler.rb +0 -5
- data/lib/aws-sdk-core/binary/encode_handler.rb +12 -1
- data/lib/aws-sdk-core/binary/event_builder.rb +34 -37
- data/lib/aws-sdk-core/client_stubs.rb +20 -13
- data/lib/aws-sdk-core/credential_provider.rb +4 -1
- data/lib/aws-sdk-core/credential_provider_chain.rb +8 -5
- data/lib/aws-sdk-core/ec2_metadata.rb +4 -3
- data/lib/aws-sdk-core/ecs_credentials.rb +187 -52
- data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
- data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
- data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
- data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
- data/lib/aws-sdk-core/endpoints/function.rb +80 -0
- data/lib/aws-sdk-core/endpoints/matchers.rb +135 -0
- data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
- data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
- data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
- data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
- data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
- data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
- data/lib/aws-sdk-core/endpoints/url.rb +60 -0
- data/lib/aws-sdk-core/endpoints.rb +78 -0
- data/lib/aws-sdk-core/errors.rb +17 -4
- data/lib/aws-sdk-core/event_emitter.rb +0 -16
- data/lib/aws-sdk-core/ini_parser.rb +7 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +127 -33
- data/lib/aws-sdk-core/json/builder.rb +8 -1
- data/lib/aws-sdk-core/json/error_handler.rb +30 -4
- data/lib/aws-sdk-core/json/handler.rb +8 -1
- data/lib/aws-sdk-core/json/json_engine.rb +10 -8
- data/lib/aws-sdk-core/json/oj_engine.rb +33 -6
- data/lib/aws-sdk-core/json/parser.rb +38 -2
- data/lib/aws-sdk-core/json.rb +8 -26
- data/lib/aws-sdk-core/log/formatter.rb +6 -0
- data/lib/aws-sdk-core/log/param_filter.rb +9 -1
- data/lib/aws-sdk-core/lru_cache.rb +75 -0
- data/lib/aws-sdk-core/pageable_response.rb +81 -32
- data/lib/aws-sdk-core/param_validator.rb +36 -2
- data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
- data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +342 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +1 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +14 -2
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +29 -1
- data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +6 -2
- data/lib/aws-sdk-core/plugins/http_checksum.rb +9 -1
- data/lib/aws-sdk-core/plugins/invocation_id.rb +1 -11
- data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +34 -6
- data/lib/aws-sdk-core/plugins/logging.rb +2 -0
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +17 -0
- data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +4 -2
- data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -2
- data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +144 -17
- data/lib/aws-sdk-core/plugins/request_compression.rb +226 -0
- data/lib/aws-sdk-core/plugins/response_paging.rb +1 -1
- data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +7 -4
- data/lib/aws-sdk-core/plugins/retry_errors.rb +33 -7
- data/lib/aws-sdk-core/plugins/sign.rb +211 -0
- data/lib/aws-sdk-core/plugins/signature_v2.rb +1 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +28 -31
- data/lib/aws-sdk-core/plugins/stub_responses.rb +6 -1
- data/lib/aws-sdk-core/plugins/user_agent.rb +152 -14
- data/lib/aws-sdk-core/process_credentials.rb +50 -34
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +5 -7
- data/lib/aws-sdk-core/query/param_builder.rb +2 -2
- data/lib/aws-sdk-core/refreshing_credentials.rb +49 -18
- data/lib/aws-sdk-core/refreshing_token.rb +71 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -1
- data/lib/aws-sdk-core/rest/request/body.rb +49 -4
- data/lib/aws-sdk-core/rest/request/content_type.rb +60 -0
- data/lib/aws-sdk-core/rest/request/endpoint.rb +24 -4
- data/lib/aws-sdk-core/rest/request/headers.rb +23 -7
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +62 -36
- data/lib/aws-sdk-core/rest/response/body.rb +15 -1
- data/lib/aws-sdk-core/rest/response/header_list_parser.rb +79 -0
- data/lib/aws-sdk-core/rest/response/headers.rb +10 -3
- data/lib/aws-sdk-core/rest.rb +1 -0
- data/lib/aws-sdk-core/shared_config.rb +112 -12
- data/lib/aws-sdk-core/sso_credentials.rb +92 -51
- data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
- data/lib/aws-sdk-core/static_token_provider.rb +14 -0
- data/lib/aws-sdk-core/structure.rb +16 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +11 -0
- data/lib/aws-sdk-core/token.rb +31 -0
- data/lib/aws-sdk-core/token_provider.rb +15 -0
- data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
- data/lib/aws-sdk-core/util.rb +39 -0
- data/lib/aws-sdk-core/waiters/poller.rb +4 -2
- data/lib/aws-sdk-core/xml/builder.rb +17 -9
- data/lib/aws-sdk-core/xml/error_handler.rb +31 -8
- data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
- data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -1
- data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +0 -8
- data/lib/aws-sdk-core/xml/parser/frame.rb +27 -20
- data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
- data/lib/aws-sdk-core.rb +21 -0
- data/lib/aws-sdk-sso/client.rb +157 -50
- data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-sso/endpoint_provider.rb +57 -0
- data/lib/aws-sdk-sso/endpoints.rb +72 -0
- data/lib/aws-sdk-sso/plugins/endpoints.rb +78 -0
- data/lib/aws-sdk-sso/types.rb +8 -43
- data/lib/aws-sdk-sso.rb +5 -1
- data/lib/aws-sdk-ssooidc/client.rb +1008 -0
- data/lib/aws-sdk-ssooidc/client_api.rb +293 -0
- data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
- data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-ssooidc/endpoint_provider.rb +57 -0
- data/lib/aws-sdk-ssooidc/endpoints.rb +72 -0
- data/lib/aws-sdk-ssooidc/errors.rb +342 -0
- data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +78 -0
- data/lib/aws-sdk-ssooidc/resource.rb +26 -0
- data/lib/aws-sdk-ssooidc/types.rb +823 -0
- data/lib/aws-sdk-ssooidc.rb +59 -0
- data/lib/aws-sdk-sts/client.rb +472 -398
- data/lib/aws-sdk-sts/client_api.rb +20 -9
- data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
- data/lib/aws-sdk-sts/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-sts/endpoints.rb +136 -0
- data/lib/aws-sdk-sts/plugins/endpoints.rb +86 -0
- data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +5 -1
- data/lib/aws-sdk-sts/presigner.rb +14 -10
- data/lib/aws-sdk-sts/types.rb +168 -227
- data/lib/aws-sdk-sts.rb +5 -1
- data/lib/seahorse/client/async_base.rb +1 -2
- data/lib/seahorse/client/async_response.rb +19 -0
- data/lib/seahorse/client/base.rb +1 -0
- data/lib/seahorse/client/configuration.rb +5 -5
- data/lib/seahorse/client/h2/connection.rb +15 -16
- data/lib/seahorse/client/h2/handler.rb +5 -5
- data/lib/seahorse/client/net_http/connection_pool.rb +10 -9
- data/lib/seahorse/client/net_http/handler.rb +15 -7
- data/lib/seahorse/client/net_http/patches.rb +12 -86
- data/lib/seahorse/client/plugin.rb +9 -0
- data/lib/seahorse/client/plugins/content_length.rb +11 -5
- data/lib/seahorse/client/plugins/h2.rb +3 -3
- data/lib/seahorse/client/plugins/net_http.rb +73 -10
- data/lib/seahorse/client/plugins/request_callback.rb +40 -9
- data/lib/seahorse/client/response.rb +6 -0
- data/lib/seahorse/model/operation.rb +6 -0
- data/lib/seahorse/model/shapes.rb +27 -2
- data/lib/seahorse/util.rb +4 -0
- data/sig/aws-sdk-core/client_stubs.rbs +10 -0
- data/sig/aws-sdk-core/errors.rbs +22 -0
- data/sig/aws-sdk-core/resources/collection.rbs +21 -0
- data/sig/aws-sdk-core/structure.rbs +4 -0
- data/sig/aws-sdk-core/waiters/errors.rbs +20 -0
- data/sig/aws-sdk-core.rbs +7 -0
- data/sig/seahorse/client/base.rbs +25 -0
- data/sig/seahorse/client/handler_builder.rbs +16 -0
- data/sig/seahorse/client/response.rbs +61 -0
- metadata +82 -17
- data/lib/aws-sdk-sso/plugins/content_type.rb +0 -25
@@ -136,8 +136,9 @@ module Aws
|
|
136
136
|
|
137
137
|
def fetch_token
|
138
138
|
open_connection do |conn|
|
139
|
+
created_time = Time.now
|
139
140
|
token_value, token_ttl = http_put(conn, @token_ttl)
|
140
|
-
@token = Token.new(value: token_value, ttl: token_ttl)
|
141
|
+
@token = Token.new(value: token_value, ttl: token_ttl, created_time: created_time)
|
141
142
|
end
|
142
143
|
end
|
143
144
|
|
@@ -182,7 +183,7 @@ module Aws
|
|
182
183
|
|
183
184
|
def open_connection
|
184
185
|
uri = URI.parse(@endpoint)
|
185
|
-
http = Net::HTTP.new(uri.hostname || @endpoint,
|
186
|
+
http = Net::HTTP.new(uri.hostname || @endpoint, uri.port || @port)
|
186
187
|
http.open_timeout = @http_open_timeout
|
187
188
|
http.read_timeout = @http_read_timeout
|
188
189
|
http.set_debug_output(@http_debug_output) if @http_debug_output
|
@@ -222,7 +223,7 @@ module Aws
|
|
222
223
|
def initialize(options = {})
|
223
224
|
@ttl = options[:ttl]
|
224
225
|
@value = options[:value]
|
225
|
-
@created_time = Time.now
|
226
|
+
@created_time = options[:created_time] || Time.now
|
226
227
|
end
|
227
228
|
|
228
229
|
# [String] Returns the token value.
|
@@ -2,16 +2,27 @@
|
|
2
2
|
|
3
3
|
require 'time'
|
4
4
|
require 'net/http'
|
5
|
+
require 'resolv'
|
5
6
|
|
6
7
|
module Aws
|
8
|
+
# An auto-refreshing credential provider that loads credentials from
|
9
|
+
# instances running in containers.
|
10
|
+
#
|
11
|
+
# ecs_credentials = Aws::ECSCredentials.new(retries: 3)
|
12
|
+
# ec2 = Aws::EC2::Client.new(credentials: ecs_credentials)
|
7
13
|
class ECSCredentials
|
8
|
-
|
9
14
|
include CredentialProvider
|
10
15
|
include RefreshingCredentials
|
11
16
|
|
12
17
|
# @api private
|
13
18
|
class Non200Response < RuntimeError; end
|
14
19
|
|
20
|
+
# Raised when the token file cannot be read.
|
21
|
+
class TokenFileReadError < RuntimeError; end
|
22
|
+
|
23
|
+
# Raised when the token file is invalid.
|
24
|
+
class InvalidTokenError < RuntimeError; end
|
25
|
+
|
15
26
|
# These are the errors we trap when attempting to talk to the
|
16
27
|
# instance metadata service. Any of these imply the service
|
17
28
|
# is not present, no responding or some other non-recoverable
|
@@ -24,16 +35,22 @@ module Aws
|
|
24
35
|
Errno::ENETUNREACH,
|
25
36
|
SocketError,
|
26
37
|
Timeout::Error,
|
27
|
-
Non200Response
|
28
|
-
]
|
38
|
+
Non200Response
|
39
|
+
].freeze
|
29
40
|
|
30
41
|
# @param [Hash] options
|
31
42
|
# @option options [Integer] :retries (5) Number of times to retry
|
32
43
|
# when retrieving credentials.
|
33
|
-
# @option options [String] :ip_address ('169.254.170.2')
|
34
|
-
#
|
44
|
+
# @option options [String] :ip_address ('169.254.170.2') This value is
|
45
|
+
# ignored if `endpoint` is set and `credential_path` is not set.
|
46
|
+
# @option options [Integer] :port (80) This value is ignored if `endpoint`
|
47
|
+
# is set and `credential_path` is not set.
|
35
48
|
# @option options [String] :credential_path By default, the value of the
|
36
49
|
# AWS_CONTAINER_CREDENTIALS_RELATIVE_URI environment variable.
|
50
|
+
# @option options [String] :endpoint The container credential endpoint.
|
51
|
+
# By default, this is the value of the AWS_CONTAINER_CREDENTIALS_FULL_URI
|
52
|
+
# environment variable. This value is ignored if `credential_path` or
|
53
|
+
# ENV['AWS_CONTAINER_CREDENTIALS_RELATIVE_URI'] is set.
|
37
54
|
# @option options [Float] :http_open_timeout (5)
|
38
55
|
# @option options [Float] :http_read_timeout (5)
|
39
56
|
# @option options [Numeric, Proc] :delay By default, failures are retried
|
@@ -43,21 +60,23 @@ module Aws
|
|
43
60
|
# @option options [IO] :http_debug_output (nil) HTTP wire
|
44
61
|
# traces are sent to this object. You can specify something
|
45
62
|
# like $stdout.
|
46
|
-
|
63
|
+
# @option options [Callable] before_refresh Proc called before
|
64
|
+
# credentials are refreshed. `before_refresh` is called
|
65
|
+
# with an instance of this object when
|
66
|
+
# AWS credentials are required and need to be refreshed.
|
67
|
+
def initialize(options = {})
|
68
|
+
credential_path = options[:credential_path] ||
|
69
|
+
ENV['AWS_CONTAINER_CREDENTIALS_RELATIVE_URI']
|
70
|
+
endpoint = options[:endpoint] ||
|
71
|
+
ENV['AWS_CONTAINER_CREDENTIALS_FULL_URI']
|
72
|
+
initialize_uri(options, credential_path, endpoint)
|
73
|
+
|
47
74
|
@retries = options[:retries] || 5
|
48
|
-
@ip_address = options[:ip_address] || '169.254.170.2'
|
49
|
-
@port = options[:port] || 80
|
50
|
-
@credential_path = options[:credential_path]
|
51
|
-
@credential_path ||= ENV['AWS_CONTAINER_CREDENTIALS_RELATIVE_URI']
|
52
|
-
unless @credential_path
|
53
|
-
raise ArgumentError.new(
|
54
|
-
"Cannot instantiate an ECS Credential Provider without a credential path."
|
55
|
-
)
|
56
|
-
end
|
57
75
|
@http_open_timeout = options[:http_open_timeout] || 5
|
58
76
|
@http_read_timeout = options[:http_read_timeout] || 5
|
59
77
|
@http_debug_output = options[:http_debug_output]
|
60
78
|
@backoff = backoff(options[:backoff])
|
79
|
+
@async_refresh = false
|
61
80
|
super
|
62
81
|
end
|
63
82
|
|
@@ -67,11 +86,95 @@ module Aws
|
|
67
86
|
|
68
87
|
private
|
69
88
|
|
89
|
+
def initialize_uri(options, credential_path, endpoint)
|
90
|
+
if credential_path
|
91
|
+
initialize_relative_uri(options, credential_path)
|
92
|
+
# Use FULL_URI/endpoint only if RELATIVE_URI/path is not set
|
93
|
+
elsif endpoint
|
94
|
+
initialize_full_uri(endpoint)
|
95
|
+
else
|
96
|
+
raise ArgumentError,
|
97
|
+
'Cannot instantiate an ECS Credential Provider '\
|
98
|
+
'without a credential path or endpoint.'
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
def initialize_relative_uri(options, path)
|
103
|
+
@host = options[:ip_address] || '169.254.170.2'
|
104
|
+
@port = options[:port] || 80
|
105
|
+
@scheme = 'http'
|
106
|
+
@credential_path = path
|
107
|
+
end
|
108
|
+
|
109
|
+
def initialize_full_uri(endpoint)
|
110
|
+
uri = URI.parse(endpoint)
|
111
|
+
validate_full_uri_scheme!(uri)
|
112
|
+
validate_full_uri!(uri)
|
113
|
+
@host = uri.hostname
|
114
|
+
@port = uri.port
|
115
|
+
@scheme = uri.scheme
|
116
|
+
@credential_path = uri.request_uri
|
117
|
+
end
|
118
|
+
|
119
|
+
def validate_full_uri_scheme!(full_uri)
|
120
|
+
return if full_uri.is_a?(URI::HTTP) || full_uri.is_a?(URI::HTTPS)
|
121
|
+
|
122
|
+
raise ArgumentError, "'#{full_uri}' must be a valid HTTP or HTTPS URI"
|
123
|
+
end
|
124
|
+
|
125
|
+
# Validate that the full URI is using a loopback address if scheme is http.
|
126
|
+
def validate_full_uri!(full_uri)
|
127
|
+
return unless full_uri.scheme == 'http'
|
128
|
+
|
129
|
+
begin
|
130
|
+
return if valid_ip_address?(IPAddr.new(full_uri.host))
|
131
|
+
rescue IPAddr::InvalidAddressError
|
132
|
+
addresses = Resolv.getaddresses(full_uri.host)
|
133
|
+
return if addresses.all? { |addr| valid_ip_address?(IPAddr.new(addr)) }
|
134
|
+
end
|
135
|
+
|
136
|
+
raise ArgumentError,
|
137
|
+
'AWS_CONTAINER_CREDENTIALS_FULL_URI must use a local loopback '\
|
138
|
+
'or an ECS or EKS link-local address when using the http scheme.'
|
139
|
+
end
|
140
|
+
|
141
|
+
def valid_ip_address?(ip_address)
|
142
|
+
ip_loopback?(ip_address) || ecs_or_eks_ip?(ip_address)
|
143
|
+
end
|
144
|
+
|
145
|
+
# loopback? method is available in Ruby 2.5+
|
146
|
+
# Replicate the logic here.
|
147
|
+
# loopback (IPv4 127.0.0.0/8, IPv6 ::1/128)
|
148
|
+
def ip_loopback?(ip_address)
|
149
|
+
case ip_address.family
|
150
|
+
when Socket::AF_INET
|
151
|
+
ip_address & 0xff000000 == 0x7f000000
|
152
|
+
when Socket::AF_INET6
|
153
|
+
ip_address == 1
|
154
|
+
else
|
155
|
+
false
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
# Verify that the IP address is a link-local address from ECS or EKS.
|
160
|
+
# ECS container host (IPv4 `169.254.170.2`)
|
161
|
+
# EKS container host (IPv4 `169.254.170.23`, IPv6 `fd00:ec2::23`)
|
162
|
+
def ecs_or_eks_ip?(ip_address)
|
163
|
+
case ip_address.family
|
164
|
+
when Socket::AF_INET
|
165
|
+
[0xa9feaa02, 0xa9feaa17].include?(ip_address)
|
166
|
+
when Socket::AF_INET6
|
167
|
+
ip_address == 0xfd00_0ec2_0000_0000_0000_0000_0000_0023
|
168
|
+
else
|
169
|
+
false
|
170
|
+
end
|
171
|
+
end
|
172
|
+
|
70
173
|
def backoff(backoff)
|
71
174
|
case backoff
|
72
175
|
when Proc then backoff
|
73
|
-
when Numeric then
|
74
|
-
else
|
176
|
+
when Numeric then ->(_) { sleep(backoff) }
|
177
|
+
else ->(num_failures) { Kernel.sleep(1.2**num_failures) }
|
75
178
|
end
|
76
179
|
end
|
77
180
|
|
@@ -79,68 +182,100 @@ module Aws
|
|
79
182
|
# Retry loading credentials up to 3 times is the instance metadata
|
80
183
|
# service is responding but is returning invalid JSON documents
|
81
184
|
# in response to the GET profile credentials call.
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
end
|
92
|
-
rescue Aws::Json::ParseError
|
93
|
-
raise Aws::Errors::MetadataParserError.new
|
185
|
+
|
186
|
+
retry_errors([Aws::Json::ParseError, StandardError], max_retries: 3) do
|
187
|
+
c = Aws::Json.load(get_credentials.to_s)
|
188
|
+
@credentials = Credentials.new(
|
189
|
+
c['AccessKeyId'],
|
190
|
+
c['SecretAccessKey'],
|
191
|
+
c['Token']
|
192
|
+
)
|
193
|
+
@expiration = c['Expiration'] ? Time.iso8601(c['Expiration']) : nil
|
94
194
|
end
|
195
|
+
rescue Aws::Json::ParseError
|
196
|
+
raise Aws::Errors::MetadataParserError
|
95
197
|
end
|
96
198
|
|
97
199
|
def get_credentials
|
98
200
|
# Retry loading credentials a configurable number of times if
|
99
201
|
# the instance metadata service is not responding.
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
end
|
202
|
+
|
203
|
+
retry_errors(NETWORK_ERRORS, max_retries: @retries) do
|
204
|
+
open_connection do |conn|
|
205
|
+
http_get(conn, @credential_path)
|
105
206
|
end
|
106
|
-
rescue
|
107
|
-
'{}'
|
108
207
|
end
|
208
|
+
rescue TokenFileReadError, InvalidTokenError
|
209
|
+
raise
|
210
|
+
rescue StandardError => e
|
211
|
+
warn("Error retrieving ECS Credentials: #{e.message}")
|
212
|
+
'{}'
|
213
|
+
end
|
214
|
+
|
215
|
+
def fetch_authorization_token
|
216
|
+
if (path = ENV['AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE'])
|
217
|
+
fetch_authorization_token_file(path)
|
218
|
+
elsif (token = ENV['AWS_CONTAINER_AUTHORIZATION_TOKEN'])
|
219
|
+
token
|
220
|
+
end
|
221
|
+
end
|
222
|
+
|
223
|
+
def fetch_authorization_token_file(path)
|
224
|
+
File.read(path).strip
|
225
|
+
rescue Errno::ENOENT
|
226
|
+
raise TokenFileReadError,
|
227
|
+
'AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE is set '\
|
228
|
+
"but the file doesn't exist: #{path}"
|
229
|
+
end
|
230
|
+
|
231
|
+
def validate_authorization_token!(token)
|
232
|
+
return unless token.include?("\r\n")
|
233
|
+
|
234
|
+
raise InvalidTokenError,
|
235
|
+
'Invalid Authorization token: token contains '\
|
236
|
+
'a newline and carriage return character.'
|
109
237
|
end
|
110
238
|
|
111
239
|
def open_connection
|
112
|
-
http = Net::HTTP.new(@
|
240
|
+
http = Net::HTTP.new(@host, @port, nil)
|
113
241
|
http.open_timeout = @http_open_timeout
|
114
242
|
http.read_timeout = @http_read_timeout
|
115
243
|
http.set_debug_output(@http_debug_output) if @http_debug_output
|
244
|
+
http.use_ssl = @scheme == 'https'
|
116
245
|
http.start
|
117
246
|
yield(http).tap { http.finish }
|
118
247
|
end
|
119
248
|
|
120
249
|
def http_get(connection, path)
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
250
|
+
request = Net::HTTP::Get.new(path)
|
251
|
+
set_authorization_token(request)
|
252
|
+
response = connection.request(request)
|
253
|
+
raise Non200Response unless response.code.to_i == 200
|
254
|
+
|
255
|
+
response.body
|
256
|
+
end
|
257
|
+
|
258
|
+
def set_authorization_token(request)
|
259
|
+
if (authorization_token = fetch_authorization_token)
|
260
|
+
validate_authorization_token!(authorization_token)
|
261
|
+
request['Authorization'] = authorization_token
|
126
262
|
end
|
127
263
|
end
|
128
264
|
|
129
|
-
def retry_errors(error_classes, options = {}
|
265
|
+
def retry_errors(error_classes, options = {})
|
130
266
|
max_retries = options[:max_retries]
|
131
267
|
retries = 0
|
132
268
|
begin
|
133
269
|
yield
|
134
|
-
rescue
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
270
|
+
rescue TokenFileReadError, InvalidTokenError
|
271
|
+
raise
|
272
|
+
rescue *error_classes => _e
|
273
|
+
raise unless retries < max_retries
|
274
|
+
|
275
|
+
@backoff.call(retries)
|
276
|
+
retries += 1
|
277
|
+
retry
|
142
278
|
end
|
143
279
|
end
|
144
|
-
|
145
280
|
end
|
146
281
|
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Aws
|
4
|
+
module Endpoints
|
5
|
+
# This class is deprecated. It is used by the Runtime endpoint
|
6
|
+
# resolution approach. It has been replaced by a code generated
|
7
|
+
# approach in each service gem. It can be removed in a new
|
8
|
+
# major version. It has to exist because
|
9
|
+
# old service gems can use a new core version.
|
10
|
+
# @api private
|
11
|
+
class Condition
|
12
|
+
def initialize(fn:, argv:, assign: nil)
|
13
|
+
@fn = Function.new(fn: fn, argv: argv)
|
14
|
+
@assign = assign
|
15
|
+
@assigned = {}
|
16
|
+
end
|
17
|
+
|
18
|
+
attr_reader :fn
|
19
|
+
attr_reader :argv
|
20
|
+
attr_reader :assign
|
21
|
+
|
22
|
+
attr_reader :assigned
|
23
|
+
|
24
|
+
def match?(parameters, assigns)
|
25
|
+
output = @fn.call(parameters, assigns)
|
26
|
+
@assigned = @assigned.merge({ @assign => output }) if @assign
|
27
|
+
output
|
28
|
+
end
|
29
|
+
|
30
|
+
def self.from_json(conditions_json)
|
31
|
+
conditions_json.each.with_object([]) do |condition, conditions|
|
32
|
+
conditions << new(
|
33
|
+
fn: condition['fn'],
|
34
|
+
argv: condition['argv'],
|
35
|
+
assign: condition['assign']
|
36
|
+
)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Aws
|
4
|
+
module Endpoints
|
5
|
+
class Endpoint
|
6
|
+
def initialize(url:, properties: {}, headers: {})
|
7
|
+
@url = url
|
8
|
+
@properties = properties
|
9
|
+
@headers = headers
|
10
|
+
end
|
11
|
+
|
12
|
+
attr_reader :url
|
13
|
+
attr_reader :properties
|
14
|
+
attr_reader :headers
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,75 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Aws
|
4
|
+
module Endpoints
|
5
|
+
# This class is deprecated. It is used by the Runtime endpoint
|
6
|
+
# resolution approach. It has been replaced by a code generated
|
7
|
+
# approach in each service gem. It can be removed in a new
|
8
|
+
# major version. It has to exist because
|
9
|
+
# old service gems can use a new core version. # @api private
|
10
|
+
class EndpointRule < Rule
|
11
|
+
def initialize(type: 'endpoint', conditions:, endpoint:,
|
12
|
+
documentation: nil)
|
13
|
+
@type = type
|
14
|
+
@conditions = Condition.from_json(conditions)
|
15
|
+
@endpoint = endpoint
|
16
|
+
@documentation = documentation
|
17
|
+
end
|
18
|
+
|
19
|
+
attr_reader :type
|
20
|
+
attr_reader :conditions
|
21
|
+
attr_reader :endpoint
|
22
|
+
attr_reader :documentation
|
23
|
+
|
24
|
+
def match(parameters, assigned = {})
|
25
|
+
assigns = assigned.dup
|
26
|
+
matched = conditions.all? do |condition|
|
27
|
+
output = condition.match?(parameters, assigns)
|
28
|
+
assigns = assigns.merge(condition.assigned) if condition.assign
|
29
|
+
output
|
30
|
+
end
|
31
|
+
resolved_endpoint(parameters, assigns) if matched
|
32
|
+
end
|
33
|
+
|
34
|
+
def resolved_endpoint(parameters, assigns)
|
35
|
+
Endpoint.new(
|
36
|
+
url: resolve_value(@endpoint['url'], parameters, assigns),
|
37
|
+
properties: resolve_properties(
|
38
|
+
@endpoint['properties'] || {},
|
39
|
+
parameters,
|
40
|
+
assigns
|
41
|
+
),
|
42
|
+
headers: resolve_headers(parameters, assigns)
|
43
|
+
)
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def resolve_headers(parameters, assigns)
|
49
|
+
(@endpoint['headers'] || {}).each.with_object({}) do |(key, arr), headers|
|
50
|
+
headers[key] = []
|
51
|
+
arr.each do |value|
|
52
|
+
headers[key] << resolve_value(value, parameters, assigns)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def resolve_properties(obj, parameters, assigns)
|
58
|
+
case obj
|
59
|
+
when Hash
|
60
|
+
obj.each.with_object({}) do |(key, value), hash|
|
61
|
+
hash[key] = resolve_properties(value, parameters, assigns)
|
62
|
+
end
|
63
|
+
when Array
|
64
|
+
obj.collect { |value| resolve_properties(value, parameters, assigns) }
|
65
|
+
else
|
66
|
+
if obj.is_a?(String)
|
67
|
+
Templater.resolve(obj, parameters, assigns)
|
68
|
+
else
|
69
|
+
obj
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Aws
|
4
|
+
module Endpoints
|
5
|
+
# This class is deprecated. It is used by the Runtime endpoint
|
6
|
+
# resolution approach. It has been replaced by a code generated
|
7
|
+
# approach in each service gem. It can be removed in a new
|
8
|
+
# major version. It has to exist because
|
9
|
+
# old service gems can use a new core version.
|
10
|
+
# @api private
|
11
|
+
class ErrorRule < Rule
|
12
|
+
def initialize(type: 'error', conditions:, error: nil, documentation: nil)
|
13
|
+
@type = type
|
14
|
+
@conditions = Condition.from_json(conditions)
|
15
|
+
@error = error
|
16
|
+
@documentation = documentation
|
17
|
+
end
|
18
|
+
|
19
|
+
attr_reader :type
|
20
|
+
attr_reader :conditions
|
21
|
+
attr_reader :error
|
22
|
+
attr_reader :documentation
|
23
|
+
|
24
|
+
def match(parameters, assigned = {})
|
25
|
+
assigns = assigned.dup
|
26
|
+
matched = conditions.all? do |condition|
|
27
|
+
output = condition.match?(parameters, assigns)
|
28
|
+
assigns = assigns.merge(condition.assigned) if condition.assign
|
29
|
+
output
|
30
|
+
end
|
31
|
+
resolved_error(parameters, assigns) if matched
|
32
|
+
end
|
33
|
+
|
34
|
+
private
|
35
|
+
|
36
|
+
def resolved_error(parameters, assigns)
|
37
|
+
error = resolve_value(@error, parameters, assigns)
|
38
|
+
ArgumentError.new(error)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Aws
|
4
|
+
module Endpoints
|
5
|
+
# This class is deprecated. It is used by the Runtime endpoint
|
6
|
+
# resolution approach. It has been replaced by a code generated
|
7
|
+
# approach in each service gem. It can be removed in a new
|
8
|
+
# major version. It has to exist because
|
9
|
+
# old service gems can use a new core version.
|
10
|
+
# @api private
|
11
|
+
class Function
|
12
|
+
def initialize(fn:, argv:)
|
13
|
+
@fn = fn
|
14
|
+
@argv = build_argv(argv)
|
15
|
+
end
|
16
|
+
|
17
|
+
attr_reader :fn
|
18
|
+
attr_reader :argv
|
19
|
+
|
20
|
+
def call(parameters, assigns)
|
21
|
+
args = []
|
22
|
+
@argv.each do |arg|
|
23
|
+
if arg.is_a?(Reference)
|
24
|
+
args << arg.resolve(parameters, assigns)
|
25
|
+
elsif arg.is_a?(Function)
|
26
|
+
args << arg.call(parameters, assigns)
|
27
|
+
else
|
28
|
+
if arg.is_a?(String)
|
29
|
+
arg = Templater.resolve(arg, parameters, assigns)
|
30
|
+
end
|
31
|
+
args << arg
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
case @fn
|
36
|
+
when 'isSet'
|
37
|
+
Matchers.set?(*args)
|
38
|
+
when 'not'
|
39
|
+
Matchers.not(*args)
|
40
|
+
when 'getAttr'
|
41
|
+
Matchers.attr(*args)
|
42
|
+
when 'substring'
|
43
|
+
Matchers.substring(*args)
|
44
|
+
when 'stringEquals'
|
45
|
+
Matchers.string_equals?(*args)
|
46
|
+
when 'booleanEquals'
|
47
|
+
Matchers.boolean_equals?(*args)
|
48
|
+
when 'uriEncode'
|
49
|
+
Matchers.uri_encode(*args)
|
50
|
+
when 'parseURL'
|
51
|
+
Matchers.parse_url(*args)
|
52
|
+
when 'isValidHostLabel'
|
53
|
+
Matchers.valid_host_label?(*args)
|
54
|
+
when 'aws.partition'
|
55
|
+
Matchers.aws_partition(*args)
|
56
|
+
when 'aws.parseArn'
|
57
|
+
Matchers.aws_parse_arn(*args)
|
58
|
+
when 'aws.isVirtualHostableS3Bucket'
|
59
|
+
Matchers.aws_virtual_hostable_s3_bucket?(*args)
|
60
|
+
else
|
61
|
+
raise "Function not found: #{@fn}"
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
private
|
66
|
+
|
67
|
+
def build_argv(argv_json)
|
68
|
+
argv_json.each.with_object([]) do |arg, argv|
|
69
|
+
argv << if arg.is_a?(Hash) && arg['ref']
|
70
|
+
Reference.new(ref: arg['ref'])
|
71
|
+
elsif arg.is_a?(Hash) && arg['fn']
|
72
|
+
Function.new(fn: arg['fn'], argv: arg['argv'])
|
73
|
+
else
|
74
|
+
arg
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|