@aws-sdk/client-support-app 3.928.0 → 3.930.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 +353 -478
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/SupportAppClient.js +2 -0
- package/dist-es/commands/CreateSlackChannelConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteAccountAliasCommand.js +3 -9
- package/dist-es/commands/DeleteSlackChannelConfigurationCommand.js +3 -9
- package/dist-es/commands/DeleteSlackWorkspaceConfigurationCommand.js +3 -9
- package/dist-es/commands/GetAccountAliasCommand.js +3 -9
- package/dist-es/commands/ListSlackChannelConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListSlackWorkspaceConfigurationsCommand.js +3 -9
- package/dist-es/commands/PutAccountAliasCommand.js +3 -9
- package/dist-es/commands/RegisterSlackWorkspaceForOrganizationCommand.js +3 -9
- package/dist-es/commands/UpdateSlackChannelConfigurationCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +313 -0
- package/dist-types/SupportAppClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +42 -0
- package/dist-types/ts3.4/SupportAppClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +47 -0
- package/package.json +33 -33
- package/dist-es/protocols/Aws_restJson1.js +0 -391
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -92
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -125
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class SupportAppClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,14 +110,14 @@ class SupportAppClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class SupportAppServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let SupportAppServiceException$1 = class SupportAppServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, SupportAppServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
|
-
class AccessDeniedException extends SupportAppServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends SupportAppServiceException$1 {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,12 +128,12 @@ class AccessDeniedException extends SupportAppServiceException {
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
131
|
+
};
|
|
132
132
|
const AccountType = {
|
|
133
133
|
MANAGEMENT: "management",
|
|
134
134
|
MEMBER: "member",
|
|
135
135
|
};
|
|
136
|
-
class ConflictException extends SupportAppServiceException {
|
|
136
|
+
let ConflictException$1 = class ConflictException extends SupportAppServiceException$1 {
|
|
137
137
|
name = "ConflictException";
|
|
138
138
|
$fault = "client";
|
|
139
139
|
constructor(opts) {
|
|
@@ -144,13 +144,13 @@ class ConflictException extends SupportAppServiceException {
|
|
|
144
144
|
});
|
|
145
145
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
146
146
|
}
|
|
147
|
-
}
|
|
147
|
+
};
|
|
148
148
|
const NotificationSeverityLevel = {
|
|
149
149
|
ALL: "all",
|
|
150
150
|
HIGH: "high",
|
|
151
151
|
NONE: "none",
|
|
152
152
|
};
|
|
153
|
-
class InternalServerException extends SupportAppServiceException {
|
|
153
|
+
let InternalServerException$1 = class InternalServerException extends SupportAppServiceException$1 {
|
|
154
154
|
name = "InternalServerException";
|
|
155
155
|
$fault = "server";
|
|
156
156
|
constructor(opts) {
|
|
@@ -161,8 +161,8 @@ class InternalServerException extends SupportAppServiceException {
|
|
|
161
161
|
});
|
|
162
162
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
163
163
|
}
|
|
164
|
-
}
|
|
165
|
-
class ServiceQuotaExceededException extends SupportAppServiceException {
|
|
164
|
+
};
|
|
165
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends SupportAppServiceException$1 {
|
|
166
166
|
name = "ServiceQuotaExceededException";
|
|
167
167
|
$fault = "client";
|
|
168
168
|
constructor(opts) {
|
|
@@ -173,8 +173,8 @@ class ServiceQuotaExceededException extends SupportAppServiceException {
|
|
|
173
173
|
});
|
|
174
174
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
175
175
|
}
|
|
176
|
-
}
|
|
177
|
-
class ValidationException extends SupportAppServiceException {
|
|
176
|
+
};
|
|
177
|
+
let ValidationException$1 = class ValidationException extends SupportAppServiceException$1 {
|
|
178
178
|
name = "ValidationException";
|
|
179
179
|
$fault = "client";
|
|
180
180
|
constructor(opts) {
|
|
@@ -185,8 +185,8 @@ class ValidationException extends SupportAppServiceException {
|
|
|
185
185
|
});
|
|
186
186
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
187
187
|
}
|
|
188
|
-
}
|
|
189
|
-
class ResourceNotFoundException extends SupportAppServiceException {
|
|
188
|
+
};
|
|
189
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends SupportAppServiceException$1 {
|
|
190
190
|
name = "ResourceNotFoundException";
|
|
191
191
|
$fault = "client";
|
|
192
192
|
constructor(opts) {
|
|
@@ -197,408 +197,328 @@ class ResourceNotFoundException extends SupportAppServiceException {
|
|
|
197
197
|
});
|
|
198
198
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
199
199
|
}
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
const se_CreateSlackChannelConfigurationCommand = async (input, context) => {
|
|
203
|
-
const b = core.requestBuilder(input, context);
|
|
204
|
-
const headers = {
|
|
205
|
-
"content-type": "application/json",
|
|
206
|
-
};
|
|
207
|
-
b.bp("/control/create-slack-channel-configuration");
|
|
208
|
-
let body;
|
|
209
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
210
|
-
channelId: [],
|
|
211
|
-
channelName: [],
|
|
212
|
-
channelRoleArn: [],
|
|
213
|
-
notifyOnAddCorrespondenceToCase: [],
|
|
214
|
-
notifyOnCaseSeverity: [],
|
|
215
|
-
notifyOnCreateOrReopenCase: [],
|
|
216
|
-
notifyOnResolveCase: [],
|
|
217
|
-
teamId: [],
|
|
218
|
-
}));
|
|
219
|
-
b.m("POST").h(headers).b(body);
|
|
220
|
-
return b.build();
|
|
221
|
-
};
|
|
222
|
-
const se_DeleteAccountAliasCommand = async (input, context) => {
|
|
223
|
-
const b = core.requestBuilder(input, context);
|
|
224
|
-
const headers = {};
|
|
225
|
-
b.bp("/control/delete-account-alias");
|
|
226
|
-
let body;
|
|
227
|
-
b.m("POST").h(headers).b(body);
|
|
228
|
-
return b.build();
|
|
229
|
-
};
|
|
230
|
-
const se_DeleteSlackChannelConfigurationCommand = async (input, context) => {
|
|
231
|
-
const b = core.requestBuilder(input, context);
|
|
232
|
-
const headers = {
|
|
233
|
-
"content-type": "application/json",
|
|
234
|
-
};
|
|
235
|
-
b.bp("/control/delete-slack-channel-configuration");
|
|
236
|
-
let body;
|
|
237
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
238
|
-
channelId: [],
|
|
239
|
-
teamId: [],
|
|
240
|
-
}));
|
|
241
|
-
b.m("POST").h(headers).b(body);
|
|
242
|
-
return b.build();
|
|
243
|
-
};
|
|
244
|
-
const se_DeleteSlackWorkspaceConfigurationCommand = async (input, context) => {
|
|
245
|
-
const b = core.requestBuilder(input, context);
|
|
246
|
-
const headers = {
|
|
247
|
-
"content-type": "application/json",
|
|
248
|
-
};
|
|
249
|
-
b.bp("/control/delete-slack-workspace-configuration");
|
|
250
|
-
let body;
|
|
251
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
252
|
-
teamId: [],
|
|
253
|
-
}));
|
|
254
|
-
b.m("POST").h(headers).b(body);
|
|
255
|
-
return b.build();
|
|
256
|
-
};
|
|
257
|
-
const se_GetAccountAliasCommand = async (input, context) => {
|
|
258
|
-
const b = core.requestBuilder(input, context);
|
|
259
|
-
const headers = {};
|
|
260
|
-
b.bp("/control/get-account-alias");
|
|
261
|
-
let body;
|
|
262
|
-
b.m("POST").h(headers).b(body);
|
|
263
|
-
return b.build();
|
|
264
|
-
};
|
|
265
|
-
const se_ListSlackChannelConfigurationsCommand = async (input, context) => {
|
|
266
|
-
const b = core.requestBuilder(input, context);
|
|
267
|
-
const headers = {
|
|
268
|
-
"content-type": "application/json",
|
|
269
|
-
};
|
|
270
|
-
b.bp("/control/list-slack-channel-configurations");
|
|
271
|
-
let body;
|
|
272
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
273
|
-
nextToken: [],
|
|
274
|
-
}));
|
|
275
|
-
b.m("POST").h(headers).b(body);
|
|
276
|
-
return b.build();
|
|
277
200
|
};
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
const
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
const
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
const
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
const
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
201
|
+
|
|
202
|
+
const _ADE = "AccessDeniedException";
|
|
203
|
+
const _CE = "ConflictException";
|
|
204
|
+
const _CSCC = "CreateSlackChannelConfiguration";
|
|
205
|
+
const _CSCCR = "CreateSlackChannelConfigurationRequest";
|
|
206
|
+
const _CSCCRr = "CreateSlackChannelConfigurationResult";
|
|
207
|
+
const _DAA = "DeleteAccountAlias";
|
|
208
|
+
const _DAAR = "DeleteAccountAliasRequest";
|
|
209
|
+
const _DAARe = "DeleteAccountAliasResult";
|
|
210
|
+
const _DSCC = "DeleteSlackChannelConfiguration";
|
|
211
|
+
const _DSCCR = "DeleteSlackChannelConfigurationRequest";
|
|
212
|
+
const _DSCCRe = "DeleteSlackChannelConfigurationResult";
|
|
213
|
+
const _DSWC = "DeleteSlackWorkspaceConfiguration";
|
|
214
|
+
const _DSWCR = "DeleteSlackWorkspaceConfigurationRequest";
|
|
215
|
+
const _DSWCRe = "DeleteSlackWorkspaceConfigurationResult";
|
|
216
|
+
const _GAA = "GetAccountAlias";
|
|
217
|
+
const _GAAR = "GetAccountAliasRequest";
|
|
218
|
+
const _GAARe = "GetAccountAliasResult";
|
|
219
|
+
const _ISE = "InternalServerException";
|
|
220
|
+
const _LSCC = "ListSlackChannelConfigurations";
|
|
221
|
+
const _LSCCR = "ListSlackChannelConfigurationsRequest";
|
|
222
|
+
const _LSCCRi = "ListSlackChannelConfigurationsResult";
|
|
223
|
+
const _LSWC = "ListSlackWorkspaceConfigurations";
|
|
224
|
+
const _LSWCR = "ListSlackWorkspaceConfigurationsRequest";
|
|
225
|
+
const _LSWCRi = "ListSlackWorkspaceConfigurationsResult";
|
|
226
|
+
const _PAA = "PutAccountAlias";
|
|
227
|
+
const _PAAR = "PutAccountAliasRequest";
|
|
228
|
+
const _PAARu = "PutAccountAliasResult";
|
|
229
|
+
const _RNFE = "ResourceNotFoundException";
|
|
230
|
+
const _RSWFO = "RegisterSlackWorkspaceForOrganization";
|
|
231
|
+
const _RSWFOR = "RegisterSlackWorkspaceForOrganizationRequest";
|
|
232
|
+
const _RSWFORe = "RegisterSlackWorkspaceForOrganizationResult";
|
|
233
|
+
const _SCC = "SlackChannelConfiguration";
|
|
234
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
235
|
+
const _SWC = "SlackWorkspaceConfiguration";
|
|
236
|
+
const _SWCL = "SlackWorkspaceConfigurationList";
|
|
237
|
+
const _USCC = "UpdateSlackChannelConfiguration";
|
|
238
|
+
const _USCCR = "UpdateSlackChannelConfigurationRequest";
|
|
239
|
+
const _USCCRp = "UpdateSlackChannelConfigurationResult";
|
|
240
|
+
const _VE = "ValidationException";
|
|
241
|
+
const _aA = "accountAlias";
|
|
242
|
+
const _aOMA = "allowOrganizationMemberAccount";
|
|
243
|
+
const _aT = "accountType";
|
|
244
|
+
const _c = "client";
|
|
245
|
+
const _cI = "channelId";
|
|
246
|
+
const _cN = "channelName";
|
|
247
|
+
const _cRA = "channelRoleArn";
|
|
248
|
+
const _e = "error";
|
|
249
|
+
const _h = "http";
|
|
250
|
+
const _hE = "httpError";
|
|
251
|
+
const _m = "message";
|
|
252
|
+
const _nOACTC = "notifyOnAddCorrespondenceToCase";
|
|
253
|
+
const _nOCORC = "notifyOnCreateOrReopenCase";
|
|
254
|
+
const _nOCS = "notifyOnCaseSeverity";
|
|
255
|
+
const _nORC = "notifyOnResolveCase";
|
|
256
|
+
const _nT = "nextToken";
|
|
257
|
+
const _s = "server";
|
|
258
|
+
const _sCC = "slackChannelConfigurations";
|
|
259
|
+
const _sCCL = "slackChannelConfigurationList";
|
|
260
|
+
const _sWC = "slackWorkspaceConfigurations";
|
|
261
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.supportapp";
|
|
262
|
+
const _tI = "teamId";
|
|
263
|
+
const _tN = "teamName";
|
|
264
|
+
const n0 = "com.amazonaws.supportapp";
|
|
265
|
+
var AccessDeniedException = [
|
|
266
|
+
-3,
|
|
267
|
+
n0,
|
|
268
|
+
_ADE,
|
|
269
|
+
{
|
|
270
|
+
[_e]: _c,
|
|
271
|
+
[_hE]: 403,
|
|
272
|
+
},
|
|
273
|
+
[_m],
|
|
274
|
+
[0],
|
|
275
|
+
];
|
|
276
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
277
|
+
var ConflictException = [
|
|
278
|
+
-3,
|
|
279
|
+
n0,
|
|
280
|
+
_CE,
|
|
281
|
+
{
|
|
282
|
+
[_e]: _c,
|
|
283
|
+
[_hE]: 409,
|
|
284
|
+
},
|
|
285
|
+
[_m],
|
|
286
|
+
[0],
|
|
287
|
+
];
|
|
288
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
289
|
+
var CreateSlackChannelConfigurationRequest = [
|
|
290
|
+
3,
|
|
291
|
+
n0,
|
|
292
|
+
_CSCCR,
|
|
293
|
+
0,
|
|
294
|
+
[_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
|
|
295
|
+
[0, 0, 0, 2, 2, 2, 0, 0],
|
|
296
|
+
];
|
|
297
|
+
var CreateSlackChannelConfigurationResult = [3, n0, _CSCCRr, 0, [], []];
|
|
298
|
+
var DeleteAccountAliasRequest = [3, n0, _DAAR, 0, [], []];
|
|
299
|
+
var DeleteAccountAliasResult = [3, n0, _DAARe, 0, [], []];
|
|
300
|
+
var DeleteSlackChannelConfigurationRequest = [3, n0, _DSCCR, 0, [_tI, _cI], [0, 0]];
|
|
301
|
+
var DeleteSlackChannelConfigurationResult = [3, n0, _DSCCRe, 0, [], []];
|
|
302
|
+
var DeleteSlackWorkspaceConfigurationRequest = [3, n0, _DSWCR, 0, [_tI], [0]];
|
|
303
|
+
var DeleteSlackWorkspaceConfigurationResult = [3, n0, _DSWCRe, 0, [], []];
|
|
304
|
+
var GetAccountAliasRequest = [3, n0, _GAAR, 0, [], []];
|
|
305
|
+
var GetAccountAliasResult = [3, n0, _GAARe, 0, [_aA], [0]];
|
|
306
|
+
var InternalServerException = [
|
|
307
|
+
-3,
|
|
308
|
+
n0,
|
|
309
|
+
_ISE,
|
|
310
|
+
{
|
|
311
|
+
[_e]: _s,
|
|
312
|
+
[_hE]: 500,
|
|
313
|
+
},
|
|
314
|
+
[_m],
|
|
315
|
+
[0],
|
|
316
|
+
];
|
|
317
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
318
|
+
var ListSlackChannelConfigurationsRequest = [3, n0, _LSCCR, 0, [_nT], [0]];
|
|
319
|
+
var ListSlackChannelConfigurationsResult = [
|
|
320
|
+
3,
|
|
321
|
+
n0,
|
|
322
|
+
_LSCCRi,
|
|
323
|
+
0,
|
|
324
|
+
[_nT, _sCC],
|
|
325
|
+
[0, () => slackChannelConfigurationList],
|
|
326
|
+
];
|
|
327
|
+
var ListSlackWorkspaceConfigurationsRequest = [3, n0, _LSWCR, 0, [_nT], [0]];
|
|
328
|
+
var ListSlackWorkspaceConfigurationsResult = [
|
|
329
|
+
3,
|
|
330
|
+
n0,
|
|
331
|
+
_LSWCRi,
|
|
332
|
+
0,
|
|
333
|
+
[_nT, _sWC],
|
|
334
|
+
[0, () => SlackWorkspaceConfigurationList],
|
|
335
|
+
];
|
|
336
|
+
var PutAccountAliasRequest = [3, n0, _PAAR, 0, [_aA], [0]];
|
|
337
|
+
var PutAccountAliasResult = [3, n0, _PAARu, 0, [], []];
|
|
338
|
+
var RegisterSlackWorkspaceForOrganizationRequest = [3, n0, _RSWFOR, 0, [_tI], [0]];
|
|
339
|
+
var RegisterSlackWorkspaceForOrganizationResult = [
|
|
340
|
+
3,
|
|
341
|
+
n0,
|
|
342
|
+
_RSWFORe,
|
|
343
|
+
0,
|
|
344
|
+
[_tI, _tN, _aT],
|
|
345
|
+
[0, 0, 0],
|
|
346
|
+
];
|
|
347
|
+
var ResourceNotFoundException = [
|
|
348
|
+
-3,
|
|
349
|
+
n0,
|
|
350
|
+
_RNFE,
|
|
351
|
+
{
|
|
352
|
+
[_e]: _c,
|
|
353
|
+
[_hE]: 404,
|
|
354
|
+
},
|
|
355
|
+
[_m],
|
|
356
|
+
[0],
|
|
357
|
+
];
|
|
358
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
359
|
+
var ServiceQuotaExceededException = [
|
|
360
|
+
-3,
|
|
361
|
+
n0,
|
|
362
|
+
_SQEE,
|
|
363
|
+
{
|
|
364
|
+
[_e]: _c,
|
|
365
|
+
[_hE]: 402,
|
|
366
|
+
},
|
|
367
|
+
[_m],
|
|
368
|
+
[0],
|
|
369
|
+
];
|
|
370
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
371
|
+
var SlackChannelConfiguration = [
|
|
372
|
+
3,
|
|
373
|
+
n0,
|
|
374
|
+
_SCC,
|
|
375
|
+
0,
|
|
376
|
+
[_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
|
|
377
|
+
[0, 0, 0, 2, 2, 2, 0, 0],
|
|
378
|
+
];
|
|
379
|
+
var SlackWorkspaceConfiguration = [3, n0, _SWC, 0, [_tI, _tN, _aOMA], [0, 0, 2]];
|
|
380
|
+
var UpdateSlackChannelConfigurationRequest = [
|
|
381
|
+
3,
|
|
382
|
+
n0,
|
|
383
|
+
_USCCR,
|
|
384
|
+
0,
|
|
385
|
+
[_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
|
|
386
|
+
[0, 0, 0, 2, 2, 2, 0, 0],
|
|
387
|
+
];
|
|
388
|
+
var UpdateSlackChannelConfigurationResult = [
|
|
389
|
+
3,
|
|
390
|
+
n0,
|
|
391
|
+
_USCCRp,
|
|
392
|
+
0,
|
|
393
|
+
[_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
|
|
394
|
+
[0, 0, 0, 2, 2, 2, 0, 0],
|
|
395
|
+
];
|
|
396
|
+
var ValidationException = [
|
|
397
|
+
-3,
|
|
398
|
+
n0,
|
|
399
|
+
_VE,
|
|
400
|
+
{
|
|
401
|
+
[_e]: _c,
|
|
402
|
+
[_hE]: 400,
|
|
403
|
+
},
|
|
404
|
+
[_m],
|
|
405
|
+
[0],
|
|
406
|
+
];
|
|
407
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
408
|
+
var SupportAppServiceException = [-3, _sm, "SupportAppServiceException", 0, [], []];
|
|
409
|
+
schema.TypeRegistry.for(_sm).registerError(SupportAppServiceException, SupportAppServiceException$1);
|
|
410
|
+
var slackChannelConfigurationList = [1, n0, _sCCL, 0, () => SlackChannelConfiguration];
|
|
411
|
+
var SlackWorkspaceConfigurationList = [1, n0, _SWCL, 0, () => SlackWorkspaceConfiguration];
|
|
412
|
+
var CreateSlackChannelConfiguration = [
|
|
413
|
+
9,
|
|
414
|
+
n0,
|
|
415
|
+
_CSCC,
|
|
416
|
+
{
|
|
417
|
+
[_h]: ["POST", "/control/create-slack-channel-configuration", 200],
|
|
418
|
+
},
|
|
419
|
+
() => CreateSlackChannelConfigurationRequest,
|
|
420
|
+
() => CreateSlackChannelConfigurationResult,
|
|
421
|
+
];
|
|
422
|
+
var DeleteAccountAlias = [
|
|
423
|
+
9,
|
|
424
|
+
n0,
|
|
425
|
+
_DAA,
|
|
426
|
+
{
|
|
427
|
+
[_h]: ["POST", "/control/delete-account-alias", 200],
|
|
428
|
+
},
|
|
429
|
+
() => DeleteAccountAliasRequest,
|
|
430
|
+
() => DeleteAccountAliasResult,
|
|
431
|
+
];
|
|
432
|
+
var DeleteSlackChannelConfiguration = [
|
|
433
|
+
9,
|
|
434
|
+
n0,
|
|
435
|
+
_DSCC,
|
|
436
|
+
{
|
|
437
|
+
[_h]: ["POST", "/control/delete-slack-channel-configuration", 200],
|
|
438
|
+
},
|
|
439
|
+
() => DeleteSlackChannelConfigurationRequest,
|
|
440
|
+
() => DeleteSlackChannelConfigurationResult,
|
|
441
|
+
];
|
|
442
|
+
var DeleteSlackWorkspaceConfiguration = [
|
|
443
|
+
9,
|
|
444
|
+
n0,
|
|
445
|
+
_DSWC,
|
|
446
|
+
{
|
|
447
|
+
[_h]: ["POST", "/control/delete-slack-workspace-configuration", 200],
|
|
448
|
+
},
|
|
449
|
+
() => DeleteSlackWorkspaceConfigurationRequest,
|
|
450
|
+
() => DeleteSlackWorkspaceConfigurationResult,
|
|
451
|
+
];
|
|
452
|
+
var GetAccountAlias = [
|
|
453
|
+
9,
|
|
454
|
+
n0,
|
|
455
|
+
_GAA,
|
|
456
|
+
{
|
|
457
|
+
[_h]: ["POST", "/control/get-account-alias", 200],
|
|
458
|
+
},
|
|
459
|
+
() => GetAccountAliasRequest,
|
|
460
|
+
() => GetAccountAliasResult,
|
|
461
|
+
];
|
|
462
|
+
var ListSlackChannelConfigurations = [
|
|
463
|
+
9,
|
|
464
|
+
n0,
|
|
465
|
+
_LSCC,
|
|
466
|
+
{
|
|
467
|
+
[_h]: ["POST", "/control/list-slack-channel-configurations", 200],
|
|
468
|
+
},
|
|
469
|
+
() => ListSlackChannelConfigurationsRequest,
|
|
470
|
+
() => ListSlackChannelConfigurationsResult,
|
|
471
|
+
];
|
|
472
|
+
var ListSlackWorkspaceConfigurations = [
|
|
473
|
+
9,
|
|
474
|
+
n0,
|
|
475
|
+
_LSWC,
|
|
476
|
+
{
|
|
477
|
+
[_h]: ["POST", "/control/list-slack-workspace-configurations", 200],
|
|
478
|
+
},
|
|
479
|
+
() => ListSlackWorkspaceConfigurationsRequest,
|
|
480
|
+
() => ListSlackWorkspaceConfigurationsResult,
|
|
481
|
+
];
|
|
482
|
+
var PutAccountAlias = [
|
|
483
|
+
9,
|
|
484
|
+
n0,
|
|
485
|
+
_PAA,
|
|
486
|
+
{
|
|
487
|
+
[_h]: ["POST", "/control/put-account-alias", 200],
|
|
488
|
+
},
|
|
489
|
+
() => PutAccountAliasRequest,
|
|
490
|
+
() => PutAccountAliasResult,
|
|
491
|
+
];
|
|
492
|
+
var RegisterSlackWorkspaceForOrganization = [
|
|
493
|
+
9,
|
|
494
|
+
n0,
|
|
495
|
+
_RSWFO,
|
|
496
|
+
{
|
|
497
|
+
[_h]: ["POST", "/control/register-slack-workspace-for-organization", 200],
|
|
498
|
+
},
|
|
499
|
+
() => RegisterSlackWorkspaceForOrganizationRequest,
|
|
500
|
+
() => RegisterSlackWorkspaceForOrganizationResult,
|
|
501
|
+
];
|
|
502
|
+
var UpdateSlackChannelConfiguration = [
|
|
503
|
+
9,
|
|
504
|
+
n0,
|
|
505
|
+
_USCC,
|
|
506
|
+
{
|
|
507
|
+
[_h]: ["POST", "/control/update-slack-channel-configuration", 200],
|
|
508
|
+
},
|
|
509
|
+
() => UpdateSlackChannelConfigurationRequest,
|
|
510
|
+
() => UpdateSlackChannelConfigurationResult,
|
|
511
|
+
];
|
|
587
512
|
|
|
588
513
|
class CreateSlackChannelConfigurationCommand extends smithyClient.Command
|
|
589
514
|
.classBuilder()
|
|
590
515
|
.ep(commonParams)
|
|
591
516
|
.m(function (Command, cs, config, o) {
|
|
592
|
-
return [
|
|
593
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
594
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
595
|
-
];
|
|
517
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
596
518
|
})
|
|
597
519
|
.s("SupportApp", "CreateSlackChannelConfiguration", {})
|
|
598
520
|
.n("SupportAppClient", "CreateSlackChannelConfigurationCommand")
|
|
599
|
-
.
|
|
600
|
-
.ser(se_CreateSlackChannelConfigurationCommand)
|
|
601
|
-
.de(de_CreateSlackChannelConfigurationCommand)
|
|
521
|
+
.sc(CreateSlackChannelConfiguration)
|
|
602
522
|
.build() {
|
|
603
523
|
}
|
|
604
524
|
|
|
@@ -606,16 +526,11 @@ class DeleteAccountAliasCommand extends smithyClient.Command
|
|
|
606
526
|
.classBuilder()
|
|
607
527
|
.ep(commonParams)
|
|
608
528
|
.m(function (Command, cs, config, o) {
|
|
609
|
-
return [
|
|
610
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
611
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
612
|
-
];
|
|
529
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
613
530
|
})
|
|
614
531
|
.s("SupportApp", "DeleteAccountAlias", {})
|
|
615
532
|
.n("SupportAppClient", "DeleteAccountAliasCommand")
|
|
616
|
-
.
|
|
617
|
-
.ser(se_DeleteAccountAliasCommand)
|
|
618
|
-
.de(de_DeleteAccountAliasCommand)
|
|
533
|
+
.sc(DeleteAccountAlias)
|
|
619
534
|
.build() {
|
|
620
535
|
}
|
|
621
536
|
|
|
@@ -623,16 +538,11 @@ class DeleteSlackChannelConfigurationCommand extends smithyClient.Command
|
|
|
623
538
|
.classBuilder()
|
|
624
539
|
.ep(commonParams)
|
|
625
540
|
.m(function (Command, cs, config, o) {
|
|
626
|
-
return [
|
|
627
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
628
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
629
|
-
];
|
|
541
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
630
542
|
})
|
|
631
543
|
.s("SupportApp", "DeleteSlackChannelConfiguration", {})
|
|
632
544
|
.n("SupportAppClient", "DeleteSlackChannelConfigurationCommand")
|
|
633
|
-
.
|
|
634
|
-
.ser(se_DeleteSlackChannelConfigurationCommand)
|
|
635
|
-
.de(de_DeleteSlackChannelConfigurationCommand)
|
|
545
|
+
.sc(DeleteSlackChannelConfiguration)
|
|
636
546
|
.build() {
|
|
637
547
|
}
|
|
638
548
|
|
|
@@ -640,16 +550,11 @@ class DeleteSlackWorkspaceConfigurationCommand extends smithyClient.Command
|
|
|
640
550
|
.classBuilder()
|
|
641
551
|
.ep(commonParams)
|
|
642
552
|
.m(function (Command, cs, config, o) {
|
|
643
|
-
return [
|
|
644
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
645
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
646
|
-
];
|
|
553
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
647
554
|
})
|
|
648
555
|
.s("SupportApp", "DeleteSlackWorkspaceConfiguration", {})
|
|
649
556
|
.n("SupportAppClient", "DeleteSlackWorkspaceConfigurationCommand")
|
|
650
|
-
.
|
|
651
|
-
.ser(se_DeleteSlackWorkspaceConfigurationCommand)
|
|
652
|
-
.de(de_DeleteSlackWorkspaceConfigurationCommand)
|
|
557
|
+
.sc(DeleteSlackWorkspaceConfiguration)
|
|
653
558
|
.build() {
|
|
654
559
|
}
|
|
655
560
|
|
|
@@ -657,16 +562,11 @@ class GetAccountAliasCommand extends smithyClient.Command
|
|
|
657
562
|
.classBuilder()
|
|
658
563
|
.ep(commonParams)
|
|
659
564
|
.m(function (Command, cs, config, o) {
|
|
660
|
-
return [
|
|
661
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
662
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
663
|
-
];
|
|
565
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
664
566
|
})
|
|
665
567
|
.s("SupportApp", "GetAccountAlias", {})
|
|
666
568
|
.n("SupportAppClient", "GetAccountAliasCommand")
|
|
667
|
-
.
|
|
668
|
-
.ser(se_GetAccountAliasCommand)
|
|
669
|
-
.de(de_GetAccountAliasCommand)
|
|
569
|
+
.sc(GetAccountAlias)
|
|
670
570
|
.build() {
|
|
671
571
|
}
|
|
672
572
|
|
|
@@ -674,16 +574,11 @@ class ListSlackChannelConfigurationsCommand extends smithyClient.Command
|
|
|
674
574
|
.classBuilder()
|
|
675
575
|
.ep(commonParams)
|
|
676
576
|
.m(function (Command, cs, config, o) {
|
|
677
|
-
return [
|
|
678
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
679
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
680
|
-
];
|
|
577
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
681
578
|
})
|
|
682
579
|
.s("SupportApp", "ListSlackChannelConfigurations", {})
|
|
683
580
|
.n("SupportAppClient", "ListSlackChannelConfigurationsCommand")
|
|
684
|
-
.
|
|
685
|
-
.ser(se_ListSlackChannelConfigurationsCommand)
|
|
686
|
-
.de(de_ListSlackChannelConfigurationsCommand)
|
|
581
|
+
.sc(ListSlackChannelConfigurations)
|
|
687
582
|
.build() {
|
|
688
583
|
}
|
|
689
584
|
|
|
@@ -691,16 +586,11 @@ class ListSlackWorkspaceConfigurationsCommand extends smithyClient.Command
|
|
|
691
586
|
.classBuilder()
|
|
692
587
|
.ep(commonParams)
|
|
693
588
|
.m(function (Command, cs, config, o) {
|
|
694
|
-
return [
|
|
695
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
696
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
697
|
-
];
|
|
589
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
698
590
|
})
|
|
699
591
|
.s("SupportApp", "ListSlackWorkspaceConfigurations", {})
|
|
700
592
|
.n("SupportAppClient", "ListSlackWorkspaceConfigurationsCommand")
|
|
701
|
-
.
|
|
702
|
-
.ser(se_ListSlackWorkspaceConfigurationsCommand)
|
|
703
|
-
.de(de_ListSlackWorkspaceConfigurationsCommand)
|
|
593
|
+
.sc(ListSlackWorkspaceConfigurations)
|
|
704
594
|
.build() {
|
|
705
595
|
}
|
|
706
596
|
|
|
@@ -708,16 +598,11 @@ class PutAccountAliasCommand extends smithyClient.Command
|
|
|
708
598
|
.classBuilder()
|
|
709
599
|
.ep(commonParams)
|
|
710
600
|
.m(function (Command, cs, config, o) {
|
|
711
|
-
return [
|
|
712
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
713
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
714
|
-
];
|
|
601
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
715
602
|
})
|
|
716
603
|
.s("SupportApp", "PutAccountAlias", {})
|
|
717
604
|
.n("SupportAppClient", "PutAccountAliasCommand")
|
|
718
|
-
.
|
|
719
|
-
.ser(se_PutAccountAliasCommand)
|
|
720
|
-
.de(de_PutAccountAliasCommand)
|
|
605
|
+
.sc(PutAccountAlias)
|
|
721
606
|
.build() {
|
|
722
607
|
}
|
|
723
608
|
|
|
@@ -725,16 +610,11 @@ class RegisterSlackWorkspaceForOrganizationCommand extends smithyClient.Command
|
|
|
725
610
|
.classBuilder()
|
|
726
611
|
.ep(commonParams)
|
|
727
612
|
.m(function (Command, cs, config, o) {
|
|
728
|
-
return [
|
|
729
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
730
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
731
|
-
];
|
|
613
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
732
614
|
})
|
|
733
615
|
.s("SupportApp", "RegisterSlackWorkspaceForOrganization", {})
|
|
734
616
|
.n("SupportAppClient", "RegisterSlackWorkspaceForOrganizationCommand")
|
|
735
|
-
.
|
|
736
|
-
.ser(se_RegisterSlackWorkspaceForOrganizationCommand)
|
|
737
|
-
.de(de_RegisterSlackWorkspaceForOrganizationCommand)
|
|
617
|
+
.sc(RegisterSlackWorkspaceForOrganization)
|
|
738
618
|
.build() {
|
|
739
619
|
}
|
|
740
620
|
|
|
@@ -742,16 +622,11 @@ class UpdateSlackChannelConfigurationCommand extends smithyClient.Command
|
|
|
742
622
|
.classBuilder()
|
|
743
623
|
.ep(commonParams)
|
|
744
624
|
.m(function (Command, cs, config, o) {
|
|
745
|
-
return [
|
|
746
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
747
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
748
|
-
];
|
|
625
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
749
626
|
})
|
|
750
627
|
.s("SupportApp", "UpdateSlackChannelConfiguration", {})
|
|
751
628
|
.n("SupportAppClient", "UpdateSlackChannelConfigurationCommand")
|
|
752
|
-
.
|
|
753
|
-
.ser(se_UpdateSlackChannelConfigurationCommand)
|
|
754
|
-
.de(de_UpdateSlackChannelConfigurationCommand)
|
|
629
|
+
.sc(UpdateSlackChannelConfiguration)
|
|
755
630
|
.build() {
|
|
756
631
|
}
|
|
757
632
|
|
|
@@ -783,26 +658,26 @@ Object.defineProperty(exports, "__Client", {
|
|
|
783
658
|
enumerable: true,
|
|
784
659
|
get: function () { return smithyClient.Client; }
|
|
785
660
|
});
|
|
786
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
661
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
787
662
|
exports.AccountType = AccountType;
|
|
788
|
-
exports.ConflictException = ConflictException;
|
|
663
|
+
exports.ConflictException = ConflictException$1;
|
|
789
664
|
exports.CreateSlackChannelConfigurationCommand = CreateSlackChannelConfigurationCommand;
|
|
790
665
|
exports.DeleteAccountAliasCommand = DeleteAccountAliasCommand;
|
|
791
666
|
exports.DeleteSlackChannelConfigurationCommand = DeleteSlackChannelConfigurationCommand;
|
|
792
667
|
exports.DeleteSlackWorkspaceConfigurationCommand = DeleteSlackWorkspaceConfigurationCommand;
|
|
793
668
|
exports.GetAccountAliasCommand = GetAccountAliasCommand;
|
|
794
|
-
exports.InternalServerException = InternalServerException;
|
|
669
|
+
exports.InternalServerException = InternalServerException$1;
|
|
795
670
|
exports.ListSlackChannelConfigurationsCommand = ListSlackChannelConfigurationsCommand;
|
|
796
671
|
exports.ListSlackWorkspaceConfigurationsCommand = ListSlackWorkspaceConfigurationsCommand;
|
|
797
672
|
exports.NotificationSeverityLevel = NotificationSeverityLevel;
|
|
798
673
|
exports.PutAccountAliasCommand = PutAccountAliasCommand;
|
|
799
674
|
exports.RegisterSlackWorkspaceForOrganizationCommand = RegisterSlackWorkspaceForOrganizationCommand;
|
|
800
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
801
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
675
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
676
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
802
677
|
exports.SupportApp = SupportApp;
|
|
803
678
|
exports.SupportAppClient = SupportAppClient;
|
|
804
|
-
exports.SupportAppServiceException = SupportAppServiceException;
|
|
679
|
+
exports.SupportAppServiceException = SupportAppServiceException$1;
|
|
805
680
|
exports.UpdateSlackChannelConfigurationCommand = UpdateSlackChannelConfigurationCommand;
|
|
806
|
-
exports.ValidationException = ValidationException;
|
|
681
|
+
exports.ValidationException = ValidationException$1;
|
|
807
682
|
exports.paginateListSlackChannelConfigurations = paginateListSlackChannelConfigurations;
|
|
808
683
|
exports.paginateListSlackWorkspaceConfigurations = paginateListSlackWorkspaceConfigurations;
|