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