@aws-sdk/client-chatbot 3.987.0 → 3.989.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 +53 -1641
- package/dist-cjs/models/ChatbotServiceException.js +12 -0
- package/dist-cjs/models/errors.js +470 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1001 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +202 -196
- package/dist-types/schemas/schemas_0.d.ts +40 -33
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +35 -33
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var ChatbotServiceException = require('./models/ChatbotServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1431 +113,6 @@ class ChatbotClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class ChatbotServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, ChatbotServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class InternalServiceError extends ChatbotServiceException {
|
|
121
|
-
name = "InternalServiceError";
|
|
122
|
-
$fault = "server";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "InternalServiceError",
|
|
127
|
-
$fault: "server",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, InternalServiceError.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class InvalidRequestException extends ChatbotServiceException {
|
|
135
|
-
name = "InvalidRequestException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
constructor(opts) {
|
|
138
|
-
super({
|
|
139
|
-
name: "InvalidRequestException",
|
|
140
|
-
$fault: "client",
|
|
141
|
-
...opts,
|
|
142
|
-
});
|
|
143
|
-
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
class UnauthorizedException extends ChatbotServiceException {
|
|
147
|
-
name = "UnauthorizedException";
|
|
148
|
-
$fault = "client";
|
|
149
|
-
constructor(opts) {
|
|
150
|
-
super({
|
|
151
|
-
name: "UnauthorizedException",
|
|
152
|
-
$fault: "client",
|
|
153
|
-
...opts,
|
|
154
|
-
});
|
|
155
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
class ConflictException extends ChatbotServiceException {
|
|
159
|
-
name = "ConflictException";
|
|
160
|
-
$fault = "client";
|
|
161
|
-
constructor(opts) {
|
|
162
|
-
super({
|
|
163
|
-
name: "ConflictException",
|
|
164
|
-
$fault: "client",
|
|
165
|
-
...opts,
|
|
166
|
-
});
|
|
167
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
class CreateChimeWebhookConfigurationException extends ChatbotServiceException {
|
|
171
|
-
name = "CreateChimeWebhookConfigurationException";
|
|
172
|
-
$fault = "server";
|
|
173
|
-
Message;
|
|
174
|
-
constructor(opts) {
|
|
175
|
-
super({
|
|
176
|
-
name: "CreateChimeWebhookConfigurationException",
|
|
177
|
-
$fault: "server",
|
|
178
|
-
...opts,
|
|
179
|
-
});
|
|
180
|
-
Object.setPrototypeOf(this, CreateChimeWebhookConfigurationException.prototype);
|
|
181
|
-
this.Message = opts.Message;
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
class InvalidParameterException extends ChatbotServiceException {
|
|
185
|
-
name = "InvalidParameterException";
|
|
186
|
-
$fault = "client";
|
|
187
|
-
constructor(opts) {
|
|
188
|
-
super({
|
|
189
|
-
name: "InvalidParameterException",
|
|
190
|
-
$fault: "client",
|
|
191
|
-
...opts,
|
|
192
|
-
});
|
|
193
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
class LimitExceededException extends ChatbotServiceException {
|
|
197
|
-
name = "LimitExceededException";
|
|
198
|
-
$fault = "client";
|
|
199
|
-
constructor(opts) {
|
|
200
|
-
super({
|
|
201
|
-
name: "LimitExceededException",
|
|
202
|
-
$fault: "client",
|
|
203
|
-
...opts,
|
|
204
|
-
});
|
|
205
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
class CreateTeamsChannelConfigurationException extends ChatbotServiceException {
|
|
209
|
-
name = "CreateTeamsChannelConfigurationException";
|
|
210
|
-
$fault = "server";
|
|
211
|
-
Message;
|
|
212
|
-
constructor(opts) {
|
|
213
|
-
super({
|
|
214
|
-
name: "CreateTeamsChannelConfigurationException",
|
|
215
|
-
$fault: "server",
|
|
216
|
-
...opts,
|
|
217
|
-
});
|
|
218
|
-
Object.setPrototypeOf(this, CreateTeamsChannelConfigurationException.prototype);
|
|
219
|
-
this.Message = opts.Message;
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
class CreateSlackChannelConfigurationException extends ChatbotServiceException {
|
|
223
|
-
name = "CreateSlackChannelConfigurationException";
|
|
224
|
-
$fault = "server";
|
|
225
|
-
Message;
|
|
226
|
-
constructor(opts) {
|
|
227
|
-
super({
|
|
228
|
-
name: "CreateSlackChannelConfigurationException",
|
|
229
|
-
$fault: "server",
|
|
230
|
-
...opts,
|
|
231
|
-
});
|
|
232
|
-
Object.setPrototypeOf(this, CreateSlackChannelConfigurationException.prototype);
|
|
233
|
-
this.Message = opts.Message;
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
class ResourceNotFoundException extends ChatbotServiceException {
|
|
237
|
-
name = "ResourceNotFoundException";
|
|
238
|
-
$fault = "client";
|
|
239
|
-
Message;
|
|
240
|
-
constructor(opts) {
|
|
241
|
-
super({
|
|
242
|
-
name: "ResourceNotFoundException",
|
|
243
|
-
$fault: "client",
|
|
244
|
-
...opts,
|
|
245
|
-
});
|
|
246
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
247
|
-
this.Message = opts.Message;
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
class DeleteChimeWebhookConfigurationException extends ChatbotServiceException {
|
|
251
|
-
name = "DeleteChimeWebhookConfigurationException";
|
|
252
|
-
$fault = "server";
|
|
253
|
-
Message;
|
|
254
|
-
constructor(opts) {
|
|
255
|
-
super({
|
|
256
|
-
name: "DeleteChimeWebhookConfigurationException",
|
|
257
|
-
$fault: "server",
|
|
258
|
-
...opts,
|
|
259
|
-
});
|
|
260
|
-
Object.setPrototypeOf(this, DeleteChimeWebhookConfigurationException.prototype);
|
|
261
|
-
this.Message = opts.Message;
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
class DeleteTeamsChannelConfigurationException extends ChatbotServiceException {
|
|
265
|
-
name = "DeleteTeamsChannelConfigurationException";
|
|
266
|
-
$fault = "server";
|
|
267
|
-
Message;
|
|
268
|
-
constructor(opts) {
|
|
269
|
-
super({
|
|
270
|
-
name: "DeleteTeamsChannelConfigurationException",
|
|
271
|
-
$fault: "server",
|
|
272
|
-
...opts,
|
|
273
|
-
});
|
|
274
|
-
Object.setPrototypeOf(this, DeleteTeamsChannelConfigurationException.prototype);
|
|
275
|
-
this.Message = opts.Message;
|
|
276
|
-
}
|
|
277
|
-
}
|
|
278
|
-
class DeleteTeamsConfiguredTeamException extends ChatbotServiceException {
|
|
279
|
-
name = "DeleteTeamsConfiguredTeamException";
|
|
280
|
-
$fault = "server";
|
|
281
|
-
Message;
|
|
282
|
-
constructor(opts) {
|
|
283
|
-
super({
|
|
284
|
-
name: "DeleteTeamsConfiguredTeamException",
|
|
285
|
-
$fault: "server",
|
|
286
|
-
...opts,
|
|
287
|
-
});
|
|
288
|
-
Object.setPrototypeOf(this, DeleteTeamsConfiguredTeamException.prototype);
|
|
289
|
-
this.Message = opts.Message;
|
|
290
|
-
}
|
|
291
|
-
}
|
|
292
|
-
class DeleteMicrosoftTeamsUserIdentityException extends ChatbotServiceException {
|
|
293
|
-
name = "DeleteMicrosoftTeamsUserIdentityException";
|
|
294
|
-
$fault = "server";
|
|
295
|
-
Message;
|
|
296
|
-
constructor(opts) {
|
|
297
|
-
super({
|
|
298
|
-
name: "DeleteMicrosoftTeamsUserIdentityException",
|
|
299
|
-
$fault: "server",
|
|
300
|
-
...opts,
|
|
301
|
-
});
|
|
302
|
-
Object.setPrototypeOf(this, DeleteMicrosoftTeamsUserIdentityException.prototype);
|
|
303
|
-
this.Message = opts.Message;
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
class DeleteSlackChannelConfigurationException extends ChatbotServiceException {
|
|
307
|
-
name = "DeleteSlackChannelConfigurationException";
|
|
308
|
-
$fault = "server";
|
|
309
|
-
Message;
|
|
310
|
-
constructor(opts) {
|
|
311
|
-
super({
|
|
312
|
-
name: "DeleteSlackChannelConfigurationException",
|
|
313
|
-
$fault: "server",
|
|
314
|
-
...opts,
|
|
315
|
-
});
|
|
316
|
-
Object.setPrototypeOf(this, DeleteSlackChannelConfigurationException.prototype);
|
|
317
|
-
this.Message = opts.Message;
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
class DeleteSlackUserIdentityException extends ChatbotServiceException {
|
|
321
|
-
name = "DeleteSlackUserIdentityException";
|
|
322
|
-
$fault = "server";
|
|
323
|
-
Message;
|
|
324
|
-
constructor(opts) {
|
|
325
|
-
super({
|
|
326
|
-
name: "DeleteSlackUserIdentityException",
|
|
327
|
-
$fault: "server",
|
|
328
|
-
...opts,
|
|
329
|
-
});
|
|
330
|
-
Object.setPrototypeOf(this, DeleteSlackUserIdentityException.prototype);
|
|
331
|
-
this.Message = opts.Message;
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
class DeleteSlackWorkspaceAuthorizationFault extends ChatbotServiceException {
|
|
335
|
-
name = "DeleteSlackWorkspaceAuthorizationFault";
|
|
336
|
-
$fault = "server";
|
|
337
|
-
Message;
|
|
338
|
-
constructor(opts) {
|
|
339
|
-
super({
|
|
340
|
-
name: "DeleteSlackWorkspaceAuthorizationFault",
|
|
341
|
-
$fault: "server",
|
|
342
|
-
...opts,
|
|
343
|
-
});
|
|
344
|
-
Object.setPrototypeOf(this, DeleteSlackWorkspaceAuthorizationFault.prototype);
|
|
345
|
-
this.Message = opts.Message;
|
|
346
|
-
}
|
|
347
|
-
}
|
|
348
|
-
class DescribeChimeWebhookConfigurationsException extends ChatbotServiceException {
|
|
349
|
-
name = "DescribeChimeWebhookConfigurationsException";
|
|
350
|
-
$fault = "server";
|
|
351
|
-
Message;
|
|
352
|
-
constructor(opts) {
|
|
353
|
-
super({
|
|
354
|
-
name: "DescribeChimeWebhookConfigurationsException",
|
|
355
|
-
$fault: "server",
|
|
356
|
-
...opts,
|
|
357
|
-
});
|
|
358
|
-
Object.setPrototypeOf(this, DescribeChimeWebhookConfigurationsException.prototype);
|
|
359
|
-
this.Message = opts.Message;
|
|
360
|
-
}
|
|
361
|
-
}
|
|
362
|
-
class DescribeSlackChannelConfigurationsException extends ChatbotServiceException {
|
|
363
|
-
name = "DescribeSlackChannelConfigurationsException";
|
|
364
|
-
$fault = "server";
|
|
365
|
-
Message;
|
|
366
|
-
constructor(opts) {
|
|
367
|
-
super({
|
|
368
|
-
name: "DescribeSlackChannelConfigurationsException",
|
|
369
|
-
$fault: "server",
|
|
370
|
-
...opts,
|
|
371
|
-
});
|
|
372
|
-
Object.setPrototypeOf(this, DescribeSlackChannelConfigurationsException.prototype);
|
|
373
|
-
this.Message = opts.Message;
|
|
374
|
-
}
|
|
375
|
-
}
|
|
376
|
-
class DescribeSlackUserIdentitiesException extends ChatbotServiceException {
|
|
377
|
-
name = "DescribeSlackUserIdentitiesException";
|
|
378
|
-
$fault = "server";
|
|
379
|
-
Message;
|
|
380
|
-
constructor(opts) {
|
|
381
|
-
super({
|
|
382
|
-
name: "DescribeSlackUserIdentitiesException",
|
|
383
|
-
$fault: "server",
|
|
384
|
-
...opts,
|
|
385
|
-
});
|
|
386
|
-
Object.setPrototypeOf(this, DescribeSlackUserIdentitiesException.prototype);
|
|
387
|
-
this.Message = opts.Message;
|
|
388
|
-
}
|
|
389
|
-
}
|
|
390
|
-
class DescribeSlackWorkspacesException extends ChatbotServiceException {
|
|
391
|
-
name = "DescribeSlackWorkspacesException";
|
|
392
|
-
$fault = "server";
|
|
393
|
-
Message;
|
|
394
|
-
constructor(opts) {
|
|
395
|
-
super({
|
|
396
|
-
name: "DescribeSlackWorkspacesException",
|
|
397
|
-
$fault: "server",
|
|
398
|
-
...opts,
|
|
399
|
-
});
|
|
400
|
-
Object.setPrototypeOf(this, DescribeSlackWorkspacesException.prototype);
|
|
401
|
-
this.Message = opts.Message;
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
class GetAccountPreferencesException extends ChatbotServiceException {
|
|
405
|
-
name = "GetAccountPreferencesException";
|
|
406
|
-
$fault = "server";
|
|
407
|
-
Message;
|
|
408
|
-
constructor(opts) {
|
|
409
|
-
super({
|
|
410
|
-
name: "GetAccountPreferencesException",
|
|
411
|
-
$fault: "server",
|
|
412
|
-
...opts,
|
|
413
|
-
});
|
|
414
|
-
Object.setPrototypeOf(this, GetAccountPreferencesException.prototype);
|
|
415
|
-
this.Message = opts.Message;
|
|
416
|
-
}
|
|
417
|
-
}
|
|
418
|
-
class GetTeamsChannelConfigurationException extends ChatbotServiceException {
|
|
419
|
-
name = "GetTeamsChannelConfigurationException";
|
|
420
|
-
$fault = "server";
|
|
421
|
-
Message;
|
|
422
|
-
constructor(opts) {
|
|
423
|
-
super({
|
|
424
|
-
name: "GetTeamsChannelConfigurationException",
|
|
425
|
-
$fault: "server",
|
|
426
|
-
...opts,
|
|
427
|
-
});
|
|
428
|
-
Object.setPrototypeOf(this, GetTeamsChannelConfigurationException.prototype);
|
|
429
|
-
this.Message = opts.Message;
|
|
430
|
-
}
|
|
431
|
-
}
|
|
432
|
-
class ListTeamsChannelConfigurationsException extends ChatbotServiceException {
|
|
433
|
-
name = "ListTeamsChannelConfigurationsException";
|
|
434
|
-
$fault = "server";
|
|
435
|
-
Message;
|
|
436
|
-
constructor(opts) {
|
|
437
|
-
super({
|
|
438
|
-
name: "ListTeamsChannelConfigurationsException",
|
|
439
|
-
$fault: "server",
|
|
440
|
-
...opts,
|
|
441
|
-
});
|
|
442
|
-
Object.setPrototypeOf(this, ListTeamsChannelConfigurationsException.prototype);
|
|
443
|
-
this.Message = opts.Message;
|
|
444
|
-
}
|
|
445
|
-
}
|
|
446
|
-
class ListMicrosoftTeamsConfiguredTeamsException extends ChatbotServiceException {
|
|
447
|
-
name = "ListMicrosoftTeamsConfiguredTeamsException";
|
|
448
|
-
$fault = "server";
|
|
449
|
-
Message;
|
|
450
|
-
constructor(opts) {
|
|
451
|
-
super({
|
|
452
|
-
name: "ListMicrosoftTeamsConfiguredTeamsException",
|
|
453
|
-
$fault: "server",
|
|
454
|
-
...opts,
|
|
455
|
-
});
|
|
456
|
-
Object.setPrototypeOf(this, ListMicrosoftTeamsConfiguredTeamsException.prototype);
|
|
457
|
-
this.Message = opts.Message;
|
|
458
|
-
}
|
|
459
|
-
}
|
|
460
|
-
class ListMicrosoftTeamsUserIdentitiesException extends ChatbotServiceException {
|
|
461
|
-
name = "ListMicrosoftTeamsUserIdentitiesException";
|
|
462
|
-
$fault = "server";
|
|
463
|
-
Message;
|
|
464
|
-
constructor(opts) {
|
|
465
|
-
super({
|
|
466
|
-
name: "ListMicrosoftTeamsUserIdentitiesException",
|
|
467
|
-
$fault: "server",
|
|
468
|
-
...opts,
|
|
469
|
-
});
|
|
470
|
-
Object.setPrototypeOf(this, ListMicrosoftTeamsUserIdentitiesException.prototype);
|
|
471
|
-
this.Message = opts.Message;
|
|
472
|
-
}
|
|
473
|
-
}
|
|
474
|
-
class ServiceUnavailableException extends ChatbotServiceException {
|
|
475
|
-
name = "ServiceUnavailableException";
|
|
476
|
-
$fault = "client";
|
|
477
|
-
constructor(opts) {
|
|
478
|
-
super({
|
|
479
|
-
name: "ServiceUnavailableException",
|
|
480
|
-
$fault: "client",
|
|
481
|
-
...opts,
|
|
482
|
-
});
|
|
483
|
-
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
484
|
-
}
|
|
485
|
-
}
|
|
486
|
-
class TooManyTagsException extends ChatbotServiceException {
|
|
487
|
-
name = "TooManyTagsException";
|
|
488
|
-
$fault = "client";
|
|
489
|
-
constructor(opts) {
|
|
490
|
-
super({
|
|
491
|
-
name: "TooManyTagsException",
|
|
492
|
-
$fault: "client",
|
|
493
|
-
...opts,
|
|
494
|
-
});
|
|
495
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
496
|
-
}
|
|
497
|
-
}
|
|
498
|
-
class UpdateAccountPreferencesException extends ChatbotServiceException {
|
|
499
|
-
name = "UpdateAccountPreferencesException";
|
|
500
|
-
$fault = "server";
|
|
501
|
-
Message;
|
|
502
|
-
constructor(opts) {
|
|
503
|
-
super({
|
|
504
|
-
name: "UpdateAccountPreferencesException",
|
|
505
|
-
$fault: "server",
|
|
506
|
-
...opts,
|
|
507
|
-
});
|
|
508
|
-
Object.setPrototypeOf(this, UpdateAccountPreferencesException.prototype);
|
|
509
|
-
this.Message = opts.Message;
|
|
510
|
-
}
|
|
511
|
-
}
|
|
512
|
-
class UpdateChimeWebhookConfigurationException extends ChatbotServiceException {
|
|
513
|
-
name = "UpdateChimeWebhookConfigurationException";
|
|
514
|
-
$fault = "server";
|
|
515
|
-
Message;
|
|
516
|
-
constructor(opts) {
|
|
517
|
-
super({
|
|
518
|
-
name: "UpdateChimeWebhookConfigurationException",
|
|
519
|
-
$fault: "server",
|
|
520
|
-
...opts,
|
|
521
|
-
});
|
|
522
|
-
Object.setPrototypeOf(this, UpdateChimeWebhookConfigurationException.prototype);
|
|
523
|
-
this.Message = opts.Message;
|
|
524
|
-
}
|
|
525
|
-
}
|
|
526
|
-
class UpdateTeamsChannelConfigurationException extends ChatbotServiceException {
|
|
527
|
-
name = "UpdateTeamsChannelConfigurationException";
|
|
528
|
-
$fault = "server";
|
|
529
|
-
Message;
|
|
530
|
-
constructor(opts) {
|
|
531
|
-
super({
|
|
532
|
-
name: "UpdateTeamsChannelConfigurationException",
|
|
533
|
-
$fault: "server",
|
|
534
|
-
...opts,
|
|
535
|
-
});
|
|
536
|
-
Object.setPrototypeOf(this, UpdateTeamsChannelConfigurationException.prototype);
|
|
537
|
-
this.Message = opts.Message;
|
|
538
|
-
}
|
|
539
|
-
}
|
|
540
|
-
class UpdateSlackChannelConfigurationException extends ChatbotServiceException {
|
|
541
|
-
name = "UpdateSlackChannelConfigurationException";
|
|
542
|
-
$fault = "server";
|
|
543
|
-
Message;
|
|
544
|
-
constructor(opts) {
|
|
545
|
-
super({
|
|
546
|
-
name: "UpdateSlackChannelConfigurationException",
|
|
547
|
-
$fault: "server",
|
|
548
|
-
...opts,
|
|
549
|
-
});
|
|
550
|
-
Object.setPrototypeOf(this, UpdateSlackChannelConfigurationException.prototype);
|
|
551
|
-
this.Message = opts.Message;
|
|
552
|
-
}
|
|
553
|
-
}
|
|
554
|
-
|
|
555
|
-
const _A = "Attachments";
|
|
556
|
-
const _AL = "AssociationListing";
|
|
557
|
-
const _ALs = "AssociationList";
|
|
558
|
-
const _AN = "ActionName";
|
|
559
|
-
const _ANl = "AliasName";
|
|
560
|
-
const _AP = "AccountPreferences";
|
|
561
|
-
const _ATC = "AssociateToConfiguration";
|
|
562
|
-
const _ATCR = "AssociateToConfigurationRequest";
|
|
563
|
-
const _ATCRs = "AssociateToConfigurationResult";
|
|
564
|
-
const _AUI = "AwsUserIdentity";
|
|
565
|
-
const _As = "Associations";
|
|
566
|
-
const _BT = "ButtonText";
|
|
567
|
-
const _C = "Criteria";
|
|
568
|
-
const _CA = "CustomAction";
|
|
569
|
-
const _CAA = "CustomActionArn";
|
|
570
|
-
const _CAAC = "CustomActionAttachmentCriteria";
|
|
571
|
-
const _CAACL = "CustomActionAttachmentCriteriaList";
|
|
572
|
-
const _CAAL = "CustomActionAttachmentList";
|
|
573
|
-
const _CAAu = "CustomActionAttachment";
|
|
574
|
-
const _CAD = "CustomActionDefinition";
|
|
575
|
-
const _CAu = "CustomActions";
|
|
576
|
-
const _CC = "ChatConfiguration";
|
|
577
|
-
const _CCA = "ChatConfigurationArn";
|
|
578
|
-
const _CCAR = "CreateCustomActionRequest";
|
|
579
|
-
const _CCARr = "CreateCustomActionResult";
|
|
580
|
-
const _CCAr = "CreateCustomAction";
|
|
581
|
-
const _CCWC = "CreateChimeWebhookConfiguration";
|
|
582
|
-
const _CCWCE = "CreateChimeWebhookConfigurationException";
|
|
583
|
-
const _CCWCR = "CreateChimeWebhookConfigurationRequest";
|
|
584
|
-
const _CCWCRr = "CreateChimeWebhookConfigurationResult";
|
|
585
|
-
const _CCh = "ChannelConfiguration";
|
|
586
|
-
const _CE = "ConflictException";
|
|
587
|
-
const _CI = "ChannelId";
|
|
588
|
-
const _CMTCC = "CreateMicrosoftTeamsChannelConfiguration";
|
|
589
|
-
const _CN = "ConfigurationName";
|
|
590
|
-
const _CNh = "ChannelName";
|
|
591
|
-
const _CSCC = "CreateSlackChannelConfiguration";
|
|
592
|
-
const _CSCCE = "CreateSlackChannelConfigurationException";
|
|
593
|
-
const _CSCCR = "CreateSlackChannelConfigurationRequest";
|
|
594
|
-
const _CSCCRr = "CreateSlackChannelConfigurationResult";
|
|
595
|
-
const _CT = "ConfiguredTeam";
|
|
596
|
-
const _CTCCE = "CreateTeamsChannelConfigurationException";
|
|
597
|
-
const _CTCCR = "CreateTeamsChannelConfigurationRequest";
|
|
598
|
-
const _CTCCRr = "CreateTeamsChannelConfigurationResult";
|
|
599
|
-
const _CTL = "ConfiguredTeamsList";
|
|
600
|
-
const _CTl = "ClientToken";
|
|
601
|
-
const _CTo = "CommandText";
|
|
602
|
-
const _CTon = "ConfiguredTeams";
|
|
603
|
-
const _CWC = "ChimeWebhookConfiguration";
|
|
604
|
-
const _CWCL = "ChimeWebhookConfigurationList";
|
|
605
|
-
const _CWD = "ChimeWebhookDescription";
|
|
606
|
-
const _CWU = "ChimeWebhookUrl";
|
|
607
|
-
const _D = "Definition";
|
|
608
|
-
const _DCA = "DeleteCustomAction";
|
|
609
|
-
const _DCAR = "DeleteCustomActionRequest";
|
|
610
|
-
const _DCARe = "DeleteCustomActionResult";
|
|
611
|
-
const _DCWC = "DeleteChimeWebhookConfiguration";
|
|
612
|
-
const _DCWCE = "DeleteChimeWebhookConfigurationException";
|
|
613
|
-
const _DCWCEe = "DescribeChimeWebhookConfigurationsException";
|
|
614
|
-
const _DCWCR = "DeleteChimeWebhookConfigurationRequest";
|
|
615
|
-
const _DCWCRe = "DeleteChimeWebhookConfigurationResult";
|
|
616
|
-
const _DCWCRes = "DescribeChimeWebhookConfigurationsRequest";
|
|
617
|
-
const _DCWCResc = "DescribeChimeWebhookConfigurationsResult";
|
|
618
|
-
const _DCWCe = "DescribeChimeWebhookConfigurations";
|
|
619
|
-
const _DFC = "DisassociateFromConfiguration";
|
|
620
|
-
const _DFCR = "DisassociateFromConfigurationRequest";
|
|
621
|
-
const _DFCRi = "DisassociateFromConfigurationResult";
|
|
622
|
-
const _DMTCC = "DeleteMicrosoftTeamsChannelConfiguration";
|
|
623
|
-
const _DMTCT = "DeleteMicrosoftTeamsConfiguredTeam";
|
|
624
|
-
const _DMTUI = "DeleteMicrosoftTeamsUserIdentity";
|
|
625
|
-
const _DMTUIE = "DeleteMicrosoftTeamsUserIdentityException";
|
|
626
|
-
const _DMTUIR = "DeleteMicrosoftTeamsUserIdentityRequest";
|
|
627
|
-
const _DMTUIRe = "DeleteMicrosoftTeamsUserIdentityResult";
|
|
628
|
-
const _DSCC = "DeleteSlackChannelConfiguration";
|
|
629
|
-
const _DSCCE = "DeleteSlackChannelConfigurationException";
|
|
630
|
-
const _DSCCEe = "DescribeSlackChannelConfigurationsException";
|
|
631
|
-
const _DSCCR = "DeleteSlackChannelConfigurationRequest";
|
|
632
|
-
const _DSCCRe = "DeleteSlackChannelConfigurationResult";
|
|
633
|
-
const _DSCCRes = "DescribeSlackChannelConfigurationsRequest";
|
|
634
|
-
const _DSCCResc = "DescribeSlackChannelConfigurationsResult";
|
|
635
|
-
const _DSCCe = "DescribeSlackChannelConfigurations";
|
|
636
|
-
const _DSUI = "DeleteSlackUserIdentity";
|
|
637
|
-
const _DSUIE = "DeleteSlackUserIdentityException";
|
|
638
|
-
const _DSUIEe = "DescribeSlackUserIdentitiesException";
|
|
639
|
-
const _DSUIR = "DeleteSlackUserIdentityRequest";
|
|
640
|
-
const _DSUIRe = "DeleteSlackUserIdentityResult";
|
|
641
|
-
const _DSUIRes = "DescribeSlackUserIdentitiesRequest";
|
|
642
|
-
const _DSUIResc = "DescribeSlackUserIdentitiesResult";
|
|
643
|
-
const _DSUIe = "DescribeSlackUserIdentities";
|
|
644
|
-
const _DSW = "DescribeSlackWorkspaces";
|
|
645
|
-
const _DSWA = "DeleteSlackWorkspaceAuthorization";
|
|
646
|
-
const _DSWAF = "DeleteSlackWorkspaceAuthorizationFault";
|
|
647
|
-
const _DSWAR = "DeleteSlackWorkspaceAuthorizationRequest";
|
|
648
|
-
const _DSWARe = "DeleteSlackWorkspaceAuthorizationResult";
|
|
649
|
-
const _DSWE = "DescribeSlackWorkspacesException";
|
|
650
|
-
const _DSWR = "DescribeSlackWorkspacesRequest";
|
|
651
|
-
const _DSWRe = "DescribeSlackWorkspacesResult";
|
|
652
|
-
const _DTCCE = "DeleteTeamsChannelConfigurationException";
|
|
653
|
-
const _DTCCR = "DeleteTeamsChannelConfigurationRequest";
|
|
654
|
-
const _DTCCRe = "DeleteTeamsChannelConfigurationResult";
|
|
655
|
-
const _DTCTE = "DeleteTeamsConfiguredTeamException";
|
|
656
|
-
const _DTCTR = "DeleteTeamsConfiguredTeamRequest";
|
|
657
|
-
const _DTCTRe = "DeleteTeamsConfiguredTeamResult";
|
|
658
|
-
const _GAP = "GetAccountPreferences";
|
|
659
|
-
const _GAPE = "GetAccountPreferencesException";
|
|
660
|
-
const _GAPR = "GetAccountPreferencesRequest";
|
|
661
|
-
const _GAPRe = "GetAccountPreferencesResult";
|
|
662
|
-
const _GCA = "GetCustomAction";
|
|
663
|
-
const _GCAR = "GetCustomActionRequest";
|
|
664
|
-
const _GCARe = "GetCustomActionResult";
|
|
665
|
-
const _GMTCC = "GetMicrosoftTeamsChannelConfiguration";
|
|
666
|
-
const _GPA = "GuardrailPolicyArns";
|
|
667
|
-
const _GTCCE = "GetTeamsChannelConfigurationException";
|
|
668
|
-
const _GTCCR = "GetTeamsChannelConfigurationRequest";
|
|
669
|
-
const _GTCCRe = "GetTeamsChannelConfigurationResult";
|
|
670
|
-
const _IPE = "InvalidParameterException";
|
|
671
|
-
const _IRA = "IamRoleArn";
|
|
672
|
-
const _IRE = "InvalidRequestException";
|
|
673
|
-
const _ISE = "InternalServiceError";
|
|
674
|
-
const _LA = "ListAssociations";
|
|
675
|
-
const _LAR = "ListAssociationsRequest";
|
|
676
|
-
const _LARi = "ListAssociationsResult";
|
|
677
|
-
const _LCA = "ListCustomActions";
|
|
678
|
-
const _LCAR = "ListCustomActionsRequest";
|
|
679
|
-
const _LCARi = "ListCustomActionsResult";
|
|
680
|
-
const _LEE = "LimitExceededException";
|
|
681
|
-
const _LL = "LoggingLevel";
|
|
682
|
-
const _LMTCC = "ListMicrosoftTeamsChannelConfigurations";
|
|
683
|
-
const _LMTCT = "ListMicrosoftTeamsConfiguredTeams";
|
|
684
|
-
const _LMTCTE = "ListMicrosoftTeamsConfiguredTeamsException";
|
|
685
|
-
const _LMTCTR = "ListMicrosoftTeamsConfiguredTeamsRequest";
|
|
686
|
-
const _LMTCTRi = "ListMicrosoftTeamsConfiguredTeamsResult";
|
|
687
|
-
const _LMTUI = "ListMicrosoftTeamsUserIdentities";
|
|
688
|
-
const _LMTUIE = "ListMicrosoftTeamsUserIdentitiesException";
|
|
689
|
-
const _LMTUIR = "ListMicrosoftTeamsUserIdentitiesRequest";
|
|
690
|
-
const _LMTUIRi = "ListMicrosoftTeamsUserIdentitiesResult";
|
|
691
|
-
const _LTCCE = "ListTeamsChannelConfigurationsException";
|
|
692
|
-
const _LTCCR = "ListTeamsChannelConfigurationsRequest";
|
|
693
|
-
const _LTCCRi = "ListTeamsChannelConfigurationsResult";
|
|
694
|
-
const _LTFR = "ListTagsForResource";
|
|
695
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
696
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
697
|
-
const _M = "Message";
|
|
698
|
-
const _MR = "MaxResults";
|
|
699
|
-
const _NT = "NotificationType";
|
|
700
|
-
const _NTe = "NextToken";
|
|
701
|
-
const _O = "Operator";
|
|
702
|
-
const _R = "Resource";
|
|
703
|
-
const _RARN = "ResourceARN";
|
|
704
|
-
const _RNFE = "ResourceNotFoundException";
|
|
705
|
-
const _S = "State";
|
|
706
|
-
const _SCC = "SlackChannelConfigurations";
|
|
707
|
-
const _SCCL = "SlackChannelConfigurationList";
|
|
708
|
-
const _SCCl = "SlackChannelConfiguration";
|
|
709
|
-
const _SCDN = "SlackChannelDisplayName";
|
|
710
|
-
const _SCI = "SlackChannelId";
|
|
711
|
-
const _SCN = "SlackChannelName";
|
|
712
|
-
const _SR = "StateReason";
|
|
713
|
-
const _STA = "SnsTopicArns";
|
|
714
|
-
const _STI = "SlackTeamId";
|
|
715
|
-
const _STN = "SlackTeamName";
|
|
716
|
-
const _SUE = "ServiceUnavailableException";
|
|
717
|
-
const _SUI = "SlackUserId";
|
|
718
|
-
const _SUIL = "SlackUserIdentitiesList";
|
|
719
|
-
const _SUIl = "SlackUserIdentities";
|
|
720
|
-
const _SUIla = "SlackUserIdentity";
|
|
721
|
-
const _SW = "SlackWorkspaces";
|
|
722
|
-
const _SWL = "SlackWorkspacesList";
|
|
723
|
-
const _SWl = "SlackWorkspace";
|
|
724
|
-
const _T = "Tags";
|
|
725
|
-
const _TCC = "TeamChannelConfigurations";
|
|
726
|
-
const _TCCL = "TeamChannelConfigurationsList";
|
|
727
|
-
const _TCCe = "TeamsChannelConfiguration";
|
|
728
|
-
const _TCI = "TeamsChannelId";
|
|
729
|
-
const _TCN = "TeamsChannelName";
|
|
730
|
-
const _TDCE = "TrainingDataCollectionEnabled";
|
|
731
|
-
const _TI = "TenantId";
|
|
732
|
-
const _TIe = "TeamId";
|
|
733
|
-
const _TK = "TagKey";
|
|
734
|
-
const _TKa = "TagKeys";
|
|
735
|
-
const _TL = "TagList";
|
|
736
|
-
const _TMTE = "TooManyTagsException";
|
|
737
|
-
const _TN = "TeamName";
|
|
738
|
-
const _TR = "TagResource";
|
|
739
|
-
const _TRR = "TagResourceRequest";
|
|
740
|
-
const _TRRa = "TagResourceResponse";
|
|
741
|
-
const _TTI = "TeamsTenantId";
|
|
742
|
-
const _TUI = "TeamsUserIdentities";
|
|
743
|
-
const _TUIL = "TeamsUserIdentitiesList";
|
|
744
|
-
const _TUIe = "TeamsUserIdentity";
|
|
745
|
-
const _TV = "TagValue";
|
|
746
|
-
const _Ta = "Tag";
|
|
747
|
-
const _UAP = "UpdateAccountPreferences";
|
|
748
|
-
const _UAPE = "UpdateAccountPreferencesException";
|
|
749
|
-
const _UAPR = "UpdateAccountPreferencesRequest";
|
|
750
|
-
const _UAPRp = "UpdateAccountPreferencesResult";
|
|
751
|
-
const _UAR = "UserAuthorizationRequired";
|
|
752
|
-
const _UCA = "UpdateCustomAction";
|
|
753
|
-
const _UCAR = "UpdateCustomActionRequest";
|
|
754
|
-
const _UCARp = "UpdateCustomActionResult";
|
|
755
|
-
const _UCWC = "UpdateChimeWebhookConfiguration";
|
|
756
|
-
const _UCWCE = "UpdateChimeWebhookConfigurationException";
|
|
757
|
-
const _UCWCR = "UpdateChimeWebhookConfigurationRequest";
|
|
758
|
-
const _UCWCRp = "UpdateChimeWebhookConfigurationResult";
|
|
759
|
-
const _UE = "UnauthorizedException";
|
|
760
|
-
const _UI = "UserId";
|
|
761
|
-
const _UMTCC = "UpdateMicrosoftTeamsChannelConfiguration";
|
|
762
|
-
const _UR = "UntagResource";
|
|
763
|
-
const _URR = "UntagResourceRequest";
|
|
764
|
-
const _URRn = "UntagResourceResponse";
|
|
765
|
-
const _USCC = "UpdateSlackChannelConfiguration";
|
|
766
|
-
const _USCCE = "UpdateSlackChannelConfigurationException";
|
|
767
|
-
const _USCCR = "UpdateSlackChannelConfigurationRequest";
|
|
768
|
-
const _USCCRp = "UpdateSlackChannelConfigurationResult";
|
|
769
|
-
const _UTCCE = "UpdateTeamsChannelConfigurationException";
|
|
770
|
-
const _UTCCR = "UpdateTeamsChannelConfigurationRequest";
|
|
771
|
-
const _UTCCRp = "UpdateTeamsChannelConfigurationResult";
|
|
772
|
-
const _V = "Variables";
|
|
773
|
-
const _VN = "VariableName";
|
|
774
|
-
const _Va = "Value";
|
|
775
|
-
const _WC = "WebhookConfiguration";
|
|
776
|
-
const _WCe = "WebhookConfigurations";
|
|
777
|
-
const _WD = "WebhookDescription";
|
|
778
|
-
const _WU = "WebhookUrl";
|
|
779
|
-
const _c = "client";
|
|
780
|
-
const _e = "error";
|
|
781
|
-
const _h = "http";
|
|
782
|
-
const _hE = "httpError";
|
|
783
|
-
const _m = "message";
|
|
784
|
-
const _s = "server";
|
|
785
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.chatbot";
|
|
786
|
-
const n0 = "com.amazonaws.chatbot";
|
|
787
|
-
var ChimeWebhookDescription = [0, n0, _CWD, 8, 0];
|
|
788
|
-
var ChimeWebhookUrl = [0, n0, _CWU, 8, 0];
|
|
789
|
-
var SlackChannelDisplayName = [0, n0, _SCDN, 8, 0];
|
|
790
|
-
var TeamName = [0, n0, _TN, 8, 0];
|
|
791
|
-
var TeamsChannelName = [0, n0, _TCN, 8, 0];
|
|
792
|
-
var AccountPreferences$ = [3, n0, _AP,
|
|
793
|
-
0,
|
|
794
|
-
[_UAR, _TDCE],
|
|
795
|
-
[2, 2]
|
|
796
|
-
];
|
|
797
|
-
var AssociateToConfigurationRequest$ = [3, n0, _ATCR,
|
|
798
|
-
0,
|
|
799
|
-
[_R, _CC],
|
|
800
|
-
[0, 0], 2
|
|
801
|
-
];
|
|
802
|
-
var AssociateToConfigurationResult$ = [3, n0, _ATCRs,
|
|
803
|
-
0,
|
|
804
|
-
[],
|
|
805
|
-
[]
|
|
806
|
-
];
|
|
807
|
-
var AssociationListing$ = [3, n0, _AL,
|
|
808
|
-
0,
|
|
809
|
-
[_R],
|
|
810
|
-
[0], 1
|
|
811
|
-
];
|
|
812
|
-
var ChimeWebhookConfiguration$ = [3, n0, _CWC,
|
|
813
|
-
0,
|
|
814
|
-
[_WD, _CCA, _IRA, _STA, _CN, _LL, _T, _S, _SR],
|
|
815
|
-
[[() => ChimeWebhookDescription, 0], 0, 0, 64 | 0, 0, 0, () => Tags, 0, 0], 4
|
|
816
|
-
];
|
|
817
|
-
var ConfiguredTeam$ = [3, n0, _CT,
|
|
818
|
-
0,
|
|
819
|
-
[_TI, _TIe, _TN, _S, _SR],
|
|
820
|
-
[0, 0, 0, 0, 0], 2
|
|
821
|
-
];
|
|
822
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
823
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
824
|
-
[_m],
|
|
825
|
-
[0]
|
|
826
|
-
];
|
|
827
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
828
|
-
var CreateChimeWebhookConfigurationException$ = [-3, n0, _CCWCE,
|
|
829
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
830
|
-
[_M],
|
|
831
|
-
[0]
|
|
832
|
-
];
|
|
833
|
-
schema.TypeRegistry.for(n0).registerError(CreateChimeWebhookConfigurationException$, CreateChimeWebhookConfigurationException);
|
|
834
|
-
var CreateChimeWebhookConfigurationRequest$ = [3, n0, _CCWCR,
|
|
835
|
-
0,
|
|
836
|
-
[_WD, _WU, _STA, _IRA, _CN, _LL, _T],
|
|
837
|
-
[[() => ChimeWebhookDescription, 0], [() => ChimeWebhookUrl, 0], 64 | 0, 0, 0, 0, () => Tags], 5
|
|
838
|
-
];
|
|
839
|
-
var CreateChimeWebhookConfigurationResult$ = [3, n0, _CCWCRr,
|
|
840
|
-
0,
|
|
841
|
-
[_WC],
|
|
842
|
-
[[() => ChimeWebhookConfiguration$, 0]]
|
|
843
|
-
];
|
|
844
|
-
var CreateCustomActionRequest$ = [3, n0, _CCAR,
|
|
845
|
-
0,
|
|
846
|
-
[_D, _AN, _ANl, _A, _T, _CTl],
|
|
847
|
-
[() => CustomActionDefinition$, 0, 0, () => CustomActionAttachmentList, () => TagList, [0, 4]], 2
|
|
848
|
-
];
|
|
849
|
-
var CreateCustomActionResult$ = [3, n0, _CCARr,
|
|
850
|
-
0,
|
|
851
|
-
[_CAA],
|
|
852
|
-
[0], 1
|
|
853
|
-
];
|
|
854
|
-
var CreateSlackChannelConfigurationException$ = [-3, n0, _CSCCE,
|
|
855
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
856
|
-
[_M],
|
|
857
|
-
[0]
|
|
858
|
-
];
|
|
859
|
-
schema.TypeRegistry.for(n0).registerError(CreateSlackChannelConfigurationException$, CreateSlackChannelConfigurationException);
|
|
860
|
-
var CreateSlackChannelConfigurationRequest$ = [3, n0, _CSCCR,
|
|
861
|
-
0,
|
|
862
|
-
[_STI, _SCI, _IRA, _CN, _SCN, _STA, _LL, _GPA, _UAR, _T],
|
|
863
|
-
[0, 0, 0, 0, [() => SlackChannelDisplayName, 0], 64 | 0, 0, 64 | 0, 2, () => Tags], 4
|
|
864
|
-
];
|
|
865
|
-
var CreateSlackChannelConfigurationResult$ = [3, n0, _CSCCRr,
|
|
866
|
-
0,
|
|
867
|
-
[_CCh],
|
|
868
|
-
[[() => SlackChannelConfiguration$, 0]]
|
|
869
|
-
];
|
|
870
|
-
var CreateTeamsChannelConfigurationException$ = [-3, n0, _CTCCE,
|
|
871
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
872
|
-
[_M],
|
|
873
|
-
[0]
|
|
874
|
-
];
|
|
875
|
-
schema.TypeRegistry.for(n0).registerError(CreateTeamsChannelConfigurationException$, CreateTeamsChannelConfigurationException);
|
|
876
|
-
var CreateTeamsChannelConfigurationRequest$ = [3, n0, _CTCCR,
|
|
877
|
-
0,
|
|
878
|
-
[_CI, _TIe, _TI, _IRA, _CN, _CNh, _TN, _STA, _LL, _GPA, _UAR, _T],
|
|
879
|
-
[0, 0, 0, 0, 0, [() => TeamsChannelName, 0], [() => TeamName, 0], 64 | 0, 0, 64 | 0, 2, () => Tags], 5
|
|
880
|
-
];
|
|
881
|
-
var CreateTeamsChannelConfigurationResult$ = [3, n0, _CTCCRr,
|
|
882
|
-
0,
|
|
883
|
-
[_CCh],
|
|
884
|
-
[[() => TeamsChannelConfiguration$, 0]]
|
|
885
|
-
];
|
|
886
|
-
var CustomAction$ = [3, n0, _CA,
|
|
887
|
-
0,
|
|
888
|
-
[_CAA, _D, _ANl, _A, _AN],
|
|
889
|
-
[0, () => CustomActionDefinition$, 0, () => CustomActionAttachmentList, 0], 2
|
|
890
|
-
];
|
|
891
|
-
var CustomActionAttachment$ = [3, n0, _CAAu,
|
|
892
|
-
0,
|
|
893
|
-
[_NT, _BT, _C, _V],
|
|
894
|
-
[0, 0, () => CustomActionAttachmentCriteriaList, 128 | 0]
|
|
895
|
-
];
|
|
896
|
-
var CustomActionAttachmentCriteria$ = [3, n0, _CAAC,
|
|
897
|
-
0,
|
|
898
|
-
[_O, _VN, _Va],
|
|
899
|
-
[0, 0, 0], 2
|
|
900
|
-
];
|
|
901
|
-
var CustomActionDefinition$ = [3, n0, _CAD,
|
|
902
|
-
0,
|
|
903
|
-
[_CTo],
|
|
904
|
-
[0], 1
|
|
905
|
-
];
|
|
906
|
-
var DeleteChimeWebhookConfigurationException$ = [-3, n0, _DCWCE,
|
|
907
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
908
|
-
[_M],
|
|
909
|
-
[0]
|
|
910
|
-
];
|
|
911
|
-
schema.TypeRegistry.for(n0).registerError(DeleteChimeWebhookConfigurationException$, DeleteChimeWebhookConfigurationException);
|
|
912
|
-
var DeleteChimeWebhookConfigurationRequest$ = [3, n0, _DCWCR,
|
|
913
|
-
0,
|
|
914
|
-
[_CCA],
|
|
915
|
-
[0], 1
|
|
916
|
-
];
|
|
917
|
-
var DeleteChimeWebhookConfigurationResult$ = [3, n0, _DCWCRe,
|
|
918
|
-
0,
|
|
919
|
-
[],
|
|
920
|
-
[]
|
|
921
|
-
];
|
|
922
|
-
var DeleteCustomActionRequest$ = [3, n0, _DCAR,
|
|
923
|
-
0,
|
|
924
|
-
[_CAA],
|
|
925
|
-
[0], 1
|
|
926
|
-
];
|
|
927
|
-
var DeleteCustomActionResult$ = [3, n0, _DCARe,
|
|
928
|
-
0,
|
|
929
|
-
[],
|
|
930
|
-
[]
|
|
931
|
-
];
|
|
932
|
-
var DeleteMicrosoftTeamsUserIdentityException$ = [-3, n0, _DMTUIE,
|
|
933
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
934
|
-
[_M],
|
|
935
|
-
[0]
|
|
936
|
-
];
|
|
937
|
-
schema.TypeRegistry.for(n0).registerError(DeleteMicrosoftTeamsUserIdentityException$, DeleteMicrosoftTeamsUserIdentityException);
|
|
938
|
-
var DeleteMicrosoftTeamsUserIdentityRequest$ = [3, n0, _DMTUIR,
|
|
939
|
-
0,
|
|
940
|
-
[_CCA, _UI],
|
|
941
|
-
[0, 0], 2
|
|
942
|
-
];
|
|
943
|
-
var DeleteMicrosoftTeamsUserIdentityResult$ = [3, n0, _DMTUIRe,
|
|
944
|
-
0,
|
|
945
|
-
[],
|
|
946
|
-
[]
|
|
947
|
-
];
|
|
948
|
-
var DeleteSlackChannelConfigurationException$ = [-3, n0, _DSCCE,
|
|
949
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
950
|
-
[_M],
|
|
951
|
-
[0]
|
|
952
|
-
];
|
|
953
|
-
schema.TypeRegistry.for(n0).registerError(DeleteSlackChannelConfigurationException$, DeleteSlackChannelConfigurationException);
|
|
954
|
-
var DeleteSlackChannelConfigurationRequest$ = [3, n0, _DSCCR,
|
|
955
|
-
0,
|
|
956
|
-
[_CCA],
|
|
957
|
-
[0], 1
|
|
958
|
-
];
|
|
959
|
-
var DeleteSlackChannelConfigurationResult$ = [3, n0, _DSCCRe,
|
|
960
|
-
0,
|
|
961
|
-
[],
|
|
962
|
-
[]
|
|
963
|
-
];
|
|
964
|
-
var DeleteSlackUserIdentityException$ = [-3, n0, _DSUIE,
|
|
965
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
966
|
-
[_M],
|
|
967
|
-
[0]
|
|
968
|
-
];
|
|
969
|
-
schema.TypeRegistry.for(n0).registerError(DeleteSlackUserIdentityException$, DeleteSlackUserIdentityException);
|
|
970
|
-
var DeleteSlackUserIdentityRequest$ = [3, n0, _DSUIR,
|
|
971
|
-
0,
|
|
972
|
-
[_CCA, _STI, _SUI],
|
|
973
|
-
[0, 0, 0], 3
|
|
974
|
-
];
|
|
975
|
-
var DeleteSlackUserIdentityResult$ = [3, n0, _DSUIRe,
|
|
976
|
-
0,
|
|
977
|
-
[],
|
|
978
|
-
[]
|
|
979
|
-
];
|
|
980
|
-
var DeleteSlackWorkspaceAuthorizationFault$ = [-3, n0, _DSWAF,
|
|
981
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
982
|
-
[_M],
|
|
983
|
-
[0]
|
|
984
|
-
];
|
|
985
|
-
schema.TypeRegistry.for(n0).registerError(DeleteSlackWorkspaceAuthorizationFault$, DeleteSlackWorkspaceAuthorizationFault);
|
|
986
|
-
var DeleteSlackWorkspaceAuthorizationRequest$ = [3, n0, _DSWAR,
|
|
987
|
-
0,
|
|
988
|
-
[_STI],
|
|
989
|
-
[0], 1
|
|
990
|
-
];
|
|
991
|
-
var DeleteSlackWorkspaceAuthorizationResult$ = [3, n0, _DSWARe,
|
|
992
|
-
0,
|
|
993
|
-
[],
|
|
994
|
-
[]
|
|
995
|
-
];
|
|
996
|
-
var DeleteTeamsChannelConfigurationException$ = [-3, n0, _DTCCE,
|
|
997
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
998
|
-
[_M],
|
|
999
|
-
[0]
|
|
1000
|
-
];
|
|
1001
|
-
schema.TypeRegistry.for(n0).registerError(DeleteTeamsChannelConfigurationException$, DeleteTeamsChannelConfigurationException);
|
|
1002
|
-
var DeleteTeamsChannelConfigurationRequest$ = [3, n0, _DTCCR,
|
|
1003
|
-
0,
|
|
1004
|
-
[_CCA],
|
|
1005
|
-
[0], 1
|
|
1006
|
-
];
|
|
1007
|
-
var DeleteTeamsChannelConfigurationResult$ = [3, n0, _DTCCRe,
|
|
1008
|
-
0,
|
|
1009
|
-
[],
|
|
1010
|
-
[]
|
|
1011
|
-
];
|
|
1012
|
-
var DeleteTeamsConfiguredTeamException$ = [-3, n0, _DTCTE,
|
|
1013
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1014
|
-
[_M],
|
|
1015
|
-
[0]
|
|
1016
|
-
];
|
|
1017
|
-
schema.TypeRegistry.for(n0).registerError(DeleteTeamsConfiguredTeamException$, DeleteTeamsConfiguredTeamException);
|
|
1018
|
-
var DeleteTeamsConfiguredTeamRequest$ = [3, n0, _DTCTR,
|
|
1019
|
-
0,
|
|
1020
|
-
[_TIe],
|
|
1021
|
-
[0], 1
|
|
1022
|
-
];
|
|
1023
|
-
var DeleteTeamsConfiguredTeamResult$ = [3, n0, _DTCTRe,
|
|
1024
|
-
0,
|
|
1025
|
-
[],
|
|
1026
|
-
[]
|
|
1027
|
-
];
|
|
1028
|
-
var DescribeChimeWebhookConfigurationsException$ = [-3, n0, _DCWCEe,
|
|
1029
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1030
|
-
[_M],
|
|
1031
|
-
[0]
|
|
1032
|
-
];
|
|
1033
|
-
schema.TypeRegistry.for(n0).registerError(DescribeChimeWebhookConfigurationsException$, DescribeChimeWebhookConfigurationsException);
|
|
1034
|
-
var DescribeChimeWebhookConfigurationsRequest$ = [3, n0, _DCWCRes,
|
|
1035
|
-
0,
|
|
1036
|
-
[_MR, _NTe, _CCA],
|
|
1037
|
-
[1, 0, 0]
|
|
1038
|
-
];
|
|
1039
|
-
var DescribeChimeWebhookConfigurationsResult$ = [3, n0, _DCWCResc,
|
|
1040
|
-
0,
|
|
1041
|
-
[_NTe, _WCe],
|
|
1042
|
-
[0, [() => ChimeWebhookConfigurationList, 0]]
|
|
1043
|
-
];
|
|
1044
|
-
var DescribeSlackChannelConfigurationsException$ = [-3, n0, _DSCCEe,
|
|
1045
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1046
|
-
[_M],
|
|
1047
|
-
[0]
|
|
1048
|
-
];
|
|
1049
|
-
schema.TypeRegistry.for(n0).registerError(DescribeSlackChannelConfigurationsException$, DescribeSlackChannelConfigurationsException);
|
|
1050
|
-
var DescribeSlackChannelConfigurationsRequest$ = [3, n0, _DSCCRes,
|
|
1051
|
-
0,
|
|
1052
|
-
[_MR, _NTe, _CCA],
|
|
1053
|
-
[1, 0, 0]
|
|
1054
|
-
];
|
|
1055
|
-
var DescribeSlackChannelConfigurationsResult$ = [3, n0, _DSCCResc,
|
|
1056
|
-
0,
|
|
1057
|
-
[_NTe, _SCC],
|
|
1058
|
-
[0, [() => SlackChannelConfigurationList, 0]]
|
|
1059
|
-
];
|
|
1060
|
-
var DescribeSlackUserIdentitiesException$ = [-3, n0, _DSUIEe,
|
|
1061
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1062
|
-
[_M],
|
|
1063
|
-
[0]
|
|
1064
|
-
];
|
|
1065
|
-
schema.TypeRegistry.for(n0).registerError(DescribeSlackUserIdentitiesException$, DescribeSlackUserIdentitiesException);
|
|
1066
|
-
var DescribeSlackUserIdentitiesRequest$ = [3, n0, _DSUIRes,
|
|
1067
|
-
0,
|
|
1068
|
-
[_CCA, _NTe, _MR],
|
|
1069
|
-
[0, 0, 1]
|
|
1070
|
-
];
|
|
1071
|
-
var DescribeSlackUserIdentitiesResult$ = [3, n0, _DSUIResc,
|
|
1072
|
-
0,
|
|
1073
|
-
[_SUIl, _NTe],
|
|
1074
|
-
[() => SlackUserIdentitiesList, 0]
|
|
1075
|
-
];
|
|
1076
|
-
var DescribeSlackWorkspacesException$ = [-3, n0, _DSWE,
|
|
1077
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1078
|
-
[_M],
|
|
1079
|
-
[0]
|
|
1080
|
-
];
|
|
1081
|
-
schema.TypeRegistry.for(n0).registerError(DescribeSlackWorkspacesException$, DescribeSlackWorkspacesException);
|
|
1082
|
-
var DescribeSlackWorkspacesRequest$ = [3, n0, _DSWR,
|
|
1083
|
-
0,
|
|
1084
|
-
[_MR, _NTe],
|
|
1085
|
-
[1, 0]
|
|
1086
|
-
];
|
|
1087
|
-
var DescribeSlackWorkspacesResult$ = [3, n0, _DSWRe,
|
|
1088
|
-
0,
|
|
1089
|
-
[_SW, _NTe],
|
|
1090
|
-
[() => SlackWorkspacesList, 0]
|
|
1091
|
-
];
|
|
1092
|
-
var DisassociateFromConfigurationRequest$ = [3, n0, _DFCR,
|
|
1093
|
-
0,
|
|
1094
|
-
[_R, _CC],
|
|
1095
|
-
[0, 0], 2
|
|
1096
|
-
];
|
|
1097
|
-
var DisassociateFromConfigurationResult$ = [3, n0, _DFCRi,
|
|
1098
|
-
0,
|
|
1099
|
-
[],
|
|
1100
|
-
[]
|
|
1101
|
-
];
|
|
1102
|
-
var GetAccountPreferencesException$ = [-3, n0, _GAPE,
|
|
1103
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1104
|
-
[_M],
|
|
1105
|
-
[0]
|
|
1106
|
-
];
|
|
1107
|
-
schema.TypeRegistry.for(n0).registerError(GetAccountPreferencesException$, GetAccountPreferencesException);
|
|
1108
|
-
var GetAccountPreferencesRequest$ = [3, n0, _GAPR,
|
|
1109
|
-
0,
|
|
1110
|
-
[],
|
|
1111
|
-
[]
|
|
1112
|
-
];
|
|
1113
|
-
var GetAccountPreferencesResult$ = [3, n0, _GAPRe,
|
|
1114
|
-
0,
|
|
1115
|
-
[_AP],
|
|
1116
|
-
[() => AccountPreferences$]
|
|
1117
|
-
];
|
|
1118
|
-
var GetCustomActionRequest$ = [3, n0, _GCAR,
|
|
1119
|
-
0,
|
|
1120
|
-
[_CAA],
|
|
1121
|
-
[0], 1
|
|
1122
|
-
];
|
|
1123
|
-
var GetCustomActionResult$ = [3, n0, _GCARe,
|
|
1124
|
-
0,
|
|
1125
|
-
[_CA],
|
|
1126
|
-
[() => CustomAction$]
|
|
1127
|
-
];
|
|
1128
|
-
var GetTeamsChannelConfigurationException$ = [-3, n0, _GTCCE,
|
|
1129
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1130
|
-
[_M],
|
|
1131
|
-
[0]
|
|
1132
|
-
];
|
|
1133
|
-
schema.TypeRegistry.for(n0).registerError(GetTeamsChannelConfigurationException$, GetTeamsChannelConfigurationException);
|
|
1134
|
-
var GetTeamsChannelConfigurationRequest$ = [3, n0, _GTCCR,
|
|
1135
|
-
0,
|
|
1136
|
-
[_CCA],
|
|
1137
|
-
[0], 1
|
|
1138
|
-
];
|
|
1139
|
-
var GetTeamsChannelConfigurationResult$ = [3, n0, _GTCCRe,
|
|
1140
|
-
0,
|
|
1141
|
-
[_CCh],
|
|
1142
|
-
[[() => TeamsChannelConfiguration$, 0]]
|
|
1143
|
-
];
|
|
1144
|
-
var InternalServiceError$ = [-3, n0, _ISE,
|
|
1145
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1146
|
-
[_M],
|
|
1147
|
-
[0]
|
|
1148
|
-
];
|
|
1149
|
-
schema.TypeRegistry.for(n0).registerError(InternalServiceError$, InternalServiceError);
|
|
1150
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
1151
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1152
|
-
[_m],
|
|
1153
|
-
[0]
|
|
1154
|
-
];
|
|
1155
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
1156
|
-
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
1157
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1158
|
-
[_m],
|
|
1159
|
-
[0]
|
|
1160
|
-
];
|
|
1161
|
-
schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
|
|
1162
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1163
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1164
|
-
[_m],
|
|
1165
|
-
[0]
|
|
1166
|
-
];
|
|
1167
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
1168
|
-
var ListAssociationsRequest$ = [3, n0, _LAR,
|
|
1169
|
-
0,
|
|
1170
|
-
[_CC, _MR, _NTe],
|
|
1171
|
-
[0, 1, 0], 1
|
|
1172
|
-
];
|
|
1173
|
-
var ListAssociationsResult$ = [3, n0, _LARi,
|
|
1174
|
-
0,
|
|
1175
|
-
[_As, _NTe],
|
|
1176
|
-
[() => AssociationList, 0], 1
|
|
1177
|
-
];
|
|
1178
|
-
var ListCustomActionsRequest$ = [3, n0, _LCAR,
|
|
1179
|
-
0,
|
|
1180
|
-
[_MR, _NTe],
|
|
1181
|
-
[1, 0]
|
|
1182
|
-
];
|
|
1183
|
-
var ListCustomActionsResult$ = [3, n0, _LCARi,
|
|
1184
|
-
0,
|
|
1185
|
-
[_CAu, _NTe],
|
|
1186
|
-
[64 | 0, 0], 1
|
|
1187
|
-
];
|
|
1188
|
-
var ListMicrosoftTeamsConfiguredTeamsException$ = [-3, n0, _LMTCTE,
|
|
1189
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1190
|
-
[_M],
|
|
1191
|
-
[0]
|
|
1192
|
-
];
|
|
1193
|
-
schema.TypeRegistry.for(n0).registerError(ListMicrosoftTeamsConfiguredTeamsException$, ListMicrosoftTeamsConfiguredTeamsException);
|
|
1194
|
-
var ListMicrosoftTeamsConfiguredTeamsRequest$ = [3, n0, _LMTCTR,
|
|
1195
|
-
0,
|
|
1196
|
-
[_MR, _NTe],
|
|
1197
|
-
[1, 0]
|
|
1198
|
-
];
|
|
1199
|
-
var ListMicrosoftTeamsConfiguredTeamsResult$ = [3, n0, _LMTCTRi,
|
|
1200
|
-
0,
|
|
1201
|
-
[_CTon, _NTe],
|
|
1202
|
-
[() => ConfiguredTeamsList, 0]
|
|
1203
|
-
];
|
|
1204
|
-
var ListMicrosoftTeamsUserIdentitiesException$ = [-3, n0, _LMTUIE,
|
|
1205
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1206
|
-
[_M],
|
|
1207
|
-
[0]
|
|
1208
|
-
];
|
|
1209
|
-
schema.TypeRegistry.for(n0).registerError(ListMicrosoftTeamsUserIdentitiesException$, ListMicrosoftTeamsUserIdentitiesException);
|
|
1210
|
-
var ListMicrosoftTeamsUserIdentitiesRequest$ = [3, n0, _LMTUIR,
|
|
1211
|
-
0,
|
|
1212
|
-
[_CCA, _NTe, _MR],
|
|
1213
|
-
[0, 0, 1]
|
|
1214
|
-
];
|
|
1215
|
-
var ListMicrosoftTeamsUserIdentitiesResult$ = [3, n0, _LMTUIRi,
|
|
1216
|
-
0,
|
|
1217
|
-
[_TUI, _NTe],
|
|
1218
|
-
[() => TeamsUserIdentitiesList, 0]
|
|
1219
|
-
];
|
|
1220
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1221
|
-
0,
|
|
1222
|
-
[_RARN],
|
|
1223
|
-
[0], 1
|
|
1224
|
-
];
|
|
1225
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1226
|
-
0,
|
|
1227
|
-
[_T],
|
|
1228
|
-
[() => TagList]
|
|
1229
|
-
];
|
|
1230
|
-
var ListTeamsChannelConfigurationsException$ = [-3, n0, _LTCCE,
|
|
1231
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1232
|
-
[_M],
|
|
1233
|
-
[0]
|
|
1234
|
-
];
|
|
1235
|
-
schema.TypeRegistry.for(n0).registerError(ListTeamsChannelConfigurationsException$, ListTeamsChannelConfigurationsException);
|
|
1236
|
-
var ListTeamsChannelConfigurationsRequest$ = [3, n0, _LTCCR,
|
|
1237
|
-
0,
|
|
1238
|
-
[_MR, _NTe, _TIe],
|
|
1239
|
-
[1, 0, 0]
|
|
1240
|
-
];
|
|
1241
|
-
var ListTeamsChannelConfigurationsResult$ = [3, n0, _LTCCRi,
|
|
1242
|
-
0,
|
|
1243
|
-
[_NTe, _TCC],
|
|
1244
|
-
[0, [() => TeamChannelConfigurationsList, 0]]
|
|
1245
|
-
];
|
|
1246
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1247
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1248
|
-
[_M],
|
|
1249
|
-
[0]
|
|
1250
|
-
];
|
|
1251
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1252
|
-
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
1253
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1254
|
-
[_m],
|
|
1255
|
-
[0]
|
|
1256
|
-
];
|
|
1257
|
-
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
1258
|
-
var SlackChannelConfiguration$ = [3, n0, _SCCl,
|
|
1259
|
-
0,
|
|
1260
|
-
[_STN, _STI, _SCI, _SCN, _CCA, _IRA, _STA, _CN, _LL, _GPA, _UAR, _T, _S, _SR],
|
|
1261
|
-
[0, 0, 0, [() => SlackChannelDisplayName, 0], 0, 0, 64 | 0, 0, 0, 64 | 0, 2, () => Tags, 0, 0], 7
|
|
1262
|
-
];
|
|
1263
|
-
var SlackUserIdentity$ = [3, n0, _SUIla,
|
|
1264
|
-
0,
|
|
1265
|
-
[_IRA, _CCA, _STI, _SUI, _AUI],
|
|
1266
|
-
[0, 0, 0, 0, 0], 4
|
|
1267
|
-
];
|
|
1268
|
-
var SlackWorkspace$ = [3, n0, _SWl,
|
|
1269
|
-
0,
|
|
1270
|
-
[_STI, _STN, _S, _SR],
|
|
1271
|
-
[0, 0, 0, 0], 2
|
|
1272
|
-
];
|
|
1273
|
-
var Tag$ = [3, n0, _Ta,
|
|
1274
|
-
0,
|
|
1275
|
-
[_TK, _TV],
|
|
1276
|
-
[0, 0], 2
|
|
1277
|
-
];
|
|
1278
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1279
|
-
0,
|
|
1280
|
-
[_RARN, _T],
|
|
1281
|
-
[0, () => TagList], 2
|
|
1282
|
-
];
|
|
1283
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1284
|
-
0,
|
|
1285
|
-
[],
|
|
1286
|
-
[]
|
|
1287
|
-
];
|
|
1288
|
-
var TeamsChannelConfiguration$ = [3, n0, _TCCe,
|
|
1289
|
-
0,
|
|
1290
|
-
[_CI, _TIe, _TI, _CCA, _IRA, _STA, _CNh, _TN, _CN, _LL, _GPA, _UAR, _T, _S, _SR],
|
|
1291
|
-
[0, 0, 0, 0, 0, 64 | 0, [() => TeamsChannelName, 0], [() => TeamName, 0], 0, 0, 64 | 0, 2, () => Tags, 0, 0], 6
|
|
1292
|
-
];
|
|
1293
|
-
var TeamsUserIdentity$ = [3, n0, _TUIe,
|
|
1294
|
-
0,
|
|
1295
|
-
[_IRA, _CCA, _TIe, _UI, _AUI, _TCI, _TTI],
|
|
1296
|
-
[0, 0, 0, 0, 0, 0, 0], 3
|
|
1297
|
-
];
|
|
1298
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
1299
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1300
|
-
[_m],
|
|
1301
|
-
[0]
|
|
1302
|
-
];
|
|
1303
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
1304
|
-
var UnauthorizedException$ = [-3, n0, _UE,
|
|
1305
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1306
|
-
[_m],
|
|
1307
|
-
[0]
|
|
1308
|
-
];
|
|
1309
|
-
schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
|
|
1310
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1311
|
-
0,
|
|
1312
|
-
[_RARN, _TKa],
|
|
1313
|
-
[0, 64 | 0], 2
|
|
1314
|
-
];
|
|
1315
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1316
|
-
0,
|
|
1317
|
-
[],
|
|
1318
|
-
[]
|
|
1319
|
-
];
|
|
1320
|
-
var UpdateAccountPreferencesException$ = [-3, n0, _UAPE,
|
|
1321
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1322
|
-
[_M],
|
|
1323
|
-
[0]
|
|
1324
|
-
];
|
|
1325
|
-
schema.TypeRegistry.for(n0).registerError(UpdateAccountPreferencesException$, UpdateAccountPreferencesException);
|
|
1326
|
-
var UpdateAccountPreferencesRequest$ = [3, n0, _UAPR,
|
|
1327
|
-
0,
|
|
1328
|
-
[_UAR, _TDCE],
|
|
1329
|
-
[2, 2]
|
|
1330
|
-
];
|
|
1331
|
-
var UpdateAccountPreferencesResult$ = [3, n0, _UAPRp,
|
|
1332
|
-
0,
|
|
1333
|
-
[_AP],
|
|
1334
|
-
[() => AccountPreferences$]
|
|
1335
|
-
];
|
|
1336
|
-
var UpdateChimeWebhookConfigurationException$ = [-3, n0, _UCWCE,
|
|
1337
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1338
|
-
[_M],
|
|
1339
|
-
[0]
|
|
1340
|
-
];
|
|
1341
|
-
schema.TypeRegistry.for(n0).registerError(UpdateChimeWebhookConfigurationException$, UpdateChimeWebhookConfigurationException);
|
|
1342
|
-
var UpdateChimeWebhookConfigurationRequest$ = [3, n0, _UCWCR,
|
|
1343
|
-
0,
|
|
1344
|
-
[_CCA, _WD, _WU, _STA, _IRA, _LL],
|
|
1345
|
-
[0, [() => ChimeWebhookDescription, 0], [() => ChimeWebhookUrl, 0], 64 | 0, 0, 0], 1
|
|
1346
|
-
];
|
|
1347
|
-
var UpdateChimeWebhookConfigurationResult$ = [3, n0, _UCWCRp,
|
|
1348
|
-
0,
|
|
1349
|
-
[_WC],
|
|
1350
|
-
[[() => ChimeWebhookConfiguration$, 0]]
|
|
1351
|
-
];
|
|
1352
|
-
var UpdateCustomActionRequest$ = [3, n0, _UCAR,
|
|
1353
|
-
0,
|
|
1354
|
-
[_CAA, _D, _ANl, _A],
|
|
1355
|
-
[0, () => CustomActionDefinition$, 0, () => CustomActionAttachmentList], 2
|
|
1356
|
-
];
|
|
1357
|
-
var UpdateCustomActionResult$ = [3, n0, _UCARp,
|
|
1358
|
-
0,
|
|
1359
|
-
[_CAA],
|
|
1360
|
-
[0], 1
|
|
1361
|
-
];
|
|
1362
|
-
var UpdateSlackChannelConfigurationException$ = [-3, n0, _USCCE,
|
|
1363
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1364
|
-
[_M],
|
|
1365
|
-
[0]
|
|
1366
|
-
];
|
|
1367
|
-
schema.TypeRegistry.for(n0).registerError(UpdateSlackChannelConfigurationException$, UpdateSlackChannelConfigurationException);
|
|
1368
|
-
var UpdateSlackChannelConfigurationRequest$ = [3, n0, _USCCR,
|
|
1369
|
-
0,
|
|
1370
|
-
[_CCA, _SCI, _SCN, _STA, _IRA, _LL, _GPA, _UAR],
|
|
1371
|
-
[0, 0, [() => SlackChannelDisplayName, 0], 64 | 0, 0, 0, 64 | 0, 2], 2
|
|
1372
|
-
];
|
|
1373
|
-
var UpdateSlackChannelConfigurationResult$ = [3, n0, _USCCRp,
|
|
1374
|
-
0,
|
|
1375
|
-
[_CCh],
|
|
1376
|
-
[[() => SlackChannelConfiguration$, 0]]
|
|
1377
|
-
];
|
|
1378
|
-
var UpdateTeamsChannelConfigurationException$ = [-3, n0, _UTCCE,
|
|
1379
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1380
|
-
[_M],
|
|
1381
|
-
[0]
|
|
1382
|
-
];
|
|
1383
|
-
schema.TypeRegistry.for(n0).registerError(UpdateTeamsChannelConfigurationException$, UpdateTeamsChannelConfigurationException);
|
|
1384
|
-
var UpdateTeamsChannelConfigurationRequest$ = [3, n0, _UTCCR,
|
|
1385
|
-
0,
|
|
1386
|
-
[_CCA, _CI, _CNh, _STA, _IRA, _LL, _GPA, _UAR],
|
|
1387
|
-
[0, 0, [() => TeamsChannelName, 0], 64 | 0, 0, 0, 64 | 0, 2], 2
|
|
1388
|
-
];
|
|
1389
|
-
var UpdateTeamsChannelConfigurationResult$ = [3, n0, _UTCCRp,
|
|
1390
|
-
0,
|
|
1391
|
-
[_CCh],
|
|
1392
|
-
[[() => TeamsChannelConfiguration$, 0]]
|
|
1393
|
-
];
|
|
1394
|
-
var ChatbotServiceException$ = [-3, _sm, "ChatbotServiceException", 0, [], []];
|
|
1395
|
-
schema.TypeRegistry.for(_sm).registerError(ChatbotServiceException$, ChatbotServiceException);
|
|
1396
|
-
var AssociationList = [1, n0, _ALs,
|
|
1397
|
-
0, () => AssociationListing$
|
|
1398
|
-
];
|
|
1399
|
-
var ChimeWebhookConfigurationList = [1, n0, _CWCL,
|
|
1400
|
-
0, [() => ChimeWebhookConfiguration$,
|
|
1401
|
-
0]
|
|
1402
|
-
];
|
|
1403
|
-
var ConfiguredTeamsList = [1, n0, _CTL,
|
|
1404
|
-
0, () => ConfiguredTeam$
|
|
1405
|
-
];
|
|
1406
|
-
var CustomActionAttachmentCriteriaList = [1, n0, _CAACL,
|
|
1407
|
-
0, () => CustomActionAttachmentCriteria$
|
|
1408
|
-
];
|
|
1409
|
-
var CustomActionAttachmentList = [1, n0, _CAAL,
|
|
1410
|
-
0, () => CustomActionAttachment$
|
|
1411
|
-
];
|
|
1412
|
-
var SlackChannelConfigurationList = [1, n0, _SCCL,
|
|
1413
|
-
0, [() => SlackChannelConfiguration$,
|
|
1414
|
-
0]
|
|
1415
|
-
];
|
|
1416
|
-
var SlackUserIdentitiesList = [1, n0, _SUIL,
|
|
1417
|
-
0, () => SlackUserIdentity$
|
|
1418
|
-
];
|
|
1419
|
-
var SlackWorkspacesList = [1, n0, _SWL,
|
|
1420
|
-
0, () => SlackWorkspace$
|
|
1421
|
-
];
|
|
1422
|
-
var TagList = [1, n0, _TL,
|
|
1423
|
-
0, () => Tag$
|
|
1424
|
-
];
|
|
1425
|
-
var Tags = [1, n0, _T,
|
|
1426
|
-
0, () => Tag$
|
|
1427
|
-
];
|
|
1428
|
-
var TeamChannelConfigurationsList = [1, n0, _TCCL,
|
|
1429
|
-
0, [() => TeamsChannelConfiguration$,
|
|
1430
|
-
0]
|
|
1431
|
-
];
|
|
1432
|
-
var TeamsUserIdentitiesList = [1, n0, _TUIL,
|
|
1433
|
-
0, () => TeamsUserIdentity$
|
|
1434
|
-
];
|
|
1435
|
-
var AssociateToConfiguration$ = [9, n0, _ATC,
|
|
1436
|
-
{ [_h]: ["POST", "/associate-to-configuration", 201] }, () => AssociateToConfigurationRequest$, () => AssociateToConfigurationResult$
|
|
1437
|
-
];
|
|
1438
|
-
var CreateChimeWebhookConfiguration$ = [9, n0, _CCWC,
|
|
1439
|
-
{ [_h]: ["POST", "/create-chime-webhook-configuration", 201] }, () => CreateChimeWebhookConfigurationRequest$, () => CreateChimeWebhookConfigurationResult$
|
|
1440
|
-
];
|
|
1441
|
-
var CreateCustomAction$ = [9, n0, _CCAr,
|
|
1442
|
-
{ [_h]: ["POST", "/create-custom-action", 201] }, () => CreateCustomActionRequest$, () => CreateCustomActionResult$
|
|
1443
|
-
];
|
|
1444
|
-
var CreateMicrosoftTeamsChannelConfiguration$ = [9, n0, _CMTCC,
|
|
1445
|
-
{ [_h]: ["POST", "/create-ms-teams-channel-configuration", 201] }, () => CreateTeamsChannelConfigurationRequest$, () => CreateTeamsChannelConfigurationResult$
|
|
1446
|
-
];
|
|
1447
|
-
var CreateSlackChannelConfiguration$ = [9, n0, _CSCC,
|
|
1448
|
-
{ [_h]: ["POST", "/create-slack-channel-configuration", 201] }, () => CreateSlackChannelConfigurationRequest$, () => CreateSlackChannelConfigurationResult$
|
|
1449
|
-
];
|
|
1450
|
-
var DeleteChimeWebhookConfiguration$ = [9, n0, _DCWC,
|
|
1451
|
-
{ [_h]: ["POST", "/delete-chime-webhook-configuration", 204] }, () => DeleteChimeWebhookConfigurationRequest$, () => DeleteChimeWebhookConfigurationResult$
|
|
1452
|
-
];
|
|
1453
|
-
var DeleteCustomAction$ = [9, n0, _DCA,
|
|
1454
|
-
{ [_h]: ["POST", "/delete-custom-action", 204] }, () => DeleteCustomActionRequest$, () => DeleteCustomActionResult$
|
|
1455
|
-
];
|
|
1456
|
-
var DeleteMicrosoftTeamsChannelConfiguration$ = [9, n0, _DMTCC,
|
|
1457
|
-
{ [_h]: ["POST", "/delete-ms-teams-channel-configuration", 204] }, () => DeleteTeamsChannelConfigurationRequest$, () => DeleteTeamsChannelConfigurationResult$
|
|
1458
|
-
];
|
|
1459
|
-
var DeleteMicrosoftTeamsConfiguredTeam$ = [9, n0, _DMTCT,
|
|
1460
|
-
{ [_h]: ["POST", "/delete-ms-teams-configured-teams", 204] }, () => DeleteTeamsConfiguredTeamRequest$, () => DeleteTeamsConfiguredTeamResult$
|
|
1461
|
-
];
|
|
1462
|
-
var DeleteMicrosoftTeamsUserIdentity$ = [9, n0, _DMTUI,
|
|
1463
|
-
{ [_h]: ["POST", "/delete-ms-teams-user-identity", 204] }, () => DeleteMicrosoftTeamsUserIdentityRequest$, () => DeleteMicrosoftTeamsUserIdentityResult$
|
|
1464
|
-
];
|
|
1465
|
-
var DeleteSlackChannelConfiguration$ = [9, n0, _DSCC,
|
|
1466
|
-
{ [_h]: ["POST", "/delete-slack-channel-configuration", 204] }, () => DeleteSlackChannelConfigurationRequest$, () => DeleteSlackChannelConfigurationResult$
|
|
1467
|
-
];
|
|
1468
|
-
var DeleteSlackUserIdentity$ = [9, n0, _DSUI,
|
|
1469
|
-
{ [_h]: ["POST", "/delete-slack-user-identity", 204] }, () => DeleteSlackUserIdentityRequest$, () => DeleteSlackUserIdentityResult$
|
|
1470
|
-
];
|
|
1471
|
-
var DeleteSlackWorkspaceAuthorization$ = [9, n0, _DSWA,
|
|
1472
|
-
{ [_h]: ["POST", "/delete-slack-workspace-authorization", 204] }, () => DeleteSlackWorkspaceAuthorizationRequest$, () => DeleteSlackWorkspaceAuthorizationResult$
|
|
1473
|
-
];
|
|
1474
|
-
var DescribeChimeWebhookConfigurations$ = [9, n0, _DCWCe,
|
|
1475
|
-
{ [_h]: ["POST", "/describe-chime-webhook-configurations", 200] }, () => DescribeChimeWebhookConfigurationsRequest$, () => DescribeChimeWebhookConfigurationsResult$
|
|
1476
|
-
];
|
|
1477
|
-
var DescribeSlackChannelConfigurations$ = [9, n0, _DSCCe,
|
|
1478
|
-
{ [_h]: ["POST", "/describe-slack-channel-configurations", 200] }, () => DescribeSlackChannelConfigurationsRequest$, () => DescribeSlackChannelConfigurationsResult$
|
|
1479
|
-
];
|
|
1480
|
-
var DescribeSlackUserIdentities$ = [9, n0, _DSUIe,
|
|
1481
|
-
{ [_h]: ["POST", "/describe-slack-user-identities", 200] }, () => DescribeSlackUserIdentitiesRequest$, () => DescribeSlackUserIdentitiesResult$
|
|
1482
|
-
];
|
|
1483
|
-
var DescribeSlackWorkspaces$ = [9, n0, _DSW,
|
|
1484
|
-
{ [_h]: ["POST", "/describe-slack-workspaces", 200] }, () => DescribeSlackWorkspacesRequest$, () => DescribeSlackWorkspacesResult$
|
|
1485
|
-
];
|
|
1486
|
-
var DisassociateFromConfiguration$ = [9, n0, _DFC,
|
|
1487
|
-
{ [_h]: ["POST", "/disassociate-from-configuration", 204] }, () => DisassociateFromConfigurationRequest$, () => DisassociateFromConfigurationResult$
|
|
1488
|
-
];
|
|
1489
|
-
var GetAccountPreferences$ = [9, n0, _GAP,
|
|
1490
|
-
{ [_h]: ["POST", "/get-account-preferences", 200] }, () => GetAccountPreferencesRequest$, () => GetAccountPreferencesResult$
|
|
1491
|
-
];
|
|
1492
|
-
var GetCustomAction$ = [9, n0, _GCA,
|
|
1493
|
-
{ [_h]: ["POST", "/get-custom-action", 200] }, () => GetCustomActionRequest$, () => GetCustomActionResult$
|
|
1494
|
-
];
|
|
1495
|
-
var GetMicrosoftTeamsChannelConfiguration$ = [9, n0, _GMTCC,
|
|
1496
|
-
{ [_h]: ["POST", "/get-ms-teams-channel-configuration", 200] }, () => GetTeamsChannelConfigurationRequest$, () => GetTeamsChannelConfigurationResult$
|
|
1497
|
-
];
|
|
1498
|
-
var ListAssociations$ = [9, n0, _LA,
|
|
1499
|
-
{ [_h]: ["POST", "/list-associations", 200] }, () => ListAssociationsRequest$, () => ListAssociationsResult$
|
|
1500
|
-
];
|
|
1501
|
-
var ListCustomActions$ = [9, n0, _LCA,
|
|
1502
|
-
{ [_h]: ["POST", "/list-custom-actions", 200] }, () => ListCustomActionsRequest$, () => ListCustomActionsResult$
|
|
1503
|
-
];
|
|
1504
|
-
var ListMicrosoftTeamsChannelConfigurations$ = [9, n0, _LMTCC,
|
|
1505
|
-
{ [_h]: ["POST", "/list-ms-teams-channel-configurations", 200] }, () => ListTeamsChannelConfigurationsRequest$, () => ListTeamsChannelConfigurationsResult$
|
|
1506
|
-
];
|
|
1507
|
-
var ListMicrosoftTeamsConfiguredTeams$ = [9, n0, _LMTCT,
|
|
1508
|
-
{ [_h]: ["POST", "/list-ms-teams-configured-teams", 200] }, () => ListMicrosoftTeamsConfiguredTeamsRequest$, () => ListMicrosoftTeamsConfiguredTeamsResult$
|
|
1509
|
-
];
|
|
1510
|
-
var ListMicrosoftTeamsUserIdentities$ = [9, n0, _LMTUI,
|
|
1511
|
-
{ [_h]: ["POST", "/list-ms-teams-user-identities", 200] }, () => ListMicrosoftTeamsUserIdentitiesRequest$, () => ListMicrosoftTeamsUserIdentitiesResult$
|
|
1512
|
-
];
|
|
1513
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1514
|
-
{ [_h]: ["POST", "/list-tags-for-resource", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1515
|
-
];
|
|
1516
|
-
var TagResource$ = [9, n0, _TR,
|
|
1517
|
-
{ [_h]: ["POST", "/tag-resource", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1518
|
-
];
|
|
1519
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1520
|
-
{ [_h]: ["POST", "/untag-resource", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1521
|
-
];
|
|
1522
|
-
var UpdateAccountPreferences$ = [9, n0, _UAP,
|
|
1523
|
-
{ [_h]: ["POST", "/update-account-preferences", 200] }, () => UpdateAccountPreferencesRequest$, () => UpdateAccountPreferencesResult$
|
|
1524
|
-
];
|
|
1525
|
-
var UpdateChimeWebhookConfiguration$ = [9, n0, _UCWC,
|
|
1526
|
-
{ [_h]: ["POST", "/update-chime-webhook-configuration", 200] }, () => UpdateChimeWebhookConfigurationRequest$, () => UpdateChimeWebhookConfigurationResult$
|
|
1527
|
-
];
|
|
1528
|
-
var UpdateCustomAction$ = [9, n0, _UCA,
|
|
1529
|
-
{ [_h]: ["POST", "/update-custom-action", 200] }, () => UpdateCustomActionRequest$, () => UpdateCustomActionResult$
|
|
1530
|
-
];
|
|
1531
|
-
var UpdateMicrosoftTeamsChannelConfiguration$ = [9, n0, _UMTCC,
|
|
1532
|
-
{ [_h]: ["POST", "/update-ms-teams-channel-configuration", 200] }, () => UpdateTeamsChannelConfigurationRequest$, () => UpdateTeamsChannelConfigurationResult$
|
|
1533
|
-
];
|
|
1534
|
-
var UpdateSlackChannelConfiguration$ = [9, n0, _USCC,
|
|
1535
|
-
{ [_h]: ["POST", "/update-slack-channel-configuration", 200] }, () => UpdateSlackChannelConfigurationRequest$, () => UpdateSlackChannelConfigurationResult$
|
|
1536
|
-
];
|
|
1537
|
-
|
|
1538
116
|
class AssociateToConfigurationCommand extends smithyClient.Command
|
|
1539
117
|
.classBuilder()
|
|
1540
118
|
.ep(commonParams)
|
|
@@ -1543,7 +121,7 @@ class AssociateToConfigurationCommand extends smithyClient.Command
|
|
|
1543
121
|
})
|
|
1544
122
|
.s("WheatleyOrchestration_20171011", "AssociateToConfiguration", {})
|
|
1545
123
|
.n("ChatbotClient", "AssociateToConfigurationCommand")
|
|
1546
|
-
.sc(AssociateToConfiguration$)
|
|
124
|
+
.sc(schemas_0.AssociateToConfiguration$)
|
|
1547
125
|
.build() {
|
|
1548
126
|
}
|
|
1549
127
|
|
|
@@ -1555,7 +133,7 @@ class CreateChimeWebhookConfigurationCommand extends smithyClient.Command
|
|
|
1555
133
|
})
|
|
1556
134
|
.s("WheatleyOrchestration_20171011", "CreateChimeWebhookConfiguration", {})
|
|
1557
135
|
.n("ChatbotClient", "CreateChimeWebhookConfigurationCommand")
|
|
1558
|
-
.sc(CreateChimeWebhookConfiguration$)
|
|
136
|
+
.sc(schemas_0.CreateChimeWebhookConfiguration$)
|
|
1559
137
|
.build() {
|
|
1560
138
|
}
|
|
1561
139
|
|
|
@@ -1567,7 +145,7 @@ class CreateCustomActionCommand extends smithyClient.Command
|
|
|
1567
145
|
})
|
|
1568
146
|
.s("WheatleyOrchestration_20171011", "CreateCustomAction", {})
|
|
1569
147
|
.n("ChatbotClient", "CreateCustomActionCommand")
|
|
1570
|
-
.sc(CreateCustomAction$)
|
|
148
|
+
.sc(schemas_0.CreateCustomAction$)
|
|
1571
149
|
.build() {
|
|
1572
150
|
}
|
|
1573
151
|
|
|
@@ -1579,7 +157,7 @@ class CreateMicrosoftTeamsChannelConfigurationCommand extends smithyClient.Comma
|
|
|
1579
157
|
})
|
|
1580
158
|
.s("WheatleyOrchestration_20171011", "CreateMicrosoftTeamsChannelConfiguration", {})
|
|
1581
159
|
.n("ChatbotClient", "CreateMicrosoftTeamsChannelConfigurationCommand")
|
|
1582
|
-
.sc(CreateMicrosoftTeamsChannelConfiguration$)
|
|
160
|
+
.sc(schemas_0.CreateMicrosoftTeamsChannelConfiguration$)
|
|
1583
161
|
.build() {
|
|
1584
162
|
}
|
|
1585
163
|
|
|
@@ -1591,7 +169,7 @@ class CreateSlackChannelConfigurationCommand extends smithyClient.Command
|
|
|
1591
169
|
})
|
|
1592
170
|
.s("WheatleyOrchestration_20171011", "CreateSlackChannelConfiguration", {})
|
|
1593
171
|
.n("ChatbotClient", "CreateSlackChannelConfigurationCommand")
|
|
1594
|
-
.sc(CreateSlackChannelConfiguration$)
|
|
172
|
+
.sc(schemas_0.CreateSlackChannelConfiguration$)
|
|
1595
173
|
.build() {
|
|
1596
174
|
}
|
|
1597
175
|
|
|
@@ -1603,7 +181,7 @@ class DeleteChimeWebhookConfigurationCommand extends smithyClient.Command
|
|
|
1603
181
|
})
|
|
1604
182
|
.s("WheatleyOrchestration_20171011", "DeleteChimeWebhookConfiguration", {})
|
|
1605
183
|
.n("ChatbotClient", "DeleteChimeWebhookConfigurationCommand")
|
|
1606
|
-
.sc(DeleteChimeWebhookConfiguration$)
|
|
184
|
+
.sc(schemas_0.DeleteChimeWebhookConfiguration$)
|
|
1607
185
|
.build() {
|
|
1608
186
|
}
|
|
1609
187
|
|
|
@@ -1615,7 +193,7 @@ class DeleteCustomActionCommand extends smithyClient.Command
|
|
|
1615
193
|
})
|
|
1616
194
|
.s("WheatleyOrchestration_20171011", "DeleteCustomAction", {})
|
|
1617
195
|
.n("ChatbotClient", "DeleteCustomActionCommand")
|
|
1618
|
-
.sc(DeleteCustomAction$)
|
|
196
|
+
.sc(schemas_0.DeleteCustomAction$)
|
|
1619
197
|
.build() {
|
|
1620
198
|
}
|
|
1621
199
|
|
|
@@ -1627,7 +205,7 @@ class DeleteMicrosoftTeamsChannelConfigurationCommand extends smithyClient.Comma
|
|
|
1627
205
|
})
|
|
1628
206
|
.s("WheatleyOrchestration_20171011", "DeleteMicrosoftTeamsChannelConfiguration", {})
|
|
1629
207
|
.n("ChatbotClient", "DeleteMicrosoftTeamsChannelConfigurationCommand")
|
|
1630
|
-
.sc(DeleteMicrosoftTeamsChannelConfiguration$)
|
|
208
|
+
.sc(schemas_0.DeleteMicrosoftTeamsChannelConfiguration$)
|
|
1631
209
|
.build() {
|
|
1632
210
|
}
|
|
1633
211
|
|
|
@@ -1639,7 +217,7 @@ class DeleteMicrosoftTeamsConfiguredTeamCommand extends smithyClient.Command
|
|
|
1639
217
|
})
|
|
1640
218
|
.s("WheatleyOrchestration_20171011", "DeleteMicrosoftTeamsConfiguredTeam", {})
|
|
1641
219
|
.n("ChatbotClient", "DeleteMicrosoftTeamsConfiguredTeamCommand")
|
|
1642
|
-
.sc(DeleteMicrosoftTeamsConfiguredTeam$)
|
|
220
|
+
.sc(schemas_0.DeleteMicrosoftTeamsConfiguredTeam$)
|
|
1643
221
|
.build() {
|
|
1644
222
|
}
|
|
1645
223
|
|
|
@@ -1651,7 +229,7 @@ class DeleteMicrosoftTeamsUserIdentityCommand extends smithyClient.Command
|
|
|
1651
229
|
})
|
|
1652
230
|
.s("WheatleyOrchestration_20171011", "DeleteMicrosoftTeamsUserIdentity", {})
|
|
1653
231
|
.n("ChatbotClient", "DeleteMicrosoftTeamsUserIdentityCommand")
|
|
1654
|
-
.sc(DeleteMicrosoftTeamsUserIdentity$)
|
|
232
|
+
.sc(schemas_0.DeleteMicrosoftTeamsUserIdentity$)
|
|
1655
233
|
.build() {
|
|
1656
234
|
}
|
|
1657
235
|
|
|
@@ -1663,7 +241,7 @@ class DeleteSlackChannelConfigurationCommand extends smithyClient.Command
|
|
|
1663
241
|
})
|
|
1664
242
|
.s("WheatleyOrchestration_20171011", "DeleteSlackChannelConfiguration", {})
|
|
1665
243
|
.n("ChatbotClient", "DeleteSlackChannelConfigurationCommand")
|
|
1666
|
-
.sc(DeleteSlackChannelConfiguration$)
|
|
244
|
+
.sc(schemas_0.DeleteSlackChannelConfiguration$)
|
|
1667
245
|
.build() {
|
|
1668
246
|
}
|
|
1669
247
|
|
|
@@ -1675,7 +253,7 @@ class DeleteSlackUserIdentityCommand extends smithyClient.Command
|
|
|
1675
253
|
})
|
|
1676
254
|
.s("WheatleyOrchestration_20171011", "DeleteSlackUserIdentity", {})
|
|
1677
255
|
.n("ChatbotClient", "DeleteSlackUserIdentityCommand")
|
|
1678
|
-
.sc(DeleteSlackUserIdentity$)
|
|
256
|
+
.sc(schemas_0.DeleteSlackUserIdentity$)
|
|
1679
257
|
.build() {
|
|
1680
258
|
}
|
|
1681
259
|
|
|
@@ -1687,7 +265,7 @@ class DeleteSlackWorkspaceAuthorizationCommand extends smithyClient.Command
|
|
|
1687
265
|
})
|
|
1688
266
|
.s("WheatleyOrchestration_20171011", "DeleteSlackWorkspaceAuthorization", {})
|
|
1689
267
|
.n("ChatbotClient", "DeleteSlackWorkspaceAuthorizationCommand")
|
|
1690
|
-
.sc(DeleteSlackWorkspaceAuthorization$)
|
|
268
|
+
.sc(schemas_0.DeleteSlackWorkspaceAuthorization$)
|
|
1691
269
|
.build() {
|
|
1692
270
|
}
|
|
1693
271
|
|
|
@@ -1699,7 +277,7 @@ class DescribeChimeWebhookConfigurationsCommand extends smithyClient.Command
|
|
|
1699
277
|
})
|
|
1700
278
|
.s("WheatleyOrchestration_20171011", "DescribeChimeWebhookConfigurations", {})
|
|
1701
279
|
.n("ChatbotClient", "DescribeChimeWebhookConfigurationsCommand")
|
|
1702
|
-
.sc(DescribeChimeWebhookConfigurations$)
|
|
280
|
+
.sc(schemas_0.DescribeChimeWebhookConfigurations$)
|
|
1703
281
|
.build() {
|
|
1704
282
|
}
|
|
1705
283
|
|
|
@@ -1711,7 +289,7 @@ class DescribeSlackChannelConfigurationsCommand extends smithyClient.Command
|
|
|
1711
289
|
})
|
|
1712
290
|
.s("WheatleyOrchestration_20171011", "DescribeSlackChannelConfigurations", {})
|
|
1713
291
|
.n("ChatbotClient", "DescribeSlackChannelConfigurationsCommand")
|
|
1714
|
-
.sc(DescribeSlackChannelConfigurations$)
|
|
292
|
+
.sc(schemas_0.DescribeSlackChannelConfigurations$)
|
|
1715
293
|
.build() {
|
|
1716
294
|
}
|
|
1717
295
|
|
|
@@ -1723,7 +301,7 @@ class DescribeSlackUserIdentitiesCommand extends smithyClient.Command
|
|
|
1723
301
|
})
|
|
1724
302
|
.s("WheatleyOrchestration_20171011", "DescribeSlackUserIdentities", {})
|
|
1725
303
|
.n("ChatbotClient", "DescribeSlackUserIdentitiesCommand")
|
|
1726
|
-
.sc(DescribeSlackUserIdentities$)
|
|
304
|
+
.sc(schemas_0.DescribeSlackUserIdentities$)
|
|
1727
305
|
.build() {
|
|
1728
306
|
}
|
|
1729
307
|
|
|
@@ -1735,7 +313,7 @@ class DescribeSlackWorkspacesCommand extends smithyClient.Command
|
|
|
1735
313
|
})
|
|
1736
314
|
.s("WheatleyOrchestration_20171011", "DescribeSlackWorkspaces", {})
|
|
1737
315
|
.n("ChatbotClient", "DescribeSlackWorkspacesCommand")
|
|
1738
|
-
.sc(DescribeSlackWorkspaces$)
|
|
316
|
+
.sc(schemas_0.DescribeSlackWorkspaces$)
|
|
1739
317
|
.build() {
|
|
1740
318
|
}
|
|
1741
319
|
|
|
@@ -1747,7 +325,7 @@ class DisassociateFromConfigurationCommand extends smithyClient.Command
|
|
|
1747
325
|
})
|
|
1748
326
|
.s("WheatleyOrchestration_20171011", "DisassociateFromConfiguration", {})
|
|
1749
327
|
.n("ChatbotClient", "DisassociateFromConfigurationCommand")
|
|
1750
|
-
.sc(DisassociateFromConfiguration$)
|
|
328
|
+
.sc(schemas_0.DisassociateFromConfiguration$)
|
|
1751
329
|
.build() {
|
|
1752
330
|
}
|
|
1753
331
|
|
|
@@ -1759,7 +337,7 @@ class GetAccountPreferencesCommand extends smithyClient.Command
|
|
|
1759
337
|
})
|
|
1760
338
|
.s("WheatleyOrchestration_20171011", "GetAccountPreferences", {})
|
|
1761
339
|
.n("ChatbotClient", "GetAccountPreferencesCommand")
|
|
1762
|
-
.sc(GetAccountPreferences$)
|
|
340
|
+
.sc(schemas_0.GetAccountPreferences$)
|
|
1763
341
|
.build() {
|
|
1764
342
|
}
|
|
1765
343
|
|
|
@@ -1771,7 +349,7 @@ class GetCustomActionCommand extends smithyClient.Command
|
|
|
1771
349
|
})
|
|
1772
350
|
.s("WheatleyOrchestration_20171011", "GetCustomAction", {})
|
|
1773
351
|
.n("ChatbotClient", "GetCustomActionCommand")
|
|
1774
|
-
.sc(GetCustomAction$)
|
|
352
|
+
.sc(schemas_0.GetCustomAction$)
|
|
1775
353
|
.build() {
|
|
1776
354
|
}
|
|
1777
355
|
|
|
@@ -1783,7 +361,7 @@ class GetMicrosoftTeamsChannelConfigurationCommand extends smithyClient.Command
|
|
|
1783
361
|
})
|
|
1784
362
|
.s("WheatleyOrchestration_20171011", "GetMicrosoftTeamsChannelConfiguration", {})
|
|
1785
363
|
.n("ChatbotClient", "GetMicrosoftTeamsChannelConfigurationCommand")
|
|
1786
|
-
.sc(GetMicrosoftTeamsChannelConfiguration$)
|
|
364
|
+
.sc(schemas_0.GetMicrosoftTeamsChannelConfiguration$)
|
|
1787
365
|
.build() {
|
|
1788
366
|
}
|
|
1789
367
|
|
|
@@ -1795,7 +373,7 @@ class ListAssociationsCommand extends smithyClient.Command
|
|
|
1795
373
|
})
|
|
1796
374
|
.s("WheatleyOrchestration_20171011", "ListAssociations", {})
|
|
1797
375
|
.n("ChatbotClient", "ListAssociationsCommand")
|
|
1798
|
-
.sc(ListAssociations$)
|
|
376
|
+
.sc(schemas_0.ListAssociations$)
|
|
1799
377
|
.build() {
|
|
1800
378
|
}
|
|
1801
379
|
|
|
@@ -1807,7 +385,7 @@ class ListCustomActionsCommand extends smithyClient.Command
|
|
|
1807
385
|
})
|
|
1808
386
|
.s("WheatleyOrchestration_20171011", "ListCustomActions", {})
|
|
1809
387
|
.n("ChatbotClient", "ListCustomActionsCommand")
|
|
1810
|
-
.sc(ListCustomActions$)
|
|
388
|
+
.sc(schemas_0.ListCustomActions$)
|
|
1811
389
|
.build() {
|
|
1812
390
|
}
|
|
1813
391
|
|
|
@@ -1819,7 +397,7 @@ class ListMicrosoftTeamsChannelConfigurationsCommand extends smithyClient.Comman
|
|
|
1819
397
|
})
|
|
1820
398
|
.s("WheatleyOrchestration_20171011", "ListMicrosoftTeamsChannelConfigurations", {})
|
|
1821
399
|
.n("ChatbotClient", "ListMicrosoftTeamsChannelConfigurationsCommand")
|
|
1822
|
-
.sc(ListMicrosoftTeamsChannelConfigurations$)
|
|
400
|
+
.sc(schemas_0.ListMicrosoftTeamsChannelConfigurations$)
|
|
1823
401
|
.build() {
|
|
1824
402
|
}
|
|
1825
403
|
|
|
@@ -1831,7 +409,7 @@ class ListMicrosoftTeamsConfiguredTeamsCommand extends smithyClient.Command
|
|
|
1831
409
|
})
|
|
1832
410
|
.s("WheatleyOrchestration_20171011", "ListMicrosoftTeamsConfiguredTeams", {})
|
|
1833
411
|
.n("ChatbotClient", "ListMicrosoftTeamsConfiguredTeamsCommand")
|
|
1834
|
-
.sc(ListMicrosoftTeamsConfiguredTeams$)
|
|
412
|
+
.sc(schemas_0.ListMicrosoftTeamsConfiguredTeams$)
|
|
1835
413
|
.build() {
|
|
1836
414
|
}
|
|
1837
415
|
|
|
@@ -1843,7 +421,7 @@ class ListMicrosoftTeamsUserIdentitiesCommand extends smithyClient.Command
|
|
|
1843
421
|
})
|
|
1844
422
|
.s("WheatleyOrchestration_20171011", "ListMicrosoftTeamsUserIdentities", {})
|
|
1845
423
|
.n("ChatbotClient", "ListMicrosoftTeamsUserIdentitiesCommand")
|
|
1846
|
-
.sc(ListMicrosoftTeamsUserIdentities$)
|
|
424
|
+
.sc(schemas_0.ListMicrosoftTeamsUserIdentities$)
|
|
1847
425
|
.build() {
|
|
1848
426
|
}
|
|
1849
427
|
|
|
@@ -1855,7 +433,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1855
433
|
})
|
|
1856
434
|
.s("WheatleyOrchestration_20171011", "ListTagsForResource", {})
|
|
1857
435
|
.n("ChatbotClient", "ListTagsForResourceCommand")
|
|
1858
|
-
.sc(ListTagsForResource$)
|
|
436
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1859
437
|
.build() {
|
|
1860
438
|
}
|
|
1861
439
|
|
|
@@ -1867,7 +445,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1867
445
|
})
|
|
1868
446
|
.s("WheatleyOrchestration_20171011", "TagResource", {})
|
|
1869
447
|
.n("ChatbotClient", "TagResourceCommand")
|
|
1870
|
-
.sc(TagResource$)
|
|
448
|
+
.sc(schemas_0.TagResource$)
|
|
1871
449
|
.build() {
|
|
1872
450
|
}
|
|
1873
451
|
|
|
@@ -1879,7 +457,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1879
457
|
})
|
|
1880
458
|
.s("WheatleyOrchestration_20171011", "UntagResource", {})
|
|
1881
459
|
.n("ChatbotClient", "UntagResourceCommand")
|
|
1882
|
-
.sc(UntagResource$)
|
|
460
|
+
.sc(schemas_0.UntagResource$)
|
|
1883
461
|
.build() {
|
|
1884
462
|
}
|
|
1885
463
|
|
|
@@ -1891,7 +469,7 @@ class UpdateAccountPreferencesCommand extends smithyClient.Command
|
|
|
1891
469
|
})
|
|
1892
470
|
.s("WheatleyOrchestration_20171011", "UpdateAccountPreferences", {})
|
|
1893
471
|
.n("ChatbotClient", "UpdateAccountPreferencesCommand")
|
|
1894
|
-
.sc(UpdateAccountPreferences$)
|
|
472
|
+
.sc(schemas_0.UpdateAccountPreferences$)
|
|
1895
473
|
.build() {
|
|
1896
474
|
}
|
|
1897
475
|
|
|
@@ -1903,7 +481,7 @@ class UpdateChimeWebhookConfigurationCommand extends smithyClient.Command
|
|
|
1903
481
|
})
|
|
1904
482
|
.s("WheatleyOrchestration_20171011", "UpdateChimeWebhookConfiguration", {})
|
|
1905
483
|
.n("ChatbotClient", "UpdateChimeWebhookConfigurationCommand")
|
|
1906
|
-
.sc(UpdateChimeWebhookConfiguration$)
|
|
484
|
+
.sc(schemas_0.UpdateChimeWebhookConfiguration$)
|
|
1907
485
|
.build() {
|
|
1908
486
|
}
|
|
1909
487
|
|
|
@@ -1915,7 +493,7 @@ class UpdateCustomActionCommand extends smithyClient.Command
|
|
|
1915
493
|
})
|
|
1916
494
|
.s("WheatleyOrchestration_20171011", "UpdateCustomAction", {})
|
|
1917
495
|
.n("ChatbotClient", "UpdateCustomActionCommand")
|
|
1918
|
-
.sc(UpdateCustomAction$)
|
|
496
|
+
.sc(schemas_0.UpdateCustomAction$)
|
|
1919
497
|
.build() {
|
|
1920
498
|
}
|
|
1921
499
|
|
|
@@ -1927,7 +505,7 @@ class UpdateMicrosoftTeamsChannelConfigurationCommand extends smithyClient.Comma
|
|
|
1927
505
|
})
|
|
1928
506
|
.s("WheatleyOrchestration_20171011", "UpdateMicrosoftTeamsChannelConfiguration", {})
|
|
1929
507
|
.n("ChatbotClient", "UpdateMicrosoftTeamsChannelConfigurationCommand")
|
|
1930
|
-
.sc(UpdateMicrosoftTeamsChannelConfiguration$)
|
|
508
|
+
.sc(schemas_0.UpdateMicrosoftTeamsChannelConfiguration$)
|
|
1931
509
|
.build() {
|
|
1932
510
|
}
|
|
1933
511
|
|
|
@@ -1939,7 +517,7 @@ class UpdateSlackChannelConfigurationCommand extends smithyClient.Command
|
|
|
1939
517
|
})
|
|
1940
518
|
.s("WheatleyOrchestration_20171011", "UpdateSlackChannelConfiguration", {})
|
|
1941
519
|
.n("ChatbotClient", "UpdateSlackChannelConfigurationCommand")
|
|
1942
|
-
.sc(UpdateSlackChannelConfiguration$)
|
|
520
|
+
.sc(schemas_0.UpdateSlackChannelConfiguration$)
|
|
1943
521
|
.build() {
|
|
1944
522
|
}
|
|
1945
523
|
|
|
@@ -2025,225 +603,47 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2025
603
|
enumerable: true,
|
|
2026
604
|
get: function () { return smithyClient.Client; }
|
|
2027
605
|
});
|
|
2028
|
-
exports
|
|
2029
|
-
|
|
606
|
+
Object.defineProperty(exports, "ChatbotServiceException", {
|
|
607
|
+
enumerable: true,
|
|
608
|
+
get: function () { return ChatbotServiceException.ChatbotServiceException; }
|
|
609
|
+
});
|
|
2030
610
|
exports.AssociateToConfigurationCommand = AssociateToConfigurationCommand;
|
|
2031
|
-
exports.AssociateToConfigurationRequest$ = AssociateToConfigurationRequest$;
|
|
2032
|
-
exports.AssociateToConfigurationResult$ = AssociateToConfigurationResult$;
|
|
2033
|
-
exports.AssociationListing$ = AssociationListing$;
|
|
2034
611
|
exports.Chatbot = Chatbot;
|
|
2035
612
|
exports.ChatbotClient = ChatbotClient;
|
|
2036
|
-
exports.ChatbotServiceException = ChatbotServiceException;
|
|
2037
|
-
exports.ChatbotServiceException$ = ChatbotServiceException$;
|
|
2038
|
-
exports.ChimeWebhookConfiguration$ = ChimeWebhookConfiguration$;
|
|
2039
|
-
exports.ConfiguredTeam$ = ConfiguredTeam$;
|
|
2040
|
-
exports.ConflictException = ConflictException;
|
|
2041
|
-
exports.ConflictException$ = ConflictException$;
|
|
2042
|
-
exports.CreateChimeWebhookConfiguration$ = CreateChimeWebhookConfiguration$;
|
|
2043
613
|
exports.CreateChimeWebhookConfigurationCommand = CreateChimeWebhookConfigurationCommand;
|
|
2044
|
-
exports.CreateChimeWebhookConfigurationException = CreateChimeWebhookConfigurationException;
|
|
2045
|
-
exports.CreateChimeWebhookConfigurationException$ = CreateChimeWebhookConfigurationException$;
|
|
2046
|
-
exports.CreateChimeWebhookConfigurationRequest$ = CreateChimeWebhookConfigurationRequest$;
|
|
2047
|
-
exports.CreateChimeWebhookConfigurationResult$ = CreateChimeWebhookConfigurationResult$;
|
|
2048
|
-
exports.CreateCustomAction$ = CreateCustomAction$;
|
|
2049
614
|
exports.CreateCustomActionCommand = CreateCustomActionCommand;
|
|
2050
|
-
exports.CreateCustomActionRequest$ = CreateCustomActionRequest$;
|
|
2051
|
-
exports.CreateCustomActionResult$ = CreateCustomActionResult$;
|
|
2052
|
-
exports.CreateMicrosoftTeamsChannelConfiguration$ = CreateMicrosoftTeamsChannelConfiguration$;
|
|
2053
615
|
exports.CreateMicrosoftTeamsChannelConfigurationCommand = CreateMicrosoftTeamsChannelConfigurationCommand;
|
|
2054
|
-
exports.CreateSlackChannelConfiguration$ = CreateSlackChannelConfiguration$;
|
|
2055
616
|
exports.CreateSlackChannelConfigurationCommand = CreateSlackChannelConfigurationCommand;
|
|
2056
|
-
exports.CreateSlackChannelConfigurationException = CreateSlackChannelConfigurationException;
|
|
2057
|
-
exports.CreateSlackChannelConfigurationException$ = CreateSlackChannelConfigurationException$;
|
|
2058
|
-
exports.CreateSlackChannelConfigurationRequest$ = CreateSlackChannelConfigurationRequest$;
|
|
2059
|
-
exports.CreateSlackChannelConfigurationResult$ = CreateSlackChannelConfigurationResult$;
|
|
2060
|
-
exports.CreateTeamsChannelConfigurationException = CreateTeamsChannelConfigurationException;
|
|
2061
|
-
exports.CreateTeamsChannelConfigurationException$ = CreateTeamsChannelConfigurationException$;
|
|
2062
|
-
exports.CreateTeamsChannelConfigurationRequest$ = CreateTeamsChannelConfigurationRequest$;
|
|
2063
|
-
exports.CreateTeamsChannelConfigurationResult$ = CreateTeamsChannelConfigurationResult$;
|
|
2064
|
-
exports.CustomAction$ = CustomAction$;
|
|
2065
|
-
exports.CustomActionAttachment$ = CustomActionAttachment$;
|
|
2066
|
-
exports.CustomActionAttachmentCriteria$ = CustomActionAttachmentCriteria$;
|
|
2067
617
|
exports.CustomActionAttachmentCriteriaOperator = CustomActionAttachmentCriteriaOperator;
|
|
2068
|
-
exports.CustomActionDefinition$ = CustomActionDefinition$;
|
|
2069
|
-
exports.DeleteChimeWebhookConfiguration$ = DeleteChimeWebhookConfiguration$;
|
|
2070
618
|
exports.DeleteChimeWebhookConfigurationCommand = DeleteChimeWebhookConfigurationCommand;
|
|
2071
|
-
exports.DeleteChimeWebhookConfigurationException = DeleteChimeWebhookConfigurationException;
|
|
2072
|
-
exports.DeleteChimeWebhookConfigurationException$ = DeleteChimeWebhookConfigurationException$;
|
|
2073
|
-
exports.DeleteChimeWebhookConfigurationRequest$ = DeleteChimeWebhookConfigurationRequest$;
|
|
2074
|
-
exports.DeleteChimeWebhookConfigurationResult$ = DeleteChimeWebhookConfigurationResult$;
|
|
2075
|
-
exports.DeleteCustomAction$ = DeleteCustomAction$;
|
|
2076
619
|
exports.DeleteCustomActionCommand = DeleteCustomActionCommand;
|
|
2077
|
-
exports.DeleteCustomActionRequest$ = DeleteCustomActionRequest$;
|
|
2078
|
-
exports.DeleteCustomActionResult$ = DeleteCustomActionResult$;
|
|
2079
|
-
exports.DeleteMicrosoftTeamsChannelConfiguration$ = DeleteMicrosoftTeamsChannelConfiguration$;
|
|
2080
620
|
exports.DeleteMicrosoftTeamsChannelConfigurationCommand = DeleteMicrosoftTeamsChannelConfigurationCommand;
|
|
2081
|
-
exports.DeleteMicrosoftTeamsConfiguredTeam$ = DeleteMicrosoftTeamsConfiguredTeam$;
|
|
2082
621
|
exports.DeleteMicrosoftTeamsConfiguredTeamCommand = DeleteMicrosoftTeamsConfiguredTeamCommand;
|
|
2083
|
-
exports.DeleteMicrosoftTeamsUserIdentity$ = DeleteMicrosoftTeamsUserIdentity$;
|
|
2084
622
|
exports.DeleteMicrosoftTeamsUserIdentityCommand = DeleteMicrosoftTeamsUserIdentityCommand;
|
|
2085
|
-
exports.DeleteMicrosoftTeamsUserIdentityException = DeleteMicrosoftTeamsUserIdentityException;
|
|
2086
|
-
exports.DeleteMicrosoftTeamsUserIdentityException$ = DeleteMicrosoftTeamsUserIdentityException$;
|
|
2087
|
-
exports.DeleteMicrosoftTeamsUserIdentityRequest$ = DeleteMicrosoftTeamsUserIdentityRequest$;
|
|
2088
|
-
exports.DeleteMicrosoftTeamsUserIdentityResult$ = DeleteMicrosoftTeamsUserIdentityResult$;
|
|
2089
|
-
exports.DeleteSlackChannelConfiguration$ = DeleteSlackChannelConfiguration$;
|
|
2090
623
|
exports.DeleteSlackChannelConfigurationCommand = DeleteSlackChannelConfigurationCommand;
|
|
2091
|
-
exports.DeleteSlackChannelConfigurationException = DeleteSlackChannelConfigurationException;
|
|
2092
|
-
exports.DeleteSlackChannelConfigurationException$ = DeleteSlackChannelConfigurationException$;
|
|
2093
|
-
exports.DeleteSlackChannelConfigurationRequest$ = DeleteSlackChannelConfigurationRequest$;
|
|
2094
|
-
exports.DeleteSlackChannelConfigurationResult$ = DeleteSlackChannelConfigurationResult$;
|
|
2095
|
-
exports.DeleteSlackUserIdentity$ = DeleteSlackUserIdentity$;
|
|
2096
624
|
exports.DeleteSlackUserIdentityCommand = DeleteSlackUserIdentityCommand;
|
|
2097
|
-
exports.DeleteSlackUserIdentityException = DeleteSlackUserIdentityException;
|
|
2098
|
-
exports.DeleteSlackUserIdentityException$ = DeleteSlackUserIdentityException$;
|
|
2099
|
-
exports.DeleteSlackUserIdentityRequest$ = DeleteSlackUserIdentityRequest$;
|
|
2100
|
-
exports.DeleteSlackUserIdentityResult$ = DeleteSlackUserIdentityResult$;
|
|
2101
|
-
exports.DeleteSlackWorkspaceAuthorization$ = DeleteSlackWorkspaceAuthorization$;
|
|
2102
625
|
exports.DeleteSlackWorkspaceAuthorizationCommand = DeleteSlackWorkspaceAuthorizationCommand;
|
|
2103
|
-
exports.DeleteSlackWorkspaceAuthorizationFault = DeleteSlackWorkspaceAuthorizationFault;
|
|
2104
|
-
exports.DeleteSlackWorkspaceAuthorizationFault$ = DeleteSlackWorkspaceAuthorizationFault$;
|
|
2105
|
-
exports.DeleteSlackWorkspaceAuthorizationRequest$ = DeleteSlackWorkspaceAuthorizationRequest$;
|
|
2106
|
-
exports.DeleteSlackWorkspaceAuthorizationResult$ = DeleteSlackWorkspaceAuthorizationResult$;
|
|
2107
|
-
exports.DeleteTeamsChannelConfigurationException = DeleteTeamsChannelConfigurationException;
|
|
2108
|
-
exports.DeleteTeamsChannelConfigurationException$ = DeleteTeamsChannelConfigurationException$;
|
|
2109
|
-
exports.DeleteTeamsChannelConfigurationRequest$ = DeleteTeamsChannelConfigurationRequest$;
|
|
2110
|
-
exports.DeleteTeamsChannelConfigurationResult$ = DeleteTeamsChannelConfigurationResult$;
|
|
2111
|
-
exports.DeleteTeamsConfiguredTeamException = DeleteTeamsConfiguredTeamException;
|
|
2112
|
-
exports.DeleteTeamsConfiguredTeamException$ = DeleteTeamsConfiguredTeamException$;
|
|
2113
|
-
exports.DeleteTeamsConfiguredTeamRequest$ = DeleteTeamsConfiguredTeamRequest$;
|
|
2114
|
-
exports.DeleteTeamsConfiguredTeamResult$ = DeleteTeamsConfiguredTeamResult$;
|
|
2115
|
-
exports.DescribeChimeWebhookConfigurations$ = DescribeChimeWebhookConfigurations$;
|
|
2116
626
|
exports.DescribeChimeWebhookConfigurationsCommand = DescribeChimeWebhookConfigurationsCommand;
|
|
2117
|
-
exports.DescribeChimeWebhookConfigurationsException = DescribeChimeWebhookConfigurationsException;
|
|
2118
|
-
exports.DescribeChimeWebhookConfigurationsException$ = DescribeChimeWebhookConfigurationsException$;
|
|
2119
|
-
exports.DescribeChimeWebhookConfigurationsRequest$ = DescribeChimeWebhookConfigurationsRequest$;
|
|
2120
|
-
exports.DescribeChimeWebhookConfigurationsResult$ = DescribeChimeWebhookConfigurationsResult$;
|
|
2121
|
-
exports.DescribeSlackChannelConfigurations$ = DescribeSlackChannelConfigurations$;
|
|
2122
627
|
exports.DescribeSlackChannelConfigurationsCommand = DescribeSlackChannelConfigurationsCommand;
|
|
2123
|
-
exports.DescribeSlackChannelConfigurationsException = DescribeSlackChannelConfigurationsException;
|
|
2124
|
-
exports.DescribeSlackChannelConfigurationsException$ = DescribeSlackChannelConfigurationsException$;
|
|
2125
|
-
exports.DescribeSlackChannelConfigurationsRequest$ = DescribeSlackChannelConfigurationsRequest$;
|
|
2126
|
-
exports.DescribeSlackChannelConfigurationsResult$ = DescribeSlackChannelConfigurationsResult$;
|
|
2127
|
-
exports.DescribeSlackUserIdentities$ = DescribeSlackUserIdentities$;
|
|
2128
628
|
exports.DescribeSlackUserIdentitiesCommand = DescribeSlackUserIdentitiesCommand;
|
|
2129
|
-
exports.DescribeSlackUserIdentitiesException = DescribeSlackUserIdentitiesException;
|
|
2130
|
-
exports.DescribeSlackUserIdentitiesException$ = DescribeSlackUserIdentitiesException$;
|
|
2131
|
-
exports.DescribeSlackUserIdentitiesRequest$ = DescribeSlackUserIdentitiesRequest$;
|
|
2132
|
-
exports.DescribeSlackUserIdentitiesResult$ = DescribeSlackUserIdentitiesResult$;
|
|
2133
|
-
exports.DescribeSlackWorkspaces$ = DescribeSlackWorkspaces$;
|
|
2134
629
|
exports.DescribeSlackWorkspacesCommand = DescribeSlackWorkspacesCommand;
|
|
2135
|
-
exports.DescribeSlackWorkspacesException = DescribeSlackWorkspacesException;
|
|
2136
|
-
exports.DescribeSlackWorkspacesException$ = DescribeSlackWorkspacesException$;
|
|
2137
|
-
exports.DescribeSlackWorkspacesRequest$ = DescribeSlackWorkspacesRequest$;
|
|
2138
|
-
exports.DescribeSlackWorkspacesResult$ = DescribeSlackWorkspacesResult$;
|
|
2139
|
-
exports.DisassociateFromConfiguration$ = DisassociateFromConfiguration$;
|
|
2140
630
|
exports.DisassociateFromConfigurationCommand = DisassociateFromConfigurationCommand;
|
|
2141
|
-
exports.DisassociateFromConfigurationRequest$ = DisassociateFromConfigurationRequest$;
|
|
2142
|
-
exports.DisassociateFromConfigurationResult$ = DisassociateFromConfigurationResult$;
|
|
2143
|
-
exports.GetAccountPreferences$ = GetAccountPreferences$;
|
|
2144
631
|
exports.GetAccountPreferencesCommand = GetAccountPreferencesCommand;
|
|
2145
|
-
exports.GetAccountPreferencesException = GetAccountPreferencesException;
|
|
2146
|
-
exports.GetAccountPreferencesException$ = GetAccountPreferencesException$;
|
|
2147
|
-
exports.GetAccountPreferencesRequest$ = GetAccountPreferencesRequest$;
|
|
2148
|
-
exports.GetAccountPreferencesResult$ = GetAccountPreferencesResult$;
|
|
2149
|
-
exports.GetCustomAction$ = GetCustomAction$;
|
|
2150
632
|
exports.GetCustomActionCommand = GetCustomActionCommand;
|
|
2151
|
-
exports.GetCustomActionRequest$ = GetCustomActionRequest$;
|
|
2152
|
-
exports.GetCustomActionResult$ = GetCustomActionResult$;
|
|
2153
|
-
exports.GetMicrosoftTeamsChannelConfiguration$ = GetMicrosoftTeamsChannelConfiguration$;
|
|
2154
633
|
exports.GetMicrosoftTeamsChannelConfigurationCommand = GetMicrosoftTeamsChannelConfigurationCommand;
|
|
2155
|
-
exports.GetTeamsChannelConfigurationException = GetTeamsChannelConfigurationException;
|
|
2156
|
-
exports.GetTeamsChannelConfigurationException$ = GetTeamsChannelConfigurationException$;
|
|
2157
|
-
exports.GetTeamsChannelConfigurationRequest$ = GetTeamsChannelConfigurationRequest$;
|
|
2158
|
-
exports.GetTeamsChannelConfigurationResult$ = GetTeamsChannelConfigurationResult$;
|
|
2159
|
-
exports.InternalServiceError = InternalServiceError;
|
|
2160
|
-
exports.InternalServiceError$ = InternalServiceError$;
|
|
2161
|
-
exports.InvalidParameterException = InvalidParameterException;
|
|
2162
|
-
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2163
|
-
exports.InvalidRequestException = InvalidRequestException;
|
|
2164
|
-
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
2165
|
-
exports.LimitExceededException = LimitExceededException;
|
|
2166
|
-
exports.LimitExceededException$ = LimitExceededException$;
|
|
2167
|
-
exports.ListAssociations$ = ListAssociations$;
|
|
2168
634
|
exports.ListAssociationsCommand = ListAssociationsCommand;
|
|
2169
|
-
exports.ListAssociationsRequest$ = ListAssociationsRequest$;
|
|
2170
|
-
exports.ListAssociationsResult$ = ListAssociationsResult$;
|
|
2171
|
-
exports.ListCustomActions$ = ListCustomActions$;
|
|
2172
635
|
exports.ListCustomActionsCommand = ListCustomActionsCommand;
|
|
2173
|
-
exports.ListCustomActionsRequest$ = ListCustomActionsRequest$;
|
|
2174
|
-
exports.ListCustomActionsResult$ = ListCustomActionsResult$;
|
|
2175
|
-
exports.ListMicrosoftTeamsChannelConfigurations$ = ListMicrosoftTeamsChannelConfigurations$;
|
|
2176
636
|
exports.ListMicrosoftTeamsChannelConfigurationsCommand = ListMicrosoftTeamsChannelConfigurationsCommand;
|
|
2177
|
-
exports.ListMicrosoftTeamsConfiguredTeams$ = ListMicrosoftTeamsConfiguredTeams$;
|
|
2178
637
|
exports.ListMicrosoftTeamsConfiguredTeamsCommand = ListMicrosoftTeamsConfiguredTeamsCommand;
|
|
2179
|
-
exports.ListMicrosoftTeamsConfiguredTeamsException = ListMicrosoftTeamsConfiguredTeamsException;
|
|
2180
|
-
exports.ListMicrosoftTeamsConfiguredTeamsException$ = ListMicrosoftTeamsConfiguredTeamsException$;
|
|
2181
|
-
exports.ListMicrosoftTeamsConfiguredTeamsRequest$ = ListMicrosoftTeamsConfiguredTeamsRequest$;
|
|
2182
|
-
exports.ListMicrosoftTeamsConfiguredTeamsResult$ = ListMicrosoftTeamsConfiguredTeamsResult$;
|
|
2183
|
-
exports.ListMicrosoftTeamsUserIdentities$ = ListMicrosoftTeamsUserIdentities$;
|
|
2184
638
|
exports.ListMicrosoftTeamsUserIdentitiesCommand = ListMicrosoftTeamsUserIdentitiesCommand;
|
|
2185
|
-
exports.ListMicrosoftTeamsUserIdentitiesException = ListMicrosoftTeamsUserIdentitiesException;
|
|
2186
|
-
exports.ListMicrosoftTeamsUserIdentitiesException$ = ListMicrosoftTeamsUserIdentitiesException$;
|
|
2187
|
-
exports.ListMicrosoftTeamsUserIdentitiesRequest$ = ListMicrosoftTeamsUserIdentitiesRequest$;
|
|
2188
|
-
exports.ListMicrosoftTeamsUserIdentitiesResult$ = ListMicrosoftTeamsUserIdentitiesResult$;
|
|
2189
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2190
639
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2191
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2192
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2193
|
-
exports.ListTeamsChannelConfigurationsException = ListTeamsChannelConfigurationsException;
|
|
2194
|
-
exports.ListTeamsChannelConfigurationsException$ = ListTeamsChannelConfigurationsException$;
|
|
2195
|
-
exports.ListTeamsChannelConfigurationsRequest$ = ListTeamsChannelConfigurationsRequest$;
|
|
2196
|
-
exports.ListTeamsChannelConfigurationsResult$ = ListTeamsChannelConfigurationsResult$;
|
|
2197
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2198
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2199
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
2200
|
-
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
2201
|
-
exports.SlackChannelConfiguration$ = SlackChannelConfiguration$;
|
|
2202
|
-
exports.SlackUserIdentity$ = SlackUserIdentity$;
|
|
2203
|
-
exports.SlackWorkspace$ = SlackWorkspace$;
|
|
2204
|
-
exports.Tag$ = Tag$;
|
|
2205
|
-
exports.TagResource$ = TagResource$;
|
|
2206
640
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2207
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2208
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2209
|
-
exports.TeamsChannelConfiguration$ = TeamsChannelConfiguration$;
|
|
2210
|
-
exports.TeamsUserIdentity$ = TeamsUserIdentity$;
|
|
2211
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
2212
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
2213
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
2214
|
-
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
2215
|
-
exports.UntagResource$ = UntagResource$;
|
|
2216
641
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2217
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2218
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2219
|
-
exports.UpdateAccountPreferences$ = UpdateAccountPreferences$;
|
|
2220
642
|
exports.UpdateAccountPreferencesCommand = UpdateAccountPreferencesCommand;
|
|
2221
|
-
exports.UpdateAccountPreferencesException = UpdateAccountPreferencesException;
|
|
2222
|
-
exports.UpdateAccountPreferencesException$ = UpdateAccountPreferencesException$;
|
|
2223
|
-
exports.UpdateAccountPreferencesRequest$ = UpdateAccountPreferencesRequest$;
|
|
2224
|
-
exports.UpdateAccountPreferencesResult$ = UpdateAccountPreferencesResult$;
|
|
2225
|
-
exports.UpdateChimeWebhookConfiguration$ = UpdateChimeWebhookConfiguration$;
|
|
2226
643
|
exports.UpdateChimeWebhookConfigurationCommand = UpdateChimeWebhookConfigurationCommand;
|
|
2227
|
-
exports.UpdateChimeWebhookConfigurationException = UpdateChimeWebhookConfigurationException;
|
|
2228
|
-
exports.UpdateChimeWebhookConfigurationException$ = UpdateChimeWebhookConfigurationException$;
|
|
2229
|
-
exports.UpdateChimeWebhookConfigurationRequest$ = UpdateChimeWebhookConfigurationRequest$;
|
|
2230
|
-
exports.UpdateChimeWebhookConfigurationResult$ = UpdateChimeWebhookConfigurationResult$;
|
|
2231
|
-
exports.UpdateCustomAction$ = UpdateCustomAction$;
|
|
2232
644
|
exports.UpdateCustomActionCommand = UpdateCustomActionCommand;
|
|
2233
|
-
exports.UpdateCustomActionRequest$ = UpdateCustomActionRequest$;
|
|
2234
|
-
exports.UpdateCustomActionResult$ = UpdateCustomActionResult$;
|
|
2235
|
-
exports.UpdateMicrosoftTeamsChannelConfiguration$ = UpdateMicrosoftTeamsChannelConfiguration$;
|
|
2236
645
|
exports.UpdateMicrosoftTeamsChannelConfigurationCommand = UpdateMicrosoftTeamsChannelConfigurationCommand;
|
|
2237
|
-
exports.UpdateSlackChannelConfiguration$ = UpdateSlackChannelConfiguration$;
|
|
2238
646
|
exports.UpdateSlackChannelConfigurationCommand = UpdateSlackChannelConfigurationCommand;
|
|
2239
|
-
exports.UpdateSlackChannelConfigurationException = UpdateSlackChannelConfigurationException;
|
|
2240
|
-
exports.UpdateSlackChannelConfigurationException$ = UpdateSlackChannelConfigurationException$;
|
|
2241
|
-
exports.UpdateSlackChannelConfigurationRequest$ = UpdateSlackChannelConfigurationRequest$;
|
|
2242
|
-
exports.UpdateSlackChannelConfigurationResult$ = UpdateSlackChannelConfigurationResult$;
|
|
2243
|
-
exports.UpdateTeamsChannelConfigurationException = UpdateTeamsChannelConfigurationException;
|
|
2244
|
-
exports.UpdateTeamsChannelConfigurationException$ = UpdateTeamsChannelConfigurationException$;
|
|
2245
|
-
exports.UpdateTeamsChannelConfigurationRequest$ = UpdateTeamsChannelConfigurationRequest$;
|
|
2246
|
-
exports.UpdateTeamsChannelConfigurationResult$ = UpdateTeamsChannelConfigurationResult$;
|
|
2247
647
|
exports.paginateDescribeChimeWebhookConfigurations = paginateDescribeChimeWebhookConfigurations;
|
|
2248
648
|
exports.paginateDescribeSlackChannelConfigurations = paginateDescribeSlackChannelConfigurations;
|
|
2249
649
|
exports.paginateDescribeSlackUserIdentities = paginateDescribeSlackUserIdentities;
|
|
@@ -2253,3 +653,15 @@ exports.paginateListCustomActions = paginateListCustomActions;
|
|
|
2253
653
|
exports.paginateListMicrosoftTeamsChannelConfigurations = paginateListMicrosoftTeamsChannelConfigurations;
|
|
2254
654
|
exports.paginateListMicrosoftTeamsConfiguredTeams = paginateListMicrosoftTeamsConfiguredTeams;
|
|
2255
655
|
exports.paginateListMicrosoftTeamsUserIdentities = paginateListMicrosoftTeamsUserIdentities;
|
|
656
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
657
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
658
|
+
enumerable: true,
|
|
659
|
+
get: function () { return schemas_0[k]; }
|
|
660
|
+
});
|
|
661
|
+
});
|
|
662
|
+
Object.keys(errors).forEach(function (k) {
|
|
663
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
664
|
+
enumerable: true,
|
|
665
|
+
get: function () { return errors[k]; }
|
|
666
|
+
});
|
|
667
|
+
});
|