aws-sdk-chimesdkvoice 1.16.0 → 1.18.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,1158 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module ChimeSDKVoice
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _AssociatePhoneNumbersWithVoiceConnectorResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociatePhoneNumbersWithVoiceConnectorResponse]
77
+ def phone_number_errors: () -> ::Array[Types::PhoneNumberError]
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#associate_phone_numbers_with_voice_connector-instance_method
80
+ def associate_phone_numbers_with_voice_connector: (
81
+ voice_connector_id: ::String,
82
+ e164_phone_numbers: Array[::String],
83
+ ?force_associate: bool
84
+ ) -> _AssociatePhoneNumbersWithVoiceConnectorResponseSuccess
85
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociatePhoneNumbersWithVoiceConnectorResponseSuccess
86
+
87
+ interface _AssociatePhoneNumbersWithVoiceConnectorGroupResponseSuccess
88
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociatePhoneNumbersWithVoiceConnectorGroupResponse]
89
+ def phone_number_errors: () -> ::Array[Types::PhoneNumberError]
90
+ end
91
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#associate_phone_numbers_with_voice_connector_group-instance_method
92
+ def associate_phone_numbers_with_voice_connector_group: (
93
+ voice_connector_group_id: ::String,
94
+ e164_phone_numbers: Array[::String],
95
+ ?force_associate: bool
96
+ ) -> _AssociatePhoneNumbersWithVoiceConnectorGroupResponseSuccess
97
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociatePhoneNumbersWithVoiceConnectorGroupResponseSuccess
98
+
99
+ interface _BatchDeletePhoneNumberResponseSuccess
100
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeletePhoneNumberResponse]
101
+ def phone_number_errors: () -> ::Array[Types::PhoneNumberError]
102
+ end
103
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#batch_delete_phone_number-instance_method
104
+ def batch_delete_phone_number: (
105
+ phone_number_ids: Array[::String]
106
+ ) -> _BatchDeletePhoneNumberResponseSuccess
107
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeletePhoneNumberResponseSuccess
108
+
109
+ interface _BatchUpdatePhoneNumberResponseSuccess
110
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchUpdatePhoneNumberResponse]
111
+ def phone_number_errors: () -> ::Array[Types::PhoneNumberError]
112
+ end
113
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#batch_update_phone_number-instance_method
114
+ def batch_update_phone_number: (
115
+ update_phone_number_request_items: Array[
116
+ {
117
+ phone_number_id: ::String,
118
+ product_type: ("VoiceConnector" | "SipMediaApplicationDialIn")?,
119
+ calling_name: ::String?,
120
+ name: ::String?
121
+ },
122
+ ]
123
+ ) -> _BatchUpdatePhoneNumberResponseSuccess
124
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchUpdatePhoneNumberResponseSuccess
125
+
126
+ interface _CreatePhoneNumberOrderResponseSuccess
127
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreatePhoneNumberOrderResponse]
128
+ def phone_number_order: () -> Types::PhoneNumberOrder
129
+ end
130
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#create_phone_number_order-instance_method
131
+ def create_phone_number_order: (
132
+ product_type: ("VoiceConnector" | "SipMediaApplicationDialIn"),
133
+ e164_phone_numbers: Array[::String],
134
+ ?name: ::String
135
+ ) -> _CreatePhoneNumberOrderResponseSuccess
136
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePhoneNumberOrderResponseSuccess
137
+
138
+ interface _CreateProxySessionResponseSuccess
139
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateProxySessionResponse]
140
+ def proxy_session: () -> Types::ProxySession
141
+ end
142
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#create_proxy_session-instance_method
143
+ def create_proxy_session: (
144
+ voice_connector_id: ::String,
145
+ participant_phone_numbers: Array[::String],
146
+ ?name: ::String,
147
+ ?expiry_minutes: ::Integer,
148
+ capabilities: Array[("Voice" | "SMS")],
149
+ ?number_selection_behavior: ("PreferSticky" | "AvoidSticky"),
150
+ ?geo_match_level: ("Country" | "AreaCode"),
151
+ ?geo_match_params: {
152
+ country: ::String,
153
+ area_code: ::String
154
+ }
155
+ ) -> _CreateProxySessionResponseSuccess
156
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProxySessionResponseSuccess
157
+
158
+ interface _CreateSipMediaApplicationResponseSuccess
159
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSipMediaApplicationResponse]
160
+ def sip_media_application: () -> Types::SipMediaApplication
161
+ end
162
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#create_sip_media_application-instance_method
163
+ def create_sip_media_application: (
164
+ aws_region: ::String,
165
+ name: ::String,
166
+ endpoints: Array[
167
+ {
168
+ lambda_arn: ::String?
169
+ },
170
+ ],
171
+ ?tags: Array[
172
+ {
173
+ key: ::String,
174
+ value: ::String
175
+ },
176
+ ]
177
+ ) -> _CreateSipMediaApplicationResponseSuccess
178
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSipMediaApplicationResponseSuccess
179
+
180
+ interface _CreateSipMediaApplicationCallResponseSuccess
181
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSipMediaApplicationCallResponse]
182
+ def sip_media_application_call: () -> Types::SipMediaApplicationCall
183
+ end
184
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#create_sip_media_application_call-instance_method
185
+ def create_sip_media_application_call: (
186
+ from_phone_number: ::String,
187
+ to_phone_number: ::String,
188
+ sip_media_application_id: ::String,
189
+ ?sip_headers: Hash[::String, ::String],
190
+ ?arguments_map: Hash[::String, ::String]
191
+ ) -> _CreateSipMediaApplicationCallResponseSuccess
192
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSipMediaApplicationCallResponseSuccess
193
+
194
+ interface _CreateSipRuleResponseSuccess
195
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateSipRuleResponse]
196
+ def sip_rule: () -> Types::SipRule
197
+ end
198
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#create_sip_rule-instance_method
199
+ def create_sip_rule: (
200
+ name: ::String,
201
+ trigger_type: ("ToPhoneNumber" | "RequestUriHostname"),
202
+ trigger_value: ::String,
203
+ ?disabled: bool,
204
+ ?target_applications: Array[
205
+ {
206
+ sip_media_application_id: ::String?,
207
+ priority: ::Integer?,
208
+ aws_region: ::String?
209
+ },
210
+ ]
211
+ ) -> _CreateSipRuleResponseSuccess
212
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSipRuleResponseSuccess
213
+
214
+ interface _CreateVoiceConnectorResponseSuccess
215
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVoiceConnectorResponse]
216
+ def voice_connector: () -> Types::VoiceConnector
217
+ end
218
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#create_voice_connector-instance_method
219
+ def create_voice_connector: (
220
+ name: ::String,
221
+ ?aws_region: ("us-east-1" | "us-west-2" | "ca-central-1" | "eu-central-1" | "eu-west-1" | "eu-west-2" | "ap-northeast-2" | "ap-northeast-1" | "ap-southeast-1" | "ap-southeast-2"),
222
+ require_encryption: bool,
223
+ ?tags: Array[
224
+ {
225
+ key: ::String,
226
+ value: ::String
227
+ },
228
+ ]
229
+ ) -> _CreateVoiceConnectorResponseSuccess
230
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVoiceConnectorResponseSuccess
231
+
232
+ interface _CreateVoiceConnectorGroupResponseSuccess
233
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVoiceConnectorGroupResponse]
234
+ def voice_connector_group: () -> Types::VoiceConnectorGroup
235
+ end
236
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#create_voice_connector_group-instance_method
237
+ def create_voice_connector_group: (
238
+ name: ::String,
239
+ ?voice_connector_items: Array[
240
+ {
241
+ voice_connector_id: ::String,
242
+ priority: ::Integer
243
+ },
244
+ ]
245
+ ) -> _CreateVoiceConnectorGroupResponseSuccess
246
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVoiceConnectorGroupResponseSuccess
247
+
248
+ interface _CreateVoiceProfileResponseSuccess
249
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVoiceProfileResponse]
250
+ def voice_profile: () -> Types::VoiceProfile
251
+ end
252
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#create_voice_profile-instance_method
253
+ def create_voice_profile: (
254
+ speaker_search_task_id: ::String
255
+ ) -> _CreateVoiceProfileResponseSuccess
256
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVoiceProfileResponseSuccess
257
+
258
+ interface _CreateVoiceProfileDomainResponseSuccess
259
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVoiceProfileDomainResponse]
260
+ def voice_profile_domain: () -> Types::VoiceProfileDomain
261
+ end
262
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#create_voice_profile_domain-instance_method
263
+ def create_voice_profile_domain: (
264
+ name: ::String,
265
+ ?description: ::String,
266
+ server_side_encryption_configuration: {
267
+ kms_key_arn: ::String
268
+ },
269
+ ?client_request_token: ::String,
270
+ ?tags: Array[
271
+ {
272
+ key: ::String,
273
+ value: ::String
274
+ },
275
+ ]
276
+ ) -> _CreateVoiceProfileDomainResponseSuccess
277
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVoiceProfileDomainResponseSuccess
278
+
279
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_phone_number-instance_method
280
+ def delete_phone_number: (
281
+ phone_number_id: ::String
282
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
283
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
284
+
285
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_proxy_session-instance_method
286
+ def delete_proxy_session: (
287
+ voice_connector_id: ::String,
288
+ proxy_session_id: ::String
289
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
290
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
291
+
292
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_sip_media_application-instance_method
293
+ def delete_sip_media_application: (
294
+ sip_media_application_id: ::String
295
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
296
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
297
+
298
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_sip_rule-instance_method
299
+ def delete_sip_rule: (
300
+ sip_rule_id: ::String
301
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
302
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
303
+
304
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_connector-instance_method
305
+ def delete_voice_connector: (
306
+ voice_connector_id: ::String
307
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
308
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
309
+
310
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_connector_emergency_calling_configuration-instance_method
311
+ def delete_voice_connector_emergency_calling_configuration: (
312
+ voice_connector_id: ::String
313
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
314
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
315
+
316
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_connector_group-instance_method
317
+ def delete_voice_connector_group: (
318
+ voice_connector_group_id: ::String
319
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
320
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
321
+
322
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_connector_origination-instance_method
323
+ def delete_voice_connector_origination: (
324
+ voice_connector_id: ::String
325
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
326
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
327
+
328
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_connector_proxy-instance_method
329
+ def delete_voice_connector_proxy: (
330
+ voice_connector_id: ::String
331
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
332
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
333
+
334
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_connector_streaming_configuration-instance_method
335
+ def delete_voice_connector_streaming_configuration: (
336
+ voice_connector_id: ::String
337
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
338
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
339
+
340
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_connector_termination-instance_method
341
+ def delete_voice_connector_termination: (
342
+ voice_connector_id: ::String
343
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
344
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
345
+
346
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_connector_termination_credentials-instance_method
347
+ def delete_voice_connector_termination_credentials: (
348
+ voice_connector_id: ::String,
349
+ usernames: Array[::String]
350
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
351
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
352
+
353
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_profile-instance_method
354
+ def delete_voice_profile: (
355
+ voice_profile_id: ::String
356
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
357
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
358
+
359
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_profile_domain-instance_method
360
+ def delete_voice_profile_domain: (
361
+ voice_profile_domain_id: ::String
362
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
363
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
364
+
365
+ interface _DisassociatePhoneNumbersFromVoiceConnectorResponseSuccess
366
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociatePhoneNumbersFromVoiceConnectorResponse]
367
+ def phone_number_errors: () -> ::Array[Types::PhoneNumberError]
368
+ end
369
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#disassociate_phone_numbers_from_voice_connector-instance_method
370
+ def disassociate_phone_numbers_from_voice_connector: (
371
+ voice_connector_id: ::String,
372
+ e164_phone_numbers: Array[::String]
373
+ ) -> _DisassociatePhoneNumbersFromVoiceConnectorResponseSuccess
374
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociatePhoneNumbersFromVoiceConnectorResponseSuccess
375
+
376
+ interface _DisassociatePhoneNumbersFromVoiceConnectorGroupResponseSuccess
377
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociatePhoneNumbersFromVoiceConnectorGroupResponse]
378
+ def phone_number_errors: () -> ::Array[Types::PhoneNumberError]
379
+ end
380
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#disassociate_phone_numbers_from_voice_connector_group-instance_method
381
+ def disassociate_phone_numbers_from_voice_connector_group: (
382
+ voice_connector_group_id: ::String,
383
+ e164_phone_numbers: Array[::String]
384
+ ) -> _DisassociatePhoneNumbersFromVoiceConnectorGroupResponseSuccess
385
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociatePhoneNumbersFromVoiceConnectorGroupResponseSuccess
386
+
387
+ interface _GetGlobalSettingsResponseSuccess
388
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetGlobalSettingsResponse]
389
+ def voice_connector: () -> Types::VoiceConnectorSettings
390
+ end
391
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_global_settings-instance_method
392
+ def get_global_settings: () -> _GetGlobalSettingsResponseSuccess
393
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGlobalSettingsResponseSuccess
394
+
395
+ interface _GetPhoneNumberResponseSuccess
396
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPhoneNumberResponse]
397
+ def phone_number: () -> Types::PhoneNumber
398
+ end
399
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_phone_number-instance_method
400
+ def get_phone_number: (
401
+ phone_number_id: ::String
402
+ ) -> _GetPhoneNumberResponseSuccess
403
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPhoneNumberResponseSuccess
404
+
405
+ interface _GetPhoneNumberOrderResponseSuccess
406
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPhoneNumberOrderResponse]
407
+ def phone_number_order: () -> Types::PhoneNumberOrder
408
+ end
409
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_phone_number_order-instance_method
410
+ def get_phone_number_order: (
411
+ phone_number_order_id: ::String
412
+ ) -> _GetPhoneNumberOrderResponseSuccess
413
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPhoneNumberOrderResponseSuccess
414
+
415
+ interface _GetPhoneNumberSettingsResponseSuccess
416
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetPhoneNumberSettingsResponse]
417
+ def calling_name: () -> ::String
418
+ def calling_name_updated_timestamp: () -> ::Time
419
+ end
420
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_phone_number_settings-instance_method
421
+ def get_phone_number_settings: () -> _GetPhoneNumberSettingsResponseSuccess
422
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPhoneNumberSettingsResponseSuccess
423
+
424
+ interface _GetProxySessionResponseSuccess
425
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetProxySessionResponse]
426
+ def proxy_session: () -> Types::ProxySession
427
+ end
428
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_proxy_session-instance_method
429
+ def get_proxy_session: (
430
+ voice_connector_id: ::String,
431
+ proxy_session_id: ::String
432
+ ) -> _GetProxySessionResponseSuccess
433
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProxySessionResponseSuccess
434
+
435
+ interface _GetSipMediaApplicationResponseSuccess
436
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSipMediaApplicationResponse]
437
+ def sip_media_application: () -> Types::SipMediaApplication
438
+ end
439
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_sip_media_application-instance_method
440
+ def get_sip_media_application: (
441
+ sip_media_application_id: ::String
442
+ ) -> _GetSipMediaApplicationResponseSuccess
443
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSipMediaApplicationResponseSuccess
444
+
445
+ interface _GetSipMediaApplicationAlexaSkillConfigurationResponseSuccess
446
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSipMediaApplicationAlexaSkillConfigurationResponse]
447
+ def sip_media_application_alexa_skill_configuration: () -> Types::SipMediaApplicationAlexaSkillConfiguration
448
+ end
449
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_sip_media_application_alexa_skill_configuration-instance_method
450
+ def get_sip_media_application_alexa_skill_configuration: (
451
+ sip_media_application_id: ::String
452
+ ) -> _GetSipMediaApplicationAlexaSkillConfigurationResponseSuccess
453
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSipMediaApplicationAlexaSkillConfigurationResponseSuccess
454
+
455
+ interface _GetSipMediaApplicationLoggingConfigurationResponseSuccess
456
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSipMediaApplicationLoggingConfigurationResponse]
457
+ def sip_media_application_logging_configuration: () -> Types::SipMediaApplicationLoggingConfiguration
458
+ end
459
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_sip_media_application_logging_configuration-instance_method
460
+ def get_sip_media_application_logging_configuration: (
461
+ sip_media_application_id: ::String
462
+ ) -> _GetSipMediaApplicationLoggingConfigurationResponseSuccess
463
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSipMediaApplicationLoggingConfigurationResponseSuccess
464
+
465
+ interface _GetSipRuleResponseSuccess
466
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSipRuleResponse]
467
+ def sip_rule: () -> Types::SipRule
468
+ end
469
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_sip_rule-instance_method
470
+ def get_sip_rule: (
471
+ sip_rule_id: ::String
472
+ ) -> _GetSipRuleResponseSuccess
473
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSipRuleResponseSuccess
474
+
475
+ interface _GetSpeakerSearchTaskResponseSuccess
476
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetSpeakerSearchTaskResponse]
477
+ def speaker_search_task: () -> Types::SpeakerSearchTask
478
+ end
479
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_speaker_search_task-instance_method
480
+ def get_speaker_search_task: (
481
+ voice_connector_id: ::String,
482
+ speaker_search_task_id: ::String
483
+ ) -> _GetSpeakerSearchTaskResponseSuccess
484
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSpeakerSearchTaskResponseSuccess
485
+
486
+ interface _GetVoiceConnectorResponseSuccess
487
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorResponse]
488
+ def voice_connector: () -> Types::VoiceConnector
489
+ end
490
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_connector-instance_method
491
+ def get_voice_connector: (
492
+ voice_connector_id: ::String
493
+ ) -> _GetVoiceConnectorResponseSuccess
494
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorResponseSuccess
495
+
496
+ interface _GetVoiceConnectorEmergencyCallingConfigurationResponseSuccess
497
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorEmergencyCallingConfigurationResponse]
498
+ def emergency_calling_configuration: () -> Types::EmergencyCallingConfiguration
499
+ end
500
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_connector_emergency_calling_configuration-instance_method
501
+ def get_voice_connector_emergency_calling_configuration: (
502
+ voice_connector_id: ::String
503
+ ) -> _GetVoiceConnectorEmergencyCallingConfigurationResponseSuccess
504
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorEmergencyCallingConfigurationResponseSuccess
505
+
506
+ interface _GetVoiceConnectorGroupResponseSuccess
507
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorGroupResponse]
508
+ def voice_connector_group: () -> Types::VoiceConnectorGroup
509
+ end
510
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_connector_group-instance_method
511
+ def get_voice_connector_group: (
512
+ voice_connector_group_id: ::String
513
+ ) -> _GetVoiceConnectorGroupResponseSuccess
514
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorGroupResponseSuccess
515
+
516
+ interface _GetVoiceConnectorLoggingConfigurationResponseSuccess
517
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorLoggingConfigurationResponse]
518
+ def logging_configuration: () -> Types::LoggingConfiguration
519
+ end
520
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_connector_logging_configuration-instance_method
521
+ def get_voice_connector_logging_configuration: (
522
+ voice_connector_id: ::String
523
+ ) -> _GetVoiceConnectorLoggingConfigurationResponseSuccess
524
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorLoggingConfigurationResponseSuccess
525
+
526
+ interface _GetVoiceConnectorOriginationResponseSuccess
527
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorOriginationResponse]
528
+ def origination: () -> Types::Origination
529
+ end
530
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_connector_origination-instance_method
531
+ def get_voice_connector_origination: (
532
+ voice_connector_id: ::String
533
+ ) -> _GetVoiceConnectorOriginationResponseSuccess
534
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorOriginationResponseSuccess
535
+
536
+ interface _GetVoiceConnectorProxyResponseSuccess
537
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorProxyResponse]
538
+ def proxy: () -> Types::Proxy
539
+ end
540
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_connector_proxy-instance_method
541
+ def get_voice_connector_proxy: (
542
+ voice_connector_id: ::String
543
+ ) -> _GetVoiceConnectorProxyResponseSuccess
544
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorProxyResponseSuccess
545
+
546
+ interface _GetVoiceConnectorStreamingConfigurationResponseSuccess
547
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorStreamingConfigurationResponse]
548
+ def streaming_configuration: () -> Types::StreamingConfiguration
549
+ end
550
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_connector_streaming_configuration-instance_method
551
+ def get_voice_connector_streaming_configuration: (
552
+ voice_connector_id: ::String
553
+ ) -> _GetVoiceConnectorStreamingConfigurationResponseSuccess
554
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorStreamingConfigurationResponseSuccess
555
+
556
+ interface _GetVoiceConnectorTerminationResponseSuccess
557
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorTerminationResponse]
558
+ def termination: () -> Types::Termination
559
+ end
560
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_connector_termination-instance_method
561
+ def get_voice_connector_termination: (
562
+ voice_connector_id: ::String
563
+ ) -> _GetVoiceConnectorTerminationResponseSuccess
564
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorTerminationResponseSuccess
565
+
566
+ interface _GetVoiceConnectorTerminationHealthResponseSuccess
567
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorTerminationHealthResponse]
568
+ def termination_health: () -> Types::TerminationHealth
569
+ end
570
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_connector_termination_health-instance_method
571
+ def get_voice_connector_termination_health: (
572
+ voice_connector_id: ::String
573
+ ) -> _GetVoiceConnectorTerminationHealthResponseSuccess
574
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorTerminationHealthResponseSuccess
575
+
576
+ interface _GetVoiceProfileResponseSuccess
577
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceProfileResponse]
578
+ def voice_profile: () -> Types::VoiceProfile
579
+ end
580
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_profile-instance_method
581
+ def get_voice_profile: (
582
+ voice_profile_id: ::String
583
+ ) -> _GetVoiceProfileResponseSuccess
584
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceProfileResponseSuccess
585
+
586
+ interface _GetVoiceProfileDomainResponseSuccess
587
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceProfileDomainResponse]
588
+ def voice_profile_domain: () -> Types::VoiceProfileDomain
589
+ end
590
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_profile_domain-instance_method
591
+ def get_voice_profile_domain: (
592
+ voice_profile_domain_id: ::String
593
+ ) -> _GetVoiceProfileDomainResponseSuccess
594
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceProfileDomainResponseSuccess
595
+
596
+ interface _GetVoiceToneAnalysisTaskResponseSuccess
597
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceToneAnalysisTaskResponse]
598
+ def voice_tone_analysis_task: () -> Types::VoiceToneAnalysisTask
599
+ end
600
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_tone_analysis_task-instance_method
601
+ def get_voice_tone_analysis_task: (
602
+ voice_connector_id: ::String,
603
+ voice_tone_analysis_task_id: ::String,
604
+ is_caller: bool
605
+ ) -> _GetVoiceToneAnalysisTaskResponseSuccess
606
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceToneAnalysisTaskResponseSuccess
607
+
608
+ interface _ListAvailableVoiceConnectorRegionsResponseSuccess
609
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAvailableVoiceConnectorRegionsResponse]
610
+ def voice_connector_regions: () -> ::Array[("us-east-1" | "us-west-2" | "ca-central-1" | "eu-central-1" | "eu-west-1" | "eu-west-2" | "ap-northeast-2" | "ap-northeast-1" | "ap-southeast-1" | "ap-southeast-2")]
611
+ end
612
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_available_voice_connector_regions-instance_method
613
+ def list_available_voice_connector_regions: () -> _ListAvailableVoiceConnectorRegionsResponseSuccess
614
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAvailableVoiceConnectorRegionsResponseSuccess
615
+
616
+ interface _ListPhoneNumberOrdersResponseSuccess
617
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPhoneNumberOrdersResponse]
618
+ def phone_number_orders: () -> ::Array[Types::PhoneNumberOrder]
619
+ def next_token: () -> ::String
620
+ end
621
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_phone_number_orders-instance_method
622
+ def list_phone_number_orders: (
623
+ ?next_token: ::String,
624
+ ?max_results: ::Integer
625
+ ) -> _ListPhoneNumberOrdersResponseSuccess
626
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPhoneNumberOrdersResponseSuccess
627
+
628
+ interface _ListPhoneNumbersResponseSuccess
629
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListPhoneNumbersResponse]
630
+ def phone_numbers: () -> ::Array[Types::PhoneNumber]
631
+ def next_token: () -> ::String
632
+ end
633
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_phone_numbers-instance_method
634
+ def list_phone_numbers: (
635
+ ?status: ::String,
636
+ ?product_type: ("VoiceConnector" | "SipMediaApplicationDialIn"),
637
+ ?filter_name: ("VoiceConnectorId" | "VoiceConnectorGroupId" | "SipRuleId"),
638
+ ?filter_value: ::String,
639
+ ?max_results: ::Integer,
640
+ ?next_token: ::String
641
+ ) -> _ListPhoneNumbersResponseSuccess
642
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPhoneNumbersResponseSuccess
643
+
644
+ interface _ListProxySessionsResponseSuccess
645
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProxySessionsResponse]
646
+ def proxy_sessions: () -> ::Array[Types::ProxySession]
647
+ def next_token: () -> ::String
648
+ end
649
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_proxy_sessions-instance_method
650
+ def list_proxy_sessions: (
651
+ voice_connector_id: ::String,
652
+ ?status: ("Open" | "InProgress" | "Closed"),
653
+ ?next_token: ::String,
654
+ ?max_results: ::Integer
655
+ ) -> _ListProxySessionsResponseSuccess
656
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProxySessionsResponseSuccess
657
+
658
+ interface _ListSipMediaApplicationsResponseSuccess
659
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSipMediaApplicationsResponse]
660
+ def sip_media_applications: () -> ::Array[Types::SipMediaApplication]
661
+ def next_token: () -> ::String
662
+ end
663
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_sip_media_applications-instance_method
664
+ def list_sip_media_applications: (
665
+ ?max_results: ::Integer,
666
+ ?next_token: ::String
667
+ ) -> _ListSipMediaApplicationsResponseSuccess
668
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSipMediaApplicationsResponseSuccess
669
+
670
+ interface _ListSipRulesResponseSuccess
671
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSipRulesResponse]
672
+ def sip_rules: () -> ::Array[Types::SipRule]
673
+ def next_token: () -> ::String
674
+ end
675
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_sip_rules-instance_method
676
+ def list_sip_rules: (
677
+ ?sip_media_application_id: ::String,
678
+ ?max_results: ::Integer,
679
+ ?next_token: ::String
680
+ ) -> _ListSipRulesResponseSuccess
681
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSipRulesResponseSuccess
682
+
683
+ interface _ListSupportedPhoneNumberCountriesResponseSuccess
684
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSupportedPhoneNumberCountriesResponse]
685
+ def phone_number_countries: () -> ::Array[Types::PhoneNumberCountry]
686
+ end
687
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_supported_phone_number_countries-instance_method
688
+ def list_supported_phone_number_countries: (
689
+ product_type: ("VoiceConnector" | "SipMediaApplicationDialIn")
690
+ ) -> _ListSupportedPhoneNumberCountriesResponseSuccess
691
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSupportedPhoneNumberCountriesResponseSuccess
692
+
693
+ interface _ListTagsForResourceResponseSuccess
694
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
695
+ def tags: () -> ::Array[Types::Tag]
696
+ end
697
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_tags_for_resource-instance_method
698
+ def list_tags_for_resource: (
699
+ resource_arn: ::String
700
+ ) -> _ListTagsForResourceResponseSuccess
701
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
702
+
703
+ interface _ListVoiceConnectorGroupsResponseSuccess
704
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVoiceConnectorGroupsResponse]
705
+ def voice_connector_groups: () -> ::Array[Types::VoiceConnectorGroup]
706
+ def next_token: () -> ::String
707
+ end
708
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_voice_connector_groups-instance_method
709
+ def list_voice_connector_groups: (
710
+ ?next_token: ::String,
711
+ ?max_results: ::Integer
712
+ ) -> _ListVoiceConnectorGroupsResponseSuccess
713
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVoiceConnectorGroupsResponseSuccess
714
+
715
+ interface _ListVoiceConnectorTerminationCredentialsResponseSuccess
716
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVoiceConnectorTerminationCredentialsResponse]
717
+ def usernames: () -> ::Array[::String]
718
+ end
719
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_voice_connector_termination_credentials-instance_method
720
+ def list_voice_connector_termination_credentials: (
721
+ voice_connector_id: ::String
722
+ ) -> _ListVoiceConnectorTerminationCredentialsResponseSuccess
723
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVoiceConnectorTerminationCredentialsResponseSuccess
724
+
725
+ interface _ListVoiceConnectorsResponseSuccess
726
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVoiceConnectorsResponse]
727
+ def voice_connectors: () -> ::Array[Types::VoiceConnector]
728
+ def next_token: () -> ::String
729
+ end
730
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_voice_connectors-instance_method
731
+ def list_voice_connectors: (
732
+ ?next_token: ::String,
733
+ ?max_results: ::Integer
734
+ ) -> _ListVoiceConnectorsResponseSuccess
735
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVoiceConnectorsResponseSuccess
736
+
737
+ interface _ListVoiceProfileDomainsResponseSuccess
738
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVoiceProfileDomainsResponse]
739
+ def voice_profile_domains: () -> ::Array[Types::VoiceProfileDomainSummary]
740
+ def next_token: () -> ::String
741
+ end
742
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_voice_profile_domains-instance_method
743
+ def list_voice_profile_domains: (
744
+ ?next_token: ::String,
745
+ ?max_results: ::Integer
746
+ ) -> _ListVoiceProfileDomainsResponseSuccess
747
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVoiceProfileDomainsResponseSuccess
748
+
749
+ interface _ListVoiceProfilesResponseSuccess
750
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVoiceProfilesResponse]
751
+ def voice_profiles: () -> ::Array[Types::VoiceProfileSummary]
752
+ def next_token: () -> ::String
753
+ end
754
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#list_voice_profiles-instance_method
755
+ def list_voice_profiles: (
756
+ voice_profile_domain_id: ::String,
757
+ ?next_token: ::String,
758
+ ?max_results: ::Integer
759
+ ) -> _ListVoiceProfilesResponseSuccess
760
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVoiceProfilesResponseSuccess
761
+
762
+ interface _PutSipMediaApplicationAlexaSkillConfigurationResponseSuccess
763
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutSipMediaApplicationAlexaSkillConfigurationResponse]
764
+ def sip_media_application_alexa_skill_configuration: () -> Types::SipMediaApplicationAlexaSkillConfiguration
765
+ end
766
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#put_sip_media_application_alexa_skill_configuration-instance_method
767
+ def put_sip_media_application_alexa_skill_configuration: (
768
+ sip_media_application_id: ::String,
769
+ ?sip_media_application_alexa_skill_configuration: {
770
+ alexa_skill_status: ("ACTIVE" | "INACTIVE"),
771
+ alexa_skill_ids: Array[::String]
772
+ }
773
+ ) -> _PutSipMediaApplicationAlexaSkillConfigurationResponseSuccess
774
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutSipMediaApplicationAlexaSkillConfigurationResponseSuccess
775
+
776
+ interface _PutSipMediaApplicationLoggingConfigurationResponseSuccess
777
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutSipMediaApplicationLoggingConfigurationResponse]
778
+ def sip_media_application_logging_configuration: () -> Types::SipMediaApplicationLoggingConfiguration
779
+ end
780
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#put_sip_media_application_logging_configuration-instance_method
781
+ def put_sip_media_application_logging_configuration: (
782
+ sip_media_application_id: ::String,
783
+ ?sip_media_application_logging_configuration: {
784
+ enable_sip_media_application_message_logs: bool?
785
+ }
786
+ ) -> _PutSipMediaApplicationLoggingConfigurationResponseSuccess
787
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutSipMediaApplicationLoggingConfigurationResponseSuccess
788
+
789
+ interface _PutVoiceConnectorEmergencyCallingConfigurationResponseSuccess
790
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutVoiceConnectorEmergencyCallingConfigurationResponse]
791
+ def emergency_calling_configuration: () -> Types::EmergencyCallingConfiguration
792
+ end
793
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#put_voice_connector_emergency_calling_configuration-instance_method
794
+ def put_voice_connector_emergency_calling_configuration: (
795
+ voice_connector_id: ::String,
796
+ emergency_calling_configuration: {
797
+ dnis: Array[
798
+ {
799
+ emergency_phone_number: ::String,
800
+ test_phone_number: ::String?,
801
+ calling_country: ::String
802
+ },
803
+ ]?
804
+ }
805
+ ) -> _PutVoiceConnectorEmergencyCallingConfigurationResponseSuccess
806
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutVoiceConnectorEmergencyCallingConfigurationResponseSuccess
807
+
808
+ interface _PutVoiceConnectorLoggingConfigurationResponseSuccess
809
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutVoiceConnectorLoggingConfigurationResponse]
810
+ def logging_configuration: () -> Types::LoggingConfiguration
811
+ end
812
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#put_voice_connector_logging_configuration-instance_method
813
+ def put_voice_connector_logging_configuration: (
814
+ voice_connector_id: ::String,
815
+ logging_configuration: {
816
+ enable_sip_logs: bool?,
817
+ enable_media_metric_logs: bool?
818
+ }
819
+ ) -> _PutVoiceConnectorLoggingConfigurationResponseSuccess
820
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutVoiceConnectorLoggingConfigurationResponseSuccess
821
+
822
+ interface _PutVoiceConnectorOriginationResponseSuccess
823
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutVoiceConnectorOriginationResponse]
824
+ def origination: () -> Types::Origination
825
+ end
826
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#put_voice_connector_origination-instance_method
827
+ def put_voice_connector_origination: (
828
+ voice_connector_id: ::String,
829
+ origination: {
830
+ routes: Array[
831
+ {
832
+ host: ::String?,
833
+ port: ::Integer?,
834
+ protocol: ("TCP" | "UDP")?,
835
+ priority: ::Integer?,
836
+ weight: ::Integer?
837
+ },
838
+ ]?,
839
+ disabled: bool?
840
+ }
841
+ ) -> _PutVoiceConnectorOriginationResponseSuccess
842
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutVoiceConnectorOriginationResponseSuccess
843
+
844
+ interface _PutVoiceConnectorProxyResponseSuccess
845
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutVoiceConnectorProxyResponse]
846
+ def proxy: () -> Types::Proxy
847
+ end
848
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#put_voice_connector_proxy-instance_method
849
+ def put_voice_connector_proxy: (
850
+ voice_connector_id: ::String,
851
+ default_session_expiry_minutes: ::Integer,
852
+ phone_number_pool_countries: Array[::String],
853
+ ?fall_back_phone_number: ::String,
854
+ ?disabled: bool
855
+ ) -> _PutVoiceConnectorProxyResponseSuccess
856
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutVoiceConnectorProxyResponseSuccess
857
+
858
+ interface _PutVoiceConnectorStreamingConfigurationResponseSuccess
859
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutVoiceConnectorStreamingConfigurationResponse]
860
+ def streaming_configuration: () -> Types::StreamingConfiguration
861
+ end
862
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#put_voice_connector_streaming_configuration-instance_method
863
+ def put_voice_connector_streaming_configuration: (
864
+ voice_connector_id: ::String,
865
+ streaming_configuration: {
866
+ data_retention_in_hours: ::Integer,
867
+ disabled: bool,
868
+ streaming_notification_targets: Array[
869
+ {
870
+ notification_target: ("EventBridge" | "SNS" | "SQS")?
871
+ },
872
+ ]?,
873
+ media_insights_configuration: {
874
+ disabled: bool?,
875
+ configuration_arn: ::String?
876
+ }?
877
+ }
878
+ ) -> _PutVoiceConnectorStreamingConfigurationResponseSuccess
879
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutVoiceConnectorStreamingConfigurationResponseSuccess
880
+
881
+ interface _PutVoiceConnectorTerminationResponseSuccess
882
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutVoiceConnectorTerminationResponse]
883
+ def termination: () -> Types::Termination
884
+ end
885
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#put_voice_connector_termination-instance_method
886
+ def put_voice_connector_termination: (
887
+ voice_connector_id: ::String,
888
+ termination: {
889
+ cps_limit: ::Integer?,
890
+ default_phone_number: ::String?,
891
+ calling_regions: Array[::String]?,
892
+ cidr_allowed_list: Array[::String]?,
893
+ disabled: bool?
894
+ }
895
+ ) -> _PutVoiceConnectorTerminationResponseSuccess
896
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutVoiceConnectorTerminationResponseSuccess
897
+
898
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#put_voice_connector_termination_credentials-instance_method
899
+ def put_voice_connector_termination_credentials: (
900
+ voice_connector_id: ::String,
901
+ ?credentials: Array[
902
+ {
903
+ username: ::String?,
904
+ password: ::String?
905
+ },
906
+ ]
907
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
908
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
909
+
910
+ interface _RestorePhoneNumberResponseSuccess
911
+ include ::Seahorse::Client::_ResponseSuccess[Types::RestorePhoneNumberResponse]
912
+ def phone_number: () -> Types::PhoneNumber
913
+ end
914
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#restore_phone_number-instance_method
915
+ def restore_phone_number: (
916
+ phone_number_id: ::String
917
+ ) -> _RestorePhoneNumberResponseSuccess
918
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestorePhoneNumberResponseSuccess
919
+
920
+ interface _SearchAvailablePhoneNumbersResponseSuccess
921
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchAvailablePhoneNumbersResponse]
922
+ def e164_phone_numbers: () -> ::Array[::String]
923
+ def next_token: () -> ::String
924
+ end
925
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#search_available_phone_numbers-instance_method
926
+ def search_available_phone_numbers: (
927
+ ?area_code: ::String,
928
+ ?city: ::String,
929
+ ?country: ::String,
930
+ ?state: ::String,
931
+ ?toll_free_prefix: ::String,
932
+ ?phone_number_type: ("Local" | "TollFree"),
933
+ ?max_results: ::Integer,
934
+ ?next_token: ::String
935
+ ) -> _SearchAvailablePhoneNumbersResponseSuccess
936
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchAvailablePhoneNumbersResponseSuccess
937
+
938
+ interface _StartSpeakerSearchTaskResponseSuccess
939
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartSpeakerSearchTaskResponse]
940
+ def speaker_search_task: () -> Types::SpeakerSearchTask
941
+ end
942
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#start_speaker_search_task-instance_method
943
+ def start_speaker_search_task: (
944
+ voice_connector_id: ::String,
945
+ transaction_id: ::String,
946
+ voice_profile_domain_id: ::String,
947
+ ?client_request_token: ::String,
948
+ ?call_leg: ("Caller" | "Callee")
949
+ ) -> _StartSpeakerSearchTaskResponseSuccess
950
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSpeakerSearchTaskResponseSuccess
951
+
952
+ interface _StartVoiceToneAnalysisTaskResponseSuccess
953
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartVoiceToneAnalysisTaskResponse]
954
+ def voice_tone_analysis_task: () -> Types::VoiceToneAnalysisTask
955
+ end
956
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#start_voice_tone_analysis_task-instance_method
957
+ def start_voice_tone_analysis_task: (
958
+ voice_connector_id: ::String,
959
+ transaction_id: ::String,
960
+ language_code: ("en-US"),
961
+ ?client_request_token: ::String
962
+ ) -> _StartVoiceToneAnalysisTaskResponseSuccess
963
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartVoiceToneAnalysisTaskResponseSuccess
964
+
965
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#stop_speaker_search_task-instance_method
966
+ def stop_speaker_search_task: (
967
+ voice_connector_id: ::String,
968
+ speaker_search_task_id: ::String
969
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
970
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
971
+
972
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#stop_voice_tone_analysis_task-instance_method
973
+ def stop_voice_tone_analysis_task: (
974
+ voice_connector_id: ::String,
975
+ voice_tone_analysis_task_id: ::String
976
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
977
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
978
+
979
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#tag_resource-instance_method
980
+ def tag_resource: (
981
+ resource_arn: ::String,
982
+ tags: Array[
983
+ {
984
+ key: ::String,
985
+ value: ::String
986
+ },
987
+ ]
988
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
989
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
990
+
991
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#untag_resource-instance_method
992
+ def untag_resource: (
993
+ resource_arn: ::String,
994
+ tag_keys: Array[::String]
995
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
996
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
997
+
998
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#update_global_settings-instance_method
999
+ def update_global_settings: (
1000
+ ?voice_connector: {
1001
+ cdr_bucket: ::String?
1002
+ }
1003
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1004
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1005
+
1006
+ interface _UpdatePhoneNumberResponseSuccess
1007
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdatePhoneNumberResponse]
1008
+ def phone_number: () -> Types::PhoneNumber
1009
+ end
1010
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#update_phone_number-instance_method
1011
+ def update_phone_number: (
1012
+ phone_number_id: ::String,
1013
+ ?product_type: ("VoiceConnector" | "SipMediaApplicationDialIn"),
1014
+ ?calling_name: ::String,
1015
+ ?name: ::String
1016
+ ) -> _UpdatePhoneNumberResponseSuccess
1017
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePhoneNumberResponseSuccess
1018
+
1019
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#update_phone_number_settings-instance_method
1020
+ def update_phone_number_settings: (
1021
+ calling_name: ::String
1022
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1023
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1024
+
1025
+ interface _UpdateProxySessionResponseSuccess
1026
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProxySessionResponse]
1027
+ def proxy_session: () -> Types::ProxySession
1028
+ end
1029
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#update_proxy_session-instance_method
1030
+ def update_proxy_session: (
1031
+ voice_connector_id: ::String,
1032
+ proxy_session_id: ::String,
1033
+ capabilities: Array[("Voice" | "SMS")],
1034
+ ?expiry_minutes: ::Integer
1035
+ ) -> _UpdateProxySessionResponseSuccess
1036
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProxySessionResponseSuccess
1037
+
1038
+ interface _UpdateSipMediaApplicationResponseSuccess
1039
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSipMediaApplicationResponse]
1040
+ def sip_media_application: () -> Types::SipMediaApplication
1041
+ end
1042
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#update_sip_media_application-instance_method
1043
+ def update_sip_media_application: (
1044
+ sip_media_application_id: ::String,
1045
+ ?name: ::String,
1046
+ ?endpoints: Array[
1047
+ {
1048
+ lambda_arn: ::String?
1049
+ },
1050
+ ]
1051
+ ) -> _UpdateSipMediaApplicationResponseSuccess
1052
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSipMediaApplicationResponseSuccess
1053
+
1054
+ interface _UpdateSipMediaApplicationCallResponseSuccess
1055
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSipMediaApplicationCallResponse]
1056
+ def sip_media_application_call: () -> Types::SipMediaApplicationCall
1057
+ end
1058
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#update_sip_media_application_call-instance_method
1059
+ def update_sip_media_application_call: (
1060
+ sip_media_application_id: ::String,
1061
+ transaction_id: ::String,
1062
+ arguments: Hash[::String, ::String]
1063
+ ) -> _UpdateSipMediaApplicationCallResponseSuccess
1064
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSipMediaApplicationCallResponseSuccess
1065
+
1066
+ interface _UpdateSipRuleResponseSuccess
1067
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSipRuleResponse]
1068
+ def sip_rule: () -> Types::SipRule
1069
+ end
1070
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#update_sip_rule-instance_method
1071
+ def update_sip_rule: (
1072
+ sip_rule_id: ::String,
1073
+ name: ::String,
1074
+ ?disabled: bool,
1075
+ ?target_applications: Array[
1076
+ {
1077
+ sip_media_application_id: ::String?,
1078
+ priority: ::Integer?,
1079
+ aws_region: ::String?
1080
+ },
1081
+ ]
1082
+ ) -> _UpdateSipRuleResponseSuccess
1083
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSipRuleResponseSuccess
1084
+
1085
+ interface _UpdateVoiceConnectorResponseSuccess
1086
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVoiceConnectorResponse]
1087
+ def voice_connector: () -> Types::VoiceConnector
1088
+ end
1089
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#update_voice_connector-instance_method
1090
+ def update_voice_connector: (
1091
+ voice_connector_id: ::String,
1092
+ name: ::String,
1093
+ require_encryption: bool
1094
+ ) -> _UpdateVoiceConnectorResponseSuccess
1095
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVoiceConnectorResponseSuccess
1096
+
1097
+ interface _UpdateVoiceConnectorGroupResponseSuccess
1098
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVoiceConnectorGroupResponse]
1099
+ def voice_connector_group: () -> Types::VoiceConnectorGroup
1100
+ end
1101
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#update_voice_connector_group-instance_method
1102
+ def update_voice_connector_group: (
1103
+ voice_connector_group_id: ::String,
1104
+ name: ::String,
1105
+ voice_connector_items: Array[
1106
+ {
1107
+ voice_connector_id: ::String,
1108
+ priority: ::Integer
1109
+ },
1110
+ ]
1111
+ ) -> _UpdateVoiceConnectorGroupResponseSuccess
1112
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVoiceConnectorGroupResponseSuccess
1113
+
1114
+ interface _UpdateVoiceProfileResponseSuccess
1115
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVoiceProfileResponse]
1116
+ def voice_profile: () -> Types::VoiceProfile
1117
+ end
1118
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#update_voice_profile-instance_method
1119
+ def update_voice_profile: (
1120
+ voice_profile_id: ::String,
1121
+ speaker_search_task_id: ::String
1122
+ ) -> _UpdateVoiceProfileResponseSuccess
1123
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVoiceProfileResponseSuccess
1124
+
1125
+ interface _UpdateVoiceProfileDomainResponseSuccess
1126
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVoiceProfileDomainResponse]
1127
+ def voice_profile_domain: () -> Types::VoiceProfileDomain
1128
+ end
1129
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#update_voice_profile_domain-instance_method
1130
+ def update_voice_profile_domain: (
1131
+ voice_profile_domain_id: ::String,
1132
+ ?name: ::String,
1133
+ ?description: ::String
1134
+ ) -> _UpdateVoiceProfileDomainResponseSuccess
1135
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateVoiceProfileDomainResponseSuccess
1136
+
1137
+ interface _ValidateE911AddressResponseSuccess
1138
+ include ::Seahorse::Client::_ResponseSuccess[Types::ValidateE911AddressResponse]
1139
+ def validation_result: () -> ::Integer
1140
+ def address_external_id: () -> ::String
1141
+ def address: () -> Types::Address
1142
+ def candidate_address_list: () -> ::Array[Types::CandidateAddress]
1143
+ end
1144
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#validate_e911_address-instance_method
1145
+ def validate_e911_address: (
1146
+ aws_account_id: ::String,
1147
+ street_number: ::String,
1148
+ street_info: ::String,
1149
+ city: ::String,
1150
+ state: ::String,
1151
+ country: ::String,
1152
+ postal_code: ::String
1153
+ ) -> _ValidateE911AddressResponseSuccess
1154
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ValidateE911AddressResponseSuccess
1155
+ end
1156
+ end
1157
+ end
1158
+