aws-sdk-chimesdkvoice 1.26.0 → 1.32.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +30 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkvoice/client.rb +43 -10
- data/lib/aws-sdk-chimesdkvoice/client_api.rb +1 -0
- data/lib/aws-sdk-chimesdkvoice/endpoints.rb +93 -372
- data/lib/aws-sdk-chimesdkvoice/plugins/endpoints.rb +18 -6
- data/lib/aws-sdk-chimesdkvoice/types.rb +22 -7
- data/lib/aws-sdk-chimesdkvoice.rb +15 -11
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cda63e2519947abb00c3a514cab54bf27a6b96c52496691e6b0cfdb316d5e85f
|
4
|
+
data.tar.gz: ad03279011ca28e01728b12df137a48e149124b339377e28147c1b547d69ba4e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85a91bba3e6749685ef9f0c5b4d9581b0fb07f1c12f901c5cbb0f7791e6b12d0c1167b30d008b9920e1c56ddcf0f3426e299b7fcd5ec5298bf170041ccc5f4e8
|
7
|
+
data.tar.gz: aaca33155a6648bb306d85814e00528aa69c4802db8e4710d29c6905a64cc2c26cd124f2b0dd9e6a360461ab501efc71fe375e74009b431c6950a2297403749d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,36 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.32.0 (2024-09-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.31.0 (2024-09-23)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.30.0 (2024-09-20)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.29.0 (2024-09-11)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
24
|
+
1.28.0 (2024-09-10)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Documentation-only update that clarifies the ValidateE911Address action of the Amazon Chime SDK Voice APIs.
|
28
|
+
|
29
|
+
1.27.0 (2024-09-03)
|
30
|
+
------------------
|
31
|
+
|
32
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
33
|
+
|
4
34
|
1.26.0 (2024-07-18)
|
5
35
|
------------------
|
6
36
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.32.0
|
@@ -32,11 +32,10 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
37
38
|
|
38
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:chimesdkvoice)
|
39
|
-
|
40
39
|
module Aws::ChimeSDKVoice
|
41
40
|
# An API client for ChimeSDKVoice. To construct a client, you need to configure a `:region` and `:credentials`.
|
42
41
|
#
|
@@ -83,6 +82,7 @@ module Aws::ChimeSDKVoice
|
|
83
82
|
add_plugin(Aws::Plugins::RequestCompression)
|
84
83
|
add_plugin(Aws::Plugins::DefaultsMode)
|
85
84
|
add_plugin(Aws::Plugins::RecursionDetection)
|
85
|
+
add_plugin(Aws::Plugins::Telemetry)
|
86
86
|
add_plugin(Aws::Plugins::Sign)
|
87
87
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
88
88
|
add_plugin(Aws::ChimeSDKVoice::Plugins::Endpoints)
|
@@ -128,13 +128,15 @@ module Aws::ChimeSDKVoice
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
-
# * The `:access_key_id`, `:secret_access_key`,
|
132
|
-
#
|
131
|
+
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
|
+
# `:account_id` options.
|
133
|
+
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
|
134
|
+
# ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
|
133
135
|
# * `~/.aws/credentials`
|
134
136
|
# * `~/.aws/config`
|
135
137
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
136
138
|
# are very aggressive. Construct and pass an instance of
|
137
|
-
# `Aws::
|
139
|
+
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
138
140
|
# enable retries and extended timeouts. Instance profile credential
|
139
141
|
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
140
142
|
# to true.
|
@@ -153,6 +155,8 @@ module Aws::ChimeSDKVoice
|
|
153
155
|
#
|
154
156
|
# @option options [String] :access_key_id
|
155
157
|
#
|
158
|
+
# @option options [String] :account_id
|
159
|
+
#
|
156
160
|
# @option options [Boolean] :active_endpoint_cache (false)
|
157
161
|
# When set to `true`, a thread polling for endpoints will be running in
|
158
162
|
# the background every 60 secs (default). Defaults to `false`.
|
@@ -330,6 +334,16 @@ module Aws::ChimeSDKVoice
|
|
330
334
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
331
335
|
# requests are made, and retries are disabled.
|
332
336
|
#
|
337
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
338
|
+
# Allows you to provide a telemetry provider, which is used to
|
339
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
340
|
+
# will not record or emit any telemetry data. The SDK supports the
|
341
|
+
# following telemetry providers:
|
342
|
+
#
|
343
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
344
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
345
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
346
|
+
#
|
333
347
|
# @option options [Aws::TokenProvider] :token_provider
|
334
348
|
# A Bearer Token Provider. This can be an instance of any one of the
|
335
349
|
# following classes:
|
@@ -357,7 +371,9 @@ module Aws::ChimeSDKVoice
|
|
357
371
|
# sending the request.
|
358
372
|
#
|
359
373
|
# @option options [Aws::ChimeSDKVoice::EndpointProvider] :endpoint_provider
|
360
|
-
# The endpoint provider used to resolve endpoints. Any object that responds to
|
374
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to
|
375
|
+
# `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
376
|
+
# `Aws::ChimeSDKVoice::EndpointParameters`.
|
361
377
|
#
|
362
378
|
# @option options [Float] :http_continue_timeout (1)
|
363
379
|
# The number of seconds to wait for a 100-continue response before sending the
|
@@ -413,6 +429,12 @@ module Aws::ChimeSDKVoice
|
|
413
429
|
# @option options [String] :ssl_ca_store
|
414
430
|
# Sets the X509::Store to verify peer certificate.
|
415
431
|
#
|
432
|
+
# @option options [OpenSSL::X509::Certificate] :ssl_cert
|
433
|
+
# Sets a client certificate when creating http connections.
|
434
|
+
#
|
435
|
+
# @option options [OpenSSL::PKey] :ssl_key
|
436
|
+
# Sets a client key when creating http connections.
|
437
|
+
#
|
416
438
|
# @option options [Float] :ssl_timeout
|
417
439
|
# Sets the SSL timeout in seconds
|
418
440
|
#
|
@@ -2298,7 +2320,7 @@ module Aws::ChimeSDKVoice
|
|
2298
2320
|
# The Voice Connector ID.
|
2299
2321
|
#
|
2300
2322
|
# @option params [required, String] :voice_tone_analysis_task_id
|
2301
|
-
# The ID of the voice tone
|
2323
|
+
# The ID of the voice tone analysis task.
|
2302
2324
|
#
|
2303
2325
|
# @option params [required, Boolean] :is_caller
|
2304
2326
|
# Specifies whether the voice being analyzed is the caller (originator)
|
@@ -4177,7 +4199,13 @@ module Aws::ChimeSDKVoice
|
|
4177
4199
|
# The address state, such as `ME`.
|
4178
4200
|
#
|
4179
4201
|
# @option params [required, String] :country
|
4180
|
-
# The country in the address being validated
|
4202
|
+
# The country in the address being validated as two-letter country code
|
4203
|
+
# in ISO 3166-1 alpha-2 format, such as `US`. For more information, see
|
4204
|
+
# [ISO 3166-1 alpha-2][1] in Wikipedia.
|
4205
|
+
#
|
4206
|
+
#
|
4207
|
+
#
|
4208
|
+
# [1]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
|
4181
4209
|
#
|
4182
4210
|
# @option params [required, String] :postal_code
|
4183
4211
|
# The dress postal code, such `04352`.
|
@@ -4239,14 +4267,19 @@ module Aws::ChimeSDKVoice
|
|
4239
4267
|
# @api private
|
4240
4268
|
def build_request(operation_name, params = {})
|
4241
4269
|
handlers = @handlers.for(operation_name)
|
4270
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
4271
|
+
Aws::Telemetry.module_to_tracer_name('Aws::ChimeSDKVoice')
|
4272
|
+
)
|
4242
4273
|
context = Seahorse::Client::RequestContext.new(
|
4243
4274
|
operation_name: operation_name,
|
4244
4275
|
operation: config.api.operation(operation_name),
|
4245
4276
|
client: self,
|
4246
4277
|
params: params,
|
4247
|
-
config: config
|
4278
|
+
config: config,
|
4279
|
+
tracer: tracer
|
4280
|
+
)
|
4248
4281
|
context[:gem_name] = 'aws-sdk-chimesdkvoice'
|
4249
|
-
context[:gem_version] = '1.
|
4282
|
+
context[:gem_version] = '1.32.0'
|
4250
4283
|
Seahorse::Client::Request.new(handlers, context)
|
4251
4284
|
end
|
4252
4285
|
|