@aws-sdk/client-chatbot 3.948.0 → 3.953.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.
Files changed (54) hide show
  1. package/dist-cjs/index.js +557 -414
  2. package/dist-cjs/runtimeConfig.shared.js +7 -1
  3. package/dist-es/commands/AssociateToConfigurationCommand.js +2 -2
  4. package/dist-es/commands/CreateChimeWebhookConfigurationCommand.js +2 -2
  5. package/dist-es/commands/CreateCustomActionCommand.js +2 -2
  6. package/dist-es/commands/CreateMicrosoftTeamsChannelConfigurationCommand.js +2 -2
  7. package/dist-es/commands/CreateSlackChannelConfigurationCommand.js +2 -2
  8. package/dist-es/commands/DeleteChimeWebhookConfigurationCommand.js +2 -2
  9. package/dist-es/commands/DeleteCustomActionCommand.js +2 -2
  10. package/dist-es/commands/DeleteMicrosoftTeamsChannelConfigurationCommand.js +2 -2
  11. package/dist-es/commands/DeleteMicrosoftTeamsConfiguredTeamCommand.js +2 -2
  12. package/dist-es/commands/DeleteMicrosoftTeamsUserIdentityCommand.js +2 -2
  13. package/dist-es/commands/DeleteSlackChannelConfigurationCommand.js +2 -2
  14. package/dist-es/commands/DeleteSlackUserIdentityCommand.js +2 -2
  15. package/dist-es/commands/DeleteSlackWorkspaceAuthorizationCommand.js +2 -2
  16. package/dist-es/commands/DescribeChimeWebhookConfigurationsCommand.js +2 -2
  17. package/dist-es/commands/DescribeSlackChannelConfigurationsCommand.js +2 -2
  18. package/dist-es/commands/DescribeSlackUserIdentitiesCommand.js +2 -2
  19. package/dist-es/commands/DescribeSlackWorkspacesCommand.js +2 -2
  20. package/dist-es/commands/DisassociateFromConfigurationCommand.js +2 -2
  21. package/dist-es/commands/GetAccountPreferencesCommand.js +2 -2
  22. package/dist-es/commands/GetCustomActionCommand.js +2 -2
  23. package/dist-es/commands/GetMicrosoftTeamsChannelConfigurationCommand.js +2 -2
  24. package/dist-es/commands/ListAssociationsCommand.js +2 -2
  25. package/dist-es/commands/ListCustomActionsCommand.js +2 -2
  26. package/dist-es/commands/ListMicrosoftTeamsChannelConfigurationsCommand.js +2 -2
  27. package/dist-es/commands/ListMicrosoftTeamsConfiguredTeamsCommand.js +2 -2
  28. package/dist-es/commands/ListMicrosoftTeamsUserIdentitiesCommand.js +2 -2
  29. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  30. package/dist-es/commands/TagResourceCommand.js +2 -2
  31. package/dist-es/commands/UntagResourceCommand.js +2 -2
  32. package/dist-es/commands/UpdateAccountPreferencesCommand.js +2 -2
  33. package/dist-es/commands/UpdateChimeWebhookConfigurationCommand.js +2 -2
  34. package/dist-es/commands/UpdateCustomActionCommand.js +2 -2
  35. package/dist-es/commands/UpdateMicrosoftTeamsChannelConfigurationCommand.js +2 -2
  36. package/dist-es/commands/UpdateSlackChannelConfigurationCommand.js +2 -2
  37. package/dist-es/index.js +1 -0
  38. package/dist-es/runtimeConfig.shared.js +7 -1
  39. package/dist-es/schemas/schemas_0.js +287 -293
  40. package/dist-types/ChatbotClient.d.ts +1 -10
  41. package/dist-types/index.d.ts +1 -0
  42. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  43. package/dist-types/runtimeConfig.d.ts +6 -2
  44. package/dist-types/runtimeConfig.native.d.ts +6 -2
  45. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  46. package/dist-types/schemas/schemas_0.d.ts +150 -172
  47. package/dist-types/ts3.4/ChatbotClient.d.ts +0 -4
  48. package/dist-types/ts3.4/index.d.ts +1 -0
  49. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  53. package/dist-types/ts3.4/schemas/schemas_0.d.ts +149 -173
  54. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class ChatbotClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let ChatbotServiceException$1 = class ChatbotServiceException extends smithyClient.ServiceException {
113
+ class ChatbotServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, ChatbotServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let InternalServiceError$1 = class InternalServiceError extends ChatbotServiceException$1 {
120
+ class InternalServiceError extends ChatbotServiceException {
121
121
  name = "InternalServiceError";
122
122
  $fault = "server";
123
123
  Message;
@@ -130,8 +130,8 @@ let InternalServiceError$1 = class InternalServiceError extends ChatbotServiceEx
130
130
  Object.setPrototypeOf(this, InternalServiceError.prototype);
131
131
  this.Message = opts.Message;
132
132
  }
133
- };
134
- let InvalidRequestException$1 = class InvalidRequestException extends ChatbotServiceException$1 {
133
+ }
134
+ class InvalidRequestException extends ChatbotServiceException {
135
135
  name = "InvalidRequestException";
136
136
  $fault = "client";
137
137
  constructor(opts) {
@@ -142,8 +142,8 @@ let InvalidRequestException$1 = class InvalidRequestException extends ChatbotSer
142
142
  });
143
143
  Object.setPrototypeOf(this, InvalidRequestException.prototype);
144
144
  }
145
- };
146
- let UnauthorizedException$1 = class UnauthorizedException extends ChatbotServiceException$1 {
145
+ }
146
+ class UnauthorizedException extends ChatbotServiceException {
147
147
  name = "UnauthorizedException";
148
148
  $fault = "client";
149
149
  constructor(opts) {
@@ -154,8 +154,8 @@ let UnauthorizedException$1 = class UnauthorizedException extends ChatbotService
154
154
  });
155
155
  Object.setPrototypeOf(this, UnauthorizedException.prototype);
156
156
  }
157
- };
158
- let ConflictException$1 = class ConflictException extends ChatbotServiceException$1 {
157
+ }
158
+ class ConflictException extends ChatbotServiceException {
159
159
  name = "ConflictException";
160
160
  $fault = "client";
161
161
  constructor(opts) {
@@ -166,8 +166,8 @@ let ConflictException$1 = class ConflictException extends ChatbotServiceExceptio
166
166
  });
167
167
  Object.setPrototypeOf(this, ConflictException.prototype);
168
168
  }
169
- };
170
- let CreateChimeWebhookConfigurationException$1 = class CreateChimeWebhookConfigurationException extends ChatbotServiceException$1 {
169
+ }
170
+ class CreateChimeWebhookConfigurationException extends ChatbotServiceException {
171
171
  name = "CreateChimeWebhookConfigurationException";
172
172
  $fault = "server";
173
173
  Message;
@@ -180,8 +180,8 @@ let CreateChimeWebhookConfigurationException$1 = class CreateChimeWebhookConfigu
180
180
  Object.setPrototypeOf(this, CreateChimeWebhookConfigurationException.prototype);
181
181
  this.Message = opts.Message;
182
182
  }
183
- };
184
- let InvalidParameterException$1 = class InvalidParameterException extends ChatbotServiceException$1 {
183
+ }
184
+ class InvalidParameterException extends ChatbotServiceException {
185
185
  name = "InvalidParameterException";
186
186
  $fault = "client";
187
187
  constructor(opts) {
@@ -192,8 +192,8 @@ let InvalidParameterException$1 = class InvalidParameterException extends Chatbo
192
192
  });
193
193
  Object.setPrototypeOf(this, InvalidParameterException.prototype);
194
194
  }
195
- };
196
- let LimitExceededException$1 = class LimitExceededException extends ChatbotServiceException$1 {
195
+ }
196
+ class LimitExceededException extends ChatbotServiceException {
197
197
  name = "LimitExceededException";
198
198
  $fault = "client";
199
199
  constructor(opts) {
@@ -204,8 +204,8 @@ let LimitExceededException$1 = class LimitExceededException extends ChatbotServi
204
204
  });
205
205
  Object.setPrototypeOf(this, LimitExceededException.prototype);
206
206
  }
207
- };
208
- let CreateTeamsChannelConfigurationException$1 = class CreateTeamsChannelConfigurationException extends ChatbotServiceException$1 {
207
+ }
208
+ class CreateTeamsChannelConfigurationException extends ChatbotServiceException {
209
209
  name = "CreateTeamsChannelConfigurationException";
210
210
  $fault = "server";
211
211
  Message;
@@ -218,8 +218,8 @@ let CreateTeamsChannelConfigurationException$1 = class CreateTeamsChannelConfigu
218
218
  Object.setPrototypeOf(this, CreateTeamsChannelConfigurationException.prototype);
219
219
  this.Message = opts.Message;
220
220
  }
221
- };
222
- let CreateSlackChannelConfigurationException$1 = class CreateSlackChannelConfigurationException extends ChatbotServiceException$1 {
221
+ }
222
+ class CreateSlackChannelConfigurationException extends ChatbotServiceException {
223
223
  name = "CreateSlackChannelConfigurationException";
224
224
  $fault = "server";
225
225
  Message;
@@ -232,8 +232,8 @@ let CreateSlackChannelConfigurationException$1 = class CreateSlackChannelConfigu
232
232
  Object.setPrototypeOf(this, CreateSlackChannelConfigurationException.prototype);
233
233
  this.Message = opts.Message;
234
234
  }
235
- };
236
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends ChatbotServiceException$1 {
235
+ }
236
+ class ResourceNotFoundException extends ChatbotServiceException {
237
237
  name = "ResourceNotFoundException";
238
238
  $fault = "client";
239
239
  Message;
@@ -246,8 +246,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Chatbo
246
246
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
247
247
  this.Message = opts.Message;
248
248
  }
249
- };
250
- let DeleteChimeWebhookConfigurationException$1 = class DeleteChimeWebhookConfigurationException extends ChatbotServiceException$1 {
249
+ }
250
+ class DeleteChimeWebhookConfigurationException extends ChatbotServiceException {
251
251
  name = "DeleteChimeWebhookConfigurationException";
252
252
  $fault = "server";
253
253
  Message;
@@ -260,8 +260,8 @@ let DeleteChimeWebhookConfigurationException$1 = class DeleteChimeWebhookConfigu
260
260
  Object.setPrototypeOf(this, DeleteChimeWebhookConfigurationException.prototype);
261
261
  this.Message = opts.Message;
262
262
  }
263
- };
264
- let DeleteTeamsChannelConfigurationException$1 = class DeleteTeamsChannelConfigurationException extends ChatbotServiceException$1 {
263
+ }
264
+ class DeleteTeamsChannelConfigurationException extends ChatbotServiceException {
265
265
  name = "DeleteTeamsChannelConfigurationException";
266
266
  $fault = "server";
267
267
  Message;
@@ -274,8 +274,8 @@ let DeleteTeamsChannelConfigurationException$1 = class DeleteTeamsChannelConfigu
274
274
  Object.setPrototypeOf(this, DeleteTeamsChannelConfigurationException.prototype);
275
275
  this.Message = opts.Message;
276
276
  }
277
- };
278
- let DeleteTeamsConfiguredTeamException$1 = class DeleteTeamsConfiguredTeamException extends ChatbotServiceException$1 {
277
+ }
278
+ class DeleteTeamsConfiguredTeamException extends ChatbotServiceException {
279
279
  name = "DeleteTeamsConfiguredTeamException";
280
280
  $fault = "server";
281
281
  Message;
@@ -288,8 +288,8 @@ let DeleteTeamsConfiguredTeamException$1 = class DeleteTeamsConfiguredTeamExcept
288
288
  Object.setPrototypeOf(this, DeleteTeamsConfiguredTeamException.prototype);
289
289
  this.Message = opts.Message;
290
290
  }
291
- };
292
- let DeleteMicrosoftTeamsUserIdentityException$1 = class DeleteMicrosoftTeamsUserIdentityException extends ChatbotServiceException$1 {
291
+ }
292
+ class DeleteMicrosoftTeamsUserIdentityException extends ChatbotServiceException {
293
293
  name = "DeleteMicrosoftTeamsUserIdentityException";
294
294
  $fault = "server";
295
295
  Message;
@@ -302,8 +302,8 @@ let DeleteMicrosoftTeamsUserIdentityException$1 = class DeleteMicrosoftTeamsUser
302
302
  Object.setPrototypeOf(this, DeleteMicrosoftTeamsUserIdentityException.prototype);
303
303
  this.Message = opts.Message;
304
304
  }
305
- };
306
- let DeleteSlackChannelConfigurationException$1 = class DeleteSlackChannelConfigurationException extends ChatbotServiceException$1 {
305
+ }
306
+ class DeleteSlackChannelConfigurationException extends ChatbotServiceException {
307
307
  name = "DeleteSlackChannelConfigurationException";
308
308
  $fault = "server";
309
309
  Message;
@@ -316,8 +316,8 @@ let DeleteSlackChannelConfigurationException$1 = class DeleteSlackChannelConfigu
316
316
  Object.setPrototypeOf(this, DeleteSlackChannelConfigurationException.prototype);
317
317
  this.Message = opts.Message;
318
318
  }
319
- };
320
- let DeleteSlackUserIdentityException$1 = class DeleteSlackUserIdentityException extends ChatbotServiceException$1 {
319
+ }
320
+ class DeleteSlackUserIdentityException extends ChatbotServiceException {
321
321
  name = "DeleteSlackUserIdentityException";
322
322
  $fault = "server";
323
323
  Message;
@@ -330,8 +330,8 @@ let DeleteSlackUserIdentityException$1 = class DeleteSlackUserIdentityException
330
330
  Object.setPrototypeOf(this, DeleteSlackUserIdentityException.prototype);
331
331
  this.Message = opts.Message;
332
332
  }
333
- };
334
- let DeleteSlackWorkspaceAuthorizationFault$1 = class DeleteSlackWorkspaceAuthorizationFault extends ChatbotServiceException$1 {
333
+ }
334
+ class DeleteSlackWorkspaceAuthorizationFault extends ChatbotServiceException {
335
335
  name = "DeleteSlackWorkspaceAuthorizationFault";
336
336
  $fault = "server";
337
337
  Message;
@@ -344,8 +344,8 @@ let DeleteSlackWorkspaceAuthorizationFault$1 = class DeleteSlackWorkspaceAuthori
344
344
  Object.setPrototypeOf(this, DeleteSlackWorkspaceAuthorizationFault.prototype);
345
345
  this.Message = opts.Message;
346
346
  }
347
- };
348
- let DescribeChimeWebhookConfigurationsException$1 = class DescribeChimeWebhookConfigurationsException extends ChatbotServiceException$1 {
347
+ }
348
+ class DescribeChimeWebhookConfigurationsException extends ChatbotServiceException {
349
349
  name = "DescribeChimeWebhookConfigurationsException";
350
350
  $fault = "server";
351
351
  Message;
@@ -358,8 +358,8 @@ let DescribeChimeWebhookConfigurationsException$1 = class DescribeChimeWebhookCo
358
358
  Object.setPrototypeOf(this, DescribeChimeWebhookConfigurationsException.prototype);
359
359
  this.Message = opts.Message;
360
360
  }
361
- };
362
- let DescribeSlackChannelConfigurationsException$1 = class DescribeSlackChannelConfigurationsException extends ChatbotServiceException$1 {
361
+ }
362
+ class DescribeSlackChannelConfigurationsException extends ChatbotServiceException {
363
363
  name = "DescribeSlackChannelConfigurationsException";
364
364
  $fault = "server";
365
365
  Message;
@@ -372,8 +372,8 @@ let DescribeSlackChannelConfigurationsException$1 = class DescribeSlackChannelCo
372
372
  Object.setPrototypeOf(this, DescribeSlackChannelConfigurationsException.prototype);
373
373
  this.Message = opts.Message;
374
374
  }
375
- };
376
- let DescribeSlackUserIdentitiesException$1 = class DescribeSlackUserIdentitiesException extends ChatbotServiceException$1 {
375
+ }
376
+ class DescribeSlackUserIdentitiesException extends ChatbotServiceException {
377
377
  name = "DescribeSlackUserIdentitiesException";
378
378
  $fault = "server";
379
379
  Message;
@@ -386,8 +386,8 @@ let DescribeSlackUserIdentitiesException$1 = class DescribeSlackUserIdentitiesEx
386
386
  Object.setPrototypeOf(this, DescribeSlackUserIdentitiesException.prototype);
387
387
  this.Message = opts.Message;
388
388
  }
389
- };
390
- let DescribeSlackWorkspacesException$1 = class DescribeSlackWorkspacesException extends ChatbotServiceException$1 {
389
+ }
390
+ class DescribeSlackWorkspacesException extends ChatbotServiceException {
391
391
  name = "DescribeSlackWorkspacesException";
392
392
  $fault = "server";
393
393
  Message;
@@ -400,8 +400,8 @@ let DescribeSlackWorkspacesException$1 = class DescribeSlackWorkspacesException
400
400
  Object.setPrototypeOf(this, DescribeSlackWorkspacesException.prototype);
401
401
  this.Message = opts.Message;
402
402
  }
403
- };
404
- let GetAccountPreferencesException$1 = class GetAccountPreferencesException extends ChatbotServiceException$1 {
403
+ }
404
+ class GetAccountPreferencesException extends ChatbotServiceException {
405
405
  name = "GetAccountPreferencesException";
406
406
  $fault = "server";
407
407
  Message;
@@ -414,8 +414,8 @@ let GetAccountPreferencesException$1 = class GetAccountPreferencesException exte
414
414
  Object.setPrototypeOf(this, GetAccountPreferencesException.prototype);
415
415
  this.Message = opts.Message;
416
416
  }
417
- };
418
- let GetTeamsChannelConfigurationException$1 = class GetTeamsChannelConfigurationException extends ChatbotServiceException$1 {
417
+ }
418
+ class GetTeamsChannelConfigurationException extends ChatbotServiceException {
419
419
  name = "GetTeamsChannelConfigurationException";
420
420
  $fault = "server";
421
421
  Message;
@@ -428,8 +428,8 @@ let GetTeamsChannelConfigurationException$1 = class GetTeamsChannelConfiguration
428
428
  Object.setPrototypeOf(this, GetTeamsChannelConfigurationException.prototype);
429
429
  this.Message = opts.Message;
430
430
  }
431
- };
432
- let ListTeamsChannelConfigurationsException$1 = class ListTeamsChannelConfigurationsException extends ChatbotServiceException$1 {
431
+ }
432
+ class ListTeamsChannelConfigurationsException extends ChatbotServiceException {
433
433
  name = "ListTeamsChannelConfigurationsException";
434
434
  $fault = "server";
435
435
  Message;
@@ -442,8 +442,8 @@ let ListTeamsChannelConfigurationsException$1 = class ListTeamsChannelConfigurat
442
442
  Object.setPrototypeOf(this, ListTeamsChannelConfigurationsException.prototype);
443
443
  this.Message = opts.Message;
444
444
  }
445
- };
446
- let ListMicrosoftTeamsConfiguredTeamsException$1 = class ListMicrosoftTeamsConfiguredTeamsException extends ChatbotServiceException$1 {
445
+ }
446
+ class ListMicrosoftTeamsConfiguredTeamsException extends ChatbotServiceException {
447
447
  name = "ListMicrosoftTeamsConfiguredTeamsException";
448
448
  $fault = "server";
449
449
  Message;
@@ -456,8 +456,8 @@ let ListMicrosoftTeamsConfiguredTeamsException$1 = class ListMicrosoftTeamsConfi
456
456
  Object.setPrototypeOf(this, ListMicrosoftTeamsConfiguredTeamsException.prototype);
457
457
  this.Message = opts.Message;
458
458
  }
459
- };
460
- let ListMicrosoftTeamsUserIdentitiesException$1 = class ListMicrosoftTeamsUserIdentitiesException extends ChatbotServiceException$1 {
459
+ }
460
+ class ListMicrosoftTeamsUserIdentitiesException extends ChatbotServiceException {
461
461
  name = "ListMicrosoftTeamsUserIdentitiesException";
462
462
  $fault = "server";
463
463
  Message;
@@ -470,8 +470,8 @@ let ListMicrosoftTeamsUserIdentitiesException$1 = class ListMicrosoftTeamsUserId
470
470
  Object.setPrototypeOf(this, ListMicrosoftTeamsUserIdentitiesException.prototype);
471
471
  this.Message = opts.Message;
472
472
  }
473
- };
474
- let ServiceUnavailableException$1 = class ServiceUnavailableException extends ChatbotServiceException$1 {
473
+ }
474
+ class ServiceUnavailableException extends ChatbotServiceException {
475
475
  name = "ServiceUnavailableException";
476
476
  $fault = "client";
477
477
  constructor(opts) {
@@ -482,8 +482,8 @@ let ServiceUnavailableException$1 = class ServiceUnavailableException extends Ch
482
482
  });
483
483
  Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
484
484
  }
485
- };
486
- let TooManyTagsException$1 = class TooManyTagsException extends ChatbotServiceException$1 {
485
+ }
486
+ class TooManyTagsException extends ChatbotServiceException {
487
487
  name = "TooManyTagsException";
488
488
  $fault = "client";
489
489
  constructor(opts) {
@@ -494,8 +494,8 @@ let TooManyTagsException$1 = class TooManyTagsException extends ChatbotServiceEx
494
494
  });
495
495
  Object.setPrototypeOf(this, TooManyTagsException.prototype);
496
496
  }
497
- };
498
- let UpdateAccountPreferencesException$1 = class UpdateAccountPreferencesException extends ChatbotServiceException$1 {
497
+ }
498
+ class UpdateAccountPreferencesException extends ChatbotServiceException {
499
499
  name = "UpdateAccountPreferencesException";
500
500
  $fault = "server";
501
501
  Message;
@@ -508,8 +508,8 @@ let UpdateAccountPreferencesException$1 = class UpdateAccountPreferencesExceptio
508
508
  Object.setPrototypeOf(this, UpdateAccountPreferencesException.prototype);
509
509
  this.Message = opts.Message;
510
510
  }
511
- };
512
- let UpdateChimeWebhookConfigurationException$1 = class UpdateChimeWebhookConfigurationException extends ChatbotServiceException$1 {
511
+ }
512
+ class UpdateChimeWebhookConfigurationException extends ChatbotServiceException {
513
513
  name = "UpdateChimeWebhookConfigurationException";
514
514
  $fault = "server";
515
515
  Message;
@@ -522,8 +522,8 @@ let UpdateChimeWebhookConfigurationException$1 = class UpdateChimeWebhookConfigu
522
522
  Object.setPrototypeOf(this, UpdateChimeWebhookConfigurationException.prototype);
523
523
  this.Message = opts.Message;
524
524
  }
525
- };
526
- let UpdateTeamsChannelConfigurationException$1 = class UpdateTeamsChannelConfigurationException extends ChatbotServiceException$1 {
525
+ }
526
+ class UpdateTeamsChannelConfigurationException extends ChatbotServiceException {
527
527
  name = "UpdateTeamsChannelConfigurationException";
528
528
  $fault = "server";
529
529
  Message;
@@ -536,8 +536,8 @@ let UpdateTeamsChannelConfigurationException$1 = class UpdateTeamsChannelConfigu
536
536
  Object.setPrototypeOf(this, UpdateTeamsChannelConfigurationException.prototype);
537
537
  this.Message = opts.Message;
538
538
  }
539
- };
540
- let UpdateSlackChannelConfigurationException$1 = class UpdateSlackChannelConfigurationException extends ChatbotServiceException$1 {
539
+ }
540
+ class UpdateSlackChannelConfigurationException extends ChatbotServiceException {
541
541
  name = "UpdateSlackChannelConfigurationException";
542
542
  $fault = "server";
543
543
  Message;
@@ -550,7 +550,7 @@ let UpdateSlackChannelConfigurationException$1 = class UpdateSlackChannelConfigu
550
550
  Object.setPrototypeOf(this, UpdateSlackChannelConfigurationException.prototype);
551
551
  this.Message = opts.Message;
552
552
  }
553
- };
553
+ }
554
554
 
555
555
  const _A = "Attachments";
556
556
  const _AL = "AssociationListing";
@@ -789,11 +789,11 @@ var ChimeWebhookUrl = [0, n0, _CWU, 8, 0];
789
789
  var SlackChannelDisplayName = [0, n0, _SCDN, 8, 0];
790
790
  var TeamName = [0, n0, _TN, 8, 0];
791
791
  var TeamsChannelName = [0, n0, _TCN, 8, 0];
792
- var AccountPreferences = [3, n0, _AP, 0, [_UAR, _TDCE], [2, 2]];
793
- var AssociateToConfigurationRequest = [3, n0, _ATCR, 0, [_R, _CC], [0, 0]];
794
- var AssociateToConfigurationResult = [3, n0, _ATCRs, 0, [], []];
795
- var AssociationListing = [3, n0, _AL, 0, [_R], [0]];
796
- var ChimeWebhookConfiguration = [
792
+ var AccountPreferences$ = [3, n0, _AP, 0, [_UAR, _TDCE], [2, 2]];
793
+ var AssociateToConfigurationRequest$ = [3, n0, _ATCR, 0, [_R, _CC], [0, 0]];
794
+ var AssociateToConfigurationResult$ = [3, n0, _ATCRs, 0, [], []];
795
+ var AssociationListing$ = [3, n0, _AL, 0, [_R], [0]];
796
+ var ChimeWebhookConfiguration$ = [
797
797
  3,
798
798
  n0,
799
799
  _CWC,
@@ -801,10 +801,10 @@ var ChimeWebhookConfiguration = [
801
801
  [_WD, _CCA, _IRA, _STA, _CN, _LL, _T, _S, _SR],
802
802
  [[() => ChimeWebhookDescription, 0], 0, 0, 64 | 0, 0, 0, () => Tags, 0, 0],
803
803
  ];
804
- var ConfiguredTeam = [3, n0, _CT, 0, [_TI, _TIe, _TN, _S, _SR], [0, 0, 0, 0, 0]];
805
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
806
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
807
- var CreateChimeWebhookConfigurationException = [
804
+ var ConfiguredTeam$ = [3, n0, _CT, 0, [_TI, _TIe, _TN, _S, _SR], [0, 0, 0, 0, 0]];
805
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
806
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
807
+ var CreateChimeWebhookConfigurationException$ = [
808
808
  -3,
809
809
  n0,
810
810
  _CCWCE,
@@ -812,8 +812,8 @@ var CreateChimeWebhookConfigurationException = [
812
812
  [_M],
813
813
  [0],
814
814
  ];
815
- schema.TypeRegistry.for(n0).registerError(CreateChimeWebhookConfigurationException, CreateChimeWebhookConfigurationException$1);
816
- var CreateChimeWebhookConfigurationRequest = [
815
+ schema.TypeRegistry.for(n0).registerError(CreateChimeWebhookConfigurationException$, CreateChimeWebhookConfigurationException);
816
+ var CreateChimeWebhookConfigurationRequest$ = [
817
817
  3,
818
818
  n0,
819
819
  _CCWCR,
@@ -821,24 +821,24 @@ var CreateChimeWebhookConfigurationRequest = [
821
821
  [_WD, _WU, _STA, _IRA, _CN, _LL, _T],
822
822
  [[() => ChimeWebhookDescription, 0], [() => ChimeWebhookUrl, 0], 64 | 0, 0, 0, 0, () => Tags],
823
823
  ];
824
- var CreateChimeWebhookConfigurationResult = [
824
+ var CreateChimeWebhookConfigurationResult$ = [
825
825
  3,
826
826
  n0,
827
827
  _CCWCRr,
828
828
  0,
829
829
  [_WC],
830
- [[() => ChimeWebhookConfiguration, 0]],
830
+ [[() => ChimeWebhookConfiguration$, 0]],
831
831
  ];
832
- var CreateCustomActionRequest = [
832
+ var CreateCustomActionRequest$ = [
833
833
  3,
834
834
  n0,
835
835
  _CCAR,
836
836
  0,
837
837
  [_D, _AN, _A, _T, _CTl, _ANc],
838
- [() => CustomActionDefinition, 0, () => CustomActionAttachmentList, () => TagList, [0, 4], 0],
838
+ [() => CustomActionDefinition$, 0, () => CustomActionAttachmentList, () => TagList, [0, 4], 0],
839
839
  ];
840
- var CreateCustomActionResult = [3, n0, _CCARr, 0, [_CAA], [0]];
841
- var CreateSlackChannelConfigurationException = [
840
+ var CreateCustomActionResult$ = [3, n0, _CCARr, 0, [_CAA], [0]];
841
+ var CreateSlackChannelConfigurationException$ = [
842
842
  -3,
843
843
  n0,
844
844
  _CSCCE,
@@ -846,8 +846,8 @@ var CreateSlackChannelConfigurationException = [
846
846
  [_M],
847
847
  [0],
848
848
  ];
849
- schema.TypeRegistry.for(n0).registerError(CreateSlackChannelConfigurationException, CreateSlackChannelConfigurationException$1);
850
- var CreateSlackChannelConfigurationRequest = [
849
+ schema.TypeRegistry.for(n0).registerError(CreateSlackChannelConfigurationException$, CreateSlackChannelConfigurationException);
850
+ var CreateSlackChannelConfigurationRequest$ = [
851
851
  3,
852
852
  n0,
853
853
  _CSCCR,
@@ -855,15 +855,15 @@ var CreateSlackChannelConfigurationRequest = [
855
855
  [_STI, _SCI, _SCN, _STA, _IRA, _CN, _LL, _GPA, _UAR, _T],
856
856
  [0, 0, [() => SlackChannelDisplayName, 0], 64 | 0, 0, 0, 0, 64 | 0, 2, () => Tags],
857
857
  ];
858
- var CreateSlackChannelConfigurationResult = [
858
+ var CreateSlackChannelConfigurationResult$ = [
859
859
  3,
860
860
  n0,
861
861
  _CSCCRr,
862
862
  0,
863
863
  [_CCh],
864
- [[() => SlackChannelConfiguration, 0]],
864
+ [[() => SlackChannelConfiguration$, 0]],
865
865
  ];
866
- var CreateTeamsChannelConfigurationException = [
866
+ var CreateTeamsChannelConfigurationException$ = [
867
867
  -3,
868
868
  n0,
869
869
  _CTCCE,
@@ -871,8 +871,8 @@ var CreateTeamsChannelConfigurationException = [
871
871
  [_M],
872
872
  [0],
873
873
  ];
874
- schema.TypeRegistry.for(n0).registerError(CreateTeamsChannelConfigurationException, CreateTeamsChannelConfigurationException$1);
875
- var CreateTeamsChannelConfigurationRequest = [
874
+ schema.TypeRegistry.for(n0).registerError(CreateTeamsChannelConfigurationException$, CreateTeamsChannelConfigurationException);
875
+ var CreateTeamsChannelConfigurationRequest$ = [
876
876
  3,
877
877
  n0,
878
878
  _CTCCR,
@@ -880,23 +880,23 @@ var CreateTeamsChannelConfigurationRequest = [
880
880
  [_CI, _CNh, _TIe, _TN, _TI, _STA, _IRA, _CN, _LL, _GPA, _UAR, _T],
881
881
  [0, [() => TeamsChannelName, 0], 0, [() => TeamName, 0], 0, 64 | 0, 0, 0, 0, 64 | 0, 2, () => Tags],
882
882
  ];
883
- var CreateTeamsChannelConfigurationResult = [
883
+ var CreateTeamsChannelConfigurationResult$ = [
884
884
  3,
885
885
  n0,
886
886
  _CTCCRr,
887
887
  0,
888
888
  [_CCh],
889
- [[() => TeamsChannelConfiguration, 0]],
889
+ [[() => TeamsChannelConfiguration$, 0]],
890
890
  ];
891
- var CustomAction = [
891
+ var CustomAction$ = [
892
892
  3,
893
893
  n0,
894
894
  _CA,
895
895
  0,
896
896
  [_CAA, _D, _AN, _A, _ANc],
897
- [0, () => CustomActionDefinition, 0, () => CustomActionAttachmentList, 0],
897
+ [0, () => CustomActionDefinition$, 0, () => CustomActionAttachmentList, 0],
898
898
  ];
899
- var CustomActionAttachment = [
899
+ var CustomActionAttachment$ = [
900
900
  3,
901
901
  n0,
902
902
  _CAAu,
@@ -904,9 +904,9 @@ var CustomActionAttachment = [
904
904
  [_NT, _BT, _C, _V],
905
905
  [0, 0, () => CustomActionAttachmentCriteriaList, 128 | 0],
906
906
  ];
907
- var CustomActionAttachmentCriteria = [3, n0, _CAAC, 0, [_O, _VN, _Va], [0, 0, 0]];
908
- var CustomActionDefinition = [3, n0, _CAD, 0, [_CTo], [0]];
909
- var DeleteChimeWebhookConfigurationException = [
907
+ var CustomActionAttachmentCriteria$ = [3, n0, _CAAC, 0, [_O, _VN, _Va], [0, 0, 0]];
908
+ var CustomActionDefinition$ = [3, n0, _CAD, 0, [_CTo], [0]];
909
+ var DeleteChimeWebhookConfigurationException$ = [
910
910
  -3,
911
911
  n0,
912
912
  _DCWCE,
@@ -914,12 +914,12 @@ var DeleteChimeWebhookConfigurationException = [
914
914
  [_M],
915
915
  [0],
916
916
  ];
917
- schema.TypeRegistry.for(n0).registerError(DeleteChimeWebhookConfigurationException, DeleteChimeWebhookConfigurationException$1);
918
- var DeleteChimeWebhookConfigurationRequest = [3, n0, _DCWCR, 0, [_CCA], [0]];
919
- var DeleteChimeWebhookConfigurationResult = [3, n0, _DCWCRe, 0, [], []];
920
- var DeleteCustomActionRequest = [3, n0, _DCAR, 0, [_CAA], [0]];
921
- var DeleteCustomActionResult = [3, n0, _DCARe, 0, [], []];
922
- var DeleteMicrosoftTeamsUserIdentityException = [
917
+ schema.TypeRegistry.for(n0).registerError(DeleteChimeWebhookConfigurationException$, DeleteChimeWebhookConfigurationException);
918
+ var DeleteChimeWebhookConfigurationRequest$ = [3, n0, _DCWCR, 0, [_CCA], [0]];
919
+ var DeleteChimeWebhookConfigurationResult$ = [3, n0, _DCWCRe, 0, [], []];
920
+ var DeleteCustomActionRequest$ = [3, n0, _DCAR, 0, [_CAA], [0]];
921
+ var DeleteCustomActionResult$ = [3, n0, _DCARe, 0, [], []];
922
+ var DeleteMicrosoftTeamsUserIdentityException$ = [
923
923
  -3,
924
924
  n0,
925
925
  _DMTUIE,
@@ -927,10 +927,10 @@ var DeleteMicrosoftTeamsUserIdentityException = [
927
927
  [_M],
928
928
  [0],
929
929
  ];
930
- schema.TypeRegistry.for(n0).registerError(DeleteMicrosoftTeamsUserIdentityException, DeleteMicrosoftTeamsUserIdentityException$1);
931
- var DeleteMicrosoftTeamsUserIdentityRequest = [3, n0, _DMTUIR, 0, [_CCA, _UI], [0, 0]];
932
- var DeleteMicrosoftTeamsUserIdentityResult = [3, n0, _DMTUIRe, 0, [], []];
933
- var DeleteSlackChannelConfigurationException = [
930
+ schema.TypeRegistry.for(n0).registerError(DeleteMicrosoftTeamsUserIdentityException$, DeleteMicrosoftTeamsUserIdentityException);
931
+ var DeleteMicrosoftTeamsUserIdentityRequest$ = [3, n0, _DMTUIR, 0, [_CCA, _UI], [0, 0]];
932
+ var DeleteMicrosoftTeamsUserIdentityResult$ = [3, n0, _DMTUIRe, 0, [], []];
933
+ var DeleteSlackChannelConfigurationException$ = [
934
934
  -3,
935
935
  n0,
936
936
  _DSCCE,
@@ -938,14 +938,14 @@ var DeleteSlackChannelConfigurationException = [
938
938
  [_M],
939
939
  [0],
940
940
  ];
941
- schema.TypeRegistry.for(n0).registerError(DeleteSlackChannelConfigurationException, DeleteSlackChannelConfigurationException$1);
942
- var DeleteSlackChannelConfigurationRequest = [3, n0, _DSCCR, 0, [_CCA], [0]];
943
- var DeleteSlackChannelConfigurationResult = [3, n0, _DSCCRe, 0, [], []];
944
- var DeleteSlackUserIdentityException = [-3, n0, _DSUIE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
945
- schema.TypeRegistry.for(n0).registerError(DeleteSlackUserIdentityException, DeleteSlackUserIdentityException$1);
946
- var DeleteSlackUserIdentityRequest = [3, n0, _DSUIR, 0, [_CCA, _STI, _SUI], [0, 0, 0]];
947
- var DeleteSlackUserIdentityResult = [3, n0, _DSUIRe, 0, [], []];
948
- var DeleteSlackWorkspaceAuthorizationFault = [
941
+ schema.TypeRegistry.for(n0).registerError(DeleteSlackChannelConfigurationException$, DeleteSlackChannelConfigurationException);
942
+ var DeleteSlackChannelConfigurationRequest$ = [3, n0, _DSCCR, 0, [_CCA], [0]];
943
+ var DeleteSlackChannelConfigurationResult$ = [3, n0, _DSCCRe, 0, [], []];
944
+ var DeleteSlackUserIdentityException$ = [-3, n0, _DSUIE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
945
+ schema.TypeRegistry.for(n0).registerError(DeleteSlackUserIdentityException$, DeleteSlackUserIdentityException);
946
+ var DeleteSlackUserIdentityRequest$ = [3, n0, _DSUIR, 0, [_CCA, _STI, _SUI], [0, 0, 0]];
947
+ var DeleteSlackUserIdentityResult$ = [3, n0, _DSUIRe, 0, [], []];
948
+ var DeleteSlackWorkspaceAuthorizationFault$ = [
949
949
  -3,
950
950
  n0,
951
951
  _DSWAF,
@@ -953,10 +953,10 @@ var DeleteSlackWorkspaceAuthorizationFault = [
953
953
  [_M],
954
954
  [0],
955
955
  ];
956
- schema.TypeRegistry.for(n0).registerError(DeleteSlackWorkspaceAuthorizationFault, DeleteSlackWorkspaceAuthorizationFault$1);
957
- var DeleteSlackWorkspaceAuthorizationRequest = [3, n0, _DSWAR, 0, [_STI], [0]];
958
- var DeleteSlackWorkspaceAuthorizationResult = [3, n0, _DSWARe, 0, [], []];
959
- var DeleteTeamsChannelConfigurationException = [
956
+ schema.TypeRegistry.for(n0).registerError(DeleteSlackWorkspaceAuthorizationFault$, DeleteSlackWorkspaceAuthorizationFault);
957
+ var DeleteSlackWorkspaceAuthorizationRequest$ = [3, n0, _DSWAR, 0, [_STI], [0]];
958
+ var DeleteSlackWorkspaceAuthorizationResult$ = [3, n0, _DSWARe, 0, [], []];
959
+ var DeleteTeamsChannelConfigurationException$ = [
960
960
  -3,
961
961
  n0,
962
962
  _DTCCE,
@@ -964,10 +964,10 @@ var DeleteTeamsChannelConfigurationException = [
964
964
  [_M],
965
965
  [0],
966
966
  ];
967
- schema.TypeRegistry.for(n0).registerError(DeleteTeamsChannelConfigurationException, DeleteTeamsChannelConfigurationException$1);
968
- var DeleteTeamsChannelConfigurationRequest = [3, n0, _DTCCR, 0, [_CCA], [0]];
969
- var DeleteTeamsChannelConfigurationResult = [3, n0, _DTCCRe, 0, [], []];
970
- var DeleteTeamsConfiguredTeamException = [
967
+ schema.TypeRegistry.for(n0).registerError(DeleteTeamsChannelConfigurationException$, DeleteTeamsChannelConfigurationException);
968
+ var DeleteTeamsChannelConfigurationRequest$ = [3, n0, _DTCCR, 0, [_CCA], [0]];
969
+ var DeleteTeamsChannelConfigurationResult$ = [3, n0, _DTCCRe, 0, [], []];
970
+ var DeleteTeamsConfiguredTeamException$ = [
971
971
  -3,
972
972
  n0,
973
973
  _DTCTE,
@@ -975,10 +975,10 @@ var DeleteTeamsConfiguredTeamException = [
975
975
  [_M],
976
976
  [0],
977
977
  ];
978
- schema.TypeRegistry.for(n0).registerError(DeleteTeamsConfiguredTeamException, DeleteTeamsConfiguredTeamException$1);
979
- var DeleteTeamsConfiguredTeamRequest = [3, n0, _DTCTR, 0, [_TIe], [0]];
980
- var DeleteTeamsConfiguredTeamResult = [3, n0, _DTCTRe, 0, [], []];
981
- var DescribeChimeWebhookConfigurationsException = [
978
+ schema.TypeRegistry.for(n0).registerError(DeleteTeamsConfiguredTeamException$, DeleteTeamsConfiguredTeamException);
979
+ var DeleteTeamsConfiguredTeamRequest$ = [3, n0, _DTCTR, 0, [_TIe], [0]];
980
+ var DeleteTeamsConfiguredTeamResult$ = [3, n0, _DTCTRe, 0, [], []];
981
+ var DescribeChimeWebhookConfigurationsException$ = [
982
982
  -3,
983
983
  n0,
984
984
  _DCWCEe,
@@ -986,8 +986,8 @@ var DescribeChimeWebhookConfigurationsException = [
986
986
  [_M],
987
987
  [0],
988
988
  ];
989
- schema.TypeRegistry.for(n0).registerError(DescribeChimeWebhookConfigurationsException, DescribeChimeWebhookConfigurationsException$1);
990
- var DescribeChimeWebhookConfigurationsRequest = [
989
+ schema.TypeRegistry.for(n0).registerError(DescribeChimeWebhookConfigurationsException$, DescribeChimeWebhookConfigurationsException);
990
+ var DescribeChimeWebhookConfigurationsRequest$ = [
991
991
  3,
992
992
  n0,
993
993
  _DCWCRes,
@@ -995,7 +995,7 @@ var DescribeChimeWebhookConfigurationsRequest = [
995
995
  [_MR, _NTe, _CCA],
996
996
  [1, 0, 0],
997
997
  ];
998
- var DescribeChimeWebhookConfigurationsResult = [
998
+ var DescribeChimeWebhookConfigurationsResult$ = [
999
999
  3,
1000
1000
  n0,
1001
1001
  _DCWCResc,
@@ -1003,7 +1003,7 @@ var DescribeChimeWebhookConfigurationsResult = [
1003
1003
  [_NTe, _WCe],
1004
1004
  [0, [() => ChimeWebhookConfigurationList, 0]],
1005
1005
  ];
1006
- var DescribeSlackChannelConfigurationsException = [
1006
+ var DescribeSlackChannelConfigurationsException$ = [
1007
1007
  -3,
1008
1008
  n0,
1009
1009
  _DSCCEe,
@@ -1011,8 +1011,8 @@ var DescribeSlackChannelConfigurationsException = [
1011
1011
  [_M],
1012
1012
  [0],
1013
1013
  ];
1014
- schema.TypeRegistry.for(n0).registerError(DescribeSlackChannelConfigurationsException, DescribeSlackChannelConfigurationsException$1);
1015
- var DescribeSlackChannelConfigurationsRequest = [
1014
+ schema.TypeRegistry.for(n0).registerError(DescribeSlackChannelConfigurationsException$, DescribeSlackChannelConfigurationsException);
1015
+ var DescribeSlackChannelConfigurationsRequest$ = [
1016
1016
  3,
1017
1017
  n0,
1018
1018
  _DSCCRes,
@@ -1020,7 +1020,7 @@ var DescribeSlackChannelConfigurationsRequest = [
1020
1020
  [_MR, _NTe, _CCA],
1021
1021
  [1, 0, 0],
1022
1022
  ];
1023
- var DescribeSlackChannelConfigurationsResult = [
1023
+ var DescribeSlackChannelConfigurationsResult$ = [
1024
1024
  3,
1025
1025
  n0,
1026
1026
  _DSCCResc,
@@ -1028,7 +1028,7 @@ var DescribeSlackChannelConfigurationsResult = [
1028
1028
  [_NTe, _SCC],
1029
1029
  [0, [() => SlackChannelConfigurationList, 0]],
1030
1030
  ];
1031
- var DescribeSlackUserIdentitiesException = [
1031
+ var DescribeSlackUserIdentitiesException$ = [
1032
1032
  -3,
1033
1033
  n0,
1034
1034
  _DSUIEe,
@@ -1036,8 +1036,8 @@ var DescribeSlackUserIdentitiesException = [
1036
1036
  [_M],
1037
1037
  [0],
1038
1038
  ];
1039
- schema.TypeRegistry.for(n0).registerError(DescribeSlackUserIdentitiesException, DescribeSlackUserIdentitiesException$1);
1040
- var DescribeSlackUserIdentitiesRequest = [
1039
+ schema.TypeRegistry.for(n0).registerError(DescribeSlackUserIdentitiesException$, DescribeSlackUserIdentitiesException);
1040
+ var DescribeSlackUserIdentitiesRequest$ = [
1041
1041
  3,
1042
1042
  n0,
1043
1043
  _DSUIRes,
@@ -1045,7 +1045,7 @@ var DescribeSlackUserIdentitiesRequest = [
1045
1045
  [_CCA, _NTe, _MR],
1046
1046
  [0, 0, 1],
1047
1047
  ];
1048
- var DescribeSlackUserIdentitiesResult = [
1048
+ var DescribeSlackUserIdentitiesResult$ = [
1049
1049
  3,
1050
1050
  n0,
1051
1051
  _DSUIResc,
@@ -1053,10 +1053,10 @@ var DescribeSlackUserIdentitiesResult = [
1053
1053
  [_SUIl, _NTe],
1054
1054
  [() => SlackUserIdentitiesList, 0],
1055
1055
  ];
1056
- var DescribeSlackWorkspacesException = [-3, n0, _DSWE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
1057
- schema.TypeRegistry.for(n0).registerError(DescribeSlackWorkspacesException, DescribeSlackWorkspacesException$1);
1058
- var DescribeSlackWorkspacesRequest = [3, n0, _DSWR, 0, [_MR, _NTe], [1, 0]];
1059
- var DescribeSlackWorkspacesResult = [
1056
+ var DescribeSlackWorkspacesException$ = [-3, n0, _DSWE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
1057
+ schema.TypeRegistry.for(n0).registerError(DescribeSlackWorkspacesException$, DescribeSlackWorkspacesException);
1058
+ var DescribeSlackWorkspacesRequest$ = [3, n0, _DSWR, 0, [_MR, _NTe], [1, 0]];
1059
+ var DescribeSlackWorkspacesResult$ = [
1060
1060
  3,
1061
1061
  n0,
1062
1062
  _DSWRe,
@@ -1064,15 +1064,15 @@ var DescribeSlackWorkspacesResult = [
1064
1064
  [_SW, _NTe],
1065
1065
  [() => SlackWorkspacesList, 0],
1066
1066
  ];
1067
- var DisassociateFromConfigurationRequest = [3, n0, _DFCR, 0, [_R, _CC], [0, 0]];
1068
- var DisassociateFromConfigurationResult = [3, n0, _DFCRi, 0, [], []];
1069
- var GetAccountPreferencesException = [-3, n0, _GAPE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
1070
- schema.TypeRegistry.for(n0).registerError(GetAccountPreferencesException, GetAccountPreferencesException$1);
1071
- var GetAccountPreferencesRequest = [3, n0, _GAPR, 0, [], []];
1072
- var GetAccountPreferencesResult = [3, n0, _GAPRe, 0, [_AP], [() => AccountPreferences]];
1073
- var GetCustomActionRequest = [3, n0, _GCAR, 0, [_CAA], [0]];
1074
- var GetCustomActionResult = [3, n0, _GCARe, 0, [_CA], [() => CustomAction]];
1075
- var GetTeamsChannelConfigurationException = [
1067
+ var DisassociateFromConfigurationRequest$ = [3, n0, _DFCR, 0, [_R, _CC], [0, 0]];
1068
+ var DisassociateFromConfigurationResult$ = [3, n0, _DFCRi, 0, [], []];
1069
+ var GetAccountPreferencesException$ = [-3, n0, _GAPE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
1070
+ schema.TypeRegistry.for(n0).registerError(GetAccountPreferencesException$, GetAccountPreferencesException);
1071
+ var GetAccountPreferencesRequest$ = [3, n0, _GAPR, 0, [], []];
1072
+ var GetAccountPreferencesResult$ = [3, n0, _GAPRe, 0, [_AP], [() => AccountPreferences$]];
1073
+ var GetCustomActionRequest$ = [3, n0, _GCAR, 0, [_CAA], [0]];
1074
+ var GetCustomActionResult$ = [3, n0, _GCARe, 0, [_CA], [() => CustomAction$]];
1075
+ var GetTeamsChannelConfigurationException$ = [
1076
1076
  -3,
1077
1077
  n0,
1078
1078
  _GTCCE,
@@ -1080,29 +1080,29 @@ var GetTeamsChannelConfigurationException = [
1080
1080
  [_M],
1081
1081
  [0],
1082
1082
  ];
1083
- schema.TypeRegistry.for(n0).registerError(GetTeamsChannelConfigurationException, GetTeamsChannelConfigurationException$1);
1084
- var GetTeamsChannelConfigurationRequest = [3, n0, _GTCCR, 0, [_CCA], [0]];
1085
- var GetTeamsChannelConfigurationResult = [
1083
+ schema.TypeRegistry.for(n0).registerError(GetTeamsChannelConfigurationException$, GetTeamsChannelConfigurationException);
1084
+ var GetTeamsChannelConfigurationRequest$ = [3, n0, _GTCCR, 0, [_CCA], [0]];
1085
+ var GetTeamsChannelConfigurationResult$ = [
1086
1086
  3,
1087
1087
  n0,
1088
1088
  _GTCCRe,
1089
1089
  0,
1090
1090
  [_CCh],
1091
- [[() => TeamsChannelConfiguration, 0]],
1092
- ];
1093
- var InternalServiceError = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
1094
- schema.TypeRegistry.for(n0).registerError(InternalServiceError, InternalServiceError$1);
1095
- var InvalidParameterException = [-3, n0, _IPE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1096
- schema.TypeRegistry.for(n0).registerError(InvalidParameterException, InvalidParameterException$1);
1097
- var InvalidRequestException = [-3, n0, _IRE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1098
- schema.TypeRegistry.for(n0).registerError(InvalidRequestException, InvalidRequestException$1);
1099
- var LimitExceededException = [-3, n0, _LEE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
1100
- schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
1101
- var ListAssociationsRequest = [3, n0, _LAR, 0, [_CC, _MR, _NTe], [0, 1, 0]];
1102
- var ListAssociationsResult = [3, n0, _LARi, 0, [_As, _NTe], [() => AssociationList, 0]];
1103
- var ListCustomActionsRequest = [3, n0, _LCAR, 0, [_MR, _NTe], [1, 0]];
1104
- var ListCustomActionsResult = [3, n0, _LCARi, 0, [_CAu, _NTe], [64 | 0, 0]];
1105
- var ListMicrosoftTeamsConfiguredTeamsException = [
1091
+ [[() => TeamsChannelConfiguration$, 0]],
1092
+ ];
1093
+ var InternalServiceError$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
1094
+ schema.TypeRegistry.for(n0).registerError(InternalServiceError$, InternalServiceError);
1095
+ var InvalidParameterException$ = [-3, n0, _IPE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1096
+ schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
1097
+ var InvalidRequestException$ = [-3, n0, _IRE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1098
+ schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
1099
+ var LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
1100
+ schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
1101
+ var ListAssociationsRequest$ = [3, n0, _LAR, 0, [_CC, _MR, _NTe], [0, 1, 0]];
1102
+ var ListAssociationsResult$ = [3, n0, _LARi, 0, [_As, _NTe], [() => AssociationList, 0]];
1103
+ var ListCustomActionsRequest$ = [3, n0, _LCAR, 0, [_MR, _NTe], [1, 0]];
1104
+ var ListCustomActionsResult$ = [3, n0, _LCARi, 0, [_CAu, _NTe], [64 | 0, 0]];
1105
+ var ListMicrosoftTeamsConfiguredTeamsException$ = [
1106
1106
  -3,
1107
1107
  n0,
1108
1108
  _LMTCTE,
@@ -1110,9 +1110,9 @@ var ListMicrosoftTeamsConfiguredTeamsException = [
1110
1110
  [_M],
1111
1111
  [0],
1112
1112
  ];
1113
- schema.TypeRegistry.for(n0).registerError(ListMicrosoftTeamsConfiguredTeamsException, ListMicrosoftTeamsConfiguredTeamsException$1);
1114
- var ListMicrosoftTeamsConfiguredTeamsRequest = [3, n0, _LMTCTR, 0, [_MR, _NTe], [1, 0]];
1115
- var ListMicrosoftTeamsConfiguredTeamsResult = [
1113
+ schema.TypeRegistry.for(n0).registerError(ListMicrosoftTeamsConfiguredTeamsException$, ListMicrosoftTeamsConfiguredTeamsException);
1114
+ var ListMicrosoftTeamsConfiguredTeamsRequest$ = [3, n0, _LMTCTR, 0, [_MR, _NTe], [1, 0]];
1115
+ var ListMicrosoftTeamsConfiguredTeamsResult$ = [
1116
1116
  3,
1117
1117
  n0,
1118
1118
  _LMTCTRi,
@@ -1120,7 +1120,7 @@ var ListMicrosoftTeamsConfiguredTeamsResult = [
1120
1120
  [_CTon, _NTe],
1121
1121
  [() => ConfiguredTeamsList, 0],
1122
1122
  ];
1123
- var ListMicrosoftTeamsUserIdentitiesException = [
1123
+ var ListMicrosoftTeamsUserIdentitiesException$ = [
1124
1124
  -3,
1125
1125
  n0,
1126
1126
  _LMTUIE,
@@ -1128,8 +1128,8 @@ var ListMicrosoftTeamsUserIdentitiesException = [
1128
1128
  [_M],
1129
1129
  [0],
1130
1130
  ];
1131
- schema.TypeRegistry.for(n0).registerError(ListMicrosoftTeamsUserIdentitiesException, ListMicrosoftTeamsUserIdentitiesException$1);
1132
- var ListMicrosoftTeamsUserIdentitiesRequest = [
1131
+ schema.TypeRegistry.for(n0).registerError(ListMicrosoftTeamsUserIdentitiesException$, ListMicrosoftTeamsUserIdentitiesException);
1132
+ var ListMicrosoftTeamsUserIdentitiesRequest$ = [
1133
1133
  3,
1134
1134
  n0,
1135
1135
  _LMTUIR,
@@ -1137,7 +1137,7 @@ var ListMicrosoftTeamsUserIdentitiesRequest = [
1137
1137
  [_CCA, _NTe, _MR],
1138
1138
  [0, 0, 1],
1139
1139
  ];
1140
- var ListMicrosoftTeamsUserIdentitiesResult = [
1140
+ var ListMicrosoftTeamsUserIdentitiesResult$ = [
1141
1141
  3,
1142
1142
  n0,
1143
1143
  _LMTUIRi,
@@ -1145,9 +1145,9 @@ var ListMicrosoftTeamsUserIdentitiesResult = [
1145
1145
  [_TUI, _NTe],
1146
1146
  [() => TeamsUserIdentitiesList, 0],
1147
1147
  ];
1148
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARN], [0]];
1149
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [() => TagList]];
1150
- var ListTeamsChannelConfigurationsException = [
1148
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RARN], [0]];
1149
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [() => TagList]];
1150
+ var ListTeamsChannelConfigurationsException$ = [
1151
1151
  -3,
1152
1152
  n0,
1153
1153
  _LTCCE,
@@ -1155,8 +1155,8 @@ var ListTeamsChannelConfigurationsException = [
1155
1155
  [_M],
1156
1156
  [0],
1157
1157
  ];
1158
- schema.TypeRegistry.for(n0).registerError(ListTeamsChannelConfigurationsException, ListTeamsChannelConfigurationsException$1);
1159
- var ListTeamsChannelConfigurationsRequest = [
1158
+ schema.TypeRegistry.for(n0).registerError(ListTeamsChannelConfigurationsException$, ListTeamsChannelConfigurationsException);
1159
+ var ListTeamsChannelConfigurationsRequest$ = [
1160
1160
  3,
1161
1161
  n0,
1162
1162
  _LTCCR,
@@ -1164,7 +1164,7 @@ var ListTeamsChannelConfigurationsRequest = [
1164
1164
  [_MR, _NTe, _TIe],
1165
1165
  [1, 0, 0],
1166
1166
  ];
1167
- var ListTeamsChannelConfigurationsResult = [
1167
+ var ListTeamsChannelConfigurationsResult$ = [
1168
1168
  3,
1169
1169
  n0,
1170
1170
  _LTCCRi,
@@ -1172,11 +1172,11 @@ var ListTeamsChannelConfigurationsResult = [
1172
1172
  [_NTe, _TCC],
1173
1173
  [0, [() => TeamChannelConfigurationsList, 0]],
1174
1174
  ];
1175
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
1176
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1177
- var ServiceUnavailableException = [-3, n0, _SUE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1178
- schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException, ServiceUnavailableException$1);
1179
- var SlackChannelConfiguration = [
1175
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_M], [0]];
1176
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
1177
+ var ServiceUnavailableException$ = [-3, n0, _SUE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
1178
+ schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
1179
+ var SlackChannelConfiguration$ = [
1180
1180
  3,
1181
1181
  n0,
1182
1182
  _SCCl,
@@ -1184,7 +1184,7 @@ var SlackChannelConfiguration = [
1184
1184
  [_STN, _STI, _SCI, _SCN, _CCA, _IRA, _STA, _CN, _LL, _GPA, _UAR, _T, _S, _SR],
1185
1185
  [0, 0, 0, [() => SlackChannelDisplayName, 0], 0, 0, 64 | 0, 0, 0, 64 | 0, 2, () => Tags, 0, 0],
1186
1186
  ];
1187
- var SlackUserIdentity = [
1187
+ var SlackUserIdentity$ = [
1188
1188
  3,
1189
1189
  n0,
1190
1190
  _SUIla,
@@ -1192,11 +1192,11 @@ var SlackUserIdentity = [
1192
1192
  [_IRA, _CCA, _STI, _SUI, _AUI],
1193
1193
  [0, 0, 0, 0, 0],
1194
1194
  ];
1195
- var SlackWorkspace = [3, n0, _SWl, 0, [_STI, _STN, _S, _SR], [0, 0, 0, 0]];
1196
- var Tag = [3, n0, _Ta, 0, [_TK, _TV], [0, 0]];
1197
- var TagResourceRequest = [3, n0, _TRR, 0, [_RARN, _T], [0, () => TagList]];
1198
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1199
- var TeamsChannelConfiguration = [
1195
+ var SlackWorkspace$ = [3, n0, _SWl, 0, [_STI, _STN, _S, _SR], [0, 0, 0, 0]];
1196
+ var Tag$ = [3, n0, _Ta, 0, [_TK, _TV], [0, 0]];
1197
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_RARN, _T], [0, () => TagList]];
1198
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
1199
+ var TeamsChannelConfiguration$ = [
1200
1200
  3,
1201
1201
  n0,
1202
1202
  _TCCe,
@@ -1204,7 +1204,7 @@ var TeamsChannelConfiguration = [
1204
1204
  [_CI, _CNh, _TIe, _TN, _TI, _CCA, _IRA, _STA, _CN, _LL, _GPA, _UAR, _T, _S, _SR],
1205
1205
  [0, [() => TeamsChannelName, 0], 0, [() => TeamName, 0], 0, 0, 0, 64 | 0, 0, 0, 64 | 0, 2, () => Tags, 0, 0],
1206
1206
  ];
1207
- var TeamsUserIdentity = [
1207
+ var TeamsUserIdentity$ = [
1208
1208
  3,
1209
1209
  n0,
1210
1210
  _TUIe,
@@ -1212,24 +1212,24 @@ var TeamsUserIdentity = [
1212
1212
  [_IRA, _CCA, _TIe, _UI, _AUI, _TCI, _TTI],
1213
1213
  [0, 0, 0, 0, 0, 0, 0],
1214
1214
  ];
1215
- var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1216
- schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
1217
- var UnauthorizedException = [-3, n0, _UE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
1218
- schema.TypeRegistry.for(n0).registerError(UnauthorizedException, UnauthorizedException$1);
1219
- var UntagResourceRequest = [3, n0, _URR, 0, [_RARN, _TKa], [0, 64 | 0]];
1220
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1221
- var UpdateAccountPreferencesException = [-3, n0, _UAPE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
1222
- schema.TypeRegistry.for(n0).registerError(UpdateAccountPreferencesException, UpdateAccountPreferencesException$1);
1223
- var UpdateAccountPreferencesRequest = [3, n0, _UAPR, 0, [_UAR, _TDCE], [2, 2]];
1224
- var UpdateAccountPreferencesResult = [
1215
+ var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
1216
+ schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
1217
+ var UnauthorizedException$ = [-3, n0, _UE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
1218
+ schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
1219
+ var UntagResourceRequest$ = [3, n0, _URR, 0, [_RARN, _TKa], [0, 64 | 0]];
1220
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
1221
+ var UpdateAccountPreferencesException$ = [-3, n0, _UAPE, { [_e]: _s, [_hE]: 500 }, [_M], [0]];
1222
+ schema.TypeRegistry.for(n0).registerError(UpdateAccountPreferencesException$, UpdateAccountPreferencesException);
1223
+ var UpdateAccountPreferencesRequest$ = [3, n0, _UAPR, 0, [_UAR, _TDCE], [2, 2]];
1224
+ var UpdateAccountPreferencesResult$ = [
1225
1225
  3,
1226
1226
  n0,
1227
1227
  _UAPRp,
1228
1228
  0,
1229
1229
  [_AP],
1230
- [() => AccountPreferences],
1230
+ [() => AccountPreferences$],
1231
1231
  ];
1232
- var UpdateChimeWebhookConfigurationException = [
1232
+ var UpdateChimeWebhookConfigurationException$ = [
1233
1233
  -3,
1234
1234
  n0,
1235
1235
  _UCWCE,
@@ -1237,8 +1237,8 @@ var UpdateChimeWebhookConfigurationException = [
1237
1237
  [_M],
1238
1238
  [0],
1239
1239
  ];
1240
- schema.TypeRegistry.for(n0).registerError(UpdateChimeWebhookConfigurationException, UpdateChimeWebhookConfigurationException$1);
1241
- var UpdateChimeWebhookConfigurationRequest = [
1240
+ schema.TypeRegistry.for(n0).registerError(UpdateChimeWebhookConfigurationException$, UpdateChimeWebhookConfigurationException);
1241
+ var UpdateChimeWebhookConfigurationRequest$ = [
1242
1242
  3,
1243
1243
  n0,
1244
1244
  _UCWCR,
@@ -1246,24 +1246,24 @@ var UpdateChimeWebhookConfigurationRequest = [
1246
1246
  [_CCA, _WD, _WU, _STA, _IRA, _LL],
1247
1247
  [0, [() => ChimeWebhookDescription, 0], [() => ChimeWebhookUrl, 0], 64 | 0, 0, 0],
1248
1248
  ];
1249
- var UpdateChimeWebhookConfigurationResult = [
1249
+ var UpdateChimeWebhookConfigurationResult$ = [
1250
1250
  3,
1251
1251
  n0,
1252
1252
  _UCWCRp,
1253
1253
  0,
1254
1254
  [_WC],
1255
- [[() => ChimeWebhookConfiguration, 0]],
1255
+ [[() => ChimeWebhookConfiguration$, 0]],
1256
1256
  ];
1257
- var UpdateCustomActionRequest = [
1257
+ var UpdateCustomActionRequest$ = [
1258
1258
  3,
1259
1259
  n0,
1260
1260
  _UCAR,
1261
1261
  0,
1262
1262
  [_CAA, _D, _AN, _A],
1263
- [0, () => CustomActionDefinition, 0, () => CustomActionAttachmentList],
1263
+ [0, () => CustomActionDefinition$, 0, () => CustomActionAttachmentList],
1264
1264
  ];
1265
- var UpdateCustomActionResult = [3, n0, _UCARp, 0, [_CAA], [0]];
1266
- var UpdateSlackChannelConfigurationException = [
1265
+ var UpdateCustomActionResult$ = [3, n0, _UCARp, 0, [_CAA], [0]];
1266
+ var UpdateSlackChannelConfigurationException$ = [
1267
1267
  -3,
1268
1268
  n0,
1269
1269
  _USCCE,
@@ -1271,8 +1271,8 @@ var UpdateSlackChannelConfigurationException = [
1271
1271
  [_M],
1272
1272
  [0],
1273
1273
  ];
1274
- schema.TypeRegistry.for(n0).registerError(UpdateSlackChannelConfigurationException, UpdateSlackChannelConfigurationException$1);
1275
- var UpdateSlackChannelConfigurationRequest = [
1274
+ schema.TypeRegistry.for(n0).registerError(UpdateSlackChannelConfigurationException$, UpdateSlackChannelConfigurationException);
1275
+ var UpdateSlackChannelConfigurationRequest$ = [
1276
1276
  3,
1277
1277
  n0,
1278
1278
  _USCCR,
@@ -1280,15 +1280,15 @@ var UpdateSlackChannelConfigurationRequest = [
1280
1280
  [_CCA, _SCI, _SCN, _STA, _IRA, _LL, _GPA, _UAR],
1281
1281
  [0, 0, [() => SlackChannelDisplayName, 0], 64 | 0, 0, 0, 64 | 0, 2],
1282
1282
  ];
1283
- var UpdateSlackChannelConfigurationResult = [
1283
+ var UpdateSlackChannelConfigurationResult$ = [
1284
1284
  3,
1285
1285
  n0,
1286
1286
  _USCCRp,
1287
1287
  0,
1288
1288
  [_CCh],
1289
- [[() => SlackChannelConfiguration, 0]],
1289
+ [[() => SlackChannelConfiguration$, 0]],
1290
1290
  ];
1291
- var UpdateTeamsChannelConfigurationException = [
1291
+ var UpdateTeamsChannelConfigurationException$ = [
1292
1292
  -3,
1293
1293
  n0,
1294
1294
  _UTCCE,
@@ -1296,8 +1296,8 @@ var UpdateTeamsChannelConfigurationException = [
1296
1296
  [_M],
1297
1297
  [0],
1298
1298
  ];
1299
- schema.TypeRegistry.for(n0).registerError(UpdateTeamsChannelConfigurationException, UpdateTeamsChannelConfigurationException$1);
1300
- var UpdateTeamsChannelConfigurationRequest = [
1299
+ schema.TypeRegistry.for(n0).registerError(UpdateTeamsChannelConfigurationException$, UpdateTeamsChannelConfigurationException);
1300
+ var UpdateTeamsChannelConfigurationRequest$ = [
1301
1301
  3,
1302
1302
  n0,
1303
1303
  _UTCCR,
@@ -1305,305 +1305,299 @@ var UpdateTeamsChannelConfigurationRequest = [
1305
1305
  [_CCA, _CI, _CNh, _STA, _IRA, _LL, _GPA, _UAR],
1306
1306
  [0, 0, [() => TeamsChannelName, 0], 64 | 0, 0, 0, 64 | 0, 2],
1307
1307
  ];
1308
- var UpdateTeamsChannelConfigurationResult = [
1308
+ var UpdateTeamsChannelConfigurationResult$ = [
1309
1309
  3,
1310
1310
  n0,
1311
1311
  _UTCCRp,
1312
1312
  0,
1313
1313
  [_CCh],
1314
- [[() => TeamsChannelConfiguration, 0]],
1315
- ];
1316
- var ChatbotServiceException = [-3, _sm, "ChatbotServiceException", 0, [], []];
1317
- schema.TypeRegistry.for(_sm).registerError(ChatbotServiceException, ChatbotServiceException$1);
1318
- var AssociationList = [1, n0, _ALs, 0, () => AssociationListing];
1319
- var ChimeWebhookConfigurationList = [1, n0, _CWCL, 0, [() => ChimeWebhookConfiguration, 0]];
1320
- var ConfiguredTeamsList = [1, n0, _CTL, 0, () => ConfiguredTeam];
1321
- var CustomActionAttachmentCriteriaList = [
1322
- 1,
1323
- n0,
1324
- _CAACL,
1325
- 0,
1326
- () => CustomActionAttachmentCriteria,
1327
- ];
1328
- var CustomActionAttachmentList = [1, n0, _CAAL, 0, () => CustomActionAttachment];
1329
- var SlackChannelConfigurationList = [1, n0, _SCCL, 0, [() => SlackChannelConfiguration, 0]];
1330
- var SlackUserIdentitiesList = [1, n0, _SUIL, 0, () => SlackUserIdentity];
1331
- var SlackWorkspacesList = [1, n0, _SWL, 0, () => SlackWorkspace];
1332
- var TagList = [1, n0, _TL, 0, () => Tag];
1333
- var Tags = [1, n0, _T, 0, () => Tag];
1334
- var TeamChannelConfigurationsList = [1, n0, _TCCL, 0, [() => TeamsChannelConfiguration, 0]];
1335
- var TeamsUserIdentitiesList = [1, n0, _TUIL, 0, () => TeamsUserIdentity];
1336
- var AssociateToConfiguration = [
1314
+ [[() => TeamsChannelConfiguration$, 0]],
1315
+ ];
1316
+ var ChatbotServiceException$ = [-3, _sm, "ChatbotServiceException", 0, [], []];
1317
+ schema.TypeRegistry.for(_sm).registerError(ChatbotServiceException$, ChatbotServiceException);
1318
+ var AssociationList = [1, n0, _ALs, 0, () => AssociationListing$];
1319
+ var ChimeWebhookConfigurationList = [1, n0, _CWCL, 0, [() => ChimeWebhookConfiguration$, 0]];
1320
+ var ConfiguredTeamsList = [1, n0, _CTL, 0, () => ConfiguredTeam$];
1321
+ var CustomActionAttachmentCriteriaList = [1, n0, _CAACL, 0, () => CustomActionAttachmentCriteria$];
1322
+ var CustomActionAttachmentList = [1, n0, _CAAL, 0, () => CustomActionAttachment$];
1323
+ var SlackChannelConfigurationList = [1, n0, _SCCL, 0, [() => SlackChannelConfiguration$, 0]];
1324
+ var SlackUserIdentitiesList = [1, n0, _SUIL, 0, () => SlackUserIdentity$];
1325
+ var SlackWorkspacesList = [1, n0, _SWL, 0, () => SlackWorkspace$];
1326
+ var TagList = [1, n0, _TL, 0, () => Tag$];
1327
+ var Tags = [1, n0, _T, 0, () => Tag$];
1328
+ var TeamChannelConfigurationsList = [1, n0, _TCCL, 0, [() => TeamsChannelConfiguration$, 0]];
1329
+ var TeamsUserIdentitiesList = [1, n0, _TUIL, 0, () => TeamsUserIdentity$];
1330
+ var AssociateToConfiguration$ = [
1337
1331
  9,
1338
1332
  n0,
1339
1333
  _ATC,
1340
1334
  { [_h]: ["POST", "/associate-to-configuration", 201] },
1341
- () => AssociateToConfigurationRequest,
1342
- () => AssociateToConfigurationResult,
1335
+ () => AssociateToConfigurationRequest$,
1336
+ () => AssociateToConfigurationResult$,
1343
1337
  ];
1344
- var CreateChimeWebhookConfiguration = [
1338
+ var CreateChimeWebhookConfiguration$ = [
1345
1339
  9,
1346
1340
  n0,
1347
1341
  _CCWC,
1348
1342
  { [_h]: ["POST", "/create-chime-webhook-configuration", 201] },
1349
- () => CreateChimeWebhookConfigurationRequest,
1350
- () => CreateChimeWebhookConfigurationResult,
1343
+ () => CreateChimeWebhookConfigurationRequest$,
1344
+ () => CreateChimeWebhookConfigurationResult$,
1351
1345
  ];
1352
- var CreateCustomAction = [
1346
+ var CreateCustomAction$ = [
1353
1347
  9,
1354
1348
  n0,
1355
1349
  _CCAr,
1356
1350
  { [_h]: ["POST", "/create-custom-action", 201] },
1357
- () => CreateCustomActionRequest,
1358
- () => CreateCustomActionResult,
1351
+ () => CreateCustomActionRequest$,
1352
+ () => CreateCustomActionResult$,
1359
1353
  ];
1360
- var CreateMicrosoftTeamsChannelConfiguration = [
1354
+ var CreateMicrosoftTeamsChannelConfiguration$ = [
1361
1355
  9,
1362
1356
  n0,
1363
1357
  _CMTCC,
1364
1358
  { [_h]: ["POST", "/create-ms-teams-channel-configuration", 201] },
1365
- () => CreateTeamsChannelConfigurationRequest,
1366
- () => CreateTeamsChannelConfigurationResult,
1359
+ () => CreateTeamsChannelConfigurationRequest$,
1360
+ () => CreateTeamsChannelConfigurationResult$,
1367
1361
  ];
1368
- var CreateSlackChannelConfiguration = [
1362
+ var CreateSlackChannelConfiguration$ = [
1369
1363
  9,
1370
1364
  n0,
1371
1365
  _CSCC,
1372
1366
  { [_h]: ["POST", "/create-slack-channel-configuration", 201] },
1373
- () => CreateSlackChannelConfigurationRequest,
1374
- () => CreateSlackChannelConfigurationResult,
1367
+ () => CreateSlackChannelConfigurationRequest$,
1368
+ () => CreateSlackChannelConfigurationResult$,
1375
1369
  ];
1376
- var DeleteChimeWebhookConfiguration = [
1370
+ var DeleteChimeWebhookConfiguration$ = [
1377
1371
  9,
1378
1372
  n0,
1379
1373
  _DCWC,
1380
1374
  { [_h]: ["POST", "/delete-chime-webhook-configuration", 204] },
1381
- () => DeleteChimeWebhookConfigurationRequest,
1382
- () => DeleteChimeWebhookConfigurationResult,
1375
+ () => DeleteChimeWebhookConfigurationRequest$,
1376
+ () => DeleteChimeWebhookConfigurationResult$,
1383
1377
  ];
1384
- var DeleteCustomAction = [
1378
+ var DeleteCustomAction$ = [
1385
1379
  9,
1386
1380
  n0,
1387
1381
  _DCA,
1388
1382
  { [_h]: ["POST", "/delete-custom-action", 204] },
1389
- () => DeleteCustomActionRequest,
1390
- () => DeleteCustomActionResult,
1383
+ () => DeleteCustomActionRequest$,
1384
+ () => DeleteCustomActionResult$,
1391
1385
  ];
1392
- var DeleteMicrosoftTeamsChannelConfiguration = [
1386
+ var DeleteMicrosoftTeamsChannelConfiguration$ = [
1393
1387
  9,
1394
1388
  n0,
1395
1389
  _DMTCC,
1396
1390
  { [_h]: ["POST", "/delete-ms-teams-channel-configuration", 204] },
1397
- () => DeleteTeamsChannelConfigurationRequest,
1398
- () => DeleteTeamsChannelConfigurationResult,
1391
+ () => DeleteTeamsChannelConfigurationRequest$,
1392
+ () => DeleteTeamsChannelConfigurationResult$,
1399
1393
  ];
1400
- var DeleteMicrosoftTeamsConfiguredTeam = [
1394
+ var DeleteMicrosoftTeamsConfiguredTeam$ = [
1401
1395
  9,
1402
1396
  n0,
1403
1397
  _DMTCT,
1404
1398
  { [_h]: ["POST", "/delete-ms-teams-configured-teams", 204] },
1405
- () => DeleteTeamsConfiguredTeamRequest,
1406
- () => DeleteTeamsConfiguredTeamResult,
1399
+ () => DeleteTeamsConfiguredTeamRequest$,
1400
+ () => DeleteTeamsConfiguredTeamResult$,
1407
1401
  ];
1408
- var DeleteMicrosoftTeamsUserIdentity = [
1402
+ var DeleteMicrosoftTeamsUserIdentity$ = [
1409
1403
  9,
1410
1404
  n0,
1411
1405
  _DMTUI,
1412
1406
  { [_h]: ["POST", "/delete-ms-teams-user-identity", 204] },
1413
- () => DeleteMicrosoftTeamsUserIdentityRequest,
1414
- () => DeleteMicrosoftTeamsUserIdentityResult,
1407
+ () => DeleteMicrosoftTeamsUserIdentityRequest$,
1408
+ () => DeleteMicrosoftTeamsUserIdentityResult$,
1415
1409
  ];
1416
- var DeleteSlackChannelConfiguration = [
1410
+ var DeleteSlackChannelConfiguration$ = [
1417
1411
  9,
1418
1412
  n0,
1419
1413
  _DSCC,
1420
1414
  { [_h]: ["POST", "/delete-slack-channel-configuration", 204] },
1421
- () => DeleteSlackChannelConfigurationRequest,
1422
- () => DeleteSlackChannelConfigurationResult,
1415
+ () => DeleteSlackChannelConfigurationRequest$,
1416
+ () => DeleteSlackChannelConfigurationResult$,
1423
1417
  ];
1424
- var DeleteSlackUserIdentity = [
1418
+ var DeleteSlackUserIdentity$ = [
1425
1419
  9,
1426
1420
  n0,
1427
1421
  _DSUI,
1428
1422
  { [_h]: ["POST", "/delete-slack-user-identity", 204] },
1429
- () => DeleteSlackUserIdentityRequest,
1430
- () => DeleteSlackUserIdentityResult,
1423
+ () => DeleteSlackUserIdentityRequest$,
1424
+ () => DeleteSlackUserIdentityResult$,
1431
1425
  ];
1432
- var DeleteSlackWorkspaceAuthorization = [
1426
+ var DeleteSlackWorkspaceAuthorization$ = [
1433
1427
  9,
1434
1428
  n0,
1435
1429
  _DSWA,
1436
1430
  { [_h]: ["POST", "/delete-slack-workspace-authorization", 204] },
1437
- () => DeleteSlackWorkspaceAuthorizationRequest,
1438
- () => DeleteSlackWorkspaceAuthorizationResult,
1431
+ () => DeleteSlackWorkspaceAuthorizationRequest$,
1432
+ () => DeleteSlackWorkspaceAuthorizationResult$,
1439
1433
  ];
1440
- var DescribeChimeWebhookConfigurations = [
1434
+ var DescribeChimeWebhookConfigurations$ = [
1441
1435
  9,
1442
1436
  n0,
1443
1437
  _DCWCe,
1444
1438
  { [_h]: ["POST", "/describe-chime-webhook-configurations", 200] },
1445
- () => DescribeChimeWebhookConfigurationsRequest,
1446
- () => DescribeChimeWebhookConfigurationsResult,
1439
+ () => DescribeChimeWebhookConfigurationsRequest$,
1440
+ () => DescribeChimeWebhookConfigurationsResult$,
1447
1441
  ];
1448
- var DescribeSlackChannelConfigurations = [
1442
+ var DescribeSlackChannelConfigurations$ = [
1449
1443
  9,
1450
1444
  n0,
1451
1445
  _DSCCe,
1452
1446
  { [_h]: ["POST", "/describe-slack-channel-configurations", 200] },
1453
- () => DescribeSlackChannelConfigurationsRequest,
1454
- () => DescribeSlackChannelConfigurationsResult,
1447
+ () => DescribeSlackChannelConfigurationsRequest$,
1448
+ () => DescribeSlackChannelConfigurationsResult$,
1455
1449
  ];
1456
- var DescribeSlackUserIdentities = [
1450
+ var DescribeSlackUserIdentities$ = [
1457
1451
  9,
1458
1452
  n0,
1459
1453
  _DSUIe,
1460
1454
  { [_h]: ["POST", "/describe-slack-user-identities", 200] },
1461
- () => DescribeSlackUserIdentitiesRequest,
1462
- () => DescribeSlackUserIdentitiesResult,
1455
+ () => DescribeSlackUserIdentitiesRequest$,
1456
+ () => DescribeSlackUserIdentitiesResult$,
1463
1457
  ];
1464
- var DescribeSlackWorkspaces = [
1458
+ var DescribeSlackWorkspaces$ = [
1465
1459
  9,
1466
1460
  n0,
1467
1461
  _DSW,
1468
1462
  { [_h]: ["POST", "/describe-slack-workspaces", 200] },
1469
- () => DescribeSlackWorkspacesRequest,
1470
- () => DescribeSlackWorkspacesResult,
1463
+ () => DescribeSlackWorkspacesRequest$,
1464
+ () => DescribeSlackWorkspacesResult$,
1471
1465
  ];
1472
- var DisassociateFromConfiguration = [
1466
+ var DisassociateFromConfiguration$ = [
1473
1467
  9,
1474
1468
  n0,
1475
1469
  _DFC,
1476
1470
  { [_h]: ["POST", "/disassociate-from-configuration", 204] },
1477
- () => DisassociateFromConfigurationRequest,
1478
- () => DisassociateFromConfigurationResult,
1471
+ () => DisassociateFromConfigurationRequest$,
1472
+ () => DisassociateFromConfigurationResult$,
1479
1473
  ];
1480
- var GetAccountPreferences = [
1474
+ var GetAccountPreferences$ = [
1481
1475
  9,
1482
1476
  n0,
1483
1477
  _GAP,
1484
1478
  { [_h]: ["POST", "/get-account-preferences", 200] },
1485
- () => GetAccountPreferencesRequest,
1486
- () => GetAccountPreferencesResult,
1479
+ () => GetAccountPreferencesRequest$,
1480
+ () => GetAccountPreferencesResult$,
1487
1481
  ];
1488
- var GetCustomAction = [
1482
+ var GetCustomAction$ = [
1489
1483
  9,
1490
1484
  n0,
1491
1485
  _GCA,
1492
1486
  { [_h]: ["POST", "/get-custom-action", 200] },
1493
- () => GetCustomActionRequest,
1494
- () => GetCustomActionResult,
1487
+ () => GetCustomActionRequest$,
1488
+ () => GetCustomActionResult$,
1495
1489
  ];
1496
- var GetMicrosoftTeamsChannelConfiguration = [
1490
+ var GetMicrosoftTeamsChannelConfiguration$ = [
1497
1491
  9,
1498
1492
  n0,
1499
1493
  _GMTCC,
1500
1494
  { [_h]: ["POST", "/get-ms-teams-channel-configuration", 200] },
1501
- () => GetTeamsChannelConfigurationRequest,
1502
- () => GetTeamsChannelConfigurationResult,
1495
+ () => GetTeamsChannelConfigurationRequest$,
1496
+ () => GetTeamsChannelConfigurationResult$,
1503
1497
  ];
1504
- var ListAssociations = [
1498
+ var ListAssociations$ = [
1505
1499
  9,
1506
1500
  n0,
1507
1501
  _LA,
1508
1502
  { [_h]: ["POST", "/list-associations", 200] },
1509
- () => ListAssociationsRequest,
1510
- () => ListAssociationsResult,
1503
+ () => ListAssociationsRequest$,
1504
+ () => ListAssociationsResult$,
1511
1505
  ];
1512
- var ListCustomActions = [
1506
+ var ListCustomActions$ = [
1513
1507
  9,
1514
1508
  n0,
1515
1509
  _LCA,
1516
1510
  { [_h]: ["POST", "/list-custom-actions", 200] },
1517
- () => ListCustomActionsRequest,
1518
- () => ListCustomActionsResult,
1511
+ () => ListCustomActionsRequest$,
1512
+ () => ListCustomActionsResult$,
1519
1513
  ];
1520
- var ListMicrosoftTeamsChannelConfigurations = [
1514
+ var ListMicrosoftTeamsChannelConfigurations$ = [
1521
1515
  9,
1522
1516
  n0,
1523
1517
  _LMTCC,
1524
1518
  { [_h]: ["POST", "/list-ms-teams-channel-configurations", 200] },
1525
- () => ListTeamsChannelConfigurationsRequest,
1526
- () => ListTeamsChannelConfigurationsResult,
1519
+ () => ListTeamsChannelConfigurationsRequest$,
1520
+ () => ListTeamsChannelConfigurationsResult$,
1527
1521
  ];
1528
- var ListMicrosoftTeamsConfiguredTeams = [
1522
+ var ListMicrosoftTeamsConfiguredTeams$ = [
1529
1523
  9,
1530
1524
  n0,
1531
1525
  _LMTCT,
1532
1526
  { [_h]: ["POST", "/list-ms-teams-configured-teams", 200] },
1533
- () => ListMicrosoftTeamsConfiguredTeamsRequest,
1534
- () => ListMicrosoftTeamsConfiguredTeamsResult,
1527
+ () => ListMicrosoftTeamsConfiguredTeamsRequest$,
1528
+ () => ListMicrosoftTeamsConfiguredTeamsResult$,
1535
1529
  ];
1536
- var ListMicrosoftTeamsUserIdentities = [
1530
+ var ListMicrosoftTeamsUserIdentities$ = [
1537
1531
  9,
1538
1532
  n0,
1539
1533
  _LMTUI,
1540
1534
  { [_h]: ["POST", "/list-ms-teams-user-identities", 200] },
1541
- () => ListMicrosoftTeamsUserIdentitiesRequest,
1542
- () => ListMicrosoftTeamsUserIdentitiesResult,
1535
+ () => ListMicrosoftTeamsUserIdentitiesRequest$,
1536
+ () => ListMicrosoftTeamsUserIdentitiesResult$,
1543
1537
  ];
1544
- var ListTagsForResource = [
1538
+ var ListTagsForResource$ = [
1545
1539
  9,
1546
1540
  n0,
1547
1541
  _LTFR,
1548
1542
  { [_h]: ["POST", "/list-tags-for-resource", 200] },
1549
- () => ListTagsForResourceRequest,
1550
- () => ListTagsForResourceResponse,
1543
+ () => ListTagsForResourceRequest$,
1544
+ () => ListTagsForResourceResponse$,
1551
1545
  ];
1552
- var TagResource = [
1546
+ var TagResource$ = [
1553
1547
  9,
1554
1548
  n0,
1555
1549
  _TR,
1556
1550
  { [_h]: ["POST", "/tag-resource", 200] },
1557
- () => TagResourceRequest,
1558
- () => TagResourceResponse,
1551
+ () => TagResourceRequest$,
1552
+ () => TagResourceResponse$,
1559
1553
  ];
1560
- var UntagResource = [
1554
+ var UntagResource$ = [
1561
1555
  9,
1562
1556
  n0,
1563
1557
  _UR,
1564
1558
  { [_h]: ["POST", "/untag-resource", 200] },
1565
- () => UntagResourceRequest,
1566
- () => UntagResourceResponse,
1559
+ () => UntagResourceRequest$,
1560
+ () => UntagResourceResponse$,
1567
1561
  ];
1568
- var UpdateAccountPreferences = [
1562
+ var UpdateAccountPreferences$ = [
1569
1563
  9,
1570
1564
  n0,
1571
1565
  _UAP,
1572
1566
  { [_h]: ["POST", "/update-account-preferences", 200] },
1573
- () => UpdateAccountPreferencesRequest,
1574
- () => UpdateAccountPreferencesResult,
1567
+ () => UpdateAccountPreferencesRequest$,
1568
+ () => UpdateAccountPreferencesResult$,
1575
1569
  ];
1576
- var UpdateChimeWebhookConfiguration = [
1570
+ var UpdateChimeWebhookConfiguration$ = [
1577
1571
  9,
1578
1572
  n0,
1579
1573
  _UCWC,
1580
1574
  { [_h]: ["POST", "/update-chime-webhook-configuration", 200] },
1581
- () => UpdateChimeWebhookConfigurationRequest,
1582
- () => UpdateChimeWebhookConfigurationResult,
1575
+ () => UpdateChimeWebhookConfigurationRequest$,
1576
+ () => UpdateChimeWebhookConfigurationResult$,
1583
1577
  ];
1584
- var UpdateCustomAction = [
1578
+ var UpdateCustomAction$ = [
1585
1579
  9,
1586
1580
  n0,
1587
1581
  _UCA,
1588
1582
  { [_h]: ["POST", "/update-custom-action", 200] },
1589
- () => UpdateCustomActionRequest,
1590
- () => UpdateCustomActionResult,
1583
+ () => UpdateCustomActionRequest$,
1584
+ () => UpdateCustomActionResult$,
1591
1585
  ];
1592
- var UpdateMicrosoftTeamsChannelConfiguration = [
1586
+ var UpdateMicrosoftTeamsChannelConfiguration$ = [
1593
1587
  9,
1594
1588
  n0,
1595
1589
  _UMTCC,
1596
1590
  { [_h]: ["POST", "/update-ms-teams-channel-configuration", 200] },
1597
- () => UpdateTeamsChannelConfigurationRequest,
1598
- () => UpdateTeamsChannelConfigurationResult,
1591
+ () => UpdateTeamsChannelConfigurationRequest$,
1592
+ () => UpdateTeamsChannelConfigurationResult$,
1599
1593
  ];
1600
- var UpdateSlackChannelConfiguration = [
1594
+ var UpdateSlackChannelConfiguration$ = [
1601
1595
  9,
1602
1596
  n0,
1603
1597
  _USCC,
1604
1598
  { [_h]: ["POST", "/update-slack-channel-configuration", 200] },
1605
- () => UpdateSlackChannelConfigurationRequest,
1606
- () => UpdateSlackChannelConfigurationResult,
1599
+ () => UpdateSlackChannelConfigurationRequest$,
1600
+ () => UpdateSlackChannelConfigurationResult$,
1607
1601
  ];
1608
1602
 
1609
1603
  class AssociateToConfigurationCommand extends smithyClient.Command
@@ -1614,7 +1608,7 @@ class AssociateToConfigurationCommand extends smithyClient.Command
1614
1608
  })
1615
1609
  .s("WheatleyOrchestration_20171011", "AssociateToConfiguration", {})
1616
1610
  .n("ChatbotClient", "AssociateToConfigurationCommand")
1617
- .sc(AssociateToConfiguration)
1611
+ .sc(AssociateToConfiguration$)
1618
1612
  .build() {
1619
1613
  }
1620
1614
 
@@ -1626,7 +1620,7 @@ class CreateChimeWebhookConfigurationCommand extends smithyClient.Command
1626
1620
  })
1627
1621
  .s("WheatleyOrchestration_20171011", "CreateChimeWebhookConfiguration", {})
1628
1622
  .n("ChatbotClient", "CreateChimeWebhookConfigurationCommand")
1629
- .sc(CreateChimeWebhookConfiguration)
1623
+ .sc(CreateChimeWebhookConfiguration$)
1630
1624
  .build() {
1631
1625
  }
1632
1626
 
@@ -1638,7 +1632,7 @@ class CreateCustomActionCommand extends smithyClient.Command
1638
1632
  })
1639
1633
  .s("WheatleyOrchestration_20171011", "CreateCustomAction", {})
1640
1634
  .n("ChatbotClient", "CreateCustomActionCommand")
1641
- .sc(CreateCustomAction)
1635
+ .sc(CreateCustomAction$)
1642
1636
  .build() {
1643
1637
  }
1644
1638
 
@@ -1650,7 +1644,7 @@ class CreateMicrosoftTeamsChannelConfigurationCommand extends smithyClient.Comma
1650
1644
  })
1651
1645
  .s("WheatleyOrchestration_20171011", "CreateMicrosoftTeamsChannelConfiguration", {})
1652
1646
  .n("ChatbotClient", "CreateMicrosoftTeamsChannelConfigurationCommand")
1653
- .sc(CreateMicrosoftTeamsChannelConfiguration)
1647
+ .sc(CreateMicrosoftTeamsChannelConfiguration$)
1654
1648
  .build() {
1655
1649
  }
1656
1650
 
@@ -1662,7 +1656,7 @@ class CreateSlackChannelConfigurationCommand extends smithyClient.Command
1662
1656
  })
1663
1657
  .s("WheatleyOrchestration_20171011", "CreateSlackChannelConfiguration", {})
1664
1658
  .n("ChatbotClient", "CreateSlackChannelConfigurationCommand")
1665
- .sc(CreateSlackChannelConfiguration)
1659
+ .sc(CreateSlackChannelConfiguration$)
1666
1660
  .build() {
1667
1661
  }
1668
1662
 
@@ -1674,7 +1668,7 @@ class DeleteChimeWebhookConfigurationCommand extends smithyClient.Command
1674
1668
  })
1675
1669
  .s("WheatleyOrchestration_20171011", "DeleteChimeWebhookConfiguration", {})
1676
1670
  .n("ChatbotClient", "DeleteChimeWebhookConfigurationCommand")
1677
- .sc(DeleteChimeWebhookConfiguration)
1671
+ .sc(DeleteChimeWebhookConfiguration$)
1678
1672
  .build() {
1679
1673
  }
1680
1674
 
@@ -1686,7 +1680,7 @@ class DeleteCustomActionCommand extends smithyClient.Command
1686
1680
  })
1687
1681
  .s("WheatleyOrchestration_20171011", "DeleteCustomAction", {})
1688
1682
  .n("ChatbotClient", "DeleteCustomActionCommand")
1689
- .sc(DeleteCustomAction)
1683
+ .sc(DeleteCustomAction$)
1690
1684
  .build() {
1691
1685
  }
1692
1686
 
@@ -1698,7 +1692,7 @@ class DeleteMicrosoftTeamsChannelConfigurationCommand extends smithyClient.Comma
1698
1692
  })
1699
1693
  .s("WheatleyOrchestration_20171011", "DeleteMicrosoftTeamsChannelConfiguration", {})
1700
1694
  .n("ChatbotClient", "DeleteMicrosoftTeamsChannelConfigurationCommand")
1701
- .sc(DeleteMicrosoftTeamsChannelConfiguration)
1695
+ .sc(DeleteMicrosoftTeamsChannelConfiguration$)
1702
1696
  .build() {
1703
1697
  }
1704
1698
 
@@ -1710,7 +1704,7 @@ class DeleteMicrosoftTeamsConfiguredTeamCommand extends smithyClient.Command
1710
1704
  })
1711
1705
  .s("WheatleyOrchestration_20171011", "DeleteMicrosoftTeamsConfiguredTeam", {})
1712
1706
  .n("ChatbotClient", "DeleteMicrosoftTeamsConfiguredTeamCommand")
1713
- .sc(DeleteMicrosoftTeamsConfiguredTeam)
1707
+ .sc(DeleteMicrosoftTeamsConfiguredTeam$)
1714
1708
  .build() {
1715
1709
  }
1716
1710
 
@@ -1722,7 +1716,7 @@ class DeleteMicrosoftTeamsUserIdentityCommand extends smithyClient.Command
1722
1716
  })
1723
1717
  .s("WheatleyOrchestration_20171011", "DeleteMicrosoftTeamsUserIdentity", {})
1724
1718
  .n("ChatbotClient", "DeleteMicrosoftTeamsUserIdentityCommand")
1725
- .sc(DeleteMicrosoftTeamsUserIdentity)
1719
+ .sc(DeleteMicrosoftTeamsUserIdentity$)
1726
1720
  .build() {
1727
1721
  }
1728
1722
 
@@ -1734,7 +1728,7 @@ class DeleteSlackChannelConfigurationCommand extends smithyClient.Command
1734
1728
  })
1735
1729
  .s("WheatleyOrchestration_20171011", "DeleteSlackChannelConfiguration", {})
1736
1730
  .n("ChatbotClient", "DeleteSlackChannelConfigurationCommand")
1737
- .sc(DeleteSlackChannelConfiguration)
1731
+ .sc(DeleteSlackChannelConfiguration$)
1738
1732
  .build() {
1739
1733
  }
1740
1734
 
@@ -1746,7 +1740,7 @@ class DeleteSlackUserIdentityCommand extends smithyClient.Command
1746
1740
  })
1747
1741
  .s("WheatleyOrchestration_20171011", "DeleteSlackUserIdentity", {})
1748
1742
  .n("ChatbotClient", "DeleteSlackUserIdentityCommand")
1749
- .sc(DeleteSlackUserIdentity)
1743
+ .sc(DeleteSlackUserIdentity$)
1750
1744
  .build() {
1751
1745
  }
1752
1746
 
@@ -1758,7 +1752,7 @@ class DeleteSlackWorkspaceAuthorizationCommand extends smithyClient.Command
1758
1752
  })
1759
1753
  .s("WheatleyOrchestration_20171011", "DeleteSlackWorkspaceAuthorization", {})
1760
1754
  .n("ChatbotClient", "DeleteSlackWorkspaceAuthorizationCommand")
1761
- .sc(DeleteSlackWorkspaceAuthorization)
1755
+ .sc(DeleteSlackWorkspaceAuthorization$)
1762
1756
  .build() {
1763
1757
  }
1764
1758
 
@@ -1770,7 +1764,7 @@ class DescribeChimeWebhookConfigurationsCommand extends smithyClient.Command
1770
1764
  })
1771
1765
  .s("WheatleyOrchestration_20171011", "DescribeChimeWebhookConfigurations", {})
1772
1766
  .n("ChatbotClient", "DescribeChimeWebhookConfigurationsCommand")
1773
- .sc(DescribeChimeWebhookConfigurations)
1767
+ .sc(DescribeChimeWebhookConfigurations$)
1774
1768
  .build() {
1775
1769
  }
1776
1770
 
@@ -1782,7 +1776,7 @@ class DescribeSlackChannelConfigurationsCommand extends smithyClient.Command
1782
1776
  })
1783
1777
  .s("WheatleyOrchestration_20171011", "DescribeSlackChannelConfigurations", {})
1784
1778
  .n("ChatbotClient", "DescribeSlackChannelConfigurationsCommand")
1785
- .sc(DescribeSlackChannelConfigurations)
1779
+ .sc(DescribeSlackChannelConfigurations$)
1786
1780
  .build() {
1787
1781
  }
1788
1782
 
@@ -1794,7 +1788,7 @@ class DescribeSlackUserIdentitiesCommand extends smithyClient.Command
1794
1788
  })
1795
1789
  .s("WheatleyOrchestration_20171011", "DescribeSlackUserIdentities", {})
1796
1790
  .n("ChatbotClient", "DescribeSlackUserIdentitiesCommand")
1797
- .sc(DescribeSlackUserIdentities)
1791
+ .sc(DescribeSlackUserIdentities$)
1798
1792
  .build() {
1799
1793
  }
1800
1794
 
@@ -1806,7 +1800,7 @@ class DescribeSlackWorkspacesCommand extends smithyClient.Command
1806
1800
  })
1807
1801
  .s("WheatleyOrchestration_20171011", "DescribeSlackWorkspaces", {})
1808
1802
  .n("ChatbotClient", "DescribeSlackWorkspacesCommand")
1809
- .sc(DescribeSlackWorkspaces)
1803
+ .sc(DescribeSlackWorkspaces$)
1810
1804
  .build() {
1811
1805
  }
1812
1806
 
@@ -1818,7 +1812,7 @@ class DisassociateFromConfigurationCommand extends smithyClient.Command
1818
1812
  })
1819
1813
  .s("WheatleyOrchestration_20171011", "DisassociateFromConfiguration", {})
1820
1814
  .n("ChatbotClient", "DisassociateFromConfigurationCommand")
1821
- .sc(DisassociateFromConfiguration)
1815
+ .sc(DisassociateFromConfiguration$)
1822
1816
  .build() {
1823
1817
  }
1824
1818
 
@@ -1830,7 +1824,7 @@ class GetAccountPreferencesCommand extends smithyClient.Command
1830
1824
  })
1831
1825
  .s("WheatleyOrchestration_20171011", "GetAccountPreferences", {})
1832
1826
  .n("ChatbotClient", "GetAccountPreferencesCommand")
1833
- .sc(GetAccountPreferences)
1827
+ .sc(GetAccountPreferences$)
1834
1828
  .build() {
1835
1829
  }
1836
1830
 
@@ -1842,7 +1836,7 @@ class GetCustomActionCommand extends smithyClient.Command
1842
1836
  })
1843
1837
  .s("WheatleyOrchestration_20171011", "GetCustomAction", {})
1844
1838
  .n("ChatbotClient", "GetCustomActionCommand")
1845
- .sc(GetCustomAction)
1839
+ .sc(GetCustomAction$)
1846
1840
  .build() {
1847
1841
  }
1848
1842
 
@@ -1854,7 +1848,7 @@ class GetMicrosoftTeamsChannelConfigurationCommand extends smithyClient.Command
1854
1848
  })
1855
1849
  .s("WheatleyOrchestration_20171011", "GetMicrosoftTeamsChannelConfiguration", {})
1856
1850
  .n("ChatbotClient", "GetMicrosoftTeamsChannelConfigurationCommand")
1857
- .sc(GetMicrosoftTeamsChannelConfiguration)
1851
+ .sc(GetMicrosoftTeamsChannelConfiguration$)
1858
1852
  .build() {
1859
1853
  }
1860
1854
 
@@ -1866,7 +1860,7 @@ class ListAssociationsCommand extends smithyClient.Command
1866
1860
  })
1867
1861
  .s("WheatleyOrchestration_20171011", "ListAssociations", {})
1868
1862
  .n("ChatbotClient", "ListAssociationsCommand")
1869
- .sc(ListAssociations)
1863
+ .sc(ListAssociations$)
1870
1864
  .build() {
1871
1865
  }
1872
1866
 
@@ -1878,7 +1872,7 @@ class ListCustomActionsCommand extends smithyClient.Command
1878
1872
  })
1879
1873
  .s("WheatleyOrchestration_20171011", "ListCustomActions", {})
1880
1874
  .n("ChatbotClient", "ListCustomActionsCommand")
1881
- .sc(ListCustomActions)
1875
+ .sc(ListCustomActions$)
1882
1876
  .build() {
1883
1877
  }
1884
1878
 
@@ -1890,7 +1884,7 @@ class ListMicrosoftTeamsChannelConfigurationsCommand extends smithyClient.Comman
1890
1884
  })
1891
1885
  .s("WheatleyOrchestration_20171011", "ListMicrosoftTeamsChannelConfigurations", {})
1892
1886
  .n("ChatbotClient", "ListMicrosoftTeamsChannelConfigurationsCommand")
1893
- .sc(ListMicrosoftTeamsChannelConfigurations)
1887
+ .sc(ListMicrosoftTeamsChannelConfigurations$)
1894
1888
  .build() {
1895
1889
  }
1896
1890
 
@@ -1902,7 +1896,7 @@ class ListMicrosoftTeamsConfiguredTeamsCommand extends smithyClient.Command
1902
1896
  })
1903
1897
  .s("WheatleyOrchestration_20171011", "ListMicrosoftTeamsConfiguredTeams", {})
1904
1898
  .n("ChatbotClient", "ListMicrosoftTeamsConfiguredTeamsCommand")
1905
- .sc(ListMicrosoftTeamsConfiguredTeams)
1899
+ .sc(ListMicrosoftTeamsConfiguredTeams$)
1906
1900
  .build() {
1907
1901
  }
1908
1902
 
@@ -1914,7 +1908,7 @@ class ListMicrosoftTeamsUserIdentitiesCommand extends smithyClient.Command
1914
1908
  })
1915
1909
  .s("WheatleyOrchestration_20171011", "ListMicrosoftTeamsUserIdentities", {})
1916
1910
  .n("ChatbotClient", "ListMicrosoftTeamsUserIdentitiesCommand")
1917
- .sc(ListMicrosoftTeamsUserIdentities)
1911
+ .sc(ListMicrosoftTeamsUserIdentities$)
1918
1912
  .build() {
1919
1913
  }
1920
1914
 
@@ -1926,7 +1920,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1926
1920
  })
1927
1921
  .s("WheatleyOrchestration_20171011", "ListTagsForResource", {})
1928
1922
  .n("ChatbotClient", "ListTagsForResourceCommand")
1929
- .sc(ListTagsForResource)
1923
+ .sc(ListTagsForResource$)
1930
1924
  .build() {
1931
1925
  }
1932
1926
 
@@ -1938,7 +1932,7 @@ class TagResourceCommand extends smithyClient.Command
1938
1932
  })
1939
1933
  .s("WheatleyOrchestration_20171011", "TagResource", {})
1940
1934
  .n("ChatbotClient", "TagResourceCommand")
1941
- .sc(TagResource)
1935
+ .sc(TagResource$)
1942
1936
  .build() {
1943
1937
  }
1944
1938
 
@@ -1950,7 +1944,7 @@ class UntagResourceCommand extends smithyClient.Command
1950
1944
  })
1951
1945
  .s("WheatleyOrchestration_20171011", "UntagResource", {})
1952
1946
  .n("ChatbotClient", "UntagResourceCommand")
1953
- .sc(UntagResource)
1947
+ .sc(UntagResource$)
1954
1948
  .build() {
1955
1949
  }
1956
1950
 
@@ -1962,7 +1956,7 @@ class UpdateAccountPreferencesCommand extends smithyClient.Command
1962
1956
  })
1963
1957
  .s("WheatleyOrchestration_20171011", "UpdateAccountPreferences", {})
1964
1958
  .n("ChatbotClient", "UpdateAccountPreferencesCommand")
1965
- .sc(UpdateAccountPreferences)
1959
+ .sc(UpdateAccountPreferences$)
1966
1960
  .build() {
1967
1961
  }
1968
1962
 
@@ -1974,7 +1968,7 @@ class UpdateChimeWebhookConfigurationCommand extends smithyClient.Command
1974
1968
  })
1975
1969
  .s("WheatleyOrchestration_20171011", "UpdateChimeWebhookConfiguration", {})
1976
1970
  .n("ChatbotClient", "UpdateChimeWebhookConfigurationCommand")
1977
- .sc(UpdateChimeWebhookConfiguration)
1971
+ .sc(UpdateChimeWebhookConfiguration$)
1978
1972
  .build() {
1979
1973
  }
1980
1974
 
@@ -1986,7 +1980,7 @@ class UpdateCustomActionCommand extends smithyClient.Command
1986
1980
  })
1987
1981
  .s("WheatleyOrchestration_20171011", "UpdateCustomAction", {})
1988
1982
  .n("ChatbotClient", "UpdateCustomActionCommand")
1989
- .sc(UpdateCustomAction)
1983
+ .sc(UpdateCustomAction$)
1990
1984
  .build() {
1991
1985
  }
1992
1986
 
@@ -1998,7 +1992,7 @@ class UpdateMicrosoftTeamsChannelConfigurationCommand extends smithyClient.Comma
1998
1992
  })
1999
1993
  .s("WheatleyOrchestration_20171011", "UpdateMicrosoftTeamsChannelConfiguration", {})
2000
1994
  .n("ChatbotClient", "UpdateMicrosoftTeamsChannelConfigurationCommand")
2001
- .sc(UpdateMicrosoftTeamsChannelConfiguration)
1995
+ .sc(UpdateMicrosoftTeamsChannelConfiguration$)
2002
1996
  .build() {
2003
1997
  }
2004
1998
 
@@ -2010,7 +2004,7 @@ class UpdateSlackChannelConfigurationCommand extends smithyClient.Command
2010
2004
  })
2011
2005
  .s("WheatleyOrchestration_20171011", "UpdateSlackChannelConfiguration", {})
2012
2006
  .n("ChatbotClient", "UpdateSlackChannelConfigurationCommand")
2013
- .sc(UpdateSlackChannelConfiguration)
2007
+ .sc(UpdateSlackChannelConfiguration$)
2014
2008
  .build() {
2015
2009
  }
2016
2010
 
@@ -2085,76 +2079,225 @@ Object.defineProperty(exports, "__Client", {
2085
2079
  enumerable: true,
2086
2080
  get: function () { return smithyClient.Client; }
2087
2081
  });
2082
+ exports.AccountPreferences$ = AccountPreferences$;
2083
+ exports.AssociateToConfiguration$ = AssociateToConfiguration$;
2088
2084
  exports.AssociateToConfigurationCommand = AssociateToConfigurationCommand;
2085
+ exports.AssociateToConfigurationRequest$ = AssociateToConfigurationRequest$;
2086
+ exports.AssociateToConfigurationResult$ = AssociateToConfigurationResult$;
2087
+ exports.AssociationListing$ = AssociationListing$;
2089
2088
  exports.Chatbot = Chatbot;
2090
2089
  exports.ChatbotClient = ChatbotClient;
2091
- exports.ChatbotServiceException = ChatbotServiceException$1;
2092
- exports.ConflictException = ConflictException$1;
2090
+ exports.ChatbotServiceException = ChatbotServiceException;
2091
+ exports.ChatbotServiceException$ = ChatbotServiceException$;
2092
+ exports.ChimeWebhookConfiguration$ = ChimeWebhookConfiguration$;
2093
+ exports.ConfiguredTeam$ = ConfiguredTeam$;
2094
+ exports.ConflictException = ConflictException;
2095
+ exports.ConflictException$ = ConflictException$;
2096
+ exports.CreateChimeWebhookConfiguration$ = CreateChimeWebhookConfiguration$;
2093
2097
  exports.CreateChimeWebhookConfigurationCommand = CreateChimeWebhookConfigurationCommand;
2094
- exports.CreateChimeWebhookConfigurationException = CreateChimeWebhookConfigurationException$1;
2098
+ exports.CreateChimeWebhookConfigurationException = CreateChimeWebhookConfigurationException;
2099
+ exports.CreateChimeWebhookConfigurationException$ = CreateChimeWebhookConfigurationException$;
2100
+ exports.CreateChimeWebhookConfigurationRequest$ = CreateChimeWebhookConfigurationRequest$;
2101
+ exports.CreateChimeWebhookConfigurationResult$ = CreateChimeWebhookConfigurationResult$;
2102
+ exports.CreateCustomAction$ = CreateCustomAction$;
2095
2103
  exports.CreateCustomActionCommand = CreateCustomActionCommand;
2104
+ exports.CreateCustomActionRequest$ = CreateCustomActionRequest$;
2105
+ exports.CreateCustomActionResult$ = CreateCustomActionResult$;
2106
+ exports.CreateMicrosoftTeamsChannelConfiguration$ = CreateMicrosoftTeamsChannelConfiguration$;
2096
2107
  exports.CreateMicrosoftTeamsChannelConfigurationCommand = CreateMicrosoftTeamsChannelConfigurationCommand;
2108
+ exports.CreateSlackChannelConfiguration$ = CreateSlackChannelConfiguration$;
2097
2109
  exports.CreateSlackChannelConfigurationCommand = CreateSlackChannelConfigurationCommand;
2098
- exports.CreateSlackChannelConfigurationException = CreateSlackChannelConfigurationException$1;
2099
- exports.CreateTeamsChannelConfigurationException = CreateTeamsChannelConfigurationException$1;
2110
+ exports.CreateSlackChannelConfigurationException = CreateSlackChannelConfigurationException;
2111
+ exports.CreateSlackChannelConfigurationException$ = CreateSlackChannelConfigurationException$;
2112
+ exports.CreateSlackChannelConfigurationRequest$ = CreateSlackChannelConfigurationRequest$;
2113
+ exports.CreateSlackChannelConfigurationResult$ = CreateSlackChannelConfigurationResult$;
2114
+ exports.CreateTeamsChannelConfigurationException = CreateTeamsChannelConfigurationException;
2115
+ exports.CreateTeamsChannelConfigurationException$ = CreateTeamsChannelConfigurationException$;
2116
+ exports.CreateTeamsChannelConfigurationRequest$ = CreateTeamsChannelConfigurationRequest$;
2117
+ exports.CreateTeamsChannelConfigurationResult$ = CreateTeamsChannelConfigurationResult$;
2118
+ exports.CustomAction$ = CustomAction$;
2119
+ exports.CustomActionAttachment$ = CustomActionAttachment$;
2120
+ exports.CustomActionAttachmentCriteria$ = CustomActionAttachmentCriteria$;
2100
2121
  exports.CustomActionAttachmentCriteriaOperator = CustomActionAttachmentCriteriaOperator;
2122
+ exports.CustomActionDefinition$ = CustomActionDefinition$;
2123
+ exports.DeleteChimeWebhookConfiguration$ = DeleteChimeWebhookConfiguration$;
2101
2124
  exports.DeleteChimeWebhookConfigurationCommand = DeleteChimeWebhookConfigurationCommand;
2102
- exports.DeleteChimeWebhookConfigurationException = DeleteChimeWebhookConfigurationException$1;
2125
+ exports.DeleteChimeWebhookConfigurationException = DeleteChimeWebhookConfigurationException;
2126
+ exports.DeleteChimeWebhookConfigurationException$ = DeleteChimeWebhookConfigurationException$;
2127
+ exports.DeleteChimeWebhookConfigurationRequest$ = DeleteChimeWebhookConfigurationRequest$;
2128
+ exports.DeleteChimeWebhookConfigurationResult$ = DeleteChimeWebhookConfigurationResult$;
2129
+ exports.DeleteCustomAction$ = DeleteCustomAction$;
2103
2130
  exports.DeleteCustomActionCommand = DeleteCustomActionCommand;
2131
+ exports.DeleteCustomActionRequest$ = DeleteCustomActionRequest$;
2132
+ exports.DeleteCustomActionResult$ = DeleteCustomActionResult$;
2133
+ exports.DeleteMicrosoftTeamsChannelConfiguration$ = DeleteMicrosoftTeamsChannelConfiguration$;
2104
2134
  exports.DeleteMicrosoftTeamsChannelConfigurationCommand = DeleteMicrosoftTeamsChannelConfigurationCommand;
2135
+ exports.DeleteMicrosoftTeamsConfiguredTeam$ = DeleteMicrosoftTeamsConfiguredTeam$;
2105
2136
  exports.DeleteMicrosoftTeamsConfiguredTeamCommand = DeleteMicrosoftTeamsConfiguredTeamCommand;
2137
+ exports.DeleteMicrosoftTeamsUserIdentity$ = DeleteMicrosoftTeamsUserIdentity$;
2106
2138
  exports.DeleteMicrosoftTeamsUserIdentityCommand = DeleteMicrosoftTeamsUserIdentityCommand;
2107
- exports.DeleteMicrosoftTeamsUserIdentityException = DeleteMicrosoftTeamsUserIdentityException$1;
2139
+ exports.DeleteMicrosoftTeamsUserIdentityException = DeleteMicrosoftTeamsUserIdentityException;
2140
+ exports.DeleteMicrosoftTeamsUserIdentityException$ = DeleteMicrosoftTeamsUserIdentityException$;
2141
+ exports.DeleteMicrosoftTeamsUserIdentityRequest$ = DeleteMicrosoftTeamsUserIdentityRequest$;
2142
+ exports.DeleteMicrosoftTeamsUserIdentityResult$ = DeleteMicrosoftTeamsUserIdentityResult$;
2143
+ exports.DeleteSlackChannelConfiguration$ = DeleteSlackChannelConfiguration$;
2108
2144
  exports.DeleteSlackChannelConfigurationCommand = DeleteSlackChannelConfigurationCommand;
2109
- exports.DeleteSlackChannelConfigurationException = DeleteSlackChannelConfigurationException$1;
2145
+ exports.DeleteSlackChannelConfigurationException = DeleteSlackChannelConfigurationException;
2146
+ exports.DeleteSlackChannelConfigurationException$ = DeleteSlackChannelConfigurationException$;
2147
+ exports.DeleteSlackChannelConfigurationRequest$ = DeleteSlackChannelConfigurationRequest$;
2148
+ exports.DeleteSlackChannelConfigurationResult$ = DeleteSlackChannelConfigurationResult$;
2149
+ exports.DeleteSlackUserIdentity$ = DeleteSlackUserIdentity$;
2110
2150
  exports.DeleteSlackUserIdentityCommand = DeleteSlackUserIdentityCommand;
2111
- exports.DeleteSlackUserIdentityException = DeleteSlackUserIdentityException$1;
2151
+ exports.DeleteSlackUserIdentityException = DeleteSlackUserIdentityException;
2152
+ exports.DeleteSlackUserIdentityException$ = DeleteSlackUserIdentityException$;
2153
+ exports.DeleteSlackUserIdentityRequest$ = DeleteSlackUserIdentityRequest$;
2154
+ exports.DeleteSlackUserIdentityResult$ = DeleteSlackUserIdentityResult$;
2155
+ exports.DeleteSlackWorkspaceAuthorization$ = DeleteSlackWorkspaceAuthorization$;
2112
2156
  exports.DeleteSlackWorkspaceAuthorizationCommand = DeleteSlackWorkspaceAuthorizationCommand;
2113
- exports.DeleteSlackWorkspaceAuthorizationFault = DeleteSlackWorkspaceAuthorizationFault$1;
2114
- exports.DeleteTeamsChannelConfigurationException = DeleteTeamsChannelConfigurationException$1;
2115
- exports.DeleteTeamsConfiguredTeamException = DeleteTeamsConfiguredTeamException$1;
2157
+ exports.DeleteSlackWorkspaceAuthorizationFault = DeleteSlackWorkspaceAuthorizationFault;
2158
+ exports.DeleteSlackWorkspaceAuthorizationFault$ = DeleteSlackWorkspaceAuthorizationFault$;
2159
+ exports.DeleteSlackWorkspaceAuthorizationRequest$ = DeleteSlackWorkspaceAuthorizationRequest$;
2160
+ exports.DeleteSlackWorkspaceAuthorizationResult$ = DeleteSlackWorkspaceAuthorizationResult$;
2161
+ exports.DeleteTeamsChannelConfigurationException = DeleteTeamsChannelConfigurationException;
2162
+ exports.DeleteTeamsChannelConfigurationException$ = DeleteTeamsChannelConfigurationException$;
2163
+ exports.DeleteTeamsChannelConfigurationRequest$ = DeleteTeamsChannelConfigurationRequest$;
2164
+ exports.DeleteTeamsChannelConfigurationResult$ = DeleteTeamsChannelConfigurationResult$;
2165
+ exports.DeleteTeamsConfiguredTeamException = DeleteTeamsConfiguredTeamException;
2166
+ exports.DeleteTeamsConfiguredTeamException$ = DeleteTeamsConfiguredTeamException$;
2167
+ exports.DeleteTeamsConfiguredTeamRequest$ = DeleteTeamsConfiguredTeamRequest$;
2168
+ exports.DeleteTeamsConfiguredTeamResult$ = DeleteTeamsConfiguredTeamResult$;
2169
+ exports.DescribeChimeWebhookConfigurations$ = DescribeChimeWebhookConfigurations$;
2116
2170
  exports.DescribeChimeWebhookConfigurationsCommand = DescribeChimeWebhookConfigurationsCommand;
2117
- exports.DescribeChimeWebhookConfigurationsException = DescribeChimeWebhookConfigurationsException$1;
2171
+ exports.DescribeChimeWebhookConfigurationsException = DescribeChimeWebhookConfigurationsException;
2172
+ exports.DescribeChimeWebhookConfigurationsException$ = DescribeChimeWebhookConfigurationsException$;
2173
+ exports.DescribeChimeWebhookConfigurationsRequest$ = DescribeChimeWebhookConfigurationsRequest$;
2174
+ exports.DescribeChimeWebhookConfigurationsResult$ = DescribeChimeWebhookConfigurationsResult$;
2175
+ exports.DescribeSlackChannelConfigurations$ = DescribeSlackChannelConfigurations$;
2118
2176
  exports.DescribeSlackChannelConfigurationsCommand = DescribeSlackChannelConfigurationsCommand;
2119
- exports.DescribeSlackChannelConfigurationsException = DescribeSlackChannelConfigurationsException$1;
2177
+ exports.DescribeSlackChannelConfigurationsException = DescribeSlackChannelConfigurationsException;
2178
+ exports.DescribeSlackChannelConfigurationsException$ = DescribeSlackChannelConfigurationsException$;
2179
+ exports.DescribeSlackChannelConfigurationsRequest$ = DescribeSlackChannelConfigurationsRequest$;
2180
+ exports.DescribeSlackChannelConfigurationsResult$ = DescribeSlackChannelConfigurationsResult$;
2181
+ exports.DescribeSlackUserIdentities$ = DescribeSlackUserIdentities$;
2120
2182
  exports.DescribeSlackUserIdentitiesCommand = DescribeSlackUserIdentitiesCommand;
2121
- exports.DescribeSlackUserIdentitiesException = DescribeSlackUserIdentitiesException$1;
2183
+ exports.DescribeSlackUserIdentitiesException = DescribeSlackUserIdentitiesException;
2184
+ exports.DescribeSlackUserIdentitiesException$ = DescribeSlackUserIdentitiesException$;
2185
+ exports.DescribeSlackUserIdentitiesRequest$ = DescribeSlackUserIdentitiesRequest$;
2186
+ exports.DescribeSlackUserIdentitiesResult$ = DescribeSlackUserIdentitiesResult$;
2187
+ exports.DescribeSlackWorkspaces$ = DescribeSlackWorkspaces$;
2122
2188
  exports.DescribeSlackWorkspacesCommand = DescribeSlackWorkspacesCommand;
2123
- exports.DescribeSlackWorkspacesException = DescribeSlackWorkspacesException$1;
2189
+ exports.DescribeSlackWorkspacesException = DescribeSlackWorkspacesException;
2190
+ exports.DescribeSlackWorkspacesException$ = DescribeSlackWorkspacesException$;
2191
+ exports.DescribeSlackWorkspacesRequest$ = DescribeSlackWorkspacesRequest$;
2192
+ exports.DescribeSlackWorkspacesResult$ = DescribeSlackWorkspacesResult$;
2193
+ exports.DisassociateFromConfiguration$ = DisassociateFromConfiguration$;
2124
2194
  exports.DisassociateFromConfigurationCommand = DisassociateFromConfigurationCommand;
2195
+ exports.DisassociateFromConfigurationRequest$ = DisassociateFromConfigurationRequest$;
2196
+ exports.DisassociateFromConfigurationResult$ = DisassociateFromConfigurationResult$;
2197
+ exports.GetAccountPreferences$ = GetAccountPreferences$;
2125
2198
  exports.GetAccountPreferencesCommand = GetAccountPreferencesCommand;
2126
- exports.GetAccountPreferencesException = GetAccountPreferencesException$1;
2199
+ exports.GetAccountPreferencesException = GetAccountPreferencesException;
2200
+ exports.GetAccountPreferencesException$ = GetAccountPreferencesException$;
2201
+ exports.GetAccountPreferencesRequest$ = GetAccountPreferencesRequest$;
2202
+ exports.GetAccountPreferencesResult$ = GetAccountPreferencesResult$;
2203
+ exports.GetCustomAction$ = GetCustomAction$;
2127
2204
  exports.GetCustomActionCommand = GetCustomActionCommand;
2205
+ exports.GetCustomActionRequest$ = GetCustomActionRequest$;
2206
+ exports.GetCustomActionResult$ = GetCustomActionResult$;
2207
+ exports.GetMicrosoftTeamsChannelConfiguration$ = GetMicrosoftTeamsChannelConfiguration$;
2128
2208
  exports.GetMicrosoftTeamsChannelConfigurationCommand = GetMicrosoftTeamsChannelConfigurationCommand;
2129
- exports.GetTeamsChannelConfigurationException = GetTeamsChannelConfigurationException$1;
2130
- exports.InternalServiceError = InternalServiceError$1;
2131
- exports.InvalidParameterException = InvalidParameterException$1;
2132
- exports.InvalidRequestException = InvalidRequestException$1;
2133
- exports.LimitExceededException = LimitExceededException$1;
2209
+ exports.GetTeamsChannelConfigurationException = GetTeamsChannelConfigurationException;
2210
+ exports.GetTeamsChannelConfigurationException$ = GetTeamsChannelConfigurationException$;
2211
+ exports.GetTeamsChannelConfigurationRequest$ = GetTeamsChannelConfigurationRequest$;
2212
+ exports.GetTeamsChannelConfigurationResult$ = GetTeamsChannelConfigurationResult$;
2213
+ exports.InternalServiceError = InternalServiceError;
2214
+ exports.InternalServiceError$ = InternalServiceError$;
2215
+ exports.InvalidParameterException = InvalidParameterException;
2216
+ exports.InvalidParameterException$ = InvalidParameterException$;
2217
+ exports.InvalidRequestException = InvalidRequestException;
2218
+ exports.InvalidRequestException$ = InvalidRequestException$;
2219
+ exports.LimitExceededException = LimitExceededException;
2220
+ exports.LimitExceededException$ = LimitExceededException$;
2221
+ exports.ListAssociations$ = ListAssociations$;
2134
2222
  exports.ListAssociationsCommand = ListAssociationsCommand;
2223
+ exports.ListAssociationsRequest$ = ListAssociationsRequest$;
2224
+ exports.ListAssociationsResult$ = ListAssociationsResult$;
2225
+ exports.ListCustomActions$ = ListCustomActions$;
2135
2226
  exports.ListCustomActionsCommand = ListCustomActionsCommand;
2227
+ exports.ListCustomActionsRequest$ = ListCustomActionsRequest$;
2228
+ exports.ListCustomActionsResult$ = ListCustomActionsResult$;
2229
+ exports.ListMicrosoftTeamsChannelConfigurations$ = ListMicrosoftTeamsChannelConfigurations$;
2136
2230
  exports.ListMicrosoftTeamsChannelConfigurationsCommand = ListMicrosoftTeamsChannelConfigurationsCommand;
2231
+ exports.ListMicrosoftTeamsConfiguredTeams$ = ListMicrosoftTeamsConfiguredTeams$;
2137
2232
  exports.ListMicrosoftTeamsConfiguredTeamsCommand = ListMicrosoftTeamsConfiguredTeamsCommand;
2138
- exports.ListMicrosoftTeamsConfiguredTeamsException = ListMicrosoftTeamsConfiguredTeamsException$1;
2233
+ exports.ListMicrosoftTeamsConfiguredTeamsException = ListMicrosoftTeamsConfiguredTeamsException;
2234
+ exports.ListMicrosoftTeamsConfiguredTeamsException$ = ListMicrosoftTeamsConfiguredTeamsException$;
2235
+ exports.ListMicrosoftTeamsConfiguredTeamsRequest$ = ListMicrosoftTeamsConfiguredTeamsRequest$;
2236
+ exports.ListMicrosoftTeamsConfiguredTeamsResult$ = ListMicrosoftTeamsConfiguredTeamsResult$;
2237
+ exports.ListMicrosoftTeamsUserIdentities$ = ListMicrosoftTeamsUserIdentities$;
2139
2238
  exports.ListMicrosoftTeamsUserIdentitiesCommand = ListMicrosoftTeamsUserIdentitiesCommand;
2140
- exports.ListMicrosoftTeamsUserIdentitiesException = ListMicrosoftTeamsUserIdentitiesException$1;
2239
+ exports.ListMicrosoftTeamsUserIdentitiesException = ListMicrosoftTeamsUserIdentitiesException;
2240
+ exports.ListMicrosoftTeamsUserIdentitiesException$ = ListMicrosoftTeamsUserIdentitiesException$;
2241
+ exports.ListMicrosoftTeamsUserIdentitiesRequest$ = ListMicrosoftTeamsUserIdentitiesRequest$;
2242
+ exports.ListMicrosoftTeamsUserIdentitiesResult$ = ListMicrosoftTeamsUserIdentitiesResult$;
2243
+ exports.ListTagsForResource$ = ListTagsForResource$;
2141
2244
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2142
- exports.ListTeamsChannelConfigurationsException = ListTeamsChannelConfigurationsException$1;
2143
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
2144
- exports.ServiceUnavailableException = ServiceUnavailableException$1;
2245
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2246
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2247
+ exports.ListTeamsChannelConfigurationsException = ListTeamsChannelConfigurationsException;
2248
+ exports.ListTeamsChannelConfigurationsException$ = ListTeamsChannelConfigurationsException$;
2249
+ exports.ListTeamsChannelConfigurationsRequest$ = ListTeamsChannelConfigurationsRequest$;
2250
+ exports.ListTeamsChannelConfigurationsResult$ = ListTeamsChannelConfigurationsResult$;
2251
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2252
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2253
+ exports.ServiceUnavailableException = ServiceUnavailableException;
2254
+ exports.ServiceUnavailableException$ = ServiceUnavailableException$;
2255
+ exports.SlackChannelConfiguration$ = SlackChannelConfiguration$;
2256
+ exports.SlackUserIdentity$ = SlackUserIdentity$;
2257
+ exports.SlackWorkspace$ = SlackWorkspace$;
2258
+ exports.Tag$ = Tag$;
2259
+ exports.TagResource$ = TagResource$;
2145
2260
  exports.TagResourceCommand = TagResourceCommand;
2146
- exports.TooManyTagsException = TooManyTagsException$1;
2147
- exports.UnauthorizedException = UnauthorizedException$1;
2261
+ exports.TagResourceRequest$ = TagResourceRequest$;
2262
+ exports.TagResourceResponse$ = TagResourceResponse$;
2263
+ exports.TeamsChannelConfiguration$ = TeamsChannelConfiguration$;
2264
+ exports.TeamsUserIdentity$ = TeamsUserIdentity$;
2265
+ exports.TooManyTagsException = TooManyTagsException;
2266
+ exports.TooManyTagsException$ = TooManyTagsException$;
2267
+ exports.UnauthorizedException = UnauthorizedException;
2268
+ exports.UnauthorizedException$ = UnauthorizedException$;
2269
+ exports.UntagResource$ = UntagResource$;
2148
2270
  exports.UntagResourceCommand = UntagResourceCommand;
2271
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2272
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2273
+ exports.UpdateAccountPreferences$ = UpdateAccountPreferences$;
2149
2274
  exports.UpdateAccountPreferencesCommand = UpdateAccountPreferencesCommand;
2150
- exports.UpdateAccountPreferencesException = UpdateAccountPreferencesException$1;
2275
+ exports.UpdateAccountPreferencesException = UpdateAccountPreferencesException;
2276
+ exports.UpdateAccountPreferencesException$ = UpdateAccountPreferencesException$;
2277
+ exports.UpdateAccountPreferencesRequest$ = UpdateAccountPreferencesRequest$;
2278
+ exports.UpdateAccountPreferencesResult$ = UpdateAccountPreferencesResult$;
2279
+ exports.UpdateChimeWebhookConfiguration$ = UpdateChimeWebhookConfiguration$;
2151
2280
  exports.UpdateChimeWebhookConfigurationCommand = UpdateChimeWebhookConfigurationCommand;
2152
- exports.UpdateChimeWebhookConfigurationException = UpdateChimeWebhookConfigurationException$1;
2281
+ exports.UpdateChimeWebhookConfigurationException = UpdateChimeWebhookConfigurationException;
2282
+ exports.UpdateChimeWebhookConfigurationException$ = UpdateChimeWebhookConfigurationException$;
2283
+ exports.UpdateChimeWebhookConfigurationRequest$ = UpdateChimeWebhookConfigurationRequest$;
2284
+ exports.UpdateChimeWebhookConfigurationResult$ = UpdateChimeWebhookConfigurationResult$;
2285
+ exports.UpdateCustomAction$ = UpdateCustomAction$;
2153
2286
  exports.UpdateCustomActionCommand = UpdateCustomActionCommand;
2287
+ exports.UpdateCustomActionRequest$ = UpdateCustomActionRequest$;
2288
+ exports.UpdateCustomActionResult$ = UpdateCustomActionResult$;
2289
+ exports.UpdateMicrosoftTeamsChannelConfiguration$ = UpdateMicrosoftTeamsChannelConfiguration$;
2154
2290
  exports.UpdateMicrosoftTeamsChannelConfigurationCommand = UpdateMicrosoftTeamsChannelConfigurationCommand;
2291
+ exports.UpdateSlackChannelConfiguration$ = UpdateSlackChannelConfiguration$;
2155
2292
  exports.UpdateSlackChannelConfigurationCommand = UpdateSlackChannelConfigurationCommand;
2156
- exports.UpdateSlackChannelConfigurationException = UpdateSlackChannelConfigurationException$1;
2157
- exports.UpdateTeamsChannelConfigurationException = UpdateTeamsChannelConfigurationException$1;
2293
+ exports.UpdateSlackChannelConfigurationException = UpdateSlackChannelConfigurationException;
2294
+ exports.UpdateSlackChannelConfigurationException$ = UpdateSlackChannelConfigurationException$;
2295
+ exports.UpdateSlackChannelConfigurationRequest$ = UpdateSlackChannelConfigurationRequest$;
2296
+ exports.UpdateSlackChannelConfigurationResult$ = UpdateSlackChannelConfigurationResult$;
2297
+ exports.UpdateTeamsChannelConfigurationException = UpdateTeamsChannelConfigurationException;
2298
+ exports.UpdateTeamsChannelConfigurationException$ = UpdateTeamsChannelConfigurationException$;
2299
+ exports.UpdateTeamsChannelConfigurationRequest$ = UpdateTeamsChannelConfigurationRequest$;
2300
+ exports.UpdateTeamsChannelConfigurationResult$ = UpdateTeamsChannelConfigurationResult$;
2158
2301
  exports.paginateDescribeChimeWebhookConfigurations = paginateDescribeChimeWebhookConfigurations;
2159
2302
  exports.paginateDescribeSlackChannelConfigurations = paginateDescribeSlackChannelConfigurations;
2160
2303
  exports.paginateDescribeSlackUserIdentities = paginateDescribeSlackUserIdentities;