aws-sdk-chime 1.68.0 → 1.70.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.
@@ -0,0 +1,450 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+
11
+ module Aws::Chime
12
+ module Plugins
13
+ class Endpoints < Seahorse::Client::Plugin
14
+ option(
15
+ :endpoint_provider,
16
+ doc_type: 'Aws::Chime::EndpointProvider',
17
+ docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
+ 'object that responds to `#resolve_endpoint(parameters)` '\
19
+ 'where `parameters` is a Struct similar to '\
20
+ '`Aws::Chime::EndpointParameters`'
21
+ ) do |cfg|
22
+ Aws::Chime::EndpointProvider.new
23
+ end
24
+
25
+ # @api private
26
+ class Handler < Seahorse::Client::Handler
27
+ def call(context)
28
+ # If endpoint was discovered, do not resolve or apply the endpoint.
29
+ unless context[:discovered_endpoint]
30
+ params = parameters_for_operation(context)
31
+ endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
+
33
+ context.http_request.endpoint = endpoint.url
34
+ apply_endpoint_headers(context, endpoint.headers)
35
+ end
36
+
37
+ context[:endpoint_params] = params
38
+ context[:auth_scheme] =
39
+ Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
+
41
+ @handler.call(context)
42
+ end
43
+
44
+ private
45
+
46
+ def apply_endpoint_headers(context, headers)
47
+ headers.each do |key, values|
48
+ value = values
49
+ .compact
50
+ .map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
51
+ .join(',')
52
+
53
+ context.http_request.headers[key] = value
54
+ end
55
+ end
56
+
57
+ def parameters_for_operation(context)
58
+ case context.operation_name
59
+ when :associate_phone_number_with_user
60
+ Aws::Chime::Endpoints::AssociatePhoneNumberWithUser.build(context)
61
+ when :associate_phone_numbers_with_voice_connector
62
+ Aws::Chime::Endpoints::AssociatePhoneNumbersWithVoiceConnector.build(context)
63
+ when :associate_phone_numbers_with_voice_connector_group
64
+ Aws::Chime::Endpoints::AssociatePhoneNumbersWithVoiceConnectorGroup.build(context)
65
+ when :associate_signin_delegate_groups_with_account
66
+ Aws::Chime::Endpoints::AssociateSigninDelegateGroupsWithAccount.build(context)
67
+ when :batch_create_attendee
68
+ Aws::Chime::Endpoints::BatchCreateAttendee.build(context)
69
+ when :batch_create_channel_membership
70
+ Aws::Chime::Endpoints::BatchCreateChannelMembership.build(context)
71
+ when :batch_create_room_membership
72
+ Aws::Chime::Endpoints::BatchCreateRoomMembership.build(context)
73
+ when :batch_delete_phone_number
74
+ Aws::Chime::Endpoints::BatchDeletePhoneNumber.build(context)
75
+ when :batch_suspend_user
76
+ Aws::Chime::Endpoints::BatchSuspendUser.build(context)
77
+ when :batch_unsuspend_user
78
+ Aws::Chime::Endpoints::BatchUnsuspendUser.build(context)
79
+ when :batch_update_phone_number
80
+ Aws::Chime::Endpoints::BatchUpdatePhoneNumber.build(context)
81
+ when :batch_update_user
82
+ Aws::Chime::Endpoints::BatchUpdateUser.build(context)
83
+ when :create_account
84
+ Aws::Chime::Endpoints::CreateAccount.build(context)
85
+ when :create_app_instance
86
+ Aws::Chime::Endpoints::CreateAppInstance.build(context)
87
+ when :create_app_instance_admin
88
+ Aws::Chime::Endpoints::CreateAppInstanceAdmin.build(context)
89
+ when :create_app_instance_user
90
+ Aws::Chime::Endpoints::CreateAppInstanceUser.build(context)
91
+ when :create_attendee
92
+ Aws::Chime::Endpoints::CreateAttendee.build(context)
93
+ when :create_bot
94
+ Aws::Chime::Endpoints::CreateBot.build(context)
95
+ when :create_channel
96
+ Aws::Chime::Endpoints::CreateChannel.build(context)
97
+ when :create_channel_ban
98
+ Aws::Chime::Endpoints::CreateChannelBan.build(context)
99
+ when :create_channel_membership
100
+ Aws::Chime::Endpoints::CreateChannelMembership.build(context)
101
+ when :create_channel_moderator
102
+ Aws::Chime::Endpoints::CreateChannelModerator.build(context)
103
+ when :create_media_capture_pipeline
104
+ Aws::Chime::Endpoints::CreateMediaCapturePipeline.build(context)
105
+ when :create_meeting
106
+ Aws::Chime::Endpoints::CreateMeeting.build(context)
107
+ when :create_meeting_dial_out
108
+ Aws::Chime::Endpoints::CreateMeetingDialOut.build(context)
109
+ when :create_meeting_with_attendees
110
+ Aws::Chime::Endpoints::CreateMeetingWithAttendees.build(context)
111
+ when :create_phone_number_order
112
+ Aws::Chime::Endpoints::CreatePhoneNumberOrder.build(context)
113
+ when :create_proxy_session
114
+ Aws::Chime::Endpoints::CreateProxySession.build(context)
115
+ when :create_room
116
+ Aws::Chime::Endpoints::CreateRoom.build(context)
117
+ when :create_room_membership
118
+ Aws::Chime::Endpoints::CreateRoomMembership.build(context)
119
+ when :create_sip_media_application
120
+ Aws::Chime::Endpoints::CreateSipMediaApplication.build(context)
121
+ when :create_sip_media_application_call
122
+ Aws::Chime::Endpoints::CreateSipMediaApplicationCall.build(context)
123
+ when :create_sip_rule
124
+ Aws::Chime::Endpoints::CreateSipRule.build(context)
125
+ when :create_user
126
+ Aws::Chime::Endpoints::CreateUser.build(context)
127
+ when :create_voice_connector
128
+ Aws::Chime::Endpoints::CreateVoiceConnector.build(context)
129
+ when :create_voice_connector_group
130
+ Aws::Chime::Endpoints::CreateVoiceConnectorGroup.build(context)
131
+ when :delete_account
132
+ Aws::Chime::Endpoints::DeleteAccount.build(context)
133
+ when :delete_app_instance
134
+ Aws::Chime::Endpoints::DeleteAppInstance.build(context)
135
+ when :delete_app_instance_admin
136
+ Aws::Chime::Endpoints::DeleteAppInstanceAdmin.build(context)
137
+ when :delete_app_instance_streaming_configurations
138
+ Aws::Chime::Endpoints::DeleteAppInstanceStreamingConfigurations.build(context)
139
+ when :delete_app_instance_user
140
+ Aws::Chime::Endpoints::DeleteAppInstanceUser.build(context)
141
+ when :delete_attendee
142
+ Aws::Chime::Endpoints::DeleteAttendee.build(context)
143
+ when :delete_channel
144
+ Aws::Chime::Endpoints::DeleteChannel.build(context)
145
+ when :delete_channel_ban
146
+ Aws::Chime::Endpoints::DeleteChannelBan.build(context)
147
+ when :delete_channel_membership
148
+ Aws::Chime::Endpoints::DeleteChannelMembership.build(context)
149
+ when :delete_channel_message
150
+ Aws::Chime::Endpoints::DeleteChannelMessage.build(context)
151
+ when :delete_channel_moderator
152
+ Aws::Chime::Endpoints::DeleteChannelModerator.build(context)
153
+ when :delete_events_configuration
154
+ Aws::Chime::Endpoints::DeleteEventsConfiguration.build(context)
155
+ when :delete_media_capture_pipeline
156
+ Aws::Chime::Endpoints::DeleteMediaCapturePipeline.build(context)
157
+ when :delete_meeting
158
+ Aws::Chime::Endpoints::DeleteMeeting.build(context)
159
+ when :delete_phone_number
160
+ Aws::Chime::Endpoints::DeletePhoneNumber.build(context)
161
+ when :delete_proxy_session
162
+ Aws::Chime::Endpoints::DeleteProxySession.build(context)
163
+ when :delete_room
164
+ Aws::Chime::Endpoints::DeleteRoom.build(context)
165
+ when :delete_room_membership
166
+ Aws::Chime::Endpoints::DeleteRoomMembership.build(context)
167
+ when :delete_sip_media_application
168
+ Aws::Chime::Endpoints::DeleteSipMediaApplication.build(context)
169
+ when :delete_sip_rule
170
+ Aws::Chime::Endpoints::DeleteSipRule.build(context)
171
+ when :delete_voice_connector
172
+ Aws::Chime::Endpoints::DeleteVoiceConnector.build(context)
173
+ when :delete_voice_connector_emergency_calling_configuration
174
+ Aws::Chime::Endpoints::DeleteVoiceConnectorEmergencyCallingConfiguration.build(context)
175
+ when :delete_voice_connector_group
176
+ Aws::Chime::Endpoints::DeleteVoiceConnectorGroup.build(context)
177
+ when :delete_voice_connector_origination
178
+ Aws::Chime::Endpoints::DeleteVoiceConnectorOrigination.build(context)
179
+ when :delete_voice_connector_proxy
180
+ Aws::Chime::Endpoints::DeleteVoiceConnectorProxy.build(context)
181
+ when :delete_voice_connector_streaming_configuration
182
+ Aws::Chime::Endpoints::DeleteVoiceConnectorStreamingConfiguration.build(context)
183
+ when :delete_voice_connector_termination
184
+ Aws::Chime::Endpoints::DeleteVoiceConnectorTermination.build(context)
185
+ when :delete_voice_connector_termination_credentials
186
+ Aws::Chime::Endpoints::DeleteVoiceConnectorTerminationCredentials.build(context)
187
+ when :describe_app_instance
188
+ Aws::Chime::Endpoints::DescribeAppInstance.build(context)
189
+ when :describe_app_instance_admin
190
+ Aws::Chime::Endpoints::DescribeAppInstanceAdmin.build(context)
191
+ when :describe_app_instance_user
192
+ Aws::Chime::Endpoints::DescribeAppInstanceUser.build(context)
193
+ when :describe_channel
194
+ Aws::Chime::Endpoints::DescribeChannel.build(context)
195
+ when :describe_channel_ban
196
+ Aws::Chime::Endpoints::DescribeChannelBan.build(context)
197
+ when :describe_channel_membership
198
+ Aws::Chime::Endpoints::DescribeChannelMembership.build(context)
199
+ when :describe_channel_membership_for_app_instance_user
200
+ Aws::Chime::Endpoints::DescribeChannelMembershipForAppInstanceUser.build(context)
201
+ when :describe_channel_moderated_by_app_instance_user
202
+ Aws::Chime::Endpoints::DescribeChannelModeratedByAppInstanceUser.build(context)
203
+ when :describe_channel_moderator
204
+ Aws::Chime::Endpoints::DescribeChannelModerator.build(context)
205
+ when :disassociate_phone_number_from_user
206
+ Aws::Chime::Endpoints::DisassociatePhoneNumberFromUser.build(context)
207
+ when :disassociate_phone_numbers_from_voice_connector
208
+ Aws::Chime::Endpoints::DisassociatePhoneNumbersFromVoiceConnector.build(context)
209
+ when :disassociate_phone_numbers_from_voice_connector_group
210
+ Aws::Chime::Endpoints::DisassociatePhoneNumbersFromVoiceConnectorGroup.build(context)
211
+ when :disassociate_signin_delegate_groups_from_account
212
+ Aws::Chime::Endpoints::DisassociateSigninDelegateGroupsFromAccount.build(context)
213
+ when :get_account
214
+ Aws::Chime::Endpoints::GetAccount.build(context)
215
+ when :get_account_settings
216
+ Aws::Chime::Endpoints::GetAccountSettings.build(context)
217
+ when :get_app_instance_retention_settings
218
+ Aws::Chime::Endpoints::GetAppInstanceRetentionSettings.build(context)
219
+ when :get_app_instance_streaming_configurations
220
+ Aws::Chime::Endpoints::GetAppInstanceStreamingConfigurations.build(context)
221
+ when :get_attendee
222
+ Aws::Chime::Endpoints::GetAttendee.build(context)
223
+ when :get_bot
224
+ Aws::Chime::Endpoints::GetBot.build(context)
225
+ when :get_channel_message
226
+ Aws::Chime::Endpoints::GetChannelMessage.build(context)
227
+ when :get_events_configuration
228
+ Aws::Chime::Endpoints::GetEventsConfiguration.build(context)
229
+ when :get_global_settings
230
+ Aws::Chime::Endpoints::GetGlobalSettings.build(context)
231
+ when :get_media_capture_pipeline
232
+ Aws::Chime::Endpoints::GetMediaCapturePipeline.build(context)
233
+ when :get_meeting
234
+ Aws::Chime::Endpoints::GetMeeting.build(context)
235
+ when :get_messaging_session_endpoint
236
+ Aws::Chime::Endpoints::GetMessagingSessionEndpoint.build(context)
237
+ when :get_phone_number
238
+ Aws::Chime::Endpoints::GetPhoneNumber.build(context)
239
+ when :get_phone_number_order
240
+ Aws::Chime::Endpoints::GetPhoneNumberOrder.build(context)
241
+ when :get_phone_number_settings
242
+ Aws::Chime::Endpoints::GetPhoneNumberSettings.build(context)
243
+ when :get_proxy_session
244
+ Aws::Chime::Endpoints::GetProxySession.build(context)
245
+ when :get_retention_settings
246
+ Aws::Chime::Endpoints::GetRetentionSettings.build(context)
247
+ when :get_room
248
+ Aws::Chime::Endpoints::GetRoom.build(context)
249
+ when :get_sip_media_application
250
+ Aws::Chime::Endpoints::GetSipMediaApplication.build(context)
251
+ when :get_sip_media_application_logging_configuration
252
+ Aws::Chime::Endpoints::GetSipMediaApplicationLoggingConfiguration.build(context)
253
+ when :get_sip_rule
254
+ Aws::Chime::Endpoints::GetSipRule.build(context)
255
+ when :get_user
256
+ Aws::Chime::Endpoints::GetUser.build(context)
257
+ when :get_user_settings
258
+ Aws::Chime::Endpoints::GetUserSettings.build(context)
259
+ when :get_voice_connector
260
+ Aws::Chime::Endpoints::GetVoiceConnector.build(context)
261
+ when :get_voice_connector_emergency_calling_configuration
262
+ Aws::Chime::Endpoints::GetVoiceConnectorEmergencyCallingConfiguration.build(context)
263
+ when :get_voice_connector_group
264
+ Aws::Chime::Endpoints::GetVoiceConnectorGroup.build(context)
265
+ when :get_voice_connector_logging_configuration
266
+ Aws::Chime::Endpoints::GetVoiceConnectorLoggingConfiguration.build(context)
267
+ when :get_voice_connector_origination
268
+ Aws::Chime::Endpoints::GetVoiceConnectorOrigination.build(context)
269
+ when :get_voice_connector_proxy
270
+ Aws::Chime::Endpoints::GetVoiceConnectorProxy.build(context)
271
+ when :get_voice_connector_streaming_configuration
272
+ Aws::Chime::Endpoints::GetVoiceConnectorStreamingConfiguration.build(context)
273
+ when :get_voice_connector_termination
274
+ Aws::Chime::Endpoints::GetVoiceConnectorTermination.build(context)
275
+ when :get_voice_connector_termination_health
276
+ Aws::Chime::Endpoints::GetVoiceConnectorTerminationHealth.build(context)
277
+ when :invite_users
278
+ Aws::Chime::Endpoints::InviteUsers.build(context)
279
+ when :list_accounts
280
+ Aws::Chime::Endpoints::ListAccounts.build(context)
281
+ when :list_app_instance_admins
282
+ Aws::Chime::Endpoints::ListAppInstanceAdmins.build(context)
283
+ when :list_app_instance_users
284
+ Aws::Chime::Endpoints::ListAppInstanceUsers.build(context)
285
+ when :list_app_instances
286
+ Aws::Chime::Endpoints::ListAppInstances.build(context)
287
+ when :list_attendee_tags
288
+ Aws::Chime::Endpoints::ListAttendeeTags.build(context)
289
+ when :list_attendees
290
+ Aws::Chime::Endpoints::ListAttendees.build(context)
291
+ when :list_bots
292
+ Aws::Chime::Endpoints::ListBots.build(context)
293
+ when :list_channel_bans
294
+ Aws::Chime::Endpoints::ListChannelBans.build(context)
295
+ when :list_channel_memberships
296
+ Aws::Chime::Endpoints::ListChannelMemberships.build(context)
297
+ when :list_channel_memberships_for_app_instance_user
298
+ Aws::Chime::Endpoints::ListChannelMembershipsForAppInstanceUser.build(context)
299
+ when :list_channel_messages
300
+ Aws::Chime::Endpoints::ListChannelMessages.build(context)
301
+ when :list_channel_moderators
302
+ Aws::Chime::Endpoints::ListChannelModerators.build(context)
303
+ when :list_channels
304
+ Aws::Chime::Endpoints::ListChannels.build(context)
305
+ when :list_channels_moderated_by_app_instance_user
306
+ Aws::Chime::Endpoints::ListChannelsModeratedByAppInstanceUser.build(context)
307
+ when :list_media_capture_pipelines
308
+ Aws::Chime::Endpoints::ListMediaCapturePipelines.build(context)
309
+ when :list_meeting_tags
310
+ Aws::Chime::Endpoints::ListMeetingTags.build(context)
311
+ when :list_meetings
312
+ Aws::Chime::Endpoints::ListMeetings.build(context)
313
+ when :list_phone_number_orders
314
+ Aws::Chime::Endpoints::ListPhoneNumberOrders.build(context)
315
+ when :list_phone_numbers
316
+ Aws::Chime::Endpoints::ListPhoneNumbers.build(context)
317
+ when :list_proxy_sessions
318
+ Aws::Chime::Endpoints::ListProxySessions.build(context)
319
+ when :list_room_memberships
320
+ Aws::Chime::Endpoints::ListRoomMemberships.build(context)
321
+ when :list_rooms
322
+ Aws::Chime::Endpoints::ListRooms.build(context)
323
+ when :list_sip_media_applications
324
+ Aws::Chime::Endpoints::ListSipMediaApplications.build(context)
325
+ when :list_sip_rules
326
+ Aws::Chime::Endpoints::ListSipRules.build(context)
327
+ when :list_supported_phone_number_countries
328
+ Aws::Chime::Endpoints::ListSupportedPhoneNumberCountries.build(context)
329
+ when :list_tags_for_resource
330
+ Aws::Chime::Endpoints::ListTagsForResource.build(context)
331
+ when :list_users
332
+ Aws::Chime::Endpoints::ListUsers.build(context)
333
+ when :list_voice_connector_groups
334
+ Aws::Chime::Endpoints::ListVoiceConnectorGroups.build(context)
335
+ when :list_voice_connector_termination_credentials
336
+ Aws::Chime::Endpoints::ListVoiceConnectorTerminationCredentials.build(context)
337
+ when :list_voice_connectors
338
+ Aws::Chime::Endpoints::ListVoiceConnectors.build(context)
339
+ when :logout_user
340
+ Aws::Chime::Endpoints::LogoutUser.build(context)
341
+ when :put_app_instance_retention_settings
342
+ Aws::Chime::Endpoints::PutAppInstanceRetentionSettings.build(context)
343
+ when :put_app_instance_streaming_configurations
344
+ Aws::Chime::Endpoints::PutAppInstanceStreamingConfigurations.build(context)
345
+ when :put_events_configuration
346
+ Aws::Chime::Endpoints::PutEventsConfiguration.build(context)
347
+ when :put_retention_settings
348
+ Aws::Chime::Endpoints::PutRetentionSettings.build(context)
349
+ when :put_sip_media_application_logging_configuration
350
+ Aws::Chime::Endpoints::PutSipMediaApplicationLoggingConfiguration.build(context)
351
+ when :put_voice_connector_emergency_calling_configuration
352
+ Aws::Chime::Endpoints::PutVoiceConnectorEmergencyCallingConfiguration.build(context)
353
+ when :put_voice_connector_logging_configuration
354
+ Aws::Chime::Endpoints::PutVoiceConnectorLoggingConfiguration.build(context)
355
+ when :put_voice_connector_origination
356
+ Aws::Chime::Endpoints::PutVoiceConnectorOrigination.build(context)
357
+ when :put_voice_connector_proxy
358
+ Aws::Chime::Endpoints::PutVoiceConnectorProxy.build(context)
359
+ when :put_voice_connector_streaming_configuration
360
+ Aws::Chime::Endpoints::PutVoiceConnectorStreamingConfiguration.build(context)
361
+ when :put_voice_connector_termination
362
+ Aws::Chime::Endpoints::PutVoiceConnectorTermination.build(context)
363
+ when :put_voice_connector_termination_credentials
364
+ Aws::Chime::Endpoints::PutVoiceConnectorTerminationCredentials.build(context)
365
+ when :redact_channel_message
366
+ Aws::Chime::Endpoints::RedactChannelMessage.build(context)
367
+ when :redact_conversation_message
368
+ Aws::Chime::Endpoints::RedactConversationMessage.build(context)
369
+ when :redact_room_message
370
+ Aws::Chime::Endpoints::RedactRoomMessage.build(context)
371
+ when :regenerate_security_token
372
+ Aws::Chime::Endpoints::RegenerateSecurityToken.build(context)
373
+ when :reset_personal_pin
374
+ Aws::Chime::Endpoints::ResetPersonalPIN.build(context)
375
+ when :restore_phone_number
376
+ Aws::Chime::Endpoints::RestorePhoneNumber.build(context)
377
+ when :search_available_phone_numbers
378
+ Aws::Chime::Endpoints::SearchAvailablePhoneNumbers.build(context)
379
+ when :send_channel_message
380
+ Aws::Chime::Endpoints::SendChannelMessage.build(context)
381
+ when :start_meeting_transcription
382
+ Aws::Chime::Endpoints::StartMeetingTranscription.build(context)
383
+ when :stop_meeting_transcription
384
+ Aws::Chime::Endpoints::StopMeetingTranscription.build(context)
385
+ when :tag_attendee
386
+ Aws::Chime::Endpoints::TagAttendee.build(context)
387
+ when :tag_meeting
388
+ Aws::Chime::Endpoints::TagMeeting.build(context)
389
+ when :tag_resource
390
+ Aws::Chime::Endpoints::TagResource.build(context)
391
+ when :untag_attendee
392
+ Aws::Chime::Endpoints::UntagAttendee.build(context)
393
+ when :untag_meeting
394
+ Aws::Chime::Endpoints::UntagMeeting.build(context)
395
+ when :untag_resource
396
+ Aws::Chime::Endpoints::UntagResource.build(context)
397
+ when :update_account
398
+ Aws::Chime::Endpoints::UpdateAccount.build(context)
399
+ when :update_account_settings
400
+ Aws::Chime::Endpoints::UpdateAccountSettings.build(context)
401
+ when :update_app_instance
402
+ Aws::Chime::Endpoints::UpdateAppInstance.build(context)
403
+ when :update_app_instance_user
404
+ Aws::Chime::Endpoints::UpdateAppInstanceUser.build(context)
405
+ when :update_bot
406
+ Aws::Chime::Endpoints::UpdateBot.build(context)
407
+ when :update_channel
408
+ Aws::Chime::Endpoints::UpdateChannel.build(context)
409
+ when :update_channel_message
410
+ Aws::Chime::Endpoints::UpdateChannelMessage.build(context)
411
+ when :update_channel_read_marker
412
+ Aws::Chime::Endpoints::UpdateChannelReadMarker.build(context)
413
+ when :update_global_settings
414
+ Aws::Chime::Endpoints::UpdateGlobalSettings.build(context)
415
+ when :update_phone_number
416
+ Aws::Chime::Endpoints::UpdatePhoneNumber.build(context)
417
+ when :update_phone_number_settings
418
+ Aws::Chime::Endpoints::UpdatePhoneNumberSettings.build(context)
419
+ when :update_proxy_session
420
+ Aws::Chime::Endpoints::UpdateProxySession.build(context)
421
+ when :update_room
422
+ Aws::Chime::Endpoints::UpdateRoom.build(context)
423
+ when :update_room_membership
424
+ Aws::Chime::Endpoints::UpdateRoomMembership.build(context)
425
+ when :update_sip_media_application
426
+ Aws::Chime::Endpoints::UpdateSipMediaApplication.build(context)
427
+ when :update_sip_media_application_call
428
+ Aws::Chime::Endpoints::UpdateSipMediaApplicationCall.build(context)
429
+ when :update_sip_rule
430
+ Aws::Chime::Endpoints::UpdateSipRule.build(context)
431
+ when :update_user
432
+ Aws::Chime::Endpoints::UpdateUser.build(context)
433
+ when :update_user_settings
434
+ Aws::Chime::Endpoints::UpdateUserSettings.build(context)
435
+ when :update_voice_connector
436
+ Aws::Chime::Endpoints::UpdateVoiceConnector.build(context)
437
+ when :update_voice_connector_group
438
+ Aws::Chime::Endpoints::UpdateVoiceConnectorGroup.build(context)
439
+ when :validate_e911_address
440
+ Aws::Chime::Endpoints::ValidateE911Address.build(context)
441
+ end
442
+ end
443
+ end
444
+
445
+ def add_handlers(handlers, _config)
446
+ handlers.add(Handler, step: :build, priority: 75)
447
+ end
448
+ end
449
+ end
450
+ end