aws-sdk-chimesdkvoice 1.25.0 → 1.27.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkvoice/client.rb +19 -2
- data/lib/aws-sdk-chimesdkvoice/types.rb +13 -13
- data/lib/aws-sdk-chimesdkvoice.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -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: b9a8e67658384f951d90d4dbdd7f932864152f0e436b61e96e52b898ffffe05c
|
4
|
+
data.tar.gz: 341521eecba5b0ad40107baacdfa660ea85af9d9aced5ad7cc33e63d5bb34b19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ace26f249acc19050cc2a5e3951036e1cceda9a56194e48d0e0d80814f9a39b2afd6956905a630cc3837b5feb722f83b6937ac51a407bdda6d591dbf40014be
|
7
|
+
data.tar.gz: 6c4c1e183c6190a3ad8a6abcdf06603c5880fe24aca5efa5f05433368992bdbe53a0d6d77c2dc077981e3373d5c48912b288ec44b480e88f80ce6a3f55d5cec1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.27.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.26.0 (2024-07-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.25.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.27.0
|
@@ -32,6 +32,7 @@ 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
|
|
@@ -83,6 +84,7 @@ module Aws::ChimeSDKVoice
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
87
89
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
88
90
|
add_plugin(Aws::ChimeSDKVoice::Plugins::Endpoints)
|
@@ -330,6 +332,16 @@ module Aws::ChimeSDKVoice
|
|
330
332
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
331
333
|
# requests are made, and retries are disabled.
|
332
334
|
#
|
335
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
336
|
+
# Allows you to provide a telemetry provider, which is used to
|
337
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
338
|
+
# will not record or emit any telemetry data. The SDK supports the
|
339
|
+
# following telemetry providers:
|
340
|
+
#
|
341
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
342
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
343
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
344
|
+
#
|
333
345
|
# @option options [Aws::TokenProvider] :token_provider
|
334
346
|
# A Bearer Token Provider. This can be an instance of any one of the
|
335
347
|
# following classes:
|
@@ -4239,14 +4251,19 @@ module Aws::ChimeSDKVoice
|
|
4239
4251
|
# @api private
|
4240
4252
|
def build_request(operation_name, params = {})
|
4241
4253
|
handlers = @handlers.for(operation_name)
|
4254
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
4255
|
+
Aws::Telemetry.module_to_tracer_name('Aws::ChimeSDKVoice')
|
4256
|
+
)
|
4242
4257
|
context = Seahorse::Client::RequestContext.new(
|
4243
4258
|
operation_name: operation_name,
|
4244
4259
|
operation: config.api.operation(operation_name),
|
4245
4260
|
client: self,
|
4246
4261
|
params: params,
|
4247
|
-
config: config
|
4262
|
+
config: config,
|
4263
|
+
tracer: tracer
|
4264
|
+
)
|
4248
4265
|
context[:gem_name] = 'aws-sdk-chimesdkvoice'
|
4249
|
-
context[:gem_version] = '1.
|
4266
|
+
context[:gem_version] = '1.27.0'
|
4250
4267
|
Seahorse::Client::Request.new(handlers, context)
|
4251
4268
|
end
|
4252
4269
|
|
@@ -97,7 +97,7 @@ module Aws::ChimeSDKVoice
|
|
97
97
|
:voice_connector_group_id,
|
98
98
|
:e164_phone_numbers,
|
99
99
|
:force_associate)
|
100
|
-
SENSITIVE = []
|
100
|
+
SENSITIVE = [:e164_phone_numbers]
|
101
101
|
include Aws::Structure
|
102
102
|
end
|
103
103
|
|
@@ -136,7 +136,7 @@ module Aws::ChimeSDKVoice
|
|
136
136
|
:voice_connector_id,
|
137
137
|
:e164_phone_numbers,
|
138
138
|
:force_associate)
|
139
|
-
SENSITIVE = []
|
139
|
+
SENSITIVE = [:e164_phone_numbers]
|
140
140
|
include Aws::Structure
|
141
141
|
end
|
142
142
|
|
@@ -302,7 +302,7 @@ module Aws::ChimeSDKVoice
|
|
302
302
|
:product_type,
|
303
303
|
:e164_phone_numbers,
|
304
304
|
:name)
|
305
|
-
SENSITIVE = [:name]
|
305
|
+
SENSITIVE = [:e164_phone_numbers, :name]
|
306
306
|
include Aws::Structure
|
307
307
|
end
|
308
308
|
|
@@ -363,7 +363,7 @@ module Aws::ChimeSDKVoice
|
|
363
363
|
:number_selection_behavior,
|
364
364
|
:geo_match_level,
|
365
365
|
:geo_match_params)
|
366
|
-
SENSITIVE = [:name]
|
366
|
+
SENSITIVE = [:participant_phone_numbers, :name]
|
367
367
|
include Aws::Structure
|
368
368
|
end
|
369
369
|
|
@@ -410,7 +410,7 @@ module Aws::ChimeSDKVoice
|
|
410
410
|
:sip_media_application_id,
|
411
411
|
:sip_headers,
|
412
412
|
:arguments_map)
|
413
|
-
SENSITIVE = [:from_phone_number, :to_phone_number]
|
413
|
+
SENSITIVE = [:from_phone_number, :to_phone_number, :sip_headers, :arguments_map]
|
414
414
|
include Aws::Structure
|
415
415
|
end
|
416
416
|
|
@@ -848,7 +848,7 @@ module Aws::ChimeSDKVoice
|
|
848
848
|
class DeleteVoiceConnectorTerminationCredentialsRequest < Struct.new(
|
849
849
|
:voice_connector_id,
|
850
850
|
:usernames)
|
851
|
-
SENSITIVE = []
|
851
|
+
SENSITIVE = [:usernames]
|
852
852
|
include Aws::Structure
|
853
853
|
end
|
854
854
|
|
@@ -901,7 +901,7 @@ module Aws::ChimeSDKVoice
|
|
901
901
|
class DisassociatePhoneNumbersFromVoiceConnectorGroupRequest < Struct.new(
|
902
902
|
:voice_connector_group_id,
|
903
903
|
:e164_phone_numbers)
|
904
|
-
SENSITIVE = []
|
904
|
+
SENSITIVE = [:e164_phone_numbers]
|
905
905
|
include Aws::Structure
|
906
906
|
end
|
907
907
|
|
@@ -932,7 +932,7 @@ module Aws::ChimeSDKVoice
|
|
932
932
|
class DisassociatePhoneNumbersFromVoiceConnectorRequest < Struct.new(
|
933
933
|
:voice_connector_id,
|
934
934
|
:e164_phone_numbers)
|
935
|
-
SENSITIVE = []
|
935
|
+
SENSITIVE = [:e164_phone_numbers]
|
936
936
|
include Aws::Structure
|
937
937
|
end
|
938
938
|
|
@@ -1850,7 +1850,7 @@ module Aws::ChimeSDKVoice
|
|
1850
1850
|
#
|
1851
1851
|
class ListVoiceConnectorTerminationCredentialsResponse < Struct.new(
|
1852
1852
|
:usernames)
|
1853
|
-
SENSITIVE = []
|
1853
|
+
SENSITIVE = [:usernames]
|
1854
1854
|
include Aws::Structure
|
1855
1855
|
end
|
1856
1856
|
|
@@ -2832,7 +2832,7 @@ module Aws::ChimeSDKVoice
|
|
2832
2832
|
class SearchAvailablePhoneNumbersResponse < Struct.new(
|
2833
2833
|
:e164_phone_numbers,
|
2834
2834
|
:next_token)
|
2835
|
-
SENSITIVE = []
|
2835
|
+
SENSITIVE = [:e164_phone_numbers]
|
2836
2836
|
include Aws::Structure
|
2837
2837
|
end
|
2838
2838
|
|
@@ -2939,7 +2939,7 @@ module Aws::ChimeSDKVoice
|
|
2939
2939
|
class SipMediaApplicationAlexaSkillConfiguration < Struct.new(
|
2940
2940
|
:alexa_skill_status,
|
2941
2941
|
:alexa_skill_ids)
|
2942
|
-
SENSITIVE = []
|
2942
|
+
SENSITIVE = [:alexa_skill_ids]
|
2943
2943
|
include Aws::Structure
|
2944
2944
|
end
|
2945
2945
|
|
@@ -3449,7 +3449,7 @@ module Aws::ChimeSDKVoice
|
|
3449
3449
|
class UntagResourceRequest < Struct.new(
|
3450
3450
|
:resource_arn,
|
3451
3451
|
:tag_keys)
|
3452
|
-
SENSITIVE = [:resource_arn]
|
3452
|
+
SENSITIVE = [:resource_arn, :tag_keys]
|
3453
3453
|
include Aws::Structure
|
3454
3454
|
end
|
3455
3455
|
|
@@ -3604,7 +3604,7 @@ module Aws::ChimeSDKVoice
|
|
3604
3604
|
:sip_media_application_id,
|
3605
3605
|
:transaction_id,
|
3606
3606
|
:arguments)
|
3607
|
-
SENSITIVE = []
|
3607
|
+
SENSITIVE = [:arguments]
|
3608
3608
|
include Aws::Structure
|
3609
3609
|
end
|
3610
3610
|
|
data/sig/client.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
data/sig/resource.rbs
CHANGED
@@ -50,6 +50,7 @@ module Aws
|
|
50
50
|
?session_token: String,
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?stub_responses: untyped,
|
53
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
54
|
?token_provider: untyped,
|
54
55
|
?use_dualstack_endpoint: bool,
|
55
56
|
?use_fips_endpoint: bool,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-chimesdkvoice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.27.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: 2024-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|