@aws-sdk/client-chatbot 3.1075.0 → 3.1077.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.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultChatbotHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AssociateToConfiguration$, CreateChimeWebhookConfiguration$, CreateCustomAction$, CreateMicrosoftTeamsChannelConfiguration$, CreateSlackChannelConfiguration$, DeleteChimeWebhookConfiguration$, DeleteCustomAction$, DeleteMicrosoftTeamsChannelConfiguration$, DeleteMicrosoftTeamsConfiguredTeam$, DeleteMicrosoftTeamsUserIdentity$, DeleteSlackChannelConfiguration$, DeleteSlackUserIdentity$, DeleteSlackWorkspaceAuthorization$, DescribeChimeWebhookConfigurations$, DescribeSlackChannelConfigurations$, DescribeSlackUserIdentities$, DescribeSlackWorkspaces$, DisassociateFromConfiguration$, GetAccountPreferences$, GetCustomAction$, GetMicrosoftTeamsChannelConfiguration$, ListAssociations$, ListCustomActions$, ListMicrosoftTeamsChannelConfigurations$, ListMicrosoftTeamsConfiguredTeams$, ListMicrosoftTeamsUserIdentities$, ListTagsForResource$, TagResource$, UntagResource$, UpdateAccountPreferences$, UpdateChimeWebhookConfiguration$, UpdateCustomAction$, UpdateMicrosoftTeamsChannelConfiguration$, UpdateSlackChannelConfiguration$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { ChatbotServiceException } = require("./models/ChatbotServiceException");
18
- exports.ChatbotServiceException = ChatbotServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultChatbotHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "chatbot",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultChatbotHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,1566 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
86
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://chatbot-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://chatbot-fips.{Region}.{PartitionResult#dnsSuffix}", i],
95
+ [a, "FIPS is enabled but this partition does not support FIPS"],
96
+ ["https://chatbot.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
97
+ [a, "DualStack is enabled but this partition does not support DualStack"],
98
+ ["https://chatbot.{Region}.{PartitionResult#dnsSuffix}", i],
99
+ [a, "Invalid Configuration: Missing Region"]
100
+ ]
101
+ };
102
+ const root = 2;
103
+ const r = 100_000_000;
104
+ const nodes = new Int32Array([
105
+ -1, 1, -1,
106
+ 0, 12, 3,
107
+ 1, 4, r + 11,
108
+ 2, 5, r + 11,
109
+ 3, 8, 6,
110
+ 4, 7, r + 10,
111
+ 5, r + 8, r + 9,
112
+ 4, 10, 9,
113
+ 6, r + 6, r + 7,
114
+ 5, 11, r + 5,
115
+ 6, r + 4, r + 5,
116
+ 3, r + 1, 13,
117
+ 4, r + 2, r + 3,
118
+ ]);
119
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
120
+
121
+ const cache = new EndpointCache({
122
+ size: 50,
123
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
124
+ });
125
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
126
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
127
+ endpointParams: endpointParams,
128
+ logger: context.logger,
129
+ }));
130
+ };
131
+ customEndpointFunctions.aws = awsEndpointFunctions;
132
+
133
+ class ChatbotServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, ChatbotServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class InternalServiceError extends ChatbotServiceException {
141
+ name = "InternalServiceError";
142
+ $fault = "server";
143
+ Message;
144
+ constructor(opts) {
145
+ super({
146
+ name: "InternalServiceError",
147
+ $fault: "server",
148
+ ...opts,
149
+ });
150
+ Object.setPrototypeOf(this, InternalServiceError.prototype);
151
+ this.Message = opts.Message;
152
+ }
153
+ }
154
+ class InvalidRequestException extends ChatbotServiceException {
155
+ name = "InvalidRequestException";
156
+ $fault = "client";
157
+ constructor(opts) {
158
+ super({
159
+ name: "InvalidRequestException",
160
+ $fault: "client",
161
+ ...opts,
162
+ });
163
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
164
+ }
165
+ }
166
+ class UnauthorizedException extends ChatbotServiceException {
167
+ name = "UnauthorizedException";
168
+ $fault = "client";
169
+ constructor(opts) {
170
+ super({
171
+ name: "UnauthorizedException",
172
+ $fault: "client",
173
+ ...opts,
174
+ });
175
+ Object.setPrototypeOf(this, UnauthorizedException.prototype);
176
+ }
177
+ }
178
+ class ConflictException extends ChatbotServiceException {
179
+ name = "ConflictException";
180
+ $fault = "client";
181
+ constructor(opts) {
182
+ super({
183
+ name: "ConflictException",
184
+ $fault: "client",
185
+ ...opts,
186
+ });
187
+ Object.setPrototypeOf(this, ConflictException.prototype);
188
+ }
189
+ }
190
+ class CreateChimeWebhookConfigurationException extends ChatbotServiceException {
191
+ name = "CreateChimeWebhookConfigurationException";
192
+ $fault = "server";
193
+ Message;
194
+ constructor(opts) {
195
+ super({
196
+ name: "CreateChimeWebhookConfigurationException",
197
+ $fault: "server",
198
+ ...opts,
199
+ });
200
+ Object.setPrototypeOf(this, CreateChimeWebhookConfigurationException.prototype);
201
+ this.Message = opts.Message;
202
+ }
203
+ }
204
+ class InvalidParameterException extends ChatbotServiceException {
205
+ name = "InvalidParameterException";
206
+ $fault = "client";
207
+ constructor(opts) {
208
+ super({
209
+ name: "InvalidParameterException",
210
+ $fault: "client",
211
+ ...opts,
212
+ });
213
+ Object.setPrototypeOf(this, InvalidParameterException.prototype);
214
+ }
215
+ }
216
+ class LimitExceededException extends ChatbotServiceException {
217
+ name = "LimitExceededException";
218
+ $fault = "client";
219
+ constructor(opts) {
220
+ super({
221
+ name: "LimitExceededException",
222
+ $fault: "client",
223
+ ...opts,
224
+ });
225
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
226
+ }
227
+ }
228
+ class CreateTeamsChannelConfigurationException extends ChatbotServiceException {
229
+ name = "CreateTeamsChannelConfigurationException";
230
+ $fault = "server";
231
+ Message;
232
+ constructor(opts) {
233
+ super({
234
+ name: "CreateTeamsChannelConfigurationException",
235
+ $fault: "server",
236
+ ...opts,
237
+ });
238
+ Object.setPrototypeOf(this, CreateTeamsChannelConfigurationException.prototype);
239
+ this.Message = opts.Message;
240
+ }
241
+ }
242
+ class CreateSlackChannelConfigurationException extends ChatbotServiceException {
243
+ name = "CreateSlackChannelConfigurationException";
244
+ $fault = "server";
245
+ Message;
246
+ constructor(opts) {
247
+ super({
248
+ name: "CreateSlackChannelConfigurationException",
249
+ $fault: "server",
250
+ ...opts,
251
+ });
252
+ Object.setPrototypeOf(this, CreateSlackChannelConfigurationException.prototype);
253
+ this.Message = opts.Message;
254
+ }
255
+ }
256
+ class ResourceNotFoundException extends ChatbotServiceException {
257
+ name = "ResourceNotFoundException";
258
+ $fault = "client";
259
+ Message;
260
+ constructor(opts) {
261
+ super({
262
+ name: "ResourceNotFoundException",
263
+ $fault: "client",
264
+ ...opts,
265
+ });
266
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
267
+ this.Message = opts.Message;
268
+ }
269
+ }
270
+ class DeleteChimeWebhookConfigurationException extends ChatbotServiceException {
271
+ name = "DeleteChimeWebhookConfigurationException";
272
+ $fault = "server";
273
+ Message;
274
+ constructor(opts) {
275
+ super({
276
+ name: "DeleteChimeWebhookConfigurationException",
277
+ $fault: "server",
278
+ ...opts,
279
+ });
280
+ Object.setPrototypeOf(this, DeleteChimeWebhookConfigurationException.prototype);
281
+ this.Message = opts.Message;
282
+ }
283
+ }
284
+ class DeleteTeamsChannelConfigurationException extends ChatbotServiceException {
285
+ name = "DeleteTeamsChannelConfigurationException";
286
+ $fault = "server";
287
+ Message;
288
+ constructor(opts) {
289
+ super({
290
+ name: "DeleteTeamsChannelConfigurationException",
291
+ $fault: "server",
292
+ ...opts,
293
+ });
294
+ Object.setPrototypeOf(this, DeleteTeamsChannelConfigurationException.prototype);
295
+ this.Message = opts.Message;
296
+ }
297
+ }
298
+ class DeleteTeamsConfiguredTeamException extends ChatbotServiceException {
299
+ name = "DeleteTeamsConfiguredTeamException";
300
+ $fault = "server";
301
+ Message;
302
+ constructor(opts) {
303
+ super({
304
+ name: "DeleteTeamsConfiguredTeamException",
305
+ $fault: "server",
306
+ ...opts,
307
+ });
308
+ Object.setPrototypeOf(this, DeleteTeamsConfiguredTeamException.prototype);
309
+ this.Message = opts.Message;
310
+ }
311
+ }
312
+ class DeleteMicrosoftTeamsUserIdentityException extends ChatbotServiceException {
313
+ name = "DeleteMicrosoftTeamsUserIdentityException";
314
+ $fault = "server";
315
+ Message;
316
+ constructor(opts) {
317
+ super({
318
+ name: "DeleteMicrosoftTeamsUserIdentityException",
319
+ $fault: "server",
320
+ ...opts,
321
+ });
322
+ Object.setPrototypeOf(this, DeleteMicrosoftTeamsUserIdentityException.prototype);
323
+ this.Message = opts.Message;
324
+ }
325
+ }
326
+ class DeleteSlackChannelConfigurationException extends ChatbotServiceException {
327
+ name = "DeleteSlackChannelConfigurationException";
328
+ $fault = "server";
329
+ Message;
330
+ constructor(opts) {
331
+ super({
332
+ name: "DeleteSlackChannelConfigurationException",
333
+ $fault: "server",
334
+ ...opts,
335
+ });
336
+ Object.setPrototypeOf(this, DeleteSlackChannelConfigurationException.prototype);
337
+ this.Message = opts.Message;
338
+ }
339
+ }
340
+ class DeleteSlackUserIdentityException extends ChatbotServiceException {
341
+ name = "DeleteSlackUserIdentityException";
342
+ $fault = "server";
343
+ Message;
344
+ constructor(opts) {
345
+ super({
346
+ name: "DeleteSlackUserIdentityException",
347
+ $fault: "server",
348
+ ...opts,
349
+ });
350
+ Object.setPrototypeOf(this, DeleteSlackUserIdentityException.prototype);
351
+ this.Message = opts.Message;
352
+ }
353
+ }
354
+ class DeleteSlackWorkspaceAuthorizationFault extends ChatbotServiceException {
355
+ name = "DeleteSlackWorkspaceAuthorizationFault";
356
+ $fault = "server";
357
+ Message;
358
+ constructor(opts) {
359
+ super({
360
+ name: "DeleteSlackWorkspaceAuthorizationFault",
361
+ $fault: "server",
362
+ ...opts,
363
+ });
364
+ Object.setPrototypeOf(this, DeleteSlackWorkspaceAuthorizationFault.prototype);
365
+ this.Message = opts.Message;
366
+ }
367
+ }
368
+ class DescribeChimeWebhookConfigurationsException extends ChatbotServiceException {
369
+ name = "DescribeChimeWebhookConfigurationsException";
370
+ $fault = "server";
371
+ Message;
372
+ constructor(opts) {
373
+ super({
374
+ name: "DescribeChimeWebhookConfigurationsException",
375
+ $fault: "server",
376
+ ...opts,
377
+ });
378
+ Object.setPrototypeOf(this, DescribeChimeWebhookConfigurationsException.prototype);
379
+ this.Message = opts.Message;
380
+ }
381
+ }
382
+ class DescribeSlackChannelConfigurationsException extends ChatbotServiceException {
383
+ name = "DescribeSlackChannelConfigurationsException";
384
+ $fault = "server";
385
+ Message;
386
+ constructor(opts) {
387
+ super({
388
+ name: "DescribeSlackChannelConfigurationsException",
389
+ $fault: "server",
390
+ ...opts,
391
+ });
392
+ Object.setPrototypeOf(this, DescribeSlackChannelConfigurationsException.prototype);
393
+ this.Message = opts.Message;
394
+ }
395
+ }
396
+ class DescribeSlackUserIdentitiesException extends ChatbotServiceException {
397
+ name = "DescribeSlackUserIdentitiesException";
398
+ $fault = "server";
399
+ Message;
400
+ constructor(opts) {
401
+ super({
402
+ name: "DescribeSlackUserIdentitiesException",
403
+ $fault: "server",
404
+ ...opts,
405
+ });
406
+ Object.setPrototypeOf(this, DescribeSlackUserIdentitiesException.prototype);
407
+ this.Message = opts.Message;
408
+ }
409
+ }
410
+ class DescribeSlackWorkspacesException extends ChatbotServiceException {
411
+ name = "DescribeSlackWorkspacesException";
412
+ $fault = "server";
413
+ Message;
414
+ constructor(opts) {
415
+ super({
416
+ name: "DescribeSlackWorkspacesException",
417
+ $fault: "server",
418
+ ...opts,
419
+ });
420
+ Object.setPrototypeOf(this, DescribeSlackWorkspacesException.prototype);
421
+ this.Message = opts.Message;
422
+ }
423
+ }
424
+ class GetAccountPreferencesException extends ChatbotServiceException {
425
+ name = "GetAccountPreferencesException";
426
+ $fault = "server";
427
+ Message;
428
+ constructor(opts) {
429
+ super({
430
+ name: "GetAccountPreferencesException",
431
+ $fault: "server",
432
+ ...opts,
433
+ });
434
+ Object.setPrototypeOf(this, GetAccountPreferencesException.prototype);
435
+ this.Message = opts.Message;
436
+ }
437
+ }
438
+ class GetTeamsChannelConfigurationException extends ChatbotServiceException {
439
+ name = "GetTeamsChannelConfigurationException";
440
+ $fault = "server";
441
+ Message;
442
+ constructor(opts) {
443
+ super({
444
+ name: "GetTeamsChannelConfigurationException",
445
+ $fault: "server",
446
+ ...opts,
447
+ });
448
+ Object.setPrototypeOf(this, GetTeamsChannelConfigurationException.prototype);
449
+ this.Message = opts.Message;
450
+ }
451
+ }
452
+ class ListTeamsChannelConfigurationsException extends ChatbotServiceException {
453
+ name = "ListTeamsChannelConfigurationsException";
454
+ $fault = "server";
455
+ Message;
456
+ constructor(opts) {
457
+ super({
458
+ name: "ListTeamsChannelConfigurationsException",
459
+ $fault: "server",
460
+ ...opts,
461
+ });
462
+ Object.setPrototypeOf(this, ListTeamsChannelConfigurationsException.prototype);
463
+ this.Message = opts.Message;
464
+ }
465
+ }
466
+ class ListMicrosoftTeamsConfiguredTeamsException extends ChatbotServiceException {
467
+ name = "ListMicrosoftTeamsConfiguredTeamsException";
468
+ $fault = "server";
469
+ Message;
470
+ constructor(opts) {
471
+ super({
472
+ name: "ListMicrosoftTeamsConfiguredTeamsException",
473
+ $fault: "server",
474
+ ...opts,
475
+ });
476
+ Object.setPrototypeOf(this, ListMicrosoftTeamsConfiguredTeamsException.prototype);
477
+ this.Message = opts.Message;
478
+ }
479
+ }
480
+ class ListMicrosoftTeamsUserIdentitiesException extends ChatbotServiceException {
481
+ name = "ListMicrosoftTeamsUserIdentitiesException";
482
+ $fault = "server";
483
+ Message;
484
+ constructor(opts) {
485
+ super({
486
+ name: "ListMicrosoftTeamsUserIdentitiesException",
487
+ $fault: "server",
488
+ ...opts,
489
+ });
490
+ Object.setPrototypeOf(this, ListMicrosoftTeamsUserIdentitiesException.prototype);
491
+ this.Message = opts.Message;
492
+ }
493
+ }
494
+ class ServiceUnavailableException extends ChatbotServiceException {
495
+ name = "ServiceUnavailableException";
496
+ $fault = "client";
497
+ constructor(opts) {
498
+ super({
499
+ name: "ServiceUnavailableException",
500
+ $fault: "client",
501
+ ...opts,
502
+ });
503
+ Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
504
+ }
505
+ }
506
+ class TooManyTagsException extends ChatbotServiceException {
507
+ name = "TooManyTagsException";
508
+ $fault = "client";
509
+ constructor(opts) {
510
+ super({
511
+ name: "TooManyTagsException",
512
+ $fault: "client",
513
+ ...opts,
514
+ });
515
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
516
+ }
517
+ }
518
+ class UpdateAccountPreferencesException extends ChatbotServiceException {
519
+ name = "UpdateAccountPreferencesException";
520
+ $fault = "server";
521
+ Message;
522
+ constructor(opts) {
523
+ super({
524
+ name: "UpdateAccountPreferencesException",
525
+ $fault: "server",
526
+ ...opts,
527
+ });
528
+ Object.setPrototypeOf(this, UpdateAccountPreferencesException.prototype);
529
+ this.Message = opts.Message;
530
+ }
531
+ }
532
+ class UpdateChimeWebhookConfigurationException extends ChatbotServiceException {
533
+ name = "UpdateChimeWebhookConfigurationException";
534
+ $fault = "server";
535
+ Message;
536
+ constructor(opts) {
537
+ super({
538
+ name: "UpdateChimeWebhookConfigurationException",
539
+ $fault: "server",
540
+ ...opts,
541
+ });
542
+ Object.setPrototypeOf(this, UpdateChimeWebhookConfigurationException.prototype);
543
+ this.Message = opts.Message;
544
+ }
545
+ }
546
+ class UpdateTeamsChannelConfigurationException extends ChatbotServiceException {
547
+ name = "UpdateTeamsChannelConfigurationException";
548
+ $fault = "server";
549
+ Message;
550
+ constructor(opts) {
551
+ super({
552
+ name: "UpdateTeamsChannelConfigurationException",
553
+ $fault: "server",
554
+ ...opts,
555
+ });
556
+ Object.setPrototypeOf(this, UpdateTeamsChannelConfigurationException.prototype);
557
+ this.Message = opts.Message;
558
+ }
559
+ }
560
+ class UpdateSlackChannelConfigurationException extends ChatbotServiceException {
561
+ name = "UpdateSlackChannelConfigurationException";
562
+ $fault = "server";
563
+ Message;
564
+ constructor(opts) {
565
+ super({
566
+ name: "UpdateSlackChannelConfigurationException",
567
+ $fault: "server",
568
+ ...opts,
569
+ });
570
+ Object.setPrototypeOf(this, UpdateSlackChannelConfigurationException.prototype);
571
+ this.Message = opts.Message;
572
+ }
573
+ }
574
+
575
+ const _A = "Attachments";
576
+ const _AL = "AssociationListing";
577
+ const _ALs = "AssociationList";
578
+ const _AN = "ActionName";
579
+ const _ANl = "AliasName";
580
+ const _AP = "AccountPreferences";
581
+ const _ATC = "AssociateToConfiguration";
582
+ const _ATCR = "AssociateToConfigurationRequest";
583
+ const _ATCRs = "AssociateToConfigurationResult";
584
+ const _AUI = "AwsUserIdentity";
585
+ const _As = "Associations";
586
+ const _BT = "ButtonText";
587
+ const _C = "Criteria";
588
+ const _CA = "CustomAction";
589
+ const _CAA = "CustomActionArn";
590
+ const _CAAC = "CustomActionAttachmentCriteria";
591
+ const _CAACL = "CustomActionAttachmentCriteriaList";
592
+ const _CAAL = "CustomActionAttachmentList";
593
+ const _CAAu = "CustomActionAttachment";
594
+ const _CAD = "CustomActionDefinition";
595
+ const _CAu = "CustomActions";
596
+ const _CC = "ChatConfiguration";
597
+ const _CCA = "ChatConfigurationArn";
598
+ const _CCAR = "CreateCustomActionRequest";
599
+ const _CCARr = "CreateCustomActionResult";
600
+ const _CCAr = "CreateCustomAction";
601
+ const _CCWC = "CreateChimeWebhookConfiguration";
602
+ const _CCWCE = "CreateChimeWebhookConfigurationException";
603
+ const _CCWCR = "CreateChimeWebhookConfigurationRequest";
604
+ const _CCWCRr = "CreateChimeWebhookConfigurationResult";
605
+ const _CCh = "ChannelConfiguration";
606
+ const _CE = "ConflictException";
607
+ const _CI = "ChannelId";
608
+ const _CMTCC = "CreateMicrosoftTeamsChannelConfiguration";
609
+ const _CN = "ConfigurationName";
610
+ const _CNh = "ChannelName";
611
+ const _CSCC = "CreateSlackChannelConfiguration";
612
+ const _CSCCE = "CreateSlackChannelConfigurationException";
613
+ const _CSCCR = "CreateSlackChannelConfigurationRequest";
614
+ const _CSCCRr = "CreateSlackChannelConfigurationResult";
615
+ const _CT = "ConfiguredTeam";
616
+ const _CTCCE = "CreateTeamsChannelConfigurationException";
617
+ const _CTCCR = "CreateTeamsChannelConfigurationRequest";
618
+ const _CTCCRr = "CreateTeamsChannelConfigurationResult";
619
+ const _CTL = "ConfiguredTeamsList";
620
+ const _CTl = "ClientToken";
621
+ const _CTo = "CommandText";
622
+ const _CTon = "ConfiguredTeams";
623
+ const _CWC = "ChimeWebhookConfiguration";
624
+ const _CWCL = "ChimeWebhookConfigurationList";
625
+ const _CWD = "ChimeWebhookDescription";
626
+ const _CWU = "ChimeWebhookUrl";
627
+ const _D = "Definition";
628
+ const _DCA = "DeleteCustomAction";
629
+ const _DCAR = "DeleteCustomActionRequest";
630
+ const _DCARe = "DeleteCustomActionResult";
631
+ const _DCWC = "DeleteChimeWebhookConfiguration";
632
+ const _DCWCE = "DeleteChimeWebhookConfigurationException";
633
+ const _DCWCEe = "DescribeChimeWebhookConfigurationsException";
634
+ const _DCWCR = "DeleteChimeWebhookConfigurationRequest";
635
+ const _DCWCRe = "DeleteChimeWebhookConfigurationResult";
636
+ const _DCWCRes = "DescribeChimeWebhookConfigurationsRequest";
637
+ const _DCWCResc = "DescribeChimeWebhookConfigurationsResult";
638
+ const _DCWCe = "DescribeChimeWebhookConfigurations";
639
+ const _DFC = "DisassociateFromConfiguration";
640
+ const _DFCR = "DisassociateFromConfigurationRequest";
641
+ const _DFCRi = "DisassociateFromConfigurationResult";
642
+ const _DMTCC = "DeleteMicrosoftTeamsChannelConfiguration";
643
+ const _DMTCT = "DeleteMicrosoftTeamsConfiguredTeam";
644
+ const _DMTUI = "DeleteMicrosoftTeamsUserIdentity";
645
+ const _DMTUIE = "DeleteMicrosoftTeamsUserIdentityException";
646
+ const _DMTUIR = "DeleteMicrosoftTeamsUserIdentityRequest";
647
+ const _DMTUIRe = "DeleteMicrosoftTeamsUserIdentityResult";
648
+ const _DSCC = "DeleteSlackChannelConfiguration";
649
+ const _DSCCE = "DeleteSlackChannelConfigurationException";
650
+ const _DSCCEe = "DescribeSlackChannelConfigurationsException";
651
+ const _DSCCR = "DeleteSlackChannelConfigurationRequest";
652
+ const _DSCCRe = "DeleteSlackChannelConfigurationResult";
653
+ const _DSCCRes = "DescribeSlackChannelConfigurationsRequest";
654
+ const _DSCCResc = "DescribeSlackChannelConfigurationsResult";
655
+ const _DSCCe = "DescribeSlackChannelConfigurations";
656
+ const _DSUI = "DeleteSlackUserIdentity";
657
+ const _DSUIE = "DeleteSlackUserIdentityException";
658
+ const _DSUIEe = "DescribeSlackUserIdentitiesException";
659
+ const _DSUIR = "DeleteSlackUserIdentityRequest";
660
+ const _DSUIRe = "DeleteSlackUserIdentityResult";
661
+ const _DSUIRes = "DescribeSlackUserIdentitiesRequest";
662
+ const _DSUIResc = "DescribeSlackUserIdentitiesResult";
663
+ const _DSUIe = "DescribeSlackUserIdentities";
664
+ const _DSW = "DescribeSlackWorkspaces";
665
+ const _DSWA = "DeleteSlackWorkspaceAuthorization";
666
+ const _DSWAF = "DeleteSlackWorkspaceAuthorizationFault";
667
+ const _DSWAR = "DeleteSlackWorkspaceAuthorizationRequest";
668
+ const _DSWARe = "DeleteSlackWorkspaceAuthorizationResult";
669
+ const _DSWE = "DescribeSlackWorkspacesException";
670
+ const _DSWR = "DescribeSlackWorkspacesRequest";
671
+ const _DSWRe = "DescribeSlackWorkspacesResult";
672
+ const _DTCCE = "DeleteTeamsChannelConfigurationException";
673
+ const _DTCCR = "DeleteTeamsChannelConfigurationRequest";
674
+ const _DTCCRe = "DeleteTeamsChannelConfigurationResult";
675
+ const _DTCTE = "DeleteTeamsConfiguredTeamException";
676
+ const _DTCTR = "DeleteTeamsConfiguredTeamRequest";
677
+ const _DTCTRe = "DeleteTeamsConfiguredTeamResult";
678
+ const _GAP = "GetAccountPreferences";
679
+ const _GAPE = "GetAccountPreferencesException";
680
+ const _GAPR = "GetAccountPreferencesRequest";
681
+ const _GAPRe = "GetAccountPreferencesResult";
682
+ const _GCA = "GetCustomAction";
683
+ const _GCAR = "GetCustomActionRequest";
684
+ const _GCARe = "GetCustomActionResult";
685
+ const _GMTCC = "GetMicrosoftTeamsChannelConfiguration";
686
+ const _GPA = "GuardrailPolicyArns";
687
+ const _GTCCE = "GetTeamsChannelConfigurationException";
688
+ const _GTCCR = "GetTeamsChannelConfigurationRequest";
689
+ const _GTCCRe = "GetTeamsChannelConfigurationResult";
690
+ const _IPE = "InvalidParameterException";
691
+ const _IRA = "IamRoleArn";
692
+ const _IRE = "InvalidRequestException";
693
+ const _ISE = "InternalServiceError";
694
+ const _LA = "ListAssociations";
695
+ const _LAR = "ListAssociationsRequest";
696
+ const _LARi = "ListAssociationsResult";
697
+ const _LCA = "ListCustomActions";
698
+ const _LCAR = "ListCustomActionsRequest";
699
+ const _LCARi = "ListCustomActionsResult";
700
+ const _LEE = "LimitExceededException";
701
+ const _LL = "LoggingLevel";
702
+ const _LMTCC = "ListMicrosoftTeamsChannelConfigurations";
703
+ const _LMTCT = "ListMicrosoftTeamsConfiguredTeams";
704
+ const _LMTCTE = "ListMicrosoftTeamsConfiguredTeamsException";
705
+ const _LMTCTR = "ListMicrosoftTeamsConfiguredTeamsRequest";
706
+ const _LMTCTRi = "ListMicrosoftTeamsConfiguredTeamsResult";
707
+ const _LMTUI = "ListMicrosoftTeamsUserIdentities";
708
+ const _LMTUIE = "ListMicrosoftTeamsUserIdentitiesException";
709
+ const _LMTUIR = "ListMicrosoftTeamsUserIdentitiesRequest";
710
+ const _LMTUIRi = "ListMicrosoftTeamsUserIdentitiesResult";
711
+ const _LTCCE = "ListTeamsChannelConfigurationsException";
712
+ const _LTCCR = "ListTeamsChannelConfigurationsRequest";
713
+ const _LTCCRi = "ListTeamsChannelConfigurationsResult";
714
+ const _LTFR = "ListTagsForResource";
715
+ const _LTFRR = "ListTagsForResourceRequest";
716
+ const _LTFRRi = "ListTagsForResourceResponse";
717
+ const _M = "Message";
718
+ const _MR = "MaxResults";
719
+ const _NT = "NotificationType";
720
+ const _NTe = "NextToken";
721
+ const _O = "Operator";
722
+ const _R = "Resource";
723
+ const _RARN = "ResourceARN";
724
+ const _RNFE = "ResourceNotFoundException";
725
+ const _S = "State";
726
+ const _SCC = "SlackChannelConfigurations";
727
+ const _SCCL = "SlackChannelConfigurationList";
728
+ const _SCCl = "SlackChannelConfiguration";
729
+ const _SCDN = "SlackChannelDisplayName";
730
+ const _SCI = "SlackChannelId";
731
+ const _SCN = "SlackChannelName";
732
+ const _SR = "StateReason";
733
+ const _STA = "SnsTopicArns";
734
+ const _STI = "SlackTeamId";
735
+ const _STN = "SlackTeamName";
736
+ const _SUE = "ServiceUnavailableException";
737
+ const _SUI = "SlackUserId";
738
+ const _SUIL = "SlackUserIdentitiesList";
739
+ const _SUIl = "SlackUserIdentities";
740
+ const _SUIla = "SlackUserIdentity";
741
+ const _SW = "SlackWorkspaces";
742
+ const _SWL = "SlackWorkspacesList";
743
+ const _SWl = "SlackWorkspace";
744
+ const _T = "Tags";
745
+ const _TCC = "TeamChannelConfigurations";
746
+ const _TCCL = "TeamChannelConfigurationsList";
747
+ const _TCCe = "TeamsChannelConfiguration";
748
+ const _TCI = "TeamsChannelId";
749
+ const _TCN = "TeamsChannelName";
750
+ const _TDCE = "TrainingDataCollectionEnabled";
751
+ const _TI = "TenantId";
752
+ const _TIe = "TeamId";
753
+ const _TK = "TagKey";
754
+ const _TKa = "TagKeys";
755
+ const _TL = "TagList";
756
+ const _TMTE = "TooManyTagsException";
757
+ const _TN = "TeamName";
758
+ const _TR = "TagResource";
759
+ const _TRR = "TagResourceRequest";
760
+ const _TRRa = "TagResourceResponse";
761
+ const _TTI = "TeamsTenantId";
762
+ const _TUI = "TeamsUserIdentities";
763
+ const _TUIL = "TeamsUserIdentitiesList";
764
+ const _TUIe = "TeamsUserIdentity";
765
+ const _TV = "TagValue";
766
+ const _Ta = "Tag";
767
+ const _UAP = "UpdateAccountPreferences";
768
+ const _UAPE = "UpdateAccountPreferencesException";
769
+ const _UAPR = "UpdateAccountPreferencesRequest";
770
+ const _UAPRp = "UpdateAccountPreferencesResult";
771
+ const _UAR = "UserAuthorizationRequired";
772
+ const _UCA = "UpdateCustomAction";
773
+ const _UCAR = "UpdateCustomActionRequest";
774
+ const _UCARp = "UpdateCustomActionResult";
775
+ const _UCWC = "UpdateChimeWebhookConfiguration";
776
+ const _UCWCE = "UpdateChimeWebhookConfigurationException";
777
+ const _UCWCR = "UpdateChimeWebhookConfigurationRequest";
778
+ const _UCWCRp = "UpdateChimeWebhookConfigurationResult";
779
+ const _UE = "UnauthorizedException";
780
+ const _UI = "UserId";
781
+ const _UMTCC = "UpdateMicrosoftTeamsChannelConfiguration";
782
+ const _UR = "UntagResource";
783
+ const _URR = "UntagResourceRequest";
784
+ const _URRn = "UntagResourceResponse";
785
+ const _USCC = "UpdateSlackChannelConfiguration";
786
+ const _USCCE = "UpdateSlackChannelConfigurationException";
787
+ const _USCCR = "UpdateSlackChannelConfigurationRequest";
788
+ const _USCCRp = "UpdateSlackChannelConfigurationResult";
789
+ const _UTCCE = "UpdateTeamsChannelConfigurationException";
790
+ const _UTCCR = "UpdateTeamsChannelConfigurationRequest";
791
+ const _UTCCRp = "UpdateTeamsChannelConfigurationResult";
792
+ const _V = "Variables";
793
+ const _VN = "VariableName";
794
+ const _Va = "Value";
795
+ const _WC = "WebhookConfiguration";
796
+ const _WCe = "WebhookConfigurations";
797
+ const _WD = "WebhookDescription";
798
+ const _WU = "WebhookUrl";
799
+ const _c = "client";
800
+ const _e = "error";
801
+ const _h = "http";
802
+ const _hE = "httpError";
803
+ const _m = "message";
804
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.chatbot";
805
+ const _se = "server";
806
+ const n0 = "com.amazonaws.chatbot";
807
+ const _s_registry = TypeRegistry.for(_s);
808
+ var ChatbotServiceException$ = [-3, _s, "ChatbotServiceException", 0, [], []];
809
+ _s_registry.registerError(ChatbotServiceException$, ChatbotServiceException);
810
+ const n0_registry = TypeRegistry.for(n0);
811
+ var ConflictException$ = [-3, n0, _CE,
812
+ { [_e]: _c, [_hE]: 409 },
813
+ [_m],
814
+ [0]
815
+ ];
816
+ n0_registry.registerError(ConflictException$, ConflictException);
817
+ var CreateChimeWebhookConfigurationException$ = [-3, n0, _CCWCE,
818
+ { [_e]: _se, [_hE]: 500 },
819
+ [_M],
820
+ [0]
821
+ ];
822
+ n0_registry.registerError(CreateChimeWebhookConfigurationException$, CreateChimeWebhookConfigurationException);
823
+ var CreateSlackChannelConfigurationException$ = [-3, n0, _CSCCE,
824
+ { [_e]: _se, [_hE]: 500 },
825
+ [_M],
826
+ [0]
827
+ ];
828
+ n0_registry.registerError(CreateSlackChannelConfigurationException$, CreateSlackChannelConfigurationException);
829
+ var CreateTeamsChannelConfigurationException$ = [-3, n0, _CTCCE,
830
+ { [_e]: _se, [_hE]: 500 },
831
+ [_M],
832
+ [0]
833
+ ];
834
+ n0_registry.registerError(CreateTeamsChannelConfigurationException$, CreateTeamsChannelConfigurationException);
835
+ var DeleteChimeWebhookConfigurationException$ = [-3, n0, _DCWCE,
836
+ { [_e]: _se, [_hE]: 500 },
837
+ [_M],
838
+ [0]
839
+ ];
840
+ n0_registry.registerError(DeleteChimeWebhookConfigurationException$, DeleteChimeWebhookConfigurationException);
841
+ var DeleteMicrosoftTeamsUserIdentityException$ = [-3, n0, _DMTUIE,
842
+ { [_e]: _se, [_hE]: 500 },
843
+ [_M],
844
+ [0]
845
+ ];
846
+ n0_registry.registerError(DeleteMicrosoftTeamsUserIdentityException$, DeleteMicrosoftTeamsUserIdentityException);
847
+ var DeleteSlackChannelConfigurationException$ = [-3, n0, _DSCCE,
848
+ { [_e]: _se, [_hE]: 500 },
849
+ [_M],
850
+ [0]
851
+ ];
852
+ n0_registry.registerError(DeleteSlackChannelConfigurationException$, DeleteSlackChannelConfigurationException);
853
+ var DeleteSlackUserIdentityException$ = [-3, n0, _DSUIE,
854
+ { [_e]: _se, [_hE]: 500 },
855
+ [_M],
856
+ [0]
857
+ ];
858
+ n0_registry.registerError(DeleteSlackUserIdentityException$, DeleteSlackUserIdentityException);
859
+ var DeleteSlackWorkspaceAuthorizationFault$ = [-3, n0, _DSWAF,
860
+ { [_e]: _se, [_hE]: 500 },
861
+ [_M],
862
+ [0]
863
+ ];
864
+ n0_registry.registerError(DeleteSlackWorkspaceAuthorizationFault$, DeleteSlackWorkspaceAuthorizationFault);
865
+ var DeleteTeamsChannelConfigurationException$ = [-3, n0, _DTCCE,
866
+ { [_e]: _se, [_hE]: 500 },
867
+ [_M],
868
+ [0]
869
+ ];
870
+ n0_registry.registerError(DeleteTeamsChannelConfigurationException$, DeleteTeamsChannelConfigurationException);
871
+ var DeleteTeamsConfiguredTeamException$ = [-3, n0, _DTCTE,
872
+ { [_e]: _se, [_hE]: 500 },
873
+ [_M],
874
+ [0]
875
+ ];
876
+ n0_registry.registerError(DeleteTeamsConfiguredTeamException$, DeleteTeamsConfiguredTeamException);
877
+ var DescribeChimeWebhookConfigurationsException$ = [-3, n0, _DCWCEe,
878
+ { [_e]: _se, [_hE]: 500 },
879
+ [_M],
880
+ [0]
881
+ ];
882
+ n0_registry.registerError(DescribeChimeWebhookConfigurationsException$, DescribeChimeWebhookConfigurationsException);
883
+ var DescribeSlackChannelConfigurationsException$ = [-3, n0, _DSCCEe,
884
+ { [_e]: _se, [_hE]: 500 },
885
+ [_M],
886
+ [0]
887
+ ];
888
+ n0_registry.registerError(DescribeSlackChannelConfigurationsException$, DescribeSlackChannelConfigurationsException);
889
+ var DescribeSlackUserIdentitiesException$ = [-3, n0, _DSUIEe,
890
+ { [_e]: _se, [_hE]: 500 },
891
+ [_M],
892
+ [0]
893
+ ];
894
+ n0_registry.registerError(DescribeSlackUserIdentitiesException$, DescribeSlackUserIdentitiesException);
895
+ var DescribeSlackWorkspacesException$ = [-3, n0, _DSWE,
896
+ { [_e]: _se, [_hE]: 500 },
897
+ [_M],
898
+ [0]
899
+ ];
900
+ n0_registry.registerError(DescribeSlackWorkspacesException$, DescribeSlackWorkspacesException);
901
+ var GetAccountPreferencesException$ = [-3, n0, _GAPE,
902
+ { [_e]: _se, [_hE]: 500 },
903
+ [_M],
904
+ [0]
905
+ ];
906
+ n0_registry.registerError(GetAccountPreferencesException$, GetAccountPreferencesException);
907
+ var GetTeamsChannelConfigurationException$ = [-3, n0, _GTCCE,
908
+ { [_e]: _se, [_hE]: 500 },
909
+ [_M],
910
+ [0]
911
+ ];
912
+ n0_registry.registerError(GetTeamsChannelConfigurationException$, GetTeamsChannelConfigurationException);
913
+ var InternalServiceError$ = [-3, n0, _ISE,
914
+ { [_e]: _se, [_hE]: 500 },
915
+ [_M],
916
+ [0]
917
+ ];
918
+ n0_registry.registerError(InternalServiceError$, InternalServiceError);
919
+ var InvalidParameterException$ = [-3, n0, _IPE,
920
+ { [_e]: _c, [_hE]: 400 },
921
+ [_m],
922
+ [0]
923
+ ];
924
+ n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
925
+ var InvalidRequestException$ = [-3, n0, _IRE,
926
+ { [_e]: _c, [_hE]: 400 },
927
+ [_m],
928
+ [0]
929
+ ];
930
+ n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
931
+ var LimitExceededException$ = [-3, n0, _LEE,
932
+ { [_e]: _c, [_hE]: 403 },
933
+ [_m],
934
+ [0]
935
+ ];
936
+ n0_registry.registerError(LimitExceededException$, LimitExceededException);
937
+ var ListMicrosoftTeamsConfiguredTeamsException$ = [-3, n0, _LMTCTE,
938
+ { [_e]: _se, [_hE]: 500 },
939
+ [_M],
940
+ [0]
941
+ ];
942
+ n0_registry.registerError(ListMicrosoftTeamsConfiguredTeamsException$, ListMicrosoftTeamsConfiguredTeamsException);
943
+ var ListMicrosoftTeamsUserIdentitiesException$ = [-3, n0, _LMTUIE,
944
+ { [_e]: _se, [_hE]: 500 },
945
+ [_M],
946
+ [0]
947
+ ];
948
+ n0_registry.registerError(ListMicrosoftTeamsUserIdentitiesException$, ListMicrosoftTeamsUserIdentitiesException);
949
+ var ListTeamsChannelConfigurationsException$ = [-3, n0, _LTCCE,
950
+ { [_e]: _se, [_hE]: 500 },
951
+ [_M],
952
+ [0]
953
+ ];
954
+ n0_registry.registerError(ListTeamsChannelConfigurationsException$, ListTeamsChannelConfigurationsException);
955
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
956
+ { [_e]: _c, [_hE]: 404 },
957
+ [_M],
958
+ [0]
959
+ ];
960
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
961
+ var ServiceUnavailableException$ = [-3, n0, _SUE,
962
+ { [_e]: _c, [_hE]: 429 },
963
+ [_m],
964
+ [0]
965
+ ];
966
+ n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
967
+ var TooManyTagsException$ = [-3, n0, _TMTE,
968
+ { [_e]: _c, [_hE]: 400 },
969
+ [_m],
970
+ [0]
971
+ ];
972
+ n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
973
+ var UnauthorizedException$ = [-3, n0, _UE,
974
+ { [_e]: _c, [_hE]: 403 },
975
+ [_m],
976
+ [0]
977
+ ];
978
+ n0_registry.registerError(UnauthorizedException$, UnauthorizedException);
979
+ var UpdateAccountPreferencesException$ = [-3, n0, _UAPE,
980
+ { [_e]: _se, [_hE]: 500 },
981
+ [_M],
982
+ [0]
983
+ ];
984
+ n0_registry.registerError(UpdateAccountPreferencesException$, UpdateAccountPreferencesException);
985
+ var UpdateChimeWebhookConfigurationException$ = [-3, n0, _UCWCE,
986
+ { [_e]: _se, [_hE]: 500 },
987
+ [_M],
988
+ [0]
989
+ ];
990
+ n0_registry.registerError(UpdateChimeWebhookConfigurationException$, UpdateChimeWebhookConfigurationException);
991
+ var UpdateSlackChannelConfigurationException$ = [-3, n0, _USCCE,
992
+ { [_e]: _se, [_hE]: 500 },
993
+ [_M],
994
+ [0]
995
+ ];
996
+ n0_registry.registerError(UpdateSlackChannelConfigurationException$, UpdateSlackChannelConfigurationException);
997
+ var UpdateTeamsChannelConfigurationException$ = [-3, n0, _UTCCE,
998
+ { [_e]: _se, [_hE]: 500 },
999
+ [_M],
1000
+ [0]
1001
+ ];
1002
+ n0_registry.registerError(UpdateTeamsChannelConfigurationException$, UpdateTeamsChannelConfigurationException);
1003
+ const errorTypeRegistries = [
1004
+ _s_registry,
1005
+ n0_registry,
1006
+ ];
1007
+ var ChimeWebhookDescription = [0, n0, _CWD, 8, 0];
1008
+ var ChimeWebhookUrl = [0, n0, _CWU, 8, 0];
1009
+ var SlackChannelDisplayName = [0, n0, _SCDN, 8, 0];
1010
+ var TeamName = [0, n0, _TN, 8, 0];
1011
+ var TeamsChannelName = [0, n0, _TCN, 8, 0];
1012
+ var AccountPreferences$ = [3, n0, _AP,
1013
+ 0,
1014
+ [_UAR, _TDCE],
1015
+ [2, 2]
1016
+ ];
1017
+ var AssociateToConfigurationRequest$ = [3, n0, _ATCR,
1018
+ 0,
1019
+ [_R, _CC],
1020
+ [0, 0], 2
1021
+ ];
1022
+ var AssociateToConfigurationResult$ = [3, n0, _ATCRs,
1023
+ 0,
1024
+ [],
1025
+ []
1026
+ ];
1027
+ var AssociationListing$ = [3, n0, _AL,
1028
+ 0,
1029
+ [_R],
1030
+ [0], 1
1031
+ ];
1032
+ var ChimeWebhookConfiguration$ = [3, n0, _CWC,
1033
+ 0,
1034
+ [_WD, _CCA, _IRA, _STA, _CN, _LL, _T, _S, _SR],
1035
+ [[() => ChimeWebhookDescription, 0], 0, 0, 64 | 0, 0, 0, () => Tags, 0, 0], 4
1036
+ ];
1037
+ var ConfiguredTeam$ = [3, n0, _CT,
1038
+ 0,
1039
+ [_TI, _TIe, _TN, _S, _SR],
1040
+ [0, 0, 0, 0, 0], 2
1041
+ ];
1042
+ var CreateChimeWebhookConfigurationRequest$ = [3, n0, _CCWCR,
1043
+ 0,
1044
+ [_WD, _WU, _STA, _IRA, _CN, _LL, _T],
1045
+ [[() => ChimeWebhookDescription, 0], [() => ChimeWebhookUrl, 0], 64 | 0, 0, 0, 0, () => Tags], 5
1046
+ ];
1047
+ var CreateChimeWebhookConfigurationResult$ = [3, n0, _CCWCRr,
1048
+ 0,
1049
+ [_WC],
1050
+ [[() => ChimeWebhookConfiguration$, 0]]
1051
+ ];
1052
+ var CreateCustomActionRequest$ = [3, n0, _CCAR,
1053
+ 0,
1054
+ [_D, _AN, _ANl, _A, _T, _CTl],
1055
+ [() => CustomActionDefinition$, 0, 0, () => CustomActionAttachmentList, () => TagList, [0, 4]], 2
1056
+ ];
1057
+ var CreateCustomActionResult$ = [3, n0, _CCARr,
1058
+ 0,
1059
+ [_CAA],
1060
+ [0], 1
1061
+ ];
1062
+ var CreateSlackChannelConfigurationRequest$ = [3, n0, _CSCCR,
1063
+ 0,
1064
+ [_STI, _SCI, _IRA, _CN, _SCN, _STA, _LL, _GPA, _UAR, _T],
1065
+ [0, 0, 0, 0, [() => SlackChannelDisplayName, 0], 64 | 0, 0, 64 | 0, 2, () => Tags], 4
1066
+ ];
1067
+ var CreateSlackChannelConfigurationResult$ = [3, n0, _CSCCRr,
1068
+ 0,
1069
+ [_CCh],
1070
+ [[() => SlackChannelConfiguration$, 0]]
1071
+ ];
1072
+ var CreateTeamsChannelConfigurationRequest$ = [3, n0, _CTCCR,
1073
+ 0,
1074
+ [_CI, _TIe, _TI, _IRA, _CN, _CNh, _TN, _STA, _LL, _GPA, _UAR, _T],
1075
+ [0, 0, 0, 0, 0, [() => TeamsChannelName, 0], [() => TeamName, 0], 64 | 0, 0, 64 | 0, 2, () => Tags], 5
1076
+ ];
1077
+ var CreateTeamsChannelConfigurationResult$ = [3, n0, _CTCCRr,
1078
+ 0,
1079
+ [_CCh],
1080
+ [[() => TeamsChannelConfiguration$, 0]]
1081
+ ];
1082
+ var CustomAction$ = [3, n0, _CA,
1083
+ 0,
1084
+ [_CAA, _D, _ANl, _A, _AN],
1085
+ [0, () => CustomActionDefinition$, 0, () => CustomActionAttachmentList, 0], 2
1086
+ ];
1087
+ var CustomActionAttachment$ = [3, n0, _CAAu,
1088
+ 0,
1089
+ [_NT, _BT, _C, _V],
1090
+ [0, 0, () => CustomActionAttachmentCriteriaList, 128 | 0]
1091
+ ];
1092
+ var CustomActionAttachmentCriteria$ = [3, n0, _CAAC,
1093
+ 0,
1094
+ [_O, _VN, _Va],
1095
+ [0, 0, 0], 2
1096
+ ];
1097
+ var CustomActionDefinition$ = [3, n0, _CAD,
1098
+ 0,
1099
+ [_CTo],
1100
+ [0], 1
1101
+ ];
1102
+ var DeleteChimeWebhookConfigurationRequest$ = [3, n0, _DCWCR,
1103
+ 0,
1104
+ [_CCA],
1105
+ [0], 1
1106
+ ];
1107
+ var DeleteChimeWebhookConfigurationResult$ = [3, n0, _DCWCRe,
1108
+ 0,
1109
+ [],
1110
+ []
1111
+ ];
1112
+ var DeleteCustomActionRequest$ = [3, n0, _DCAR,
1113
+ 0,
1114
+ [_CAA],
1115
+ [0], 1
1116
+ ];
1117
+ var DeleteCustomActionResult$ = [3, n0, _DCARe,
1118
+ 0,
1119
+ [],
1120
+ []
1121
+ ];
1122
+ var DeleteMicrosoftTeamsUserIdentityRequest$ = [3, n0, _DMTUIR,
1123
+ 0,
1124
+ [_CCA, _UI],
1125
+ [0, 0], 2
1126
+ ];
1127
+ var DeleteMicrosoftTeamsUserIdentityResult$ = [3, n0, _DMTUIRe,
1128
+ 0,
1129
+ [],
1130
+ []
1131
+ ];
1132
+ var DeleteSlackChannelConfigurationRequest$ = [3, n0, _DSCCR,
1133
+ 0,
1134
+ [_CCA],
1135
+ [0], 1
1136
+ ];
1137
+ var DeleteSlackChannelConfigurationResult$ = [3, n0, _DSCCRe,
1138
+ 0,
1139
+ [],
1140
+ []
1141
+ ];
1142
+ var DeleteSlackUserIdentityRequest$ = [3, n0, _DSUIR,
1143
+ 0,
1144
+ [_CCA, _STI, _SUI],
1145
+ [0, 0, 0], 3
1146
+ ];
1147
+ var DeleteSlackUserIdentityResult$ = [3, n0, _DSUIRe,
1148
+ 0,
1149
+ [],
1150
+ []
1151
+ ];
1152
+ var DeleteSlackWorkspaceAuthorizationRequest$ = [3, n0, _DSWAR,
1153
+ 0,
1154
+ [_STI],
1155
+ [0], 1
1156
+ ];
1157
+ var DeleteSlackWorkspaceAuthorizationResult$ = [3, n0, _DSWARe,
1158
+ 0,
1159
+ [],
1160
+ []
1161
+ ];
1162
+ var DeleteTeamsChannelConfigurationRequest$ = [3, n0, _DTCCR,
1163
+ 0,
1164
+ [_CCA],
1165
+ [0], 1
1166
+ ];
1167
+ var DeleteTeamsChannelConfigurationResult$ = [3, n0, _DTCCRe,
1168
+ 0,
1169
+ [],
1170
+ []
1171
+ ];
1172
+ var DeleteTeamsConfiguredTeamRequest$ = [3, n0, _DTCTR,
1173
+ 0,
1174
+ [_TIe],
1175
+ [0], 1
1176
+ ];
1177
+ var DeleteTeamsConfiguredTeamResult$ = [3, n0, _DTCTRe,
1178
+ 0,
1179
+ [],
1180
+ []
1181
+ ];
1182
+ var DescribeChimeWebhookConfigurationsRequest$ = [3, n0, _DCWCRes,
1183
+ 0,
1184
+ [_MR, _NTe, _CCA],
1185
+ [1, 0, 0]
1186
+ ];
1187
+ var DescribeChimeWebhookConfigurationsResult$ = [3, n0, _DCWCResc,
1188
+ 0,
1189
+ [_NTe, _WCe],
1190
+ [0, [() => ChimeWebhookConfigurationList, 0]]
1191
+ ];
1192
+ var DescribeSlackChannelConfigurationsRequest$ = [3, n0, _DSCCRes,
1193
+ 0,
1194
+ [_MR, _NTe, _CCA],
1195
+ [1, 0, 0]
1196
+ ];
1197
+ var DescribeSlackChannelConfigurationsResult$ = [3, n0, _DSCCResc,
1198
+ 0,
1199
+ [_NTe, _SCC],
1200
+ [0, [() => SlackChannelConfigurationList, 0]]
1201
+ ];
1202
+ var DescribeSlackUserIdentitiesRequest$ = [3, n0, _DSUIRes,
1203
+ 0,
1204
+ [_CCA, _NTe, _MR],
1205
+ [0, 0, 1]
1206
+ ];
1207
+ var DescribeSlackUserIdentitiesResult$ = [3, n0, _DSUIResc,
1208
+ 0,
1209
+ [_SUIl, _NTe],
1210
+ [() => SlackUserIdentitiesList, 0]
1211
+ ];
1212
+ var DescribeSlackWorkspacesRequest$ = [3, n0, _DSWR,
1213
+ 0,
1214
+ [_MR, _NTe],
1215
+ [1, 0]
1216
+ ];
1217
+ var DescribeSlackWorkspacesResult$ = [3, n0, _DSWRe,
1218
+ 0,
1219
+ [_SW, _NTe],
1220
+ [() => SlackWorkspacesList, 0]
1221
+ ];
1222
+ var DisassociateFromConfigurationRequest$ = [3, n0, _DFCR,
1223
+ 0,
1224
+ [_R, _CC],
1225
+ [0, 0], 2
1226
+ ];
1227
+ var DisassociateFromConfigurationResult$ = [3, n0, _DFCRi,
1228
+ 0,
1229
+ [],
1230
+ []
1231
+ ];
1232
+ var GetAccountPreferencesRequest$ = [3, n0, _GAPR,
1233
+ 0,
1234
+ [],
1235
+ []
1236
+ ];
1237
+ var GetAccountPreferencesResult$ = [3, n0, _GAPRe,
1238
+ 0,
1239
+ [_AP],
1240
+ [() => AccountPreferences$]
1241
+ ];
1242
+ var GetCustomActionRequest$ = [3, n0, _GCAR,
1243
+ 0,
1244
+ [_CAA],
1245
+ [0], 1
1246
+ ];
1247
+ var GetCustomActionResult$ = [3, n0, _GCARe,
1248
+ 0,
1249
+ [_CA],
1250
+ [() => CustomAction$]
1251
+ ];
1252
+ var GetTeamsChannelConfigurationRequest$ = [3, n0, _GTCCR,
1253
+ 0,
1254
+ [_CCA],
1255
+ [0], 1
1256
+ ];
1257
+ var GetTeamsChannelConfigurationResult$ = [3, n0, _GTCCRe,
1258
+ 0,
1259
+ [_CCh],
1260
+ [[() => TeamsChannelConfiguration$, 0]]
1261
+ ];
1262
+ var ListAssociationsRequest$ = [3, n0, _LAR,
1263
+ 0,
1264
+ [_CC, _MR, _NTe],
1265
+ [0, 1, 0], 1
1266
+ ];
1267
+ var ListAssociationsResult$ = [3, n0, _LARi,
1268
+ 0,
1269
+ [_As, _NTe],
1270
+ [() => AssociationList, 0], 1
1271
+ ];
1272
+ var ListCustomActionsRequest$ = [3, n0, _LCAR,
1273
+ 0,
1274
+ [_MR, _NTe],
1275
+ [1, 0]
1276
+ ];
1277
+ var ListCustomActionsResult$ = [3, n0, _LCARi,
1278
+ 0,
1279
+ [_CAu, _NTe],
1280
+ [64 | 0, 0], 1
1281
+ ];
1282
+ var ListMicrosoftTeamsConfiguredTeamsRequest$ = [3, n0, _LMTCTR,
1283
+ 0,
1284
+ [_MR, _NTe],
1285
+ [1, 0]
1286
+ ];
1287
+ var ListMicrosoftTeamsConfiguredTeamsResult$ = [3, n0, _LMTCTRi,
1288
+ 0,
1289
+ [_CTon, _NTe],
1290
+ [() => ConfiguredTeamsList, 0]
1291
+ ];
1292
+ var ListMicrosoftTeamsUserIdentitiesRequest$ = [3, n0, _LMTUIR,
1293
+ 0,
1294
+ [_CCA, _NTe, _MR],
1295
+ [0, 0, 1]
1296
+ ];
1297
+ var ListMicrosoftTeamsUserIdentitiesResult$ = [3, n0, _LMTUIRi,
1298
+ 0,
1299
+ [_TUI, _NTe],
1300
+ [() => TeamsUserIdentitiesList, 0]
1301
+ ];
1302
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1303
+ 0,
1304
+ [_RARN],
1305
+ [0], 1
1306
+ ];
1307
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1308
+ 0,
1309
+ [_T],
1310
+ [() => TagList]
1311
+ ];
1312
+ var ListTeamsChannelConfigurationsRequest$ = [3, n0, _LTCCR,
1313
+ 0,
1314
+ [_MR, _NTe, _TIe],
1315
+ [1, 0, 0]
1316
+ ];
1317
+ var ListTeamsChannelConfigurationsResult$ = [3, n0, _LTCCRi,
1318
+ 0,
1319
+ [_NTe, _TCC],
1320
+ [0, [() => TeamChannelConfigurationsList, 0]]
1321
+ ];
1322
+ var SlackChannelConfiguration$ = [3, n0, _SCCl,
1323
+ 0,
1324
+ [_STN, _STI, _SCI, _SCN, _CCA, _IRA, _STA, _CN, _LL, _GPA, _UAR, _T, _S, _SR],
1325
+ [0, 0, 0, [() => SlackChannelDisplayName, 0], 0, 0, 64 | 0, 0, 0, 64 | 0, 2, () => Tags, 0, 0], 7
1326
+ ];
1327
+ var SlackUserIdentity$ = [3, n0, _SUIla,
1328
+ 0,
1329
+ [_IRA, _CCA, _STI, _SUI, _AUI],
1330
+ [0, 0, 0, 0, 0], 4
1331
+ ];
1332
+ var SlackWorkspace$ = [3, n0, _SWl,
1333
+ 0,
1334
+ [_STI, _STN, _S, _SR],
1335
+ [0, 0, 0, 0], 2
1336
+ ];
1337
+ var Tag$ = [3, n0, _Ta,
1338
+ 0,
1339
+ [_TK, _TV],
1340
+ [0, 0], 2
1341
+ ];
1342
+ var TagResourceRequest$ = [3, n0, _TRR,
1343
+ 0,
1344
+ [_RARN, _T],
1345
+ [0, () => TagList], 2
1346
+ ];
1347
+ var TagResourceResponse$ = [3, n0, _TRRa,
1348
+ 0,
1349
+ [],
1350
+ []
1351
+ ];
1352
+ var TeamsChannelConfiguration$ = [3, n0, _TCCe,
1353
+ 0,
1354
+ [_CI, _TIe, _TI, _CCA, _IRA, _STA, _CNh, _TN, _CN, _LL, _GPA, _UAR, _T, _S, _SR],
1355
+ [0, 0, 0, 0, 0, 64 | 0, [() => TeamsChannelName, 0], [() => TeamName, 0], 0, 0, 64 | 0, 2, () => Tags, 0, 0], 6
1356
+ ];
1357
+ var TeamsUserIdentity$ = [3, n0, _TUIe,
1358
+ 0,
1359
+ [_IRA, _CCA, _TIe, _UI, _AUI, _TCI, _TTI],
1360
+ [0, 0, 0, 0, 0, 0, 0], 3
1361
+ ];
1362
+ var UntagResourceRequest$ = [3, n0, _URR,
1363
+ 0,
1364
+ [_RARN, _TKa],
1365
+ [0, 64 | 0], 2
1366
+ ];
1367
+ var UntagResourceResponse$ = [3, n0, _URRn,
1368
+ 0,
1369
+ [],
1370
+ []
1371
+ ];
1372
+ var UpdateAccountPreferencesRequest$ = [3, n0, _UAPR,
1373
+ 0,
1374
+ [_UAR, _TDCE],
1375
+ [2, 2]
1376
+ ];
1377
+ var UpdateAccountPreferencesResult$ = [3, n0, _UAPRp,
1378
+ 0,
1379
+ [_AP],
1380
+ [() => AccountPreferences$]
1381
+ ];
1382
+ var UpdateChimeWebhookConfigurationRequest$ = [3, n0, _UCWCR,
1383
+ 0,
1384
+ [_CCA, _WD, _WU, _STA, _IRA, _LL],
1385
+ [0, [() => ChimeWebhookDescription, 0], [() => ChimeWebhookUrl, 0], 64 | 0, 0, 0], 1
1386
+ ];
1387
+ var UpdateChimeWebhookConfigurationResult$ = [3, n0, _UCWCRp,
1388
+ 0,
1389
+ [_WC],
1390
+ [[() => ChimeWebhookConfiguration$, 0]]
1391
+ ];
1392
+ var UpdateCustomActionRequest$ = [3, n0, _UCAR,
1393
+ 0,
1394
+ [_CAA, _D, _ANl, _A],
1395
+ [0, () => CustomActionDefinition$, 0, () => CustomActionAttachmentList], 2
1396
+ ];
1397
+ var UpdateCustomActionResult$ = [3, n0, _UCARp,
1398
+ 0,
1399
+ [_CAA],
1400
+ [0], 1
1401
+ ];
1402
+ var UpdateSlackChannelConfigurationRequest$ = [3, n0, _USCCR,
1403
+ 0,
1404
+ [_CCA, _SCI, _SCN, _STA, _IRA, _LL, _GPA, _UAR],
1405
+ [0, 0, [() => SlackChannelDisplayName, 0], 64 | 0, 0, 0, 64 | 0, 2], 2
1406
+ ];
1407
+ var UpdateSlackChannelConfigurationResult$ = [3, n0, _USCCRp,
1408
+ 0,
1409
+ [_CCh],
1410
+ [[() => SlackChannelConfiguration$, 0]]
1411
+ ];
1412
+ var UpdateTeamsChannelConfigurationRequest$ = [3, n0, _UTCCR,
1413
+ 0,
1414
+ [_CCA, _CI, _CNh, _STA, _IRA, _LL, _GPA, _UAR],
1415
+ [0, 0, [() => TeamsChannelName, 0], 64 | 0, 0, 0, 64 | 0, 2], 2
1416
+ ];
1417
+ var UpdateTeamsChannelConfigurationResult$ = [3, n0, _UTCCRp,
1418
+ 0,
1419
+ [_CCh],
1420
+ [[() => TeamsChannelConfiguration$, 0]]
1421
+ ];
1422
+ var AssociationList = [1, n0, _ALs,
1423
+ 0, () => AssociationListing$
1424
+ ];
1425
+ var ChimeWebhookConfigurationList = [1, n0, _CWCL,
1426
+ 0, [() => ChimeWebhookConfiguration$,
1427
+ 0]
1428
+ ];
1429
+ var ConfiguredTeamsList = [1, n0, _CTL,
1430
+ 0, () => ConfiguredTeam$
1431
+ ];
1432
+ var CustomActionAttachmentCriteriaList = [1, n0, _CAACL,
1433
+ 0, () => CustomActionAttachmentCriteria$
1434
+ ];
1435
+ var CustomActionAttachmentList = [1, n0, _CAAL,
1436
+ 0, () => CustomActionAttachment$
1437
+ ];
1438
+ var SlackChannelConfigurationList = [1, n0, _SCCL,
1439
+ 0, [() => SlackChannelConfiguration$,
1440
+ 0]
1441
+ ];
1442
+ var SlackUserIdentitiesList = [1, n0, _SUIL,
1443
+ 0, () => SlackUserIdentity$
1444
+ ];
1445
+ var SlackWorkspacesList = [1, n0, _SWL,
1446
+ 0, () => SlackWorkspace$
1447
+ ];
1448
+ var TagList = [1, n0, _TL,
1449
+ 0, () => Tag$
1450
+ ];
1451
+ var Tags = [1, n0, _T,
1452
+ 0, () => Tag$
1453
+ ];
1454
+ var TeamChannelConfigurationsList = [1, n0, _TCCL,
1455
+ 0, [() => TeamsChannelConfiguration$,
1456
+ 0]
1457
+ ];
1458
+ var TeamsUserIdentitiesList = [1, n0, _TUIL,
1459
+ 0, () => TeamsUserIdentity$
1460
+ ];
1461
+ var AssociateToConfiguration$ = [9, n0, _ATC,
1462
+ { [_h]: ["POST", "/associate-to-configuration", 201] }, () => AssociateToConfigurationRequest$, () => AssociateToConfigurationResult$
1463
+ ];
1464
+ var CreateChimeWebhookConfiguration$ = [9, n0, _CCWC,
1465
+ { [_h]: ["POST", "/create-chime-webhook-configuration", 201] }, () => CreateChimeWebhookConfigurationRequest$, () => CreateChimeWebhookConfigurationResult$
1466
+ ];
1467
+ var CreateCustomAction$ = [9, n0, _CCAr,
1468
+ { [_h]: ["POST", "/create-custom-action", 201] }, () => CreateCustomActionRequest$, () => CreateCustomActionResult$
1469
+ ];
1470
+ var CreateMicrosoftTeamsChannelConfiguration$ = [9, n0, _CMTCC,
1471
+ { [_h]: ["POST", "/create-ms-teams-channel-configuration", 201] }, () => CreateTeamsChannelConfigurationRequest$, () => CreateTeamsChannelConfigurationResult$
1472
+ ];
1473
+ var CreateSlackChannelConfiguration$ = [9, n0, _CSCC,
1474
+ { [_h]: ["POST", "/create-slack-channel-configuration", 201] }, () => CreateSlackChannelConfigurationRequest$, () => CreateSlackChannelConfigurationResult$
1475
+ ];
1476
+ var DeleteChimeWebhookConfiguration$ = [9, n0, _DCWC,
1477
+ { [_h]: ["POST", "/delete-chime-webhook-configuration", 204] }, () => DeleteChimeWebhookConfigurationRequest$, () => DeleteChimeWebhookConfigurationResult$
1478
+ ];
1479
+ var DeleteCustomAction$ = [9, n0, _DCA,
1480
+ { [_h]: ["POST", "/delete-custom-action", 204] }, () => DeleteCustomActionRequest$, () => DeleteCustomActionResult$
1481
+ ];
1482
+ var DeleteMicrosoftTeamsChannelConfiguration$ = [9, n0, _DMTCC,
1483
+ { [_h]: ["POST", "/delete-ms-teams-channel-configuration", 204] }, () => DeleteTeamsChannelConfigurationRequest$, () => DeleteTeamsChannelConfigurationResult$
1484
+ ];
1485
+ var DeleteMicrosoftTeamsConfiguredTeam$ = [9, n0, _DMTCT,
1486
+ { [_h]: ["POST", "/delete-ms-teams-configured-teams", 204] }, () => DeleteTeamsConfiguredTeamRequest$, () => DeleteTeamsConfiguredTeamResult$
1487
+ ];
1488
+ var DeleteMicrosoftTeamsUserIdentity$ = [9, n0, _DMTUI,
1489
+ { [_h]: ["POST", "/delete-ms-teams-user-identity", 204] }, () => DeleteMicrosoftTeamsUserIdentityRequest$, () => DeleteMicrosoftTeamsUserIdentityResult$
1490
+ ];
1491
+ var DeleteSlackChannelConfiguration$ = [9, n0, _DSCC,
1492
+ { [_h]: ["POST", "/delete-slack-channel-configuration", 204] }, () => DeleteSlackChannelConfigurationRequest$, () => DeleteSlackChannelConfigurationResult$
1493
+ ];
1494
+ var DeleteSlackUserIdentity$ = [9, n0, _DSUI,
1495
+ { [_h]: ["POST", "/delete-slack-user-identity", 204] }, () => DeleteSlackUserIdentityRequest$, () => DeleteSlackUserIdentityResult$
1496
+ ];
1497
+ var DeleteSlackWorkspaceAuthorization$ = [9, n0, _DSWA,
1498
+ { [_h]: ["POST", "/delete-slack-workspace-authorization", 204] }, () => DeleteSlackWorkspaceAuthorizationRequest$, () => DeleteSlackWorkspaceAuthorizationResult$
1499
+ ];
1500
+ var DescribeChimeWebhookConfigurations$ = [9, n0, _DCWCe,
1501
+ { [_h]: ["POST", "/describe-chime-webhook-configurations", 200] }, () => DescribeChimeWebhookConfigurationsRequest$, () => DescribeChimeWebhookConfigurationsResult$
1502
+ ];
1503
+ var DescribeSlackChannelConfigurations$ = [9, n0, _DSCCe,
1504
+ { [_h]: ["POST", "/describe-slack-channel-configurations", 200] }, () => DescribeSlackChannelConfigurationsRequest$, () => DescribeSlackChannelConfigurationsResult$
1505
+ ];
1506
+ var DescribeSlackUserIdentities$ = [9, n0, _DSUIe,
1507
+ { [_h]: ["POST", "/describe-slack-user-identities", 200] }, () => DescribeSlackUserIdentitiesRequest$, () => DescribeSlackUserIdentitiesResult$
1508
+ ];
1509
+ var DescribeSlackWorkspaces$ = [9, n0, _DSW,
1510
+ { [_h]: ["POST", "/describe-slack-workspaces", 200] }, () => DescribeSlackWorkspacesRequest$, () => DescribeSlackWorkspacesResult$
1511
+ ];
1512
+ var DisassociateFromConfiguration$ = [9, n0, _DFC,
1513
+ { [_h]: ["POST", "/disassociate-from-configuration", 204] }, () => DisassociateFromConfigurationRequest$, () => DisassociateFromConfigurationResult$
1514
+ ];
1515
+ var GetAccountPreferences$ = [9, n0, _GAP,
1516
+ { [_h]: ["POST", "/get-account-preferences", 200] }, () => GetAccountPreferencesRequest$, () => GetAccountPreferencesResult$
1517
+ ];
1518
+ var GetCustomAction$ = [9, n0, _GCA,
1519
+ { [_h]: ["POST", "/get-custom-action", 200] }, () => GetCustomActionRequest$, () => GetCustomActionResult$
1520
+ ];
1521
+ var GetMicrosoftTeamsChannelConfiguration$ = [9, n0, _GMTCC,
1522
+ { [_h]: ["POST", "/get-ms-teams-channel-configuration", 200] }, () => GetTeamsChannelConfigurationRequest$, () => GetTeamsChannelConfigurationResult$
1523
+ ];
1524
+ var ListAssociations$ = [9, n0, _LA,
1525
+ { [_h]: ["POST", "/list-associations", 200] }, () => ListAssociationsRequest$, () => ListAssociationsResult$
1526
+ ];
1527
+ var ListCustomActions$ = [9, n0, _LCA,
1528
+ { [_h]: ["POST", "/list-custom-actions", 200] }, () => ListCustomActionsRequest$, () => ListCustomActionsResult$
1529
+ ];
1530
+ var ListMicrosoftTeamsChannelConfigurations$ = [9, n0, _LMTCC,
1531
+ { [_h]: ["POST", "/list-ms-teams-channel-configurations", 200] }, () => ListTeamsChannelConfigurationsRequest$, () => ListTeamsChannelConfigurationsResult$
1532
+ ];
1533
+ var ListMicrosoftTeamsConfiguredTeams$ = [9, n0, _LMTCT,
1534
+ { [_h]: ["POST", "/list-ms-teams-configured-teams", 200] }, () => ListMicrosoftTeamsConfiguredTeamsRequest$, () => ListMicrosoftTeamsConfiguredTeamsResult$
1535
+ ];
1536
+ var ListMicrosoftTeamsUserIdentities$ = [9, n0, _LMTUI,
1537
+ { [_h]: ["POST", "/list-ms-teams-user-identities", 200] }, () => ListMicrosoftTeamsUserIdentitiesRequest$, () => ListMicrosoftTeamsUserIdentitiesResult$
1538
+ ];
1539
+ var ListTagsForResource$ = [9, n0, _LTFR,
1540
+ { [_h]: ["POST", "/list-tags-for-resource", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1541
+ ];
1542
+ var TagResource$ = [9, n0, _TR,
1543
+ { [_h]: ["POST", "/tag-resource", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1544
+ ];
1545
+ var UntagResource$ = [9, n0, _UR,
1546
+ { [_h]: ["POST", "/untag-resource", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1547
+ ];
1548
+ var UpdateAccountPreferences$ = [9, n0, _UAP,
1549
+ { [_h]: ["POST", "/update-account-preferences", 200] }, () => UpdateAccountPreferencesRequest$, () => UpdateAccountPreferencesResult$
1550
+ ];
1551
+ var UpdateChimeWebhookConfiguration$ = [9, n0, _UCWC,
1552
+ { [_h]: ["POST", "/update-chime-webhook-configuration", 200] }, () => UpdateChimeWebhookConfigurationRequest$, () => UpdateChimeWebhookConfigurationResult$
1553
+ ];
1554
+ var UpdateCustomAction$ = [9, n0, _UCA,
1555
+ { [_h]: ["POST", "/update-custom-action", 200] }, () => UpdateCustomActionRequest$, () => UpdateCustomActionResult$
1556
+ ];
1557
+ var UpdateMicrosoftTeamsChannelConfiguration$ = [9, n0, _UMTCC,
1558
+ { [_h]: ["POST", "/update-ms-teams-channel-configuration", 200] }, () => UpdateTeamsChannelConfigurationRequest$, () => UpdateTeamsChannelConfigurationResult$
1559
+ ];
1560
+ var UpdateSlackChannelConfiguration$ = [9, n0, _USCC,
1561
+ { [_h]: ["POST", "/update-slack-channel-configuration", 200] }, () => UpdateSlackChannelConfigurationRequest$, () => UpdateSlackChannelConfigurationResult$
1562
+ ];
1563
+
1564
+ const getRuntimeConfig$1 = (config) => {
1565
+ return {
1566
+ apiVersion: "2017-10-11",
1567
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1568
+ base64Encoder: config?.base64Encoder ?? toBase64,
1569
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1570
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1571
+ extensions: config?.extensions ?? [],
1572
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultChatbotHttpAuthSchemeProvider,
1573
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1574
+ {
1575
+ schemeId: "aws.auth#sigv4",
1576
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1577
+ signer: new AwsSdkSigV4Signer(),
1578
+ },
1579
+ ],
1580
+ logger: config?.logger ?? new NoOpLogger(),
1581
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1582
+ protocolSettings: config?.protocolSettings ?? {
1583
+ defaultNamespace: "com.amazonaws.chatbot",
1584
+ errorTypeRegistries,
1585
+ xmlNamespace: "http://wheatley.amazonaws.com/orchestration/2017-10-11/",
1586
+ version: "2017-10-11",
1587
+ serviceTarget: "WheatleyOrchestration_20171011",
1588
+ },
1589
+ serviceId: config?.serviceId ?? "chatbot",
1590
+ sha256: config?.sha256 ?? Sha256,
1591
+ urlParser: config?.urlParser ?? parseUrl,
1592
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1593
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1594
+ };
1595
+ };
1596
+
1597
+ const getRuntimeConfig = (config) => {
1598
+ emitWarningIfUnsupportedVersion(process.version);
1599
+ const defaultsMode = resolveDefaultsModeConfig(config);
1600
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1601
+ const clientSharedValues = getRuntimeConfig$1(config);
1602
+ emitWarningIfUnsupportedVersion$1(process.version);
1603
+ const loaderConfig = {
1604
+ profile: config?.profile,
1605
+ logger: clientSharedValues.logger,
1606
+ };
1607
+ return {
1608
+ ...clientSharedValues,
1609
+ ...config,
1610
+ runtime: "node",
1611
+ defaultsMode,
1612
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1613
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1614
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1615
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1616
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1617
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1618
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1619
+ retryMode: config?.retryMode ??
1620
+ loadConfig({
1621
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1622
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1623
+ }, config),
1624
+ streamCollector: config?.streamCollector ?? streamCollector,
1625
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1626
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1627
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1628
+ };
1629
+ };
1630
+
34
1631
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1632
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1633
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -593,43 +2190,226 @@ const CustomActionAttachmentCriteriaOperator = {
593
2190
  HAS_VALUE: "HAS_VALUE",
594
2191
  };
595
2192
 
2193
+ exports.AccountPreferences$ = AccountPreferences$;
2194
+ exports.AssociateToConfiguration$ = AssociateToConfiguration$;
596
2195
  exports.AssociateToConfigurationCommand = AssociateToConfigurationCommand;
2196
+ exports.AssociateToConfigurationRequest$ = AssociateToConfigurationRequest$;
2197
+ exports.AssociateToConfigurationResult$ = AssociateToConfigurationResult$;
2198
+ exports.AssociationListing$ = AssociationListing$;
597
2199
  exports.Chatbot = Chatbot;
598
2200
  exports.ChatbotClient = ChatbotClient;
2201
+ exports.ChatbotServiceException = ChatbotServiceException;
2202
+ exports.ChatbotServiceException$ = ChatbotServiceException$;
2203
+ exports.ChimeWebhookConfiguration$ = ChimeWebhookConfiguration$;
2204
+ exports.ConfiguredTeam$ = ConfiguredTeam$;
2205
+ exports.ConflictException = ConflictException;
2206
+ exports.ConflictException$ = ConflictException$;
2207
+ exports.CreateChimeWebhookConfiguration$ = CreateChimeWebhookConfiguration$;
599
2208
  exports.CreateChimeWebhookConfigurationCommand = CreateChimeWebhookConfigurationCommand;
2209
+ exports.CreateChimeWebhookConfigurationException = CreateChimeWebhookConfigurationException;
2210
+ exports.CreateChimeWebhookConfigurationException$ = CreateChimeWebhookConfigurationException$;
2211
+ exports.CreateChimeWebhookConfigurationRequest$ = CreateChimeWebhookConfigurationRequest$;
2212
+ exports.CreateChimeWebhookConfigurationResult$ = CreateChimeWebhookConfigurationResult$;
2213
+ exports.CreateCustomAction$ = CreateCustomAction$;
600
2214
  exports.CreateCustomActionCommand = CreateCustomActionCommand;
2215
+ exports.CreateCustomActionRequest$ = CreateCustomActionRequest$;
2216
+ exports.CreateCustomActionResult$ = CreateCustomActionResult$;
2217
+ exports.CreateMicrosoftTeamsChannelConfiguration$ = CreateMicrosoftTeamsChannelConfiguration$;
601
2218
  exports.CreateMicrosoftTeamsChannelConfigurationCommand = CreateMicrosoftTeamsChannelConfigurationCommand;
2219
+ exports.CreateSlackChannelConfiguration$ = CreateSlackChannelConfiguration$;
602
2220
  exports.CreateSlackChannelConfigurationCommand = CreateSlackChannelConfigurationCommand;
2221
+ exports.CreateSlackChannelConfigurationException = CreateSlackChannelConfigurationException;
2222
+ exports.CreateSlackChannelConfigurationException$ = CreateSlackChannelConfigurationException$;
2223
+ exports.CreateSlackChannelConfigurationRequest$ = CreateSlackChannelConfigurationRequest$;
2224
+ exports.CreateSlackChannelConfigurationResult$ = CreateSlackChannelConfigurationResult$;
2225
+ exports.CreateTeamsChannelConfigurationException = CreateTeamsChannelConfigurationException;
2226
+ exports.CreateTeamsChannelConfigurationException$ = CreateTeamsChannelConfigurationException$;
2227
+ exports.CreateTeamsChannelConfigurationRequest$ = CreateTeamsChannelConfigurationRequest$;
2228
+ exports.CreateTeamsChannelConfigurationResult$ = CreateTeamsChannelConfigurationResult$;
2229
+ exports.CustomAction$ = CustomAction$;
2230
+ exports.CustomActionAttachment$ = CustomActionAttachment$;
2231
+ exports.CustomActionAttachmentCriteria$ = CustomActionAttachmentCriteria$;
603
2232
  exports.CustomActionAttachmentCriteriaOperator = CustomActionAttachmentCriteriaOperator;
2233
+ exports.CustomActionDefinition$ = CustomActionDefinition$;
2234
+ exports.DeleteChimeWebhookConfiguration$ = DeleteChimeWebhookConfiguration$;
604
2235
  exports.DeleteChimeWebhookConfigurationCommand = DeleteChimeWebhookConfigurationCommand;
2236
+ exports.DeleteChimeWebhookConfigurationException = DeleteChimeWebhookConfigurationException;
2237
+ exports.DeleteChimeWebhookConfigurationException$ = DeleteChimeWebhookConfigurationException$;
2238
+ exports.DeleteChimeWebhookConfigurationRequest$ = DeleteChimeWebhookConfigurationRequest$;
2239
+ exports.DeleteChimeWebhookConfigurationResult$ = DeleteChimeWebhookConfigurationResult$;
2240
+ exports.DeleteCustomAction$ = DeleteCustomAction$;
605
2241
  exports.DeleteCustomActionCommand = DeleteCustomActionCommand;
2242
+ exports.DeleteCustomActionRequest$ = DeleteCustomActionRequest$;
2243
+ exports.DeleteCustomActionResult$ = DeleteCustomActionResult$;
2244
+ exports.DeleteMicrosoftTeamsChannelConfiguration$ = DeleteMicrosoftTeamsChannelConfiguration$;
606
2245
  exports.DeleteMicrosoftTeamsChannelConfigurationCommand = DeleteMicrosoftTeamsChannelConfigurationCommand;
2246
+ exports.DeleteMicrosoftTeamsConfiguredTeam$ = DeleteMicrosoftTeamsConfiguredTeam$;
607
2247
  exports.DeleteMicrosoftTeamsConfiguredTeamCommand = DeleteMicrosoftTeamsConfiguredTeamCommand;
2248
+ exports.DeleteMicrosoftTeamsUserIdentity$ = DeleteMicrosoftTeamsUserIdentity$;
608
2249
  exports.DeleteMicrosoftTeamsUserIdentityCommand = DeleteMicrosoftTeamsUserIdentityCommand;
2250
+ exports.DeleteMicrosoftTeamsUserIdentityException = DeleteMicrosoftTeamsUserIdentityException;
2251
+ exports.DeleteMicrosoftTeamsUserIdentityException$ = DeleteMicrosoftTeamsUserIdentityException$;
2252
+ exports.DeleteMicrosoftTeamsUserIdentityRequest$ = DeleteMicrosoftTeamsUserIdentityRequest$;
2253
+ exports.DeleteMicrosoftTeamsUserIdentityResult$ = DeleteMicrosoftTeamsUserIdentityResult$;
2254
+ exports.DeleteSlackChannelConfiguration$ = DeleteSlackChannelConfiguration$;
609
2255
  exports.DeleteSlackChannelConfigurationCommand = DeleteSlackChannelConfigurationCommand;
2256
+ exports.DeleteSlackChannelConfigurationException = DeleteSlackChannelConfigurationException;
2257
+ exports.DeleteSlackChannelConfigurationException$ = DeleteSlackChannelConfigurationException$;
2258
+ exports.DeleteSlackChannelConfigurationRequest$ = DeleteSlackChannelConfigurationRequest$;
2259
+ exports.DeleteSlackChannelConfigurationResult$ = DeleteSlackChannelConfigurationResult$;
2260
+ exports.DeleteSlackUserIdentity$ = DeleteSlackUserIdentity$;
610
2261
  exports.DeleteSlackUserIdentityCommand = DeleteSlackUserIdentityCommand;
2262
+ exports.DeleteSlackUserIdentityException = DeleteSlackUserIdentityException;
2263
+ exports.DeleteSlackUserIdentityException$ = DeleteSlackUserIdentityException$;
2264
+ exports.DeleteSlackUserIdentityRequest$ = DeleteSlackUserIdentityRequest$;
2265
+ exports.DeleteSlackUserIdentityResult$ = DeleteSlackUserIdentityResult$;
2266
+ exports.DeleteSlackWorkspaceAuthorization$ = DeleteSlackWorkspaceAuthorization$;
611
2267
  exports.DeleteSlackWorkspaceAuthorizationCommand = DeleteSlackWorkspaceAuthorizationCommand;
2268
+ exports.DeleteSlackWorkspaceAuthorizationFault = DeleteSlackWorkspaceAuthorizationFault;
2269
+ exports.DeleteSlackWorkspaceAuthorizationFault$ = DeleteSlackWorkspaceAuthorizationFault$;
2270
+ exports.DeleteSlackWorkspaceAuthorizationRequest$ = DeleteSlackWorkspaceAuthorizationRequest$;
2271
+ exports.DeleteSlackWorkspaceAuthorizationResult$ = DeleteSlackWorkspaceAuthorizationResult$;
2272
+ exports.DeleteTeamsChannelConfigurationException = DeleteTeamsChannelConfigurationException;
2273
+ exports.DeleteTeamsChannelConfigurationException$ = DeleteTeamsChannelConfigurationException$;
2274
+ exports.DeleteTeamsChannelConfigurationRequest$ = DeleteTeamsChannelConfigurationRequest$;
2275
+ exports.DeleteTeamsChannelConfigurationResult$ = DeleteTeamsChannelConfigurationResult$;
2276
+ exports.DeleteTeamsConfiguredTeamException = DeleteTeamsConfiguredTeamException;
2277
+ exports.DeleteTeamsConfiguredTeamException$ = DeleteTeamsConfiguredTeamException$;
2278
+ exports.DeleteTeamsConfiguredTeamRequest$ = DeleteTeamsConfiguredTeamRequest$;
2279
+ exports.DeleteTeamsConfiguredTeamResult$ = DeleteTeamsConfiguredTeamResult$;
2280
+ exports.DescribeChimeWebhookConfigurations$ = DescribeChimeWebhookConfigurations$;
612
2281
  exports.DescribeChimeWebhookConfigurationsCommand = DescribeChimeWebhookConfigurationsCommand;
2282
+ exports.DescribeChimeWebhookConfigurationsException = DescribeChimeWebhookConfigurationsException;
2283
+ exports.DescribeChimeWebhookConfigurationsException$ = DescribeChimeWebhookConfigurationsException$;
2284
+ exports.DescribeChimeWebhookConfigurationsRequest$ = DescribeChimeWebhookConfigurationsRequest$;
2285
+ exports.DescribeChimeWebhookConfigurationsResult$ = DescribeChimeWebhookConfigurationsResult$;
2286
+ exports.DescribeSlackChannelConfigurations$ = DescribeSlackChannelConfigurations$;
613
2287
  exports.DescribeSlackChannelConfigurationsCommand = DescribeSlackChannelConfigurationsCommand;
2288
+ exports.DescribeSlackChannelConfigurationsException = DescribeSlackChannelConfigurationsException;
2289
+ exports.DescribeSlackChannelConfigurationsException$ = DescribeSlackChannelConfigurationsException$;
2290
+ exports.DescribeSlackChannelConfigurationsRequest$ = DescribeSlackChannelConfigurationsRequest$;
2291
+ exports.DescribeSlackChannelConfigurationsResult$ = DescribeSlackChannelConfigurationsResult$;
2292
+ exports.DescribeSlackUserIdentities$ = DescribeSlackUserIdentities$;
614
2293
  exports.DescribeSlackUserIdentitiesCommand = DescribeSlackUserIdentitiesCommand;
2294
+ exports.DescribeSlackUserIdentitiesException = DescribeSlackUserIdentitiesException;
2295
+ exports.DescribeSlackUserIdentitiesException$ = DescribeSlackUserIdentitiesException$;
2296
+ exports.DescribeSlackUserIdentitiesRequest$ = DescribeSlackUserIdentitiesRequest$;
2297
+ exports.DescribeSlackUserIdentitiesResult$ = DescribeSlackUserIdentitiesResult$;
2298
+ exports.DescribeSlackWorkspaces$ = DescribeSlackWorkspaces$;
615
2299
  exports.DescribeSlackWorkspacesCommand = DescribeSlackWorkspacesCommand;
2300
+ exports.DescribeSlackWorkspacesException = DescribeSlackWorkspacesException;
2301
+ exports.DescribeSlackWorkspacesException$ = DescribeSlackWorkspacesException$;
2302
+ exports.DescribeSlackWorkspacesRequest$ = DescribeSlackWorkspacesRequest$;
2303
+ exports.DescribeSlackWorkspacesResult$ = DescribeSlackWorkspacesResult$;
2304
+ exports.DisassociateFromConfiguration$ = DisassociateFromConfiguration$;
616
2305
  exports.DisassociateFromConfigurationCommand = DisassociateFromConfigurationCommand;
2306
+ exports.DisassociateFromConfigurationRequest$ = DisassociateFromConfigurationRequest$;
2307
+ exports.DisassociateFromConfigurationResult$ = DisassociateFromConfigurationResult$;
2308
+ exports.GetAccountPreferences$ = GetAccountPreferences$;
617
2309
  exports.GetAccountPreferencesCommand = GetAccountPreferencesCommand;
2310
+ exports.GetAccountPreferencesException = GetAccountPreferencesException;
2311
+ exports.GetAccountPreferencesException$ = GetAccountPreferencesException$;
2312
+ exports.GetAccountPreferencesRequest$ = GetAccountPreferencesRequest$;
2313
+ exports.GetAccountPreferencesResult$ = GetAccountPreferencesResult$;
2314
+ exports.GetCustomAction$ = GetCustomAction$;
618
2315
  exports.GetCustomActionCommand = GetCustomActionCommand;
2316
+ exports.GetCustomActionRequest$ = GetCustomActionRequest$;
2317
+ exports.GetCustomActionResult$ = GetCustomActionResult$;
2318
+ exports.GetMicrosoftTeamsChannelConfiguration$ = GetMicrosoftTeamsChannelConfiguration$;
619
2319
  exports.GetMicrosoftTeamsChannelConfigurationCommand = GetMicrosoftTeamsChannelConfigurationCommand;
2320
+ exports.GetTeamsChannelConfigurationException = GetTeamsChannelConfigurationException;
2321
+ exports.GetTeamsChannelConfigurationException$ = GetTeamsChannelConfigurationException$;
2322
+ exports.GetTeamsChannelConfigurationRequest$ = GetTeamsChannelConfigurationRequest$;
2323
+ exports.GetTeamsChannelConfigurationResult$ = GetTeamsChannelConfigurationResult$;
2324
+ exports.InternalServiceError = InternalServiceError;
2325
+ exports.InternalServiceError$ = InternalServiceError$;
2326
+ exports.InvalidParameterException = InvalidParameterException;
2327
+ exports.InvalidParameterException$ = InvalidParameterException$;
2328
+ exports.InvalidRequestException = InvalidRequestException;
2329
+ exports.InvalidRequestException$ = InvalidRequestException$;
2330
+ exports.LimitExceededException = LimitExceededException;
2331
+ exports.LimitExceededException$ = LimitExceededException$;
2332
+ exports.ListAssociations$ = ListAssociations$;
620
2333
  exports.ListAssociationsCommand = ListAssociationsCommand;
2334
+ exports.ListAssociationsRequest$ = ListAssociationsRequest$;
2335
+ exports.ListAssociationsResult$ = ListAssociationsResult$;
2336
+ exports.ListCustomActions$ = ListCustomActions$;
621
2337
  exports.ListCustomActionsCommand = ListCustomActionsCommand;
2338
+ exports.ListCustomActionsRequest$ = ListCustomActionsRequest$;
2339
+ exports.ListCustomActionsResult$ = ListCustomActionsResult$;
2340
+ exports.ListMicrosoftTeamsChannelConfigurations$ = ListMicrosoftTeamsChannelConfigurations$;
622
2341
  exports.ListMicrosoftTeamsChannelConfigurationsCommand = ListMicrosoftTeamsChannelConfigurationsCommand;
2342
+ exports.ListMicrosoftTeamsConfiguredTeams$ = ListMicrosoftTeamsConfiguredTeams$;
623
2343
  exports.ListMicrosoftTeamsConfiguredTeamsCommand = ListMicrosoftTeamsConfiguredTeamsCommand;
2344
+ exports.ListMicrosoftTeamsConfiguredTeamsException = ListMicrosoftTeamsConfiguredTeamsException;
2345
+ exports.ListMicrosoftTeamsConfiguredTeamsException$ = ListMicrosoftTeamsConfiguredTeamsException$;
2346
+ exports.ListMicrosoftTeamsConfiguredTeamsRequest$ = ListMicrosoftTeamsConfiguredTeamsRequest$;
2347
+ exports.ListMicrosoftTeamsConfiguredTeamsResult$ = ListMicrosoftTeamsConfiguredTeamsResult$;
2348
+ exports.ListMicrosoftTeamsUserIdentities$ = ListMicrosoftTeamsUserIdentities$;
624
2349
  exports.ListMicrosoftTeamsUserIdentitiesCommand = ListMicrosoftTeamsUserIdentitiesCommand;
2350
+ exports.ListMicrosoftTeamsUserIdentitiesException = ListMicrosoftTeamsUserIdentitiesException;
2351
+ exports.ListMicrosoftTeamsUserIdentitiesException$ = ListMicrosoftTeamsUserIdentitiesException$;
2352
+ exports.ListMicrosoftTeamsUserIdentitiesRequest$ = ListMicrosoftTeamsUserIdentitiesRequest$;
2353
+ exports.ListMicrosoftTeamsUserIdentitiesResult$ = ListMicrosoftTeamsUserIdentitiesResult$;
2354
+ exports.ListTagsForResource$ = ListTagsForResource$;
625
2355
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2356
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2357
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2358
+ exports.ListTeamsChannelConfigurationsException = ListTeamsChannelConfigurationsException;
2359
+ exports.ListTeamsChannelConfigurationsException$ = ListTeamsChannelConfigurationsException$;
2360
+ exports.ListTeamsChannelConfigurationsRequest$ = ListTeamsChannelConfigurationsRequest$;
2361
+ exports.ListTeamsChannelConfigurationsResult$ = ListTeamsChannelConfigurationsResult$;
2362
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2363
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2364
+ exports.ServiceUnavailableException = ServiceUnavailableException;
2365
+ exports.ServiceUnavailableException$ = ServiceUnavailableException$;
2366
+ exports.SlackChannelConfiguration$ = SlackChannelConfiguration$;
2367
+ exports.SlackUserIdentity$ = SlackUserIdentity$;
2368
+ exports.SlackWorkspace$ = SlackWorkspace$;
2369
+ exports.Tag$ = Tag$;
2370
+ exports.TagResource$ = TagResource$;
626
2371
  exports.TagResourceCommand = TagResourceCommand;
2372
+ exports.TagResourceRequest$ = TagResourceRequest$;
2373
+ exports.TagResourceResponse$ = TagResourceResponse$;
2374
+ exports.TeamsChannelConfiguration$ = TeamsChannelConfiguration$;
2375
+ exports.TeamsUserIdentity$ = TeamsUserIdentity$;
2376
+ exports.TooManyTagsException = TooManyTagsException;
2377
+ exports.TooManyTagsException$ = TooManyTagsException$;
2378
+ exports.UnauthorizedException = UnauthorizedException;
2379
+ exports.UnauthorizedException$ = UnauthorizedException$;
2380
+ exports.UntagResource$ = UntagResource$;
627
2381
  exports.UntagResourceCommand = UntagResourceCommand;
2382
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2383
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2384
+ exports.UpdateAccountPreferences$ = UpdateAccountPreferences$;
628
2385
  exports.UpdateAccountPreferencesCommand = UpdateAccountPreferencesCommand;
2386
+ exports.UpdateAccountPreferencesException = UpdateAccountPreferencesException;
2387
+ exports.UpdateAccountPreferencesException$ = UpdateAccountPreferencesException$;
2388
+ exports.UpdateAccountPreferencesRequest$ = UpdateAccountPreferencesRequest$;
2389
+ exports.UpdateAccountPreferencesResult$ = UpdateAccountPreferencesResult$;
2390
+ exports.UpdateChimeWebhookConfiguration$ = UpdateChimeWebhookConfiguration$;
629
2391
  exports.UpdateChimeWebhookConfigurationCommand = UpdateChimeWebhookConfigurationCommand;
2392
+ exports.UpdateChimeWebhookConfigurationException = UpdateChimeWebhookConfigurationException;
2393
+ exports.UpdateChimeWebhookConfigurationException$ = UpdateChimeWebhookConfigurationException$;
2394
+ exports.UpdateChimeWebhookConfigurationRequest$ = UpdateChimeWebhookConfigurationRequest$;
2395
+ exports.UpdateChimeWebhookConfigurationResult$ = UpdateChimeWebhookConfigurationResult$;
2396
+ exports.UpdateCustomAction$ = UpdateCustomAction$;
630
2397
  exports.UpdateCustomActionCommand = UpdateCustomActionCommand;
2398
+ exports.UpdateCustomActionRequest$ = UpdateCustomActionRequest$;
2399
+ exports.UpdateCustomActionResult$ = UpdateCustomActionResult$;
2400
+ exports.UpdateMicrosoftTeamsChannelConfiguration$ = UpdateMicrosoftTeamsChannelConfiguration$;
631
2401
  exports.UpdateMicrosoftTeamsChannelConfigurationCommand = UpdateMicrosoftTeamsChannelConfigurationCommand;
2402
+ exports.UpdateSlackChannelConfiguration$ = UpdateSlackChannelConfiguration$;
632
2403
  exports.UpdateSlackChannelConfigurationCommand = UpdateSlackChannelConfigurationCommand;
2404
+ exports.UpdateSlackChannelConfigurationException = UpdateSlackChannelConfigurationException;
2405
+ exports.UpdateSlackChannelConfigurationException$ = UpdateSlackChannelConfigurationException$;
2406
+ exports.UpdateSlackChannelConfigurationRequest$ = UpdateSlackChannelConfigurationRequest$;
2407
+ exports.UpdateSlackChannelConfigurationResult$ = UpdateSlackChannelConfigurationResult$;
2408
+ exports.UpdateTeamsChannelConfigurationException = UpdateTeamsChannelConfigurationException;
2409
+ exports.UpdateTeamsChannelConfigurationException$ = UpdateTeamsChannelConfigurationException$;
2410
+ exports.UpdateTeamsChannelConfigurationRequest$ = UpdateTeamsChannelConfigurationRequest$;
2411
+ exports.UpdateTeamsChannelConfigurationResult$ = UpdateTeamsChannelConfigurationResult$;
2412
+ exports.errorTypeRegistries = errorTypeRegistries;
633
2413
  exports.paginateDescribeChimeWebhookConfigurations = paginateDescribeChimeWebhookConfigurations;
634
2414
  exports.paginateDescribeSlackChannelConfigurations = paginateDescribeSlackChannelConfigurations;
635
2415
  exports.paginateDescribeSlackUserIdentities = paginateDescribeSlackUserIdentities;