@aws-sdk/client-support-app 3.948.0 → 3.953.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/dist-cjs/index.js +138 -99
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CreateSlackChannelConfigurationCommand.js +2 -2
  4. package/dist-es/commands/DeleteAccountAliasCommand.js +2 -2
  5. package/dist-es/commands/DeleteSlackChannelConfigurationCommand.js +2 -2
  6. package/dist-es/commands/DeleteSlackWorkspaceConfigurationCommand.js +2 -2
  7. package/dist-es/commands/GetAccountAliasCommand.js +2 -2
  8. package/dist-es/commands/ListSlackChannelConfigurationsCommand.js +2 -2
  9. package/dist-es/commands/ListSlackWorkspaceConfigurationsCommand.js +2 -2
  10. package/dist-es/commands/PutAccountAliasCommand.js +2 -2
  11. package/dist-es/commands/RegisterSlackWorkspaceForOrganizationCommand.js +2 -2
  12. package/dist-es/commands/UpdateSlackChannelConfigurationCommand.js +2 -2
  13. package/dist-es/index.js +1 -0
  14. package/dist-es/runtimeConfig.shared.js +6 -1
  15. package/dist-es/schemas/schemas_0.js +70 -70
  16. package/dist-types/SupportAppClient.d.ts +1 -10
  17. package/dist-types/index.d.ts +1 -0
  18. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  19. package/dist-types/runtimeConfig.d.ts +6 -2
  20. package/dist-types/runtimeConfig.native.d.ts +6 -2
  21. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  22. package/dist-types/schemas/schemas_0.d.ts +40 -42
  23. package/dist-types/ts3.4/SupportAppClient.d.ts +0 -4
  24. package/dist-types/ts3.4/index.d.ts +1 -0
  25. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  26. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  27. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  28. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  29. package/dist-types/ts3.4/schemas/schemas_0.d.ts +39 -42
  30. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class SupportAppClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let SupportAppServiceException$1 = class SupportAppServiceException extends smithyClient.ServiceException {
113
+ 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
- let AccessDeniedException$1 = class AccessDeniedException extends SupportAppServiceException$1 {
120
+ class AccessDeniedException extends SupportAppServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends SupportAppServ
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let ConflictException$1 = class ConflictException extends SupportAppServiceException$1 {
131
+ }
132
+ class ConflictException extends SupportAppServiceException {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  constructor(opts) {
@@ -140,8 +140,8 @@ let ConflictException$1 = class ConflictException extends SupportAppServiceExcep
140
140
  });
141
141
  Object.setPrototypeOf(this, ConflictException.prototype);
142
142
  }
143
- };
144
- let InternalServerException$1 = class InternalServerException extends SupportAppServiceException$1 {
143
+ }
144
+ class InternalServerException extends SupportAppServiceException {
145
145
  name = "InternalServerException";
146
146
  $fault = "server";
147
147
  constructor(opts) {
@@ -152,8 +152,8 @@ let InternalServerException$1 = class InternalServerException extends SupportApp
152
152
  });
153
153
  Object.setPrototypeOf(this, InternalServerException.prototype);
154
154
  }
155
- };
156
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends SupportAppServiceException$1 {
155
+ }
156
+ class ServiceQuotaExceededException extends SupportAppServiceException {
157
157
  name = "ServiceQuotaExceededException";
158
158
  $fault = "client";
159
159
  constructor(opts) {
@@ -164,8 +164,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
164
164
  });
165
165
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
166
166
  }
167
- };
168
- let ValidationException$1 = class ValidationException extends SupportAppServiceException$1 {
167
+ }
168
+ class ValidationException extends SupportAppServiceException {
169
169
  name = "ValidationException";
170
170
  $fault = "client";
171
171
  constructor(opts) {
@@ -176,8 +176,8 @@ let ValidationException$1 = class ValidationException extends SupportAppServiceE
176
176
  });
177
177
  Object.setPrototypeOf(this, ValidationException.prototype);
178
178
  }
179
- };
180
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends SupportAppServiceException$1 {
179
+ }
180
+ class ResourceNotFoundException extends SupportAppServiceException {
181
181
  name = "ResourceNotFoundException";
182
182
  $fault = "client";
183
183
  constructor(opts) {
@@ -188,7 +188,7 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Suppor
188
188
  });
189
189
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
190
190
  }
191
- };
191
+ }
192
192
 
193
193
  const _ADE = "AccessDeniedException";
194
194
  const _CE = "ConflictException";
@@ -253,11 +253,11 @@ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.supportapp";
253
253
  const _tI = "teamId";
254
254
  const _tN = "teamName";
255
255
  const n0 = "com.amazonaws.supportapp";
256
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
257
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
258
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
259
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
260
- var CreateSlackChannelConfigurationRequest = [
256
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
257
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
258
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
259
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
260
+ var CreateSlackChannelConfigurationRequest$ = [
261
261
  3,
262
262
  n0,
263
263
  _CSCCR,
@@ -265,19 +265,19 @@ var CreateSlackChannelConfigurationRequest = [
265
265
  [_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
266
266
  [0, 0, 0, 2, 2, 2, 0, 0],
267
267
  ];
268
- var CreateSlackChannelConfigurationResult = [3, n0, _CSCCRr, 0, [], []];
269
- var DeleteAccountAliasRequest = [3, n0, _DAAR, 0, [], []];
270
- var DeleteAccountAliasResult = [3, n0, _DAARe, 0, [], []];
271
- var DeleteSlackChannelConfigurationRequest = [3, n0, _DSCCR, 0, [_tI, _cI], [0, 0]];
272
- var DeleteSlackChannelConfigurationResult = [3, n0, _DSCCRe, 0, [], []];
273
- var DeleteSlackWorkspaceConfigurationRequest = [3, n0, _DSWCR, 0, [_tI], [0]];
274
- var DeleteSlackWorkspaceConfigurationResult = [3, n0, _DSWCRe, 0, [], []];
275
- var GetAccountAliasRequest = [3, n0, _GAAR, 0, [], []];
276
- var GetAccountAliasResult = [3, n0, _GAARe, 0, [_aA], [0]];
277
- var InternalServerException = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_m], [0]];
278
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
279
- var ListSlackChannelConfigurationsRequest = [3, n0, _LSCCR, 0, [_nT], [0]];
280
- var ListSlackChannelConfigurationsResult = [
268
+ var CreateSlackChannelConfigurationResult$ = [3, n0, _CSCCRr, 0, [], []];
269
+ var DeleteAccountAliasRequest$ = [3, n0, _DAAR, 0, [], []];
270
+ var DeleteAccountAliasResult$ = [3, n0, _DAARe, 0, [], []];
271
+ var DeleteSlackChannelConfigurationRequest$ = [3, n0, _DSCCR, 0, [_tI, _cI], [0, 0]];
272
+ var DeleteSlackChannelConfigurationResult$ = [3, n0, _DSCCRe, 0, [], []];
273
+ var DeleteSlackWorkspaceConfigurationRequest$ = [3, n0, _DSWCR, 0, [_tI], [0]];
274
+ var DeleteSlackWorkspaceConfigurationResult$ = [3, n0, _DSWCRe, 0, [], []];
275
+ var GetAccountAliasRequest$ = [3, n0, _GAAR, 0, [], []];
276
+ var GetAccountAliasResult$ = [3, n0, _GAARe, 0, [_aA], [0]];
277
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _s, [_hE]: 500 }, [_m], [0]];
278
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
279
+ var ListSlackChannelConfigurationsRequest$ = [3, n0, _LSCCR, 0, [_nT], [0]];
280
+ var ListSlackChannelConfigurationsResult$ = [
281
281
  3,
282
282
  n0,
283
283
  _LSCCRi,
@@ -285,8 +285,8 @@ var ListSlackChannelConfigurationsResult = [
285
285
  [_nT, _sCC],
286
286
  [0, () => slackChannelConfigurationList],
287
287
  ];
288
- var ListSlackWorkspaceConfigurationsRequest = [3, n0, _LSWCR, 0, [_nT], [0]];
289
- var ListSlackWorkspaceConfigurationsResult = [
288
+ var ListSlackWorkspaceConfigurationsRequest$ = [3, n0, _LSWCR, 0, [_nT], [0]];
289
+ var ListSlackWorkspaceConfigurationsResult$ = [
290
290
  3,
291
291
  n0,
292
292
  _LSWCRi,
@@ -294,10 +294,10 @@ var ListSlackWorkspaceConfigurationsResult = [
294
294
  [_nT, _sWC],
295
295
  [0, () => SlackWorkspaceConfigurationList],
296
296
  ];
297
- var PutAccountAliasRequest = [3, n0, _PAAR, 0, [_aA], [0]];
298
- var PutAccountAliasResult = [3, n0, _PAARu, 0, [], []];
299
- var RegisterSlackWorkspaceForOrganizationRequest = [3, n0, _RSWFOR, 0, [_tI], [0]];
300
- var RegisterSlackWorkspaceForOrganizationResult = [
297
+ var PutAccountAliasRequest$ = [3, n0, _PAAR, 0, [_aA], [0]];
298
+ var PutAccountAliasResult$ = [3, n0, _PAARu, 0, [], []];
299
+ var RegisterSlackWorkspaceForOrganizationRequest$ = [3, n0, _RSWFOR, 0, [_tI], [0]];
300
+ var RegisterSlackWorkspaceForOrganizationResult$ = [
301
301
  3,
302
302
  n0,
303
303
  _RSWFORe,
@@ -305,11 +305,11 @@ var RegisterSlackWorkspaceForOrganizationResult = [
305
305
  [_tI, _tN, _aT],
306
306
  [0, 0, 0],
307
307
  ];
308
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
309
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
310
- var ServiceQuotaExceededException = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
311
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
312
- var SlackChannelConfiguration = [
308
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
309
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
310
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
311
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
312
+ var SlackChannelConfiguration$ = [
313
313
  3,
314
314
  n0,
315
315
  _SCC,
@@ -317,8 +317,8 @@ var SlackChannelConfiguration = [
317
317
  [_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
318
318
  [0, 0, 0, 2, 2, 2, 0, 0],
319
319
  ];
320
- var SlackWorkspaceConfiguration = [3, n0, _SWC, 0, [_tI, _tN, _aOMA], [0, 0, 2]];
321
- var UpdateSlackChannelConfigurationRequest = [
320
+ var SlackWorkspaceConfiguration$ = [3, n0, _SWC, 0, [_tI, _tN, _aOMA], [0, 0, 2]];
321
+ var UpdateSlackChannelConfigurationRequest$ = [
322
322
  3,
323
323
  n0,
324
324
  _USCCR,
@@ -326,7 +326,7 @@ var UpdateSlackChannelConfigurationRequest = [
326
326
  [_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
327
327
  [0, 0, 0, 2, 2, 2, 0, 0],
328
328
  ];
329
- var UpdateSlackChannelConfigurationResult = [
329
+ var UpdateSlackChannelConfigurationResult$ = [
330
330
  3,
331
331
  n0,
332
332
  _USCCRp,
@@ -334,91 +334,91 @@ var UpdateSlackChannelConfigurationResult = [
334
334
  [_tI, _cI, _cN, _nOCORC, _nOACTC, _nORC, _nOCS, _cRA],
335
335
  [0, 0, 0, 2, 2, 2, 0, 0],
336
336
  ];
337
- var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
338
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
339
- var SupportAppServiceException = [-3, _sm, "SupportAppServiceException", 0, [], []];
340
- schema.TypeRegistry.for(_sm).registerError(SupportAppServiceException, SupportAppServiceException$1);
341
- var slackChannelConfigurationList = [1, n0, _sCCL, 0, () => SlackChannelConfiguration];
342
- var SlackWorkspaceConfigurationList = [1, n0, _SWCL, 0, () => SlackWorkspaceConfiguration];
343
- var CreateSlackChannelConfiguration = [
337
+ var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
338
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
339
+ var SupportAppServiceException$ = [-3, _sm, "SupportAppServiceException", 0, [], []];
340
+ schema.TypeRegistry.for(_sm).registerError(SupportAppServiceException$, SupportAppServiceException);
341
+ var slackChannelConfigurationList = [1, n0, _sCCL, 0, () => SlackChannelConfiguration$];
342
+ var SlackWorkspaceConfigurationList = [1, n0, _SWCL, 0, () => SlackWorkspaceConfiguration$];
343
+ var CreateSlackChannelConfiguration$ = [
344
344
  9,
345
345
  n0,
346
346
  _CSCC,
347
347
  { [_h]: ["POST", "/control/create-slack-channel-configuration", 200] },
348
- () => CreateSlackChannelConfigurationRequest,
349
- () => CreateSlackChannelConfigurationResult,
348
+ () => CreateSlackChannelConfigurationRequest$,
349
+ () => CreateSlackChannelConfigurationResult$,
350
350
  ];
351
- var DeleteAccountAlias = [
351
+ var DeleteAccountAlias$ = [
352
352
  9,
353
353
  n0,
354
354
  _DAA,
355
355
  { [_h]: ["POST", "/control/delete-account-alias", 200] },
356
- () => DeleteAccountAliasRequest,
357
- () => DeleteAccountAliasResult,
356
+ () => DeleteAccountAliasRequest$,
357
+ () => DeleteAccountAliasResult$,
358
358
  ];
359
- var DeleteSlackChannelConfiguration = [
359
+ var DeleteSlackChannelConfiguration$ = [
360
360
  9,
361
361
  n0,
362
362
  _DSCC,
363
363
  { [_h]: ["POST", "/control/delete-slack-channel-configuration", 200] },
364
- () => DeleteSlackChannelConfigurationRequest,
365
- () => DeleteSlackChannelConfigurationResult,
364
+ () => DeleteSlackChannelConfigurationRequest$,
365
+ () => DeleteSlackChannelConfigurationResult$,
366
366
  ];
367
- var DeleteSlackWorkspaceConfiguration = [
367
+ var DeleteSlackWorkspaceConfiguration$ = [
368
368
  9,
369
369
  n0,
370
370
  _DSWC,
371
371
  { [_h]: ["POST", "/control/delete-slack-workspace-configuration", 200] },
372
- () => DeleteSlackWorkspaceConfigurationRequest,
373
- () => DeleteSlackWorkspaceConfigurationResult,
372
+ () => DeleteSlackWorkspaceConfigurationRequest$,
373
+ () => DeleteSlackWorkspaceConfigurationResult$,
374
374
  ];
375
- var GetAccountAlias = [
375
+ var GetAccountAlias$ = [
376
376
  9,
377
377
  n0,
378
378
  _GAA,
379
379
  { [_h]: ["POST", "/control/get-account-alias", 200] },
380
- () => GetAccountAliasRequest,
381
- () => GetAccountAliasResult,
380
+ () => GetAccountAliasRequest$,
381
+ () => GetAccountAliasResult$,
382
382
  ];
383
- var ListSlackChannelConfigurations = [
383
+ var ListSlackChannelConfigurations$ = [
384
384
  9,
385
385
  n0,
386
386
  _LSCC,
387
387
  { [_h]: ["POST", "/control/list-slack-channel-configurations", 200] },
388
- () => ListSlackChannelConfigurationsRequest,
389
- () => ListSlackChannelConfigurationsResult,
388
+ () => ListSlackChannelConfigurationsRequest$,
389
+ () => ListSlackChannelConfigurationsResult$,
390
390
  ];
391
- var ListSlackWorkspaceConfigurations = [
391
+ var ListSlackWorkspaceConfigurations$ = [
392
392
  9,
393
393
  n0,
394
394
  _LSWC,
395
395
  { [_h]: ["POST", "/control/list-slack-workspace-configurations", 200] },
396
- () => ListSlackWorkspaceConfigurationsRequest,
397
- () => ListSlackWorkspaceConfigurationsResult,
396
+ () => ListSlackWorkspaceConfigurationsRequest$,
397
+ () => ListSlackWorkspaceConfigurationsResult$,
398
398
  ];
399
- var PutAccountAlias = [
399
+ var PutAccountAlias$ = [
400
400
  9,
401
401
  n0,
402
402
  _PAA,
403
403
  { [_h]: ["POST", "/control/put-account-alias", 200] },
404
- () => PutAccountAliasRequest,
405
- () => PutAccountAliasResult,
404
+ () => PutAccountAliasRequest$,
405
+ () => PutAccountAliasResult$,
406
406
  ];
407
- var RegisterSlackWorkspaceForOrganization = [
407
+ var RegisterSlackWorkspaceForOrganization$ = [
408
408
  9,
409
409
  n0,
410
410
  _RSWFO,
411
411
  { [_h]: ["POST", "/control/register-slack-workspace-for-organization", 200] },
412
- () => RegisterSlackWorkspaceForOrganizationRequest,
413
- () => RegisterSlackWorkspaceForOrganizationResult,
412
+ () => RegisterSlackWorkspaceForOrganizationRequest$,
413
+ () => RegisterSlackWorkspaceForOrganizationResult$,
414
414
  ];
415
- var UpdateSlackChannelConfiguration = [
415
+ var UpdateSlackChannelConfiguration$ = [
416
416
  9,
417
417
  n0,
418
418
  _USCC,
419
419
  { [_h]: ["POST", "/control/update-slack-channel-configuration", 200] },
420
- () => UpdateSlackChannelConfigurationRequest,
421
- () => UpdateSlackChannelConfigurationResult,
420
+ () => UpdateSlackChannelConfigurationRequest$,
421
+ () => UpdateSlackChannelConfigurationResult$,
422
422
  ];
423
423
 
424
424
  class CreateSlackChannelConfigurationCommand extends smithyClient.Command
@@ -429,7 +429,7 @@ class CreateSlackChannelConfigurationCommand extends smithyClient.Command
429
429
  })
430
430
  .s("SupportApp", "CreateSlackChannelConfiguration", {})
431
431
  .n("SupportAppClient", "CreateSlackChannelConfigurationCommand")
432
- .sc(CreateSlackChannelConfiguration)
432
+ .sc(CreateSlackChannelConfiguration$)
433
433
  .build() {
434
434
  }
435
435
 
@@ -441,7 +441,7 @@ class DeleteAccountAliasCommand extends smithyClient.Command
441
441
  })
442
442
  .s("SupportApp", "DeleteAccountAlias", {})
443
443
  .n("SupportAppClient", "DeleteAccountAliasCommand")
444
- .sc(DeleteAccountAlias)
444
+ .sc(DeleteAccountAlias$)
445
445
  .build() {
446
446
  }
447
447
 
@@ -453,7 +453,7 @@ class DeleteSlackChannelConfigurationCommand extends smithyClient.Command
453
453
  })
454
454
  .s("SupportApp", "DeleteSlackChannelConfiguration", {})
455
455
  .n("SupportAppClient", "DeleteSlackChannelConfigurationCommand")
456
- .sc(DeleteSlackChannelConfiguration)
456
+ .sc(DeleteSlackChannelConfiguration$)
457
457
  .build() {
458
458
  }
459
459
 
@@ -465,7 +465,7 @@ class DeleteSlackWorkspaceConfigurationCommand extends smithyClient.Command
465
465
  })
466
466
  .s("SupportApp", "DeleteSlackWorkspaceConfiguration", {})
467
467
  .n("SupportAppClient", "DeleteSlackWorkspaceConfigurationCommand")
468
- .sc(DeleteSlackWorkspaceConfiguration)
468
+ .sc(DeleteSlackWorkspaceConfiguration$)
469
469
  .build() {
470
470
  }
471
471
 
@@ -477,7 +477,7 @@ class GetAccountAliasCommand extends smithyClient.Command
477
477
  })
478
478
  .s("SupportApp", "GetAccountAlias", {})
479
479
  .n("SupportAppClient", "GetAccountAliasCommand")
480
- .sc(GetAccountAlias)
480
+ .sc(GetAccountAlias$)
481
481
  .build() {
482
482
  }
483
483
 
@@ -489,7 +489,7 @@ class ListSlackChannelConfigurationsCommand extends smithyClient.Command
489
489
  })
490
490
  .s("SupportApp", "ListSlackChannelConfigurations", {})
491
491
  .n("SupportAppClient", "ListSlackChannelConfigurationsCommand")
492
- .sc(ListSlackChannelConfigurations)
492
+ .sc(ListSlackChannelConfigurations$)
493
493
  .build() {
494
494
  }
495
495
 
@@ -501,7 +501,7 @@ class ListSlackWorkspaceConfigurationsCommand extends smithyClient.Command
501
501
  })
502
502
  .s("SupportApp", "ListSlackWorkspaceConfigurations", {})
503
503
  .n("SupportAppClient", "ListSlackWorkspaceConfigurationsCommand")
504
- .sc(ListSlackWorkspaceConfigurations)
504
+ .sc(ListSlackWorkspaceConfigurations$)
505
505
  .build() {
506
506
  }
507
507
 
@@ -513,7 +513,7 @@ class PutAccountAliasCommand extends smithyClient.Command
513
513
  })
514
514
  .s("SupportApp", "PutAccountAlias", {})
515
515
  .n("SupportAppClient", "PutAccountAliasCommand")
516
- .sc(PutAccountAlias)
516
+ .sc(PutAccountAlias$)
517
517
  .build() {
518
518
  }
519
519
 
@@ -525,7 +525,7 @@ class RegisterSlackWorkspaceForOrganizationCommand extends smithyClient.Command
525
525
  })
526
526
  .s("SupportApp", "RegisterSlackWorkspaceForOrganization", {})
527
527
  .n("SupportAppClient", "RegisterSlackWorkspaceForOrganizationCommand")
528
- .sc(RegisterSlackWorkspaceForOrganization)
528
+ .sc(RegisterSlackWorkspaceForOrganization$)
529
529
  .build() {
530
530
  }
531
531
 
@@ -537,7 +537,7 @@ class UpdateSlackChannelConfigurationCommand extends smithyClient.Command
537
537
  })
538
538
  .s("SupportApp", "UpdateSlackChannelConfiguration", {})
539
539
  .n("SupportAppClient", "UpdateSlackChannelConfigurationCommand")
540
- .sc(UpdateSlackChannelConfiguration)
540
+ .sc(UpdateSlackChannelConfiguration$)
541
541
  .build() {
542
542
  }
543
543
 
@@ -579,26 +579,65 @@ Object.defineProperty(exports, "__Client", {
579
579
  enumerable: true,
580
580
  get: function () { return smithyClient.Client; }
581
581
  });
582
- exports.AccessDeniedException = AccessDeniedException$1;
582
+ exports.AccessDeniedException = AccessDeniedException;
583
+ exports.AccessDeniedException$ = AccessDeniedException$;
583
584
  exports.AccountType = AccountType;
584
- exports.ConflictException = ConflictException$1;
585
+ exports.ConflictException = ConflictException;
586
+ exports.ConflictException$ = ConflictException$;
587
+ exports.CreateSlackChannelConfiguration$ = CreateSlackChannelConfiguration$;
585
588
  exports.CreateSlackChannelConfigurationCommand = CreateSlackChannelConfigurationCommand;
589
+ exports.CreateSlackChannelConfigurationRequest$ = CreateSlackChannelConfigurationRequest$;
590
+ exports.CreateSlackChannelConfigurationResult$ = CreateSlackChannelConfigurationResult$;
591
+ exports.DeleteAccountAlias$ = DeleteAccountAlias$;
586
592
  exports.DeleteAccountAliasCommand = DeleteAccountAliasCommand;
593
+ exports.DeleteAccountAliasRequest$ = DeleteAccountAliasRequest$;
594
+ exports.DeleteAccountAliasResult$ = DeleteAccountAliasResult$;
595
+ exports.DeleteSlackChannelConfiguration$ = DeleteSlackChannelConfiguration$;
587
596
  exports.DeleteSlackChannelConfigurationCommand = DeleteSlackChannelConfigurationCommand;
597
+ exports.DeleteSlackChannelConfigurationRequest$ = DeleteSlackChannelConfigurationRequest$;
598
+ exports.DeleteSlackChannelConfigurationResult$ = DeleteSlackChannelConfigurationResult$;
599
+ exports.DeleteSlackWorkspaceConfiguration$ = DeleteSlackWorkspaceConfiguration$;
588
600
  exports.DeleteSlackWorkspaceConfigurationCommand = DeleteSlackWorkspaceConfigurationCommand;
601
+ exports.DeleteSlackWorkspaceConfigurationRequest$ = DeleteSlackWorkspaceConfigurationRequest$;
602
+ exports.DeleteSlackWorkspaceConfigurationResult$ = DeleteSlackWorkspaceConfigurationResult$;
603
+ exports.GetAccountAlias$ = GetAccountAlias$;
589
604
  exports.GetAccountAliasCommand = GetAccountAliasCommand;
590
- exports.InternalServerException = InternalServerException$1;
605
+ exports.GetAccountAliasRequest$ = GetAccountAliasRequest$;
606
+ exports.GetAccountAliasResult$ = GetAccountAliasResult$;
607
+ exports.InternalServerException = InternalServerException;
608
+ exports.InternalServerException$ = InternalServerException$;
609
+ exports.ListSlackChannelConfigurations$ = ListSlackChannelConfigurations$;
591
610
  exports.ListSlackChannelConfigurationsCommand = ListSlackChannelConfigurationsCommand;
611
+ exports.ListSlackChannelConfigurationsRequest$ = ListSlackChannelConfigurationsRequest$;
612
+ exports.ListSlackChannelConfigurationsResult$ = ListSlackChannelConfigurationsResult$;
613
+ exports.ListSlackWorkspaceConfigurations$ = ListSlackWorkspaceConfigurations$;
592
614
  exports.ListSlackWorkspaceConfigurationsCommand = ListSlackWorkspaceConfigurationsCommand;
615
+ exports.ListSlackWorkspaceConfigurationsRequest$ = ListSlackWorkspaceConfigurationsRequest$;
616
+ exports.ListSlackWorkspaceConfigurationsResult$ = ListSlackWorkspaceConfigurationsResult$;
593
617
  exports.NotificationSeverityLevel = NotificationSeverityLevel;
618
+ exports.PutAccountAlias$ = PutAccountAlias$;
594
619
  exports.PutAccountAliasCommand = PutAccountAliasCommand;
620
+ exports.PutAccountAliasRequest$ = PutAccountAliasRequest$;
621
+ exports.PutAccountAliasResult$ = PutAccountAliasResult$;
622
+ exports.RegisterSlackWorkspaceForOrganization$ = RegisterSlackWorkspaceForOrganization$;
595
623
  exports.RegisterSlackWorkspaceForOrganizationCommand = RegisterSlackWorkspaceForOrganizationCommand;
596
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
597
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
624
+ exports.RegisterSlackWorkspaceForOrganizationRequest$ = RegisterSlackWorkspaceForOrganizationRequest$;
625
+ exports.RegisterSlackWorkspaceForOrganizationResult$ = RegisterSlackWorkspaceForOrganizationResult$;
626
+ exports.ResourceNotFoundException = ResourceNotFoundException;
627
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
628
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
629
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
630
+ exports.SlackChannelConfiguration$ = SlackChannelConfiguration$;
631
+ exports.SlackWorkspaceConfiguration$ = SlackWorkspaceConfiguration$;
598
632
  exports.SupportApp = SupportApp;
599
633
  exports.SupportAppClient = SupportAppClient;
600
- exports.SupportAppServiceException = SupportAppServiceException$1;
634
+ exports.SupportAppServiceException = SupportAppServiceException;
635
+ exports.SupportAppServiceException$ = SupportAppServiceException$;
636
+ exports.UpdateSlackChannelConfiguration$ = UpdateSlackChannelConfiguration$;
601
637
  exports.UpdateSlackChannelConfigurationCommand = UpdateSlackChannelConfigurationCommand;
602
- exports.ValidationException = ValidationException$1;
638
+ exports.UpdateSlackChannelConfigurationRequest$ = UpdateSlackChannelConfigurationRequest$;
639
+ exports.UpdateSlackChannelConfigurationResult$ = UpdateSlackChannelConfigurationResult$;
640
+ exports.ValidationException = ValidationException;
641
+ exports.ValidationException$ = ValidationException$;
603
642
  exports.paginateListSlackChannelConfigurations = paginateListSlackChannelConfigurations;
604
643
  exports.paginateListSlackWorkspaceConfigurations = paginateListSlackWorkspaceConfigurations;
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.supportapp" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.supportapp",
32
+ version: "2021-08-20",
33
+ serviceTarget: "SupportApp",
34
+ },
30
35
  serviceId: config?.serviceId ?? "Support App",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateSlackChannelConfiguration } from "../schemas/schemas_0";
4
+ import { CreateSlackChannelConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateSlackChannelConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateSlackChannelConfigurationCommand extends $Command
11
11
  })
12
12
  .s("SupportApp", "CreateSlackChannelConfiguration", {})
13
13
  .n("SupportAppClient", "CreateSlackChannelConfigurationCommand")
14
- .sc(CreateSlackChannelConfiguration)
14
+ .sc(CreateSlackChannelConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteAccountAlias } from "../schemas/schemas_0";
4
+ import { DeleteAccountAlias$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteAccountAliasCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteAccountAliasCommand extends $Command
11
11
  })
12
12
  .s("SupportApp", "DeleteAccountAlias", {})
13
13
  .n("SupportAppClient", "DeleteAccountAliasCommand")
14
- .sc(DeleteAccountAlias)
14
+ .sc(DeleteAccountAlias$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteSlackChannelConfiguration } from "../schemas/schemas_0";
4
+ import { DeleteSlackChannelConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteSlackChannelConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteSlackChannelConfigurationCommand extends $Command
11
11
  })
12
12
  .s("SupportApp", "DeleteSlackChannelConfiguration", {})
13
13
  .n("SupportAppClient", "DeleteSlackChannelConfigurationCommand")
14
- .sc(DeleteSlackChannelConfiguration)
14
+ .sc(DeleteSlackChannelConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteSlackWorkspaceConfiguration } from "../schemas/schemas_0";
4
+ import { DeleteSlackWorkspaceConfiguration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteSlackWorkspaceConfigurationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteSlackWorkspaceConfigurationCommand extends $Command
11
11
  })
12
12
  .s("SupportApp", "DeleteSlackWorkspaceConfiguration", {})
13
13
  .n("SupportAppClient", "DeleteSlackWorkspaceConfigurationCommand")
14
- .sc(DeleteSlackWorkspaceConfiguration)
14
+ .sc(DeleteSlackWorkspaceConfiguration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { GetAccountAlias } from "../schemas/schemas_0";
4
+ import { GetAccountAlias$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetAccountAliasCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetAccountAliasCommand extends $Command
11
11
  })
12
12
  .s("SupportApp", "GetAccountAlias", {})
13
13
  .n("SupportAppClient", "GetAccountAliasCommand")
14
- .sc(GetAccountAlias)
14
+ .sc(GetAccountAlias$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListSlackChannelConfigurations } from "../schemas/schemas_0";
4
+ import { ListSlackChannelConfigurations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListSlackChannelConfigurationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListSlackChannelConfigurationsCommand extends $Command
11
11
  })
12
12
  .s("SupportApp", "ListSlackChannelConfigurations", {})
13
13
  .n("SupportAppClient", "ListSlackChannelConfigurationsCommand")
14
- .sc(ListSlackChannelConfigurations)
14
+ .sc(ListSlackChannelConfigurations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListSlackWorkspaceConfigurations } from "../schemas/schemas_0";
4
+ import { ListSlackWorkspaceConfigurations$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListSlackWorkspaceConfigurationsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListSlackWorkspaceConfigurationsCommand extends $Command
11
11
  })
12
12
  .s("SupportApp", "ListSlackWorkspaceConfigurations", {})
13
13
  .n("SupportAppClient", "ListSlackWorkspaceConfigurationsCommand")
14
- .sc(ListSlackWorkspaceConfigurations)
14
+ .sc(ListSlackWorkspaceConfigurations$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { PutAccountAlias } from "../schemas/schemas_0";
4
+ import { PutAccountAlias$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PutAccountAliasCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PutAccountAliasCommand extends $Command
11
11
  })
12
12
  .s("SupportApp", "PutAccountAlias", {})
13
13
  .n("SupportAppClient", "PutAccountAliasCommand")
14
- .sc(PutAccountAlias)
14
+ .sc(PutAccountAlias$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RegisterSlackWorkspaceForOrganization } from "../schemas/schemas_0";
4
+ import { RegisterSlackWorkspaceForOrganization$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RegisterSlackWorkspaceForOrganizationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RegisterSlackWorkspaceForOrganizationCommand extends $Command
11
11
  })
12
12
  .s("SupportApp", "RegisterSlackWorkspaceForOrganization", {})
13
13
  .n("SupportAppClient", "RegisterSlackWorkspaceForOrganizationCommand")
14
- .sc(RegisterSlackWorkspaceForOrganization)
14
+ .sc(RegisterSlackWorkspaceForOrganization$)
15
15
  .build() {
16
16
  }