aws-sdk-core 3.33.0 → 3.34.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d059e3419a8fbe253f7a5a5496da534ed922dec8
4
- data.tar.gz: 577361c360e835b9f8a06888c6a7d0928767cae8
3
+ metadata.gz: 236152fa904df3686cb7c43f3d923c6a760af4a3
4
+ data.tar.gz: 3847219002f33e411a7b3c2f2c0460fc06ac3908
5
5
  SHA512:
6
- metadata.gz: e45911f87a2827cd4e0a3d9ef68c368dd438a161c24b992f43cfcdbeaa9222469cd02b255d347078fb4a4c65b8e9943d5f3a89fa94de6bfd2c9d19c82ede53c5
7
- data.tar.gz: 530473d265b8e06cc261648947f605af845d255ff52956d9bd2658c2492737eb562a2860b6fa239cfbaf5ec114a532b6652acb6485d393718ccc6789e5c3f49e
6
+ metadata.gz: fff418ddea283e1aa808e51a4d282062874aa4156c79eb902987c9916fcb7e2a99c9c307c6f6c7ca897744bb280c1900eb8b5298f643546964089165c187e97d
7
+ data.tar.gz: e810010eedb77e628fc2e46c972ad7751e098c8fe02148d43f1f18f718880b6cc8e719389c21027b2fc5896ec75f40ca0d81701ff8dfa934f294937d7d9f21c1
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.33.0
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?
@@ -40,6 +40,6 @@ require_relative 'aws-sdk-sts/customizations'
40
40
  # @service
41
41
  module Aws::STS
42
42
 
43
- GEM_VERSION = '3.33.0'
43
+ GEM_VERSION = '3.34.0'
44
44
 
45
45
  end
@@ -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.33.0'
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.33.0
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-22 00:00:00.000000000 Z
11
+ date: 2018-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath