aws-sdk-core 3.44.2 → 3.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +6 -5
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +7 -3
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +5 -1
- data/lib/aws-sdk-core/query/handler.rb +6 -1
- data/lib/aws-sdk-sts.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3a45fb10660ea2a61622b8fc1f7db6264ea8bff
|
4
|
+
data.tar.gz: 831116958eb363581b800d0fbef431952a5d847d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d69c1b8798af9f8be650489edf7795a9824559248c6d5ed24982aae2333b31f657b76292ccbba236e4665ae218f32e10fb325b9d60efb69c7e65359375e94d3d
|
7
|
+
data.tar.gz: e8acf8b9e9900098824e8d0dbccc0eb3381b8b58fcde50afa769afa72f54d8a2ed07d679e3363066a9b193ca5cf166e9459b925ecbf7e9eaa28a8ba6a3dcad75
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.45.0
|
@@ -83,6 +83,7 @@ module Aws
|
|
83
83
|
@final_aws_exception_message = opts[:final_aws_exception_message]
|
84
84
|
@final_sdk_exception = opts[:final_sdk_exception]
|
85
85
|
@final_sdk_exception_message = opts[:final_sdk_exception_message]
|
86
|
+
@region = opts[:region] if opts[:region] # in case region changes
|
86
87
|
end
|
87
88
|
|
88
89
|
def to_json(*a)
|
@@ -121,11 +122,11 @@ module Aws
|
|
121
122
|
end
|
122
123
|
|
123
124
|
class ApiCallAttempt
|
124
|
-
attr_reader :service, :api, :client_id, :version, :timestamp,
|
125
|
-
:
|
126
|
-
attr_accessor :
|
127
|
-
:
|
128
|
-
:aws_exception, :sdk_exception_msg
|
125
|
+
attr_reader :service, :api, :client_id, :version, :timestamp,
|
126
|
+
:user_agent, :access_key, :session_token
|
127
|
+
attr_accessor :region, :fqdn, :request_latency, :http_status_code,
|
128
|
+
:aws_exception_msg, :x_amz_request_id, :x_amz_id_2,
|
129
|
+
:x_amzn_request_id, :sdk_exception, :aws_exception, :sdk_exception_msg
|
129
130
|
|
130
131
|
def initialize(
|
131
132
|
service,
|
@@ -149,7 +149,7 @@ all generated client side metrics. Defaults to an empty string.
|
|
149
149
|
raise e
|
150
150
|
ensure
|
151
151
|
end_time = Aws::Util.monotonic_milliseconds
|
152
|
-
|
152
|
+
complete_opts = {
|
153
153
|
latency: end_time - start_time,
|
154
154
|
attempt_count: context.retries + 1,
|
155
155
|
user_agent: context.http_request.headers["user-agent"],
|
@@ -158,8 +158,12 @@ all generated client side metrics. Defaults to an empty string.
|
|
158
158
|
final_aws_exception: final_aws_exception,
|
159
159
|
final_aws_exception_message: final_aws_exception_message,
|
160
160
|
final_sdk_exception: final_sdk_exception,
|
161
|
-
final_sdk_exception_message: final_sdk_exception_message
|
162
|
-
|
161
|
+
final_sdk_exception_message: final_sdk_exception_message
|
162
|
+
}
|
163
|
+
if context.metadata[:redirect_region]
|
164
|
+
complete_opts[:region] = context.metadata[:redirect_region]
|
165
|
+
end
|
166
|
+
request_metrics.api_call.complete(complete_opts)
|
163
167
|
# Report the metrics by passing the complete RequestMetrics object
|
164
168
|
if publisher
|
165
169
|
publisher.publish(request_metrics)
|
@@ -7,7 +7,8 @@ module Aws
|
|
7
7
|
def add_handlers(handlers, config)
|
8
8
|
if config.client_side_monitoring && config.client_side_monitoring_port
|
9
9
|
# AttemptHandler comes just before we would retry an error.
|
10
|
-
|
10
|
+
# Or before we would follow redirects.
|
11
|
+
handlers.add(AttemptHandler, step: :sign, priority: 39)
|
11
12
|
# LatencyHandler is as close to sending as possible.
|
12
13
|
handlers.add(LatencyHandler, step: :sign, priority: 0)
|
13
14
|
end
|
@@ -45,6 +46,9 @@ module Aws
|
|
45
46
|
context.metadata[:current_call_attempt] = call_attempt
|
46
47
|
|
47
48
|
resp = @handler.call(context)
|
49
|
+
if context.metadata[:redirect_region]
|
50
|
+
call_attempt.region = context.metadata[:redirect_region]
|
51
|
+
end
|
48
52
|
headers = context.http_response.headers
|
49
53
|
if headers.include?("x-amz-id-2")
|
50
54
|
call_attempt.x_amz_id_2 = headers["x-amz-id-2"]
|
@@ -27,7 +27,12 @@ module Aws
|
|
27
27
|
build_request(context)
|
28
28
|
@handler.call(context).on_success do |response|
|
29
29
|
response.error = nil
|
30
|
-
|
30
|
+
parsed = parse_xml(context)
|
31
|
+
if parsed.nil? || parsed == EmptyStructure
|
32
|
+
response.data = EmptyStructure.new
|
33
|
+
else
|
34
|
+
response.data = parsed
|
35
|
+
end
|
31
36
|
end
|
32
37
|
end
|
33
38
|
|
data/lib/aws-sdk-sts.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.45.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-01-
|
11
|
+
date: 2019-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|