aws-sdk-polly 1.124.0 → 1.125.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-polly/async_client.rb +6 -8
- data/lib/aws-sdk-polly/client.rb +6 -8
- data/lib/aws-sdk-polly.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8284b4a212422846885cc568bd0770e01b9b6a38049cb0ebef2918f10eb794a2
|
|
4
|
+
data.tar.gz: 5beb0dff86118dd1b6764e7721330b987fcba091675bb68d63288950a95518c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dab523f67b0e48151da0bc065ba37ec9eee000c28b87344ff4023495d45032c164029da42201962d74ba927ecd33d7e9d954a21cc539e0a0ef64240c813f6601
|
|
7
|
+
data.tar.gz: 4e290645631a81e324bc3aa98d284f97bc7b280956071cf7775fb72d958fc5f980596910b0ae96b916bb01c90a21de35a34ce04ea8ffb96a5267bae869138c5f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.125.0
|
|
@@ -168,7 +168,7 @@ module Aws::Polly
|
|
|
168
168
|
# the required types.
|
|
169
169
|
#
|
|
170
170
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
171
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
171
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
172
172
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
173
173
|
#
|
|
174
174
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -283,17 +283,15 @@ module Aws::Polly
|
|
|
283
283
|
# @option options [String] :retry_mode ("legacy")
|
|
284
284
|
# Specifies which retry algorithm to use. Values are:
|
|
285
285
|
#
|
|
286
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
287
|
-
# no retry mode is provided.
|
|
286
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
287
|
+
# value if no retry mode is provided.
|
|
288
288
|
#
|
|
289
289
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
290
290
|
# This includes support for retry quotas, which limit the number of
|
|
291
291
|
# unsuccessful retries a client can make.
|
|
292
292
|
#
|
|
293
|
-
# * `adaptive` -
|
|
294
|
-
#
|
|
295
|
-
# throttling. This is a provisional mode that may change behavior
|
|
296
|
-
# in the future.
|
|
293
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
294
|
+
# `standard` mode along with automatic client side throttling.
|
|
297
295
|
#
|
|
298
296
|
# @option options [String] :sdk_ua_app_id
|
|
299
297
|
# A unique and opaque application ID that is appended to the
|
|
@@ -657,7 +655,7 @@ module Aws::Polly
|
|
|
657
655
|
tracer: tracer
|
|
658
656
|
)
|
|
659
657
|
context[:gem_name] = 'aws-sdk-polly'
|
|
660
|
-
context[:gem_version] = '1.
|
|
658
|
+
context[:gem_version] = '1.125.0'
|
|
661
659
|
Seahorse::Client::Request.new(handlers, context)
|
|
662
660
|
end
|
|
663
661
|
|
data/lib/aws-sdk-polly/client.rb
CHANGED
|
@@ -201,7 +201,7 @@ module Aws::Polly
|
|
|
201
201
|
# the required types.
|
|
202
202
|
#
|
|
203
203
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
204
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
204
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
205
205
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
206
206
|
#
|
|
207
207
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -334,17 +334,15 @@ module Aws::Polly
|
|
|
334
334
|
# @option options [String] :retry_mode ("legacy")
|
|
335
335
|
# Specifies which retry algorithm to use. Values are:
|
|
336
336
|
#
|
|
337
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
338
|
-
# no retry mode is provided.
|
|
337
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
338
|
+
# value if no retry mode is provided.
|
|
339
339
|
#
|
|
340
340
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
341
341
|
# This includes support for retry quotas, which limit the number of
|
|
342
342
|
# unsuccessful retries a client can make.
|
|
343
343
|
#
|
|
344
|
-
# * `adaptive` -
|
|
345
|
-
#
|
|
346
|
-
# throttling. This is a provisional mode that may change behavior
|
|
347
|
-
# in the future.
|
|
344
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
345
|
+
# `standard` mode along with automatic client side throttling.
|
|
348
346
|
#
|
|
349
347
|
# @option options [String] :sdk_ua_app_id
|
|
350
348
|
# A unique and opaque application ID that is appended to the
|
|
@@ -1251,7 +1249,7 @@ module Aws::Polly
|
|
|
1251
1249
|
tracer: tracer
|
|
1252
1250
|
)
|
|
1253
1251
|
context[:gem_name] = 'aws-sdk-polly'
|
|
1254
|
-
context[:gem_version] = '1.
|
|
1252
|
+
context[:gem_version] = '1.125.0'
|
|
1255
1253
|
Seahorse::Client::Request.new(handlers, context)
|
|
1256
1254
|
end
|
|
1257
1255
|
|
data/lib/aws-sdk-polly.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-polly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.125.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|