aws-sdk-chimesdkvoice 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkvoice/client.rb +624 -1
- data/lib/aws-sdk-chimesdkvoice/client_api.rb +603 -0
- data/lib/aws-sdk-chimesdkvoice/endpoints.rb +266 -0
- data/lib/aws-sdk-chimesdkvoice/errors.rb +22 -0
- data/lib/aws-sdk-chimesdkvoice/plugins/endpoints.rb +38 -0
- data/lib/aws-sdk-chimesdkvoice/types.rb +757 -1
- data/lib/aws-sdk-chimesdkvoice.rb +1 -1
- metadata +2 -2
@@ -165,6 +165,34 @@ module Aws::ChimeSDKVoice
|
|
165
165
|
end
|
166
166
|
end
|
167
167
|
|
168
|
+
class CreateVoiceProfile
|
169
|
+
def self.build(context)
|
170
|
+
unless context.config.regional_endpoint
|
171
|
+
endpoint = context.config.endpoint.to_s
|
172
|
+
end
|
173
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
174
|
+
region: context.config.region,
|
175
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
176
|
+
use_fips: context.config.use_fips_endpoint,
|
177
|
+
endpoint: endpoint,
|
178
|
+
)
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
class CreateVoiceProfileDomain
|
183
|
+
def self.build(context)
|
184
|
+
unless context.config.regional_endpoint
|
185
|
+
endpoint = context.config.endpoint.to_s
|
186
|
+
end
|
187
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
188
|
+
region: context.config.region,
|
189
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
190
|
+
use_fips: context.config.use_fips_endpoint,
|
191
|
+
endpoint: endpoint,
|
192
|
+
)
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
168
196
|
class DeletePhoneNumber
|
169
197
|
def self.build(context)
|
170
198
|
unless context.config.regional_endpoint
|
@@ -333,6 +361,34 @@ module Aws::ChimeSDKVoice
|
|
333
361
|
end
|
334
362
|
end
|
335
363
|
|
364
|
+
class DeleteVoiceProfile
|
365
|
+
def self.build(context)
|
366
|
+
unless context.config.regional_endpoint
|
367
|
+
endpoint = context.config.endpoint.to_s
|
368
|
+
end
|
369
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
370
|
+
region: context.config.region,
|
371
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
372
|
+
use_fips: context.config.use_fips_endpoint,
|
373
|
+
endpoint: endpoint,
|
374
|
+
)
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
378
|
+
class DeleteVoiceProfileDomain
|
379
|
+
def self.build(context)
|
380
|
+
unless context.config.regional_endpoint
|
381
|
+
endpoint = context.config.endpoint.to_s
|
382
|
+
end
|
383
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
384
|
+
region: context.config.region,
|
385
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
386
|
+
use_fips: context.config.use_fips_endpoint,
|
387
|
+
endpoint: endpoint,
|
388
|
+
)
|
389
|
+
end
|
390
|
+
end
|
391
|
+
|
336
392
|
class DisassociatePhoneNumbersFromVoiceConnector
|
337
393
|
def self.build(context)
|
338
394
|
unless context.config.regional_endpoint
|
@@ -487,6 +543,20 @@ module Aws::ChimeSDKVoice
|
|
487
543
|
end
|
488
544
|
end
|
489
545
|
|
546
|
+
class GetSpeakerSearchTask
|
547
|
+
def self.build(context)
|
548
|
+
unless context.config.regional_endpoint
|
549
|
+
endpoint = context.config.endpoint.to_s
|
550
|
+
end
|
551
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
552
|
+
region: context.config.region,
|
553
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
554
|
+
use_fips: context.config.use_fips_endpoint,
|
555
|
+
endpoint: endpoint,
|
556
|
+
)
|
557
|
+
end
|
558
|
+
end
|
559
|
+
|
490
560
|
class GetVoiceConnector
|
491
561
|
def self.build(context)
|
492
562
|
unless context.config.regional_endpoint
|
@@ -613,6 +683,48 @@ module Aws::ChimeSDKVoice
|
|
613
683
|
end
|
614
684
|
end
|
615
685
|
|
686
|
+
class GetVoiceProfile
|
687
|
+
def self.build(context)
|
688
|
+
unless context.config.regional_endpoint
|
689
|
+
endpoint = context.config.endpoint.to_s
|
690
|
+
end
|
691
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
692
|
+
region: context.config.region,
|
693
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
694
|
+
use_fips: context.config.use_fips_endpoint,
|
695
|
+
endpoint: endpoint,
|
696
|
+
)
|
697
|
+
end
|
698
|
+
end
|
699
|
+
|
700
|
+
class GetVoiceProfileDomain
|
701
|
+
def self.build(context)
|
702
|
+
unless context.config.regional_endpoint
|
703
|
+
endpoint = context.config.endpoint.to_s
|
704
|
+
end
|
705
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
706
|
+
region: context.config.region,
|
707
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
708
|
+
use_fips: context.config.use_fips_endpoint,
|
709
|
+
endpoint: endpoint,
|
710
|
+
)
|
711
|
+
end
|
712
|
+
end
|
713
|
+
|
714
|
+
class GetVoiceToneAnalysisTask
|
715
|
+
def self.build(context)
|
716
|
+
unless context.config.regional_endpoint
|
717
|
+
endpoint = context.config.endpoint.to_s
|
718
|
+
end
|
719
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
720
|
+
region: context.config.region,
|
721
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
722
|
+
use_fips: context.config.use_fips_endpoint,
|
723
|
+
endpoint: endpoint,
|
724
|
+
)
|
725
|
+
end
|
726
|
+
end
|
727
|
+
|
616
728
|
class ListAvailableVoiceConnectorRegions
|
617
729
|
def self.build(context)
|
618
730
|
unless context.config.regional_endpoint
|
@@ -711,6 +823,20 @@ module Aws::ChimeSDKVoice
|
|
711
823
|
end
|
712
824
|
end
|
713
825
|
|
826
|
+
class ListTagsForResource
|
827
|
+
def self.build(context)
|
828
|
+
unless context.config.regional_endpoint
|
829
|
+
endpoint = context.config.endpoint.to_s
|
830
|
+
end
|
831
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
832
|
+
region: context.config.region,
|
833
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
834
|
+
use_fips: context.config.use_fips_endpoint,
|
835
|
+
endpoint: endpoint,
|
836
|
+
)
|
837
|
+
end
|
838
|
+
end
|
839
|
+
|
714
840
|
class ListVoiceConnectorGroups
|
715
841
|
def self.build(context)
|
716
842
|
unless context.config.regional_endpoint
|
@@ -753,6 +879,34 @@ module Aws::ChimeSDKVoice
|
|
753
879
|
end
|
754
880
|
end
|
755
881
|
|
882
|
+
class ListVoiceProfileDomains
|
883
|
+
def self.build(context)
|
884
|
+
unless context.config.regional_endpoint
|
885
|
+
endpoint = context.config.endpoint.to_s
|
886
|
+
end
|
887
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
888
|
+
region: context.config.region,
|
889
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
890
|
+
use_fips: context.config.use_fips_endpoint,
|
891
|
+
endpoint: endpoint,
|
892
|
+
)
|
893
|
+
end
|
894
|
+
end
|
895
|
+
|
896
|
+
class ListVoiceProfiles
|
897
|
+
def self.build(context)
|
898
|
+
unless context.config.regional_endpoint
|
899
|
+
endpoint = context.config.endpoint.to_s
|
900
|
+
end
|
901
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
902
|
+
region: context.config.region,
|
903
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
904
|
+
use_fips: context.config.use_fips_endpoint,
|
905
|
+
endpoint: endpoint,
|
906
|
+
)
|
907
|
+
end
|
908
|
+
end
|
909
|
+
|
756
910
|
class PutSipMediaApplicationAlexaSkillConfiguration
|
757
911
|
def self.build(context)
|
758
912
|
unless context.config.regional_endpoint
|
@@ -907,6 +1061,90 @@ module Aws::ChimeSDKVoice
|
|
907
1061
|
end
|
908
1062
|
end
|
909
1063
|
|
1064
|
+
class StartSpeakerSearchTask
|
1065
|
+
def self.build(context)
|
1066
|
+
unless context.config.regional_endpoint
|
1067
|
+
endpoint = context.config.endpoint.to_s
|
1068
|
+
end
|
1069
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
1070
|
+
region: context.config.region,
|
1071
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1072
|
+
use_fips: context.config.use_fips_endpoint,
|
1073
|
+
endpoint: endpoint,
|
1074
|
+
)
|
1075
|
+
end
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class StartVoiceToneAnalysisTask
|
1079
|
+
def self.build(context)
|
1080
|
+
unless context.config.regional_endpoint
|
1081
|
+
endpoint = context.config.endpoint.to_s
|
1082
|
+
end
|
1083
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
1084
|
+
region: context.config.region,
|
1085
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1086
|
+
use_fips: context.config.use_fips_endpoint,
|
1087
|
+
endpoint: endpoint,
|
1088
|
+
)
|
1089
|
+
end
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
class StopSpeakerSearchTask
|
1093
|
+
def self.build(context)
|
1094
|
+
unless context.config.regional_endpoint
|
1095
|
+
endpoint = context.config.endpoint.to_s
|
1096
|
+
end
|
1097
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
1098
|
+
region: context.config.region,
|
1099
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1100
|
+
use_fips: context.config.use_fips_endpoint,
|
1101
|
+
endpoint: endpoint,
|
1102
|
+
)
|
1103
|
+
end
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
class StopVoiceToneAnalysisTask
|
1107
|
+
def self.build(context)
|
1108
|
+
unless context.config.regional_endpoint
|
1109
|
+
endpoint = context.config.endpoint.to_s
|
1110
|
+
end
|
1111
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
1112
|
+
region: context.config.region,
|
1113
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1114
|
+
use_fips: context.config.use_fips_endpoint,
|
1115
|
+
endpoint: endpoint,
|
1116
|
+
)
|
1117
|
+
end
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class TagResource
|
1121
|
+
def self.build(context)
|
1122
|
+
unless context.config.regional_endpoint
|
1123
|
+
endpoint = context.config.endpoint.to_s
|
1124
|
+
end
|
1125
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
1126
|
+
region: context.config.region,
|
1127
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1128
|
+
use_fips: context.config.use_fips_endpoint,
|
1129
|
+
endpoint: endpoint,
|
1130
|
+
)
|
1131
|
+
end
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
class UntagResource
|
1135
|
+
def self.build(context)
|
1136
|
+
unless context.config.regional_endpoint
|
1137
|
+
endpoint = context.config.endpoint.to_s
|
1138
|
+
end
|
1139
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
1140
|
+
region: context.config.region,
|
1141
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1142
|
+
use_fips: context.config.use_fips_endpoint,
|
1143
|
+
endpoint: endpoint,
|
1144
|
+
)
|
1145
|
+
end
|
1146
|
+
end
|
1147
|
+
|
910
1148
|
class UpdateGlobalSettings
|
911
1149
|
def self.build(context)
|
912
1150
|
unless context.config.regional_endpoint
|
@@ -1033,6 +1271,34 @@ module Aws::ChimeSDKVoice
|
|
1033
1271
|
end
|
1034
1272
|
end
|
1035
1273
|
|
1274
|
+
class UpdateVoiceProfile
|
1275
|
+
def self.build(context)
|
1276
|
+
unless context.config.regional_endpoint
|
1277
|
+
endpoint = context.config.endpoint.to_s
|
1278
|
+
end
|
1279
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
1280
|
+
region: context.config.region,
|
1281
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1282
|
+
use_fips: context.config.use_fips_endpoint,
|
1283
|
+
endpoint: endpoint,
|
1284
|
+
)
|
1285
|
+
end
|
1286
|
+
end
|
1287
|
+
|
1288
|
+
class UpdateVoiceProfileDomain
|
1289
|
+
def self.build(context)
|
1290
|
+
unless context.config.regional_endpoint
|
1291
|
+
endpoint = context.config.endpoint.to_s
|
1292
|
+
end
|
1293
|
+
Aws::ChimeSDKVoice::EndpointParameters.new(
|
1294
|
+
region: context.config.region,
|
1295
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1296
|
+
use_fips: context.config.use_fips_endpoint,
|
1297
|
+
endpoint: endpoint,
|
1298
|
+
)
|
1299
|
+
end
|
1300
|
+
end
|
1301
|
+
|
1036
1302
|
class ValidateE911Address
|
1037
1303
|
def self.build(context)
|
1038
1304
|
unless context.config.regional_endpoint
|
@@ -31,12 +31,14 @@ module Aws::ChimeSDKVoice
|
|
31
31
|
# * {BadRequestException}
|
32
32
|
# * {ConflictException}
|
33
33
|
# * {ForbiddenException}
|
34
|
+
# * {GoneException}
|
34
35
|
# * {NotFoundException}
|
35
36
|
# * {ResourceLimitExceededException}
|
36
37
|
# * {ServiceFailureException}
|
37
38
|
# * {ServiceUnavailableException}
|
38
39
|
# * {ThrottledClientException}
|
39
40
|
# * {UnauthorizedClientException}
|
41
|
+
# * {UnprocessableEntityException}
|
40
42
|
#
|
41
43
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
42
44
|
# if they are not defined above.
|
@@ -84,6 +86,16 @@ module Aws::ChimeSDKVoice
|
|
84
86
|
end
|
85
87
|
end
|
86
88
|
|
89
|
+
class GoneException < ServiceError
|
90
|
+
|
91
|
+
# @param [Seahorse::Client::RequestContext] context
|
92
|
+
# @param [String] message
|
93
|
+
# @param [Aws::ChimeSDKVoice::Types::GoneException] data
|
94
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
95
|
+
super(context, message, data)
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
87
99
|
class NotFoundException < ServiceError
|
88
100
|
|
89
101
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -144,5 +156,15 @@ module Aws::ChimeSDKVoice
|
|
144
156
|
end
|
145
157
|
end
|
146
158
|
|
159
|
+
class UnprocessableEntityException < ServiceError
|
160
|
+
|
161
|
+
# @param [Seahorse::Client::RequestContext] context
|
162
|
+
# @param [String] message
|
163
|
+
# @param [Aws::ChimeSDKVoice::Types::UnprocessableEntityException] data
|
164
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
165
|
+
super(context, message, data)
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
147
169
|
end
|
148
170
|
end
|
@@ -78,6 +78,10 @@ module Aws::ChimeSDKVoice
|
|
78
78
|
Aws::ChimeSDKVoice::Endpoints::CreateVoiceConnector.build(context)
|
79
79
|
when :create_voice_connector_group
|
80
80
|
Aws::ChimeSDKVoice::Endpoints::CreateVoiceConnectorGroup.build(context)
|
81
|
+
when :create_voice_profile
|
82
|
+
Aws::ChimeSDKVoice::Endpoints::CreateVoiceProfile.build(context)
|
83
|
+
when :create_voice_profile_domain
|
84
|
+
Aws::ChimeSDKVoice::Endpoints::CreateVoiceProfileDomain.build(context)
|
81
85
|
when :delete_phone_number
|
82
86
|
Aws::ChimeSDKVoice::Endpoints::DeletePhoneNumber.build(context)
|
83
87
|
when :delete_proxy_session
|
@@ -102,6 +106,10 @@ module Aws::ChimeSDKVoice
|
|
102
106
|
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceConnectorTermination.build(context)
|
103
107
|
when :delete_voice_connector_termination_credentials
|
104
108
|
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceConnectorTerminationCredentials.build(context)
|
109
|
+
when :delete_voice_profile
|
110
|
+
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceProfile.build(context)
|
111
|
+
when :delete_voice_profile_domain
|
112
|
+
Aws::ChimeSDKVoice::Endpoints::DeleteVoiceProfileDomain.build(context)
|
105
113
|
when :disassociate_phone_numbers_from_voice_connector
|
106
114
|
Aws::ChimeSDKVoice::Endpoints::DisassociatePhoneNumbersFromVoiceConnector.build(context)
|
107
115
|
when :disassociate_phone_numbers_from_voice_connector_group
|
@@ -124,6 +132,8 @@ module Aws::ChimeSDKVoice
|
|
124
132
|
Aws::ChimeSDKVoice::Endpoints::GetSipMediaApplicationLoggingConfiguration.build(context)
|
125
133
|
when :get_sip_rule
|
126
134
|
Aws::ChimeSDKVoice::Endpoints::GetSipRule.build(context)
|
135
|
+
when :get_speaker_search_task
|
136
|
+
Aws::ChimeSDKVoice::Endpoints::GetSpeakerSearchTask.build(context)
|
127
137
|
when :get_voice_connector
|
128
138
|
Aws::ChimeSDKVoice::Endpoints::GetVoiceConnector.build(context)
|
129
139
|
when :get_voice_connector_emergency_calling_configuration
|
@@ -142,6 +152,12 @@ module Aws::ChimeSDKVoice
|
|
142
152
|
Aws::ChimeSDKVoice::Endpoints::GetVoiceConnectorTermination.build(context)
|
143
153
|
when :get_voice_connector_termination_health
|
144
154
|
Aws::ChimeSDKVoice::Endpoints::GetVoiceConnectorTerminationHealth.build(context)
|
155
|
+
when :get_voice_profile
|
156
|
+
Aws::ChimeSDKVoice::Endpoints::GetVoiceProfile.build(context)
|
157
|
+
when :get_voice_profile_domain
|
158
|
+
Aws::ChimeSDKVoice::Endpoints::GetVoiceProfileDomain.build(context)
|
159
|
+
when :get_voice_tone_analysis_task
|
160
|
+
Aws::ChimeSDKVoice::Endpoints::GetVoiceToneAnalysisTask.build(context)
|
145
161
|
when :list_available_voice_connector_regions
|
146
162
|
Aws::ChimeSDKVoice::Endpoints::ListAvailableVoiceConnectorRegions.build(context)
|
147
163
|
when :list_phone_number_orders
|
@@ -156,12 +172,18 @@ module Aws::ChimeSDKVoice
|
|
156
172
|
Aws::ChimeSDKVoice::Endpoints::ListSipRules.build(context)
|
157
173
|
when :list_supported_phone_number_countries
|
158
174
|
Aws::ChimeSDKVoice::Endpoints::ListSupportedPhoneNumberCountries.build(context)
|
175
|
+
when :list_tags_for_resource
|
176
|
+
Aws::ChimeSDKVoice::Endpoints::ListTagsForResource.build(context)
|
159
177
|
when :list_voice_connector_groups
|
160
178
|
Aws::ChimeSDKVoice::Endpoints::ListVoiceConnectorGroups.build(context)
|
161
179
|
when :list_voice_connector_termination_credentials
|
162
180
|
Aws::ChimeSDKVoice::Endpoints::ListVoiceConnectorTerminationCredentials.build(context)
|
163
181
|
when :list_voice_connectors
|
164
182
|
Aws::ChimeSDKVoice::Endpoints::ListVoiceConnectors.build(context)
|
183
|
+
when :list_voice_profile_domains
|
184
|
+
Aws::ChimeSDKVoice::Endpoints::ListVoiceProfileDomains.build(context)
|
185
|
+
when :list_voice_profiles
|
186
|
+
Aws::ChimeSDKVoice::Endpoints::ListVoiceProfiles.build(context)
|
165
187
|
when :put_sip_media_application_alexa_skill_configuration
|
166
188
|
Aws::ChimeSDKVoice::Endpoints::PutSipMediaApplicationAlexaSkillConfiguration.build(context)
|
167
189
|
when :put_sip_media_application_logging_configuration
|
@@ -184,6 +206,18 @@ module Aws::ChimeSDKVoice
|
|
184
206
|
Aws::ChimeSDKVoice::Endpoints::RestorePhoneNumber.build(context)
|
185
207
|
when :search_available_phone_numbers
|
186
208
|
Aws::ChimeSDKVoice::Endpoints::SearchAvailablePhoneNumbers.build(context)
|
209
|
+
when :start_speaker_search_task
|
210
|
+
Aws::ChimeSDKVoice::Endpoints::StartSpeakerSearchTask.build(context)
|
211
|
+
when :start_voice_tone_analysis_task
|
212
|
+
Aws::ChimeSDKVoice::Endpoints::StartVoiceToneAnalysisTask.build(context)
|
213
|
+
when :stop_speaker_search_task
|
214
|
+
Aws::ChimeSDKVoice::Endpoints::StopSpeakerSearchTask.build(context)
|
215
|
+
when :stop_voice_tone_analysis_task
|
216
|
+
Aws::ChimeSDKVoice::Endpoints::StopVoiceToneAnalysisTask.build(context)
|
217
|
+
when :tag_resource
|
218
|
+
Aws::ChimeSDKVoice::Endpoints::TagResource.build(context)
|
219
|
+
when :untag_resource
|
220
|
+
Aws::ChimeSDKVoice::Endpoints::UntagResource.build(context)
|
187
221
|
when :update_global_settings
|
188
222
|
Aws::ChimeSDKVoice::Endpoints::UpdateGlobalSettings.build(context)
|
189
223
|
when :update_phone_number
|
@@ -202,6 +236,10 @@ module Aws::ChimeSDKVoice
|
|
202
236
|
Aws::ChimeSDKVoice::Endpoints::UpdateVoiceConnector.build(context)
|
203
237
|
when :update_voice_connector_group
|
204
238
|
Aws::ChimeSDKVoice::Endpoints::UpdateVoiceConnectorGroup.build(context)
|
239
|
+
when :update_voice_profile
|
240
|
+
Aws::ChimeSDKVoice::Endpoints::UpdateVoiceProfile.build(context)
|
241
|
+
when :update_voice_profile_domain
|
242
|
+
Aws::ChimeSDKVoice::Endpoints::UpdateVoiceProfileDomain.build(context)
|
205
243
|
when :validate_e911_address
|
206
244
|
Aws::ChimeSDKVoice::Endpoints::ValidateE911Address.build(context)
|
207
245
|
end
|