aws-sdk-core 3.33.0 → 3.34.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/plugins/client_metrics_plugin.rb +4 -0
- data/lib/aws-sdk-core/plugins/retry_errors.rb +1 -1
- data/lib/aws-sdk-sts.rb +1 -1
- data/lib/aws-sdk-sts/client.rb +5 -5
- 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: 236152fa904df3686cb7c43f3d923c6a760af4a3
|
|
4
|
+
data.tar.gz: 3847219002f33e411a7b3c2f2c0460fc06ac3908
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fff418ddea283e1aa808e51a4d282062874aa4156c79eb902987c9916fcb7e2a99c9c307c6f6c7ca897744bb280c1900eb8b5298f643546964089165c187e97d
|
|
7
|
+
data.tar.gz: e810010eedb77e628fc2e46c972ad7751e098c8fe02148d43f1f18f718880b6cc8e719389c21027b2fc5896ec75f40ca0d81701ff8dfa934f294937d7d9f21c1
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.34.0
|
|
@@ -6,6 +6,7 @@ module Aws
|
|
|
6
6
|
|
|
7
7
|
option(:client_side_monitoring,
|
|
8
8
|
default: false,
|
|
9
|
+
doc_type: 'Boolean',
|
|
9
10
|
docstring: <<-DOCS) do |cfg|
|
|
10
11
|
When `true`, client-side metrics will be collected for all API requests from
|
|
11
12
|
this client.
|
|
@@ -15,6 +16,7 @@ this client.
|
|
|
15
16
|
|
|
16
17
|
option(:client_side_monitoring_port,
|
|
17
18
|
default: 31000,
|
|
19
|
+
doc_type: Integer,
|
|
18
20
|
docstring: <<-DOCS) do |cfg|
|
|
19
21
|
Required for publishing client metrics. The port that the client side monitoring
|
|
20
22
|
agent is running on, where client metrics will be published via UDP.
|
|
@@ -24,6 +26,7 @@ agent is running on, where client metrics will be published via UDP.
|
|
|
24
26
|
|
|
25
27
|
option(:client_side_monitoring_publisher,
|
|
26
28
|
default: ClientSideMonitoring::Publisher,
|
|
29
|
+
doc_type: Aws::ClientSideMonitoring::Publisher,
|
|
27
30
|
docstring: <<-DOCS) do |cfg|
|
|
28
31
|
Allows you to provide a custom client-side monitoring publisher class. By default,
|
|
29
32
|
will use the Client Side Monitoring Agent Publisher.
|
|
@@ -33,6 +36,7 @@ will use the Client Side Monitoring Agent Publisher.
|
|
|
33
36
|
|
|
34
37
|
option(:client_side_monitoring_client_id,
|
|
35
38
|
default: "",
|
|
39
|
+
doc_type: String,
|
|
36
40
|
docstring: <<-DOCS) do |cfg|
|
|
37
41
|
Allows you to provide an identifier for this client which will be attached to
|
|
38
42
|
all generated client side metrics. Defaults to an empty string.
|
|
@@ -104,7 +104,7 @@ A delay randomiser function used by the default backoff function. Some predefine
|
|
|
104
104
|
end
|
|
105
105
|
|
|
106
106
|
def throttling_error?
|
|
107
|
-
!!(THROTTLING_ERRORS.include?(@name) || @name.match(/throttl/i))
|
|
107
|
+
!!(THROTTLING_ERRORS.include?(@name) || @name.match(/throttl/i) || @http_status_code == 429)
|
|
108
108
|
end
|
|
109
109
|
|
|
110
110
|
def checksum?
|
data/lib/aws-sdk-sts.rb
CHANGED
data/lib/aws-sdk-sts/client.rb
CHANGED
|
@@ -96,19 +96,19 @@ module Aws::STS
|
|
|
96
96
|
#
|
|
97
97
|
# @option options [String] :access_key_id
|
|
98
98
|
#
|
|
99
|
-
# @option options [] :client_side_monitoring (false)
|
|
99
|
+
# @option options [Boolean] :client_side_monitoring (false)
|
|
100
100
|
# When `true`, client-side metrics will be collected for all API requests from
|
|
101
101
|
# this client.
|
|
102
102
|
#
|
|
103
|
-
# @option options [] :client_side_monitoring_client_id ("")
|
|
103
|
+
# @option options [String] :client_side_monitoring_client_id ("")
|
|
104
104
|
# Allows you to provide an identifier for this client which will be attached to
|
|
105
105
|
# all generated client side metrics. Defaults to an empty string.
|
|
106
106
|
#
|
|
107
|
-
# @option options [] :client_side_monitoring_port (31000)
|
|
107
|
+
# @option options [Integer] :client_side_monitoring_port (31000)
|
|
108
108
|
# Required for publishing client metrics. The port that the client side monitoring
|
|
109
109
|
# agent is running on, where client metrics will be published via UDP.
|
|
110
110
|
#
|
|
111
|
-
# @option options [] :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher)
|
|
111
|
+
# @option options [Aws::ClientSideMonitoring::Publisher] :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher)
|
|
112
112
|
# Allows you to provide a custom client-side monitoring publisher class. By default,
|
|
113
113
|
# will use the Client Side Monitoring Agent Publisher.
|
|
114
114
|
#
|
|
@@ -1506,7 +1506,7 @@ module Aws::STS
|
|
|
1506
1506
|
params: params,
|
|
1507
1507
|
config: config)
|
|
1508
1508
|
context[:gem_name] = 'aws-sdk-core'
|
|
1509
|
-
context[:gem_version] = '3.
|
|
1509
|
+
context[:gem_version] = '3.34.0'
|
|
1510
1510
|
Seahorse::Client::Request.new(handlers, context)
|
|
1511
1511
|
end
|
|
1512
1512
|
|
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.34.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: 2018-10-
|
|
11
|
+
date: 2018-10-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|