aws-sdk-chimesdkvoice 1.32.0 → 1.34.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkvoice/client.rb +131 -1
- data/lib/aws-sdk-chimesdkvoice/client_api.rb +84 -0
- data/lib/aws-sdk-chimesdkvoice/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-chimesdkvoice/endpoints.rb +2 -1021
- data/lib/aws-sdk-chimesdkvoice/plugins/endpoints.rb +1 -192
- data/lib/aws-sdk-chimesdkvoice/types.rb +135 -2
- data/lib/aws-sdk-chimesdkvoice.rb +1 -1
- data/sig/client.rbs +30 -1
- data/sig/types.rbs +35 -0
- metadata +4 -4
@@ -27,7 +27,7 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
27
27
|
class Handler < Seahorse::Client::Handler
|
28
28
|
def call(context)
|
29
29
|
unless context[:discovered_endpoint]
|
30
|
-
params = parameters_for_operation(context)
|
30
|
+
params = Aws::ChimeSDKVoice::Endpoints.parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
@@ -67,197 +67,6 @@ The endpoint provider used to resolve endpoints. Any object that responds to
|
|
67
67
|
context.http_request.headers[key] = value
|
68
68
|
end
|
69
69
|
end
|
70
|
-
|
71
|
-
def parameters_for_operation(context)
|
72
|
-
case context.operation_name
|
73
|
-
when :associate_phone_numbers_with_voice_connector
|
74
|
-
Aws::ChimeSDKVoice::Endpoints::AssociatePhoneNumbersWithVoiceConnector.build(context)
|
75
|
-
when :associate_phone_numbers_with_voice_connector_group
|
76
|
-
Aws::ChimeSDKVoice::Endpoints::AssociatePhoneNumbersWithVoiceConnectorGroup.build(context)
|
77
|
-
when :batch_delete_phone_number
|
78
|
-
Aws::ChimeSDKVoice::Endpoints::BatchDeletePhoneNumber.build(context)
|
79
|
-
when :batch_update_phone_number
|
80
|
-
Aws::ChimeSDKVoice::Endpoints::BatchUpdatePhoneNumber.build(context)
|
81
|
-
when :create_phone_number_order
|
82
|
-
Aws::ChimeSDKVoice::Endpoints::CreatePhoneNumberOrder.build(context)
|
83
|
-
when :create_proxy_session
|
84
|
-
Aws::ChimeSDKVoice::Endpoints::CreateProxySession.build(context)
|
85
|
-
when :create_sip_media_application
|
86
|
-
Aws::ChimeSDKVoice::Endpoints::CreateSipMediaApplication.build(context)
|
87
|
-
when :create_sip_media_application_call
|
88
|
-
Aws::ChimeSDKVoice::Endpoints::CreateSipMediaApplicationCall.build(context)
|
89
|
-
when :create_sip_rule
|
90
|
-
Aws::ChimeSDKVoice::Endpoints::CreateSipRule.build(context)
|
91
|
-
when :create_voice_connector
|
92
|
-
Aws::ChimeSDKVoice::Endpoints::CreateVoiceConnector.build(context)
|
93
|
-
when :create_voice_connector_group
|
94
|
-
Aws::ChimeSDKVoice::Endpoints::CreateVoiceConnectorGroup.build(context)
|
95
|
-
when :create_voice_profile
|
96
|
-
Aws::ChimeSDKVoice::Endpoints::CreateVoiceProfile.build(context)
|
97
|
-
when :create_voice_profile_domain
|
98
|
-
Aws::ChimeSDKVoice::Endpoints::CreateVoiceProfileDomain.build(context)
|
99
|
-
when :delete_phone_number
|
100
|
-
Aws::ChimeSDKVoice::Endpoints::DeletePhoneNumber.build(context)
|
101
|
-
when :delete_proxy_session
|
102
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteProxySession.build(context)
|
103
|
-
when :delete_sip_media_application
|
104
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteSipMediaApplication.build(context)
|
105
|
-
when :delete_sip_rule
|
106
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteSipRule.build(context)
|
107
|
-
when :delete_voice_connector
|
108
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceConnector.build(context)
|
109
|
-
when :delete_voice_connector_emergency_calling_configuration
|
110
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceConnectorEmergencyCallingConfiguration.build(context)
|
111
|
-
when :delete_voice_connector_group
|
112
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceConnectorGroup.build(context)
|
113
|
-
when :delete_voice_connector_origination
|
114
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceConnectorOrigination.build(context)
|
115
|
-
when :delete_voice_connector_proxy
|
116
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceConnectorProxy.build(context)
|
117
|
-
when :delete_voice_connector_streaming_configuration
|
118
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceConnectorStreamingConfiguration.build(context)
|
119
|
-
when :delete_voice_connector_termination
|
120
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceConnectorTermination.build(context)
|
121
|
-
when :delete_voice_connector_termination_credentials
|
122
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceConnectorTerminationCredentials.build(context)
|
123
|
-
when :delete_voice_profile
|
124
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceProfile.build(context)
|
125
|
-
when :delete_voice_profile_domain
|
126
|
-
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceProfileDomain.build(context)
|
127
|
-
when :disassociate_phone_numbers_from_voice_connector
|
128
|
-
Aws::ChimeSDKVoice::Endpoints::DisassociatePhoneNumbersFromVoiceConnector.build(context)
|
129
|
-
when :disassociate_phone_numbers_from_voice_connector_group
|
130
|
-
Aws::ChimeSDKVoice::Endpoints::DisassociatePhoneNumbersFromVoiceConnectorGroup.build(context)
|
131
|
-
when :get_global_settings
|
132
|
-
Aws::ChimeSDKVoice::Endpoints::GetGlobalSettings.build(context)
|
133
|
-
when :get_phone_number
|
134
|
-
Aws::ChimeSDKVoice::Endpoints::GetPhoneNumber.build(context)
|
135
|
-
when :get_phone_number_order
|
136
|
-
Aws::ChimeSDKVoice::Endpoints::GetPhoneNumberOrder.build(context)
|
137
|
-
when :get_phone_number_settings
|
138
|
-
Aws::ChimeSDKVoice::Endpoints::GetPhoneNumberSettings.build(context)
|
139
|
-
when :get_proxy_session
|
140
|
-
Aws::ChimeSDKVoice::Endpoints::GetProxySession.build(context)
|
141
|
-
when :get_sip_media_application
|
142
|
-
Aws::ChimeSDKVoice::Endpoints::GetSipMediaApplication.build(context)
|
143
|
-
when :get_sip_media_application_alexa_skill_configuration
|
144
|
-
Aws::ChimeSDKVoice::Endpoints::GetSipMediaApplicationAlexaSkillConfiguration.build(context)
|
145
|
-
when :get_sip_media_application_logging_configuration
|
146
|
-
Aws::ChimeSDKVoice::Endpoints::GetSipMediaApplicationLoggingConfiguration.build(context)
|
147
|
-
when :get_sip_rule
|
148
|
-
Aws::ChimeSDKVoice::Endpoints::GetSipRule.build(context)
|
149
|
-
when :get_speaker_search_task
|
150
|
-
Aws::ChimeSDKVoice::Endpoints::GetSpeakerSearchTask.build(context)
|
151
|
-
when :get_voice_connector
|
152
|
-
Aws::ChimeSDKVoice::Endpoints::GetVoiceConnector.build(context)
|
153
|
-
when :get_voice_connector_emergency_calling_configuration
|
154
|
-
Aws::ChimeSDKVoice::Endpoints::GetVoiceConnectorEmergencyCallingConfiguration.build(context)
|
155
|
-
when :get_voice_connector_group
|
156
|
-
Aws::ChimeSDKVoice::Endpoints::GetVoiceConnectorGroup.build(context)
|
157
|
-
when :get_voice_connector_logging_configuration
|
158
|
-
Aws::ChimeSDKVoice::Endpoints::GetVoiceConnectorLoggingConfiguration.build(context)
|
159
|
-
when :get_voice_connector_origination
|
160
|
-
Aws::ChimeSDKVoice::Endpoints::GetVoiceConnectorOrigination.build(context)
|
161
|
-
when :get_voice_connector_proxy
|
162
|
-
Aws::ChimeSDKVoice::Endpoints::GetVoiceConnectorProxy.build(context)
|
163
|
-
when :get_voice_connector_streaming_configuration
|
164
|
-
Aws::ChimeSDKVoice::Endpoints::GetVoiceConnectorStreamingConfiguration.build(context)
|
165
|
-
when :get_voice_connector_termination
|
166
|
-
Aws::ChimeSDKVoice::Endpoints::GetVoiceConnectorTermination.build(context)
|
167
|
-
when :get_voice_connector_termination_health
|
168
|
-
Aws::ChimeSDKVoice::Endpoints::GetVoiceConnectorTerminationHealth.build(context)
|
169
|
-
when :get_voice_profile
|
170
|
-
Aws::ChimeSDKVoice::Endpoints::GetVoiceProfile.build(context)
|
171
|
-
when :get_voice_profile_domain
|
172
|
-
Aws::ChimeSDKVoice::Endpoints::GetVoiceProfileDomain.build(context)
|
173
|
-
when :get_voice_tone_analysis_task
|
174
|
-
Aws::ChimeSDKVoice::Endpoints::GetVoiceToneAnalysisTask.build(context)
|
175
|
-
when :list_available_voice_connector_regions
|
176
|
-
Aws::ChimeSDKVoice::Endpoints::ListAvailableVoiceConnectorRegions.build(context)
|
177
|
-
when :list_phone_number_orders
|
178
|
-
Aws::ChimeSDKVoice::Endpoints::ListPhoneNumberOrders.build(context)
|
179
|
-
when :list_phone_numbers
|
180
|
-
Aws::ChimeSDKVoice::Endpoints::ListPhoneNumbers.build(context)
|
181
|
-
when :list_proxy_sessions
|
182
|
-
Aws::ChimeSDKVoice::Endpoints::ListProxySessions.build(context)
|
183
|
-
when :list_sip_media_applications
|
184
|
-
Aws::ChimeSDKVoice::Endpoints::ListSipMediaApplications.build(context)
|
185
|
-
when :list_sip_rules
|
186
|
-
Aws::ChimeSDKVoice::Endpoints::ListSipRules.build(context)
|
187
|
-
when :list_supported_phone_number_countries
|
188
|
-
Aws::ChimeSDKVoice::Endpoints::ListSupportedPhoneNumberCountries.build(context)
|
189
|
-
when :list_tags_for_resource
|
190
|
-
Aws::ChimeSDKVoice::Endpoints::ListTagsForResource.build(context)
|
191
|
-
when :list_voice_connector_groups
|
192
|
-
Aws::ChimeSDKVoice::Endpoints::ListVoiceConnectorGroups.build(context)
|
193
|
-
when :list_voice_connector_termination_credentials
|
194
|
-
Aws::ChimeSDKVoice::Endpoints::ListVoiceConnectorTerminationCredentials.build(context)
|
195
|
-
when :list_voice_connectors
|
196
|
-
Aws::ChimeSDKVoice::Endpoints::ListVoiceConnectors.build(context)
|
197
|
-
when :list_voice_profile_domains
|
198
|
-
Aws::ChimeSDKVoice::Endpoints::ListVoiceProfileDomains.build(context)
|
199
|
-
when :list_voice_profiles
|
200
|
-
Aws::ChimeSDKVoice::Endpoints::ListVoiceProfiles.build(context)
|
201
|
-
when :put_sip_media_application_alexa_skill_configuration
|
202
|
-
Aws::ChimeSDKVoice::Endpoints::PutSipMediaApplicationAlexaSkillConfiguration.build(context)
|
203
|
-
when :put_sip_media_application_logging_configuration
|
204
|
-
Aws::ChimeSDKVoice::Endpoints::PutSipMediaApplicationLoggingConfiguration.build(context)
|
205
|
-
when :put_voice_connector_emergency_calling_configuration
|
206
|
-
Aws::ChimeSDKVoice::Endpoints::PutVoiceConnectorEmergencyCallingConfiguration.build(context)
|
207
|
-
when :put_voice_connector_logging_configuration
|
208
|
-
Aws::ChimeSDKVoice::Endpoints::PutVoiceConnectorLoggingConfiguration.build(context)
|
209
|
-
when :put_voice_connector_origination
|
210
|
-
Aws::ChimeSDKVoice::Endpoints::PutVoiceConnectorOrigination.build(context)
|
211
|
-
when :put_voice_connector_proxy
|
212
|
-
Aws::ChimeSDKVoice::Endpoints::PutVoiceConnectorProxy.build(context)
|
213
|
-
when :put_voice_connector_streaming_configuration
|
214
|
-
Aws::ChimeSDKVoice::Endpoints::PutVoiceConnectorStreamingConfiguration.build(context)
|
215
|
-
when :put_voice_connector_termination
|
216
|
-
Aws::ChimeSDKVoice::Endpoints::PutVoiceConnectorTermination.build(context)
|
217
|
-
when :put_voice_connector_termination_credentials
|
218
|
-
Aws::ChimeSDKVoice::Endpoints::PutVoiceConnectorTerminationCredentials.build(context)
|
219
|
-
when :restore_phone_number
|
220
|
-
Aws::ChimeSDKVoice::Endpoints::RestorePhoneNumber.build(context)
|
221
|
-
when :search_available_phone_numbers
|
222
|
-
Aws::ChimeSDKVoice::Endpoints::SearchAvailablePhoneNumbers.build(context)
|
223
|
-
when :start_speaker_search_task
|
224
|
-
Aws::ChimeSDKVoice::Endpoints::StartSpeakerSearchTask.build(context)
|
225
|
-
when :start_voice_tone_analysis_task
|
226
|
-
Aws::ChimeSDKVoice::Endpoints::StartVoiceToneAnalysisTask.build(context)
|
227
|
-
when :stop_speaker_search_task
|
228
|
-
Aws::ChimeSDKVoice::Endpoints::StopSpeakerSearchTask.build(context)
|
229
|
-
when :stop_voice_tone_analysis_task
|
230
|
-
Aws::ChimeSDKVoice::Endpoints::StopVoiceToneAnalysisTask.build(context)
|
231
|
-
when :tag_resource
|
232
|
-
Aws::ChimeSDKVoice::Endpoints::TagResource.build(context)
|
233
|
-
when :untag_resource
|
234
|
-
Aws::ChimeSDKVoice::Endpoints::UntagResource.build(context)
|
235
|
-
when :update_global_settings
|
236
|
-
Aws::ChimeSDKVoice::Endpoints::UpdateGlobalSettings.build(context)
|
237
|
-
when :update_phone_number
|
238
|
-
Aws::ChimeSDKVoice::Endpoints::UpdatePhoneNumber.build(context)
|
239
|
-
when :update_phone_number_settings
|
240
|
-
Aws::ChimeSDKVoice::Endpoints::UpdatePhoneNumberSettings.build(context)
|
241
|
-
when :update_proxy_session
|
242
|
-
Aws::ChimeSDKVoice::Endpoints::UpdateProxySession.build(context)
|
243
|
-
when :update_sip_media_application
|
244
|
-
Aws::ChimeSDKVoice::Endpoints::UpdateSipMediaApplication.build(context)
|
245
|
-
when :update_sip_media_application_call
|
246
|
-
Aws::ChimeSDKVoice::Endpoints::UpdateSipMediaApplicationCall.build(context)
|
247
|
-
when :update_sip_rule
|
248
|
-
Aws::ChimeSDKVoice::Endpoints::UpdateSipRule.build(context)
|
249
|
-
when :update_voice_connector
|
250
|
-
Aws::ChimeSDKVoice::Endpoints::UpdateVoiceConnector.build(context)
|
251
|
-
when :update_voice_connector_group
|
252
|
-
Aws::ChimeSDKVoice::Endpoints::UpdateVoiceConnectorGroup.build(context)
|
253
|
-
when :update_voice_profile
|
254
|
-
Aws::ChimeSDKVoice::Endpoints::UpdateVoiceProfile.build(context)
|
255
|
-
when :update_voice_profile_domain
|
256
|
-
Aws::ChimeSDKVoice::Endpoints::UpdateVoiceProfileDomain.build(context)
|
257
|
-
when :validate_e911_address
|
258
|
-
Aws::ChimeSDKVoice::Endpoints::ValidateE911Address.build(context)
|
259
|
-
end
|
260
|
-
end
|
261
70
|
end
|
262
71
|
|
263
72
|
def add_handlers(handlers, _config)
|
@@ -566,13 +566,46 @@ module Aws::ChimeSDKVoice
|
|
566
566
|
# The tags assigned to the Voice Connector.
|
567
567
|
# @return [Array<Types::Tag>]
|
568
568
|
#
|
569
|
+
# @!attribute [rw] integration_type
|
570
|
+
# The connectors for use with Amazon Connect.
|
571
|
+
#
|
572
|
+
# The following options are available:
|
573
|
+
#
|
574
|
+
# * `CONNECT_CALL_TRANSFER_CONNECTOR` - Enables enterprises to
|
575
|
+
# integrate Amazon Connect with other voice systems to directly
|
576
|
+
# transfer voice calls and metadata without using the public
|
577
|
+
# telephone network. They can use Amazon Connect telephony and
|
578
|
+
# Interactive Voice Response (IVR) with their existing voice systems
|
579
|
+
# to modernize the IVR experience of their existing contact center
|
580
|
+
# and their enterprise and branch voice systems. Additionally,
|
581
|
+
# enterprises migrating their contact center to Amazon Connect can
|
582
|
+
# start with Connect telephony and IVR for immediate modernization
|
583
|
+
# ahead of agent migration.
|
584
|
+
#
|
585
|
+
# * `CONNECT_ANALYTICS_CONNECTOR` - Enables enterprises to integrate
|
586
|
+
# Amazon Connect with other voice systems for real-time and
|
587
|
+
# post-call analytics. They can use Amazon Connect Contact Lens with
|
588
|
+
# their existing voice systems to provides call recordings,
|
589
|
+
# conversational analytics (including contact transcript, sensitive
|
590
|
+
# data redaction, content categorization, theme detection, sentiment
|
591
|
+
# analysis, real-time alerts, and post-contact summary), and agent
|
592
|
+
# performance evaluations (including evaluation forms, automated
|
593
|
+
# evaluation, supervisor review) with a rich user experience to
|
594
|
+
# display, search and filter customer interactions, and programmatic
|
595
|
+
# access to data streams and the data lake. Additionally,
|
596
|
+
# enterprises migrating their contact center to Amazon Connect can
|
597
|
+
# start with Contact Lens analytics and performance insights ahead
|
598
|
+
# of agent migration.
|
599
|
+
# @return [String]
|
600
|
+
#
|
569
601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/CreateVoiceConnectorRequest AWS API Documentation
|
570
602
|
#
|
571
603
|
class CreateVoiceConnectorRequest < Struct.new(
|
572
604
|
:name,
|
573
605
|
:aws_region,
|
574
606
|
:require_encryption,
|
575
|
-
:tags
|
607
|
+
:tags,
|
608
|
+
:integration_type)
|
576
609
|
SENSITIVE = []
|
577
610
|
include Aws::Structure
|
578
611
|
end
|
@@ -774,6 +807,19 @@ module Aws::ChimeSDKVoice
|
|
774
807
|
include Aws::Structure
|
775
808
|
end
|
776
809
|
|
810
|
+
# @!attribute [rw] voice_connector_id
|
811
|
+
# The ID of the Voice Connector for which to delete the external
|
812
|
+
# system configuration.
|
813
|
+
# @return [String]
|
814
|
+
#
|
815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/DeleteVoiceConnectorExternalSystemsConfigurationRequest AWS API Documentation
|
816
|
+
#
|
817
|
+
class DeleteVoiceConnectorExternalSystemsConfigurationRequest < Struct.new(
|
818
|
+
:voice_connector_id)
|
819
|
+
SENSITIVE = []
|
820
|
+
include Aws::Structure
|
821
|
+
end
|
822
|
+
|
777
823
|
# @!attribute [rw] voice_connector_group_id
|
778
824
|
# The Voice Connector Group ID.
|
779
825
|
# @return [String]
|
@@ -966,6 +1012,26 @@ module Aws::ChimeSDKVoice
|
|
966
1012
|
include Aws::Structure
|
967
1013
|
end
|
968
1014
|
|
1015
|
+
# Contains information about an external systems configuration for a
|
1016
|
+
# Voice Connector.
|
1017
|
+
#
|
1018
|
+
# @!attribute [rw] session_border_controller_types
|
1019
|
+
# The session border controllers.
|
1020
|
+
# @return [Array<String>]
|
1021
|
+
#
|
1022
|
+
# @!attribute [rw] contact_center_system_types
|
1023
|
+
# The contact center system.
|
1024
|
+
# @return [Array<String>]
|
1025
|
+
#
|
1026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ExternalSystemsConfiguration AWS API Documentation
|
1027
|
+
#
|
1028
|
+
class ExternalSystemsConfiguration < Struct.new(
|
1029
|
+
:session_border_controller_types,
|
1030
|
+
:contact_center_system_types)
|
1031
|
+
SENSITIVE = []
|
1032
|
+
include Aws::Structure
|
1033
|
+
end
|
1034
|
+
|
969
1035
|
# The client is permanently forbidden from making the request.
|
970
1036
|
#
|
971
1037
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/ForbiddenException AWS API Documentation
|
@@ -1247,6 +1313,32 @@ module Aws::ChimeSDKVoice
|
|
1247
1313
|
include Aws::Structure
|
1248
1314
|
end
|
1249
1315
|
|
1316
|
+
# @!attribute [rw] voice_connector_id
|
1317
|
+
# The ID of the Voice Connector for which to return information about
|
1318
|
+
# the external system configuration.
|
1319
|
+
# @return [String]
|
1320
|
+
#
|
1321
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorExternalSystemsConfigurationRequest AWS API Documentation
|
1322
|
+
#
|
1323
|
+
class GetVoiceConnectorExternalSystemsConfigurationRequest < Struct.new(
|
1324
|
+
:voice_connector_id)
|
1325
|
+
SENSITIVE = []
|
1326
|
+
include Aws::Structure
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
# @!attribute [rw] external_systems_configuration
|
1330
|
+
# An object that contains information about an external systems
|
1331
|
+
# configuration for a Voice Connector.
|
1332
|
+
# @return [Types::ExternalSystemsConfiguration]
|
1333
|
+
#
|
1334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/GetVoiceConnectorExternalSystemsConfigurationResponse AWS API Documentation
|
1335
|
+
#
|
1336
|
+
class GetVoiceConnectorExternalSystemsConfigurationResponse < Struct.new(
|
1337
|
+
:external_systems_configuration)
|
1338
|
+
SENSITIVE = []
|
1339
|
+
include Aws::Structure
|
1340
|
+
end
|
1341
|
+
|
1250
1342
|
# @!attribute [rw] voice_connector_group_id
|
1251
1343
|
# The Voice Connector group ID.
|
1252
1344
|
# @return [String]
|
@@ -2558,6 +2650,42 @@ module Aws::ChimeSDKVoice
|
|
2558
2650
|
include Aws::Structure
|
2559
2651
|
end
|
2560
2652
|
|
2653
|
+
# @!attribute [rw] voice_connector_id
|
2654
|
+
# The ID of the Voice Connector for which to add the external system
|
2655
|
+
# configuration.
|
2656
|
+
# @return [String]
|
2657
|
+
#
|
2658
|
+
# @!attribute [rw] session_border_controller_types
|
2659
|
+
# The session border controllers to use.
|
2660
|
+
# @return [Array<String>]
|
2661
|
+
#
|
2662
|
+
# @!attribute [rw] contact_center_system_types
|
2663
|
+
# The contact center system to use.
|
2664
|
+
# @return [Array<String>]
|
2665
|
+
#
|
2666
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorExternalSystemsConfigurationRequest AWS API Documentation
|
2667
|
+
#
|
2668
|
+
class PutVoiceConnectorExternalSystemsConfigurationRequest < Struct.new(
|
2669
|
+
:voice_connector_id,
|
2670
|
+
:session_border_controller_types,
|
2671
|
+
:contact_center_system_types)
|
2672
|
+
SENSITIVE = []
|
2673
|
+
include Aws::Structure
|
2674
|
+
end
|
2675
|
+
|
2676
|
+
# @!attribute [rw] external_systems_configuration
|
2677
|
+
# An object that contains information about an external systems
|
2678
|
+
# configuration for a Voice Connector.
|
2679
|
+
# @return [Types::ExternalSystemsConfiguration]
|
2680
|
+
#
|
2681
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/PutVoiceConnectorExternalSystemsConfigurationResponse AWS API Documentation
|
2682
|
+
#
|
2683
|
+
class PutVoiceConnectorExternalSystemsConfigurationResponse < Struct.new(
|
2684
|
+
:external_systems_configuration)
|
2685
|
+
SENSITIVE = []
|
2686
|
+
include Aws::Structure
|
2687
|
+
end
|
2688
|
+
|
2561
2689
|
# @!attribute [rw] voice_connector_id
|
2562
2690
|
# The Voice Connector ID.
|
2563
2691
|
# @return [String]
|
@@ -3947,6 +4075,10 @@ module Aws::ChimeSDKVoice
|
|
3947
4075
|
# The ARN of the Voice Connector.
|
3948
4076
|
# @return [String]
|
3949
4077
|
#
|
4078
|
+
# @!attribute [rw] integration_type
|
4079
|
+
# The connectors for use with Amazon Connect.
|
4080
|
+
# @return [String]
|
4081
|
+
#
|
3950
4082
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-voice-2022-08-03/VoiceConnector AWS API Documentation
|
3951
4083
|
#
|
3952
4084
|
class VoiceConnector < Struct.new(
|
@@ -3957,7 +4089,8 @@ module Aws::ChimeSDKVoice
|
|
3957
4089
|
:require_encryption,
|
3958
4090
|
:created_timestamp,
|
3959
4091
|
:updated_timestamp,
|
3960
|
-
:voice_connector_arn
|
4092
|
+
:voice_connector_arn,
|
4093
|
+
:integration_type)
|
3961
4094
|
SENSITIVE = []
|
3962
4095
|
include Aws::Structure
|
3963
4096
|
end
|
data/sig/client.rbs
CHANGED
@@ -228,7 +228,8 @@ module Aws
|
|
228
228
|
key: ::String,
|
229
229
|
value: ::String
|
230
230
|
},
|
231
|
-
]
|
231
|
+
],
|
232
|
+
?integration_type: ("CONNECT_CALL_TRANSFER_CONNECTOR" | "CONNECT_ANALYTICS_CONNECTOR")
|
232
233
|
) -> _CreateVoiceConnectorResponseSuccess
|
233
234
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVoiceConnectorResponseSuccess
|
234
235
|
|
@@ -316,6 +317,12 @@ module Aws
|
|
316
317
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
317
318
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
318
319
|
|
320
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_connector_external_systems_configuration-instance_method
|
321
|
+
def delete_voice_connector_external_systems_configuration: (
|
322
|
+
voice_connector_id: ::String
|
323
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
324
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
325
|
+
|
319
326
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#delete_voice_connector_group-instance_method
|
320
327
|
def delete_voice_connector_group: (
|
321
328
|
voice_connector_group_id: ::String
|
@@ -506,6 +513,16 @@ module Aws
|
|
506
513
|
) -> _GetVoiceConnectorEmergencyCallingConfigurationResponseSuccess
|
507
514
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorEmergencyCallingConfigurationResponseSuccess
|
508
515
|
|
516
|
+
interface _GetVoiceConnectorExternalSystemsConfigurationResponseSuccess
|
517
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorExternalSystemsConfigurationResponse]
|
518
|
+
def external_systems_configuration: () -> Types::ExternalSystemsConfiguration
|
519
|
+
end
|
520
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#get_voice_connector_external_systems_configuration-instance_method
|
521
|
+
def get_voice_connector_external_systems_configuration: (
|
522
|
+
voice_connector_id: ::String
|
523
|
+
) -> _GetVoiceConnectorExternalSystemsConfigurationResponseSuccess
|
524
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVoiceConnectorExternalSystemsConfigurationResponseSuccess
|
525
|
+
|
509
526
|
interface _GetVoiceConnectorGroupResponseSuccess
|
510
527
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetVoiceConnectorGroupResponse]
|
511
528
|
def voice_connector_group: () -> Types::VoiceConnectorGroup
|
@@ -808,6 +825,18 @@ module Aws
|
|
808
825
|
) -> _PutVoiceConnectorEmergencyCallingConfigurationResponseSuccess
|
809
826
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutVoiceConnectorEmergencyCallingConfigurationResponseSuccess
|
810
827
|
|
828
|
+
interface _PutVoiceConnectorExternalSystemsConfigurationResponseSuccess
|
829
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutVoiceConnectorExternalSystemsConfigurationResponse]
|
830
|
+
def external_systems_configuration: () -> Types::ExternalSystemsConfiguration
|
831
|
+
end
|
832
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKVoice/Client.html#put_voice_connector_external_systems_configuration-instance_method
|
833
|
+
def put_voice_connector_external_systems_configuration: (
|
834
|
+
voice_connector_id: ::String,
|
835
|
+
?session_border_controller_types: Array[("RIBBON_SBC" | "ORACLE_ACME_PACKET_SBC" | "AVAYA_SBCE" | "CISCO_UNIFIED_BORDER_ELEMENT" | "AUDIOCODES_MEDIANT_SBC")],
|
836
|
+
?contact_center_system_types: Array[("GENESYS_ENGAGE_ON_PREMISES" | "AVAYA_AURA_CALL_CENTER_ELITE" | "AVAYA_AURA_CONTACT_CENTER" | "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE")]
|
837
|
+
) -> _PutVoiceConnectorExternalSystemsConfigurationResponseSuccess
|
838
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutVoiceConnectorExternalSystemsConfigurationResponseSuccess
|
839
|
+
|
811
840
|
interface _PutVoiceConnectorLoggingConfigurationResponseSuccess
|
812
841
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutVoiceConnectorLoggingConfigurationResponse]
|
813
842
|
def logging_configuration: () -> Types::LoggingConfiguration
|
data/sig/types.rbs
CHANGED
@@ -179,6 +179,7 @@ module Aws::ChimeSDKVoice
|
|
179
179
|
attr_accessor 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")
|
180
180
|
attr_accessor require_encryption: bool
|
181
181
|
attr_accessor tags: ::Array[Types::Tag]
|
182
|
+
attr_accessor integration_type: ("CONNECT_CALL_TRANSFER_CONNECTOR" | "CONNECT_ANALYTICS_CONNECTOR")
|
182
183
|
SENSITIVE: []
|
183
184
|
end
|
184
185
|
|
@@ -250,6 +251,11 @@ module Aws::ChimeSDKVoice
|
|
250
251
|
SENSITIVE: []
|
251
252
|
end
|
252
253
|
|
254
|
+
class DeleteVoiceConnectorExternalSystemsConfigurationRequest
|
255
|
+
attr_accessor voice_connector_id: ::String
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
253
259
|
class DeleteVoiceConnectorGroupRequest
|
254
260
|
attr_accessor voice_connector_group_id: ::String
|
255
261
|
SENSITIVE: []
|
@@ -323,6 +329,12 @@ module Aws::ChimeSDKVoice
|
|
323
329
|
SENSITIVE: []
|
324
330
|
end
|
325
331
|
|
332
|
+
class ExternalSystemsConfiguration
|
333
|
+
attr_accessor session_border_controller_types: ::Array[("RIBBON_SBC" | "ORACLE_ACME_PACKET_SBC" | "AVAYA_SBCE" | "CISCO_UNIFIED_BORDER_ELEMENT" | "AUDIOCODES_MEDIANT_SBC")]
|
334
|
+
attr_accessor contact_center_system_types: ::Array[("GENESYS_ENGAGE_ON_PREMISES" | "AVAYA_AURA_CALL_CENTER_ELITE" | "AVAYA_AURA_CONTACT_CENTER" | "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE")]
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
326
338
|
class ForbiddenException < Aws::EmptyStructure
|
327
339
|
end
|
328
340
|
|
@@ -435,6 +447,16 @@ module Aws::ChimeSDKVoice
|
|
435
447
|
SENSITIVE: []
|
436
448
|
end
|
437
449
|
|
450
|
+
class GetVoiceConnectorExternalSystemsConfigurationRequest
|
451
|
+
attr_accessor voice_connector_id: ::String
|
452
|
+
SENSITIVE: []
|
453
|
+
end
|
454
|
+
|
455
|
+
class GetVoiceConnectorExternalSystemsConfigurationResponse
|
456
|
+
attr_accessor external_systems_configuration: Types::ExternalSystemsConfiguration
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
438
460
|
class GetVoiceConnectorGroupRequest
|
439
461
|
attr_accessor voice_connector_group_id: ::String
|
440
462
|
SENSITIVE: []
|
@@ -861,6 +883,18 @@ module Aws::ChimeSDKVoice
|
|
861
883
|
SENSITIVE: []
|
862
884
|
end
|
863
885
|
|
886
|
+
class PutVoiceConnectorExternalSystemsConfigurationRequest
|
887
|
+
attr_accessor voice_connector_id: ::String
|
888
|
+
attr_accessor session_border_controller_types: ::Array[("RIBBON_SBC" | "ORACLE_ACME_PACKET_SBC" | "AVAYA_SBCE" | "CISCO_UNIFIED_BORDER_ELEMENT" | "AUDIOCODES_MEDIANT_SBC")]
|
889
|
+
attr_accessor contact_center_system_types: ::Array[("GENESYS_ENGAGE_ON_PREMISES" | "AVAYA_AURA_CALL_CENTER_ELITE" | "AVAYA_AURA_CONTACT_CENTER" | "CISCO_UNIFIED_CONTACT_CENTER_ENTERPRISE")]
|
890
|
+
SENSITIVE: []
|
891
|
+
end
|
892
|
+
|
893
|
+
class PutVoiceConnectorExternalSystemsConfigurationResponse
|
894
|
+
attr_accessor external_systems_configuration: Types::ExternalSystemsConfiguration
|
895
|
+
SENSITIVE: []
|
896
|
+
end
|
897
|
+
|
864
898
|
class PutVoiceConnectorLoggingConfigurationRequest
|
865
899
|
attr_accessor voice_connector_id: ::String
|
866
900
|
attr_accessor logging_configuration: Types::LoggingConfiguration
|
@@ -1292,6 +1326,7 @@ module Aws::ChimeSDKVoice
|
|
1292
1326
|
attr_accessor created_timestamp: ::Time
|
1293
1327
|
attr_accessor updated_timestamp: ::Time
|
1294
1328
|
attr_accessor voice_connector_arn: ::String
|
1329
|
+
attr_accessor integration_type: ("CONNECT_CALL_TRANSFER_CONNECTOR" | "CONNECT_ANALYTICS_CONNECTOR")
|
1295
1330
|
SENSITIVE: []
|
1296
1331
|
end
|
1297
1332
|
|
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.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: 2024-
|
11
|
+
date: 2024-12-02 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.210.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.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|