@aws-sdk/client-appfabric 3.721.0 → 3.726.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -185,7 +185,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
185
185
  }, "resolveRuntimeExtensions");
186
186
 
187
187
  // src/AppFabricClient.ts
188
- var _AppFabricClient = class _AppFabricClient extends import_smithy_client.Client {
188
+ var AppFabricClient = class extends import_smithy_client.Client {
189
+ static {
190
+ __name(this, "AppFabricClient");
191
+ }
192
+ /**
193
+ * The resolved configuration of AppFabricClient class. This is resolved and normalized from the {@link AppFabricClientConfig | constructor configuration interface}.
194
+ */
195
+ config;
189
196
  constructor(...[configuration]) {
190
197
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
191
198
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -195,7 +202,7 @@ var _AppFabricClient = class _AppFabricClient extends import_smithy_client.Clien
195
202
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
196
203
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
197
204
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
198
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
205
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
199
206
  super(_config_8);
200
207
  this.config = _config_8;
201
208
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -223,8 +230,6 @@ var _AppFabricClient = class _AppFabricClient extends import_smithy_client.Clien
223
230
  super.destroy();
224
231
  }
225
232
  };
226
- __name(_AppFabricClient, "AppFabricClient");
227
- var AppFabricClient = _AppFabricClient;
228
233
 
229
234
  // src/AppFabric.ts
230
235
 
@@ -239,7 +244,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
239
244
 
240
245
  // src/models/AppFabricServiceException.ts
241
246
 
242
- var _AppFabricServiceException = class _AppFabricServiceException extends import_smithy_client.ServiceException {
247
+ var AppFabricServiceException = class _AppFabricServiceException extends import_smithy_client.ServiceException {
248
+ static {
249
+ __name(this, "AppFabricServiceException");
250
+ }
243
251
  /**
244
252
  * @internal
245
253
  */
@@ -248,11 +256,14 @@ var _AppFabricServiceException = class _AppFabricServiceException extends import
248
256
  Object.setPrototypeOf(this, _AppFabricServiceException.prototype);
249
257
  }
250
258
  };
251
- __name(_AppFabricServiceException, "AppFabricServiceException");
252
- var AppFabricServiceException = _AppFabricServiceException;
253
259
 
254
260
  // src/models/models_0.ts
255
- var _AccessDeniedException = class _AccessDeniedException extends AppFabricServiceException {
261
+ var AccessDeniedException = class _AccessDeniedException extends AppFabricServiceException {
262
+ static {
263
+ __name(this, "AccessDeniedException");
264
+ }
265
+ name = "AccessDeniedException";
266
+ $fault = "client";
256
267
  /**
257
268
  * @internal
258
269
  */
@@ -262,13 +273,9 @@ var _AccessDeniedException = class _AccessDeniedException extends AppFabricServi
262
273
  $fault: "client",
263
274
  ...opts
264
275
  });
265
- this.name = "AccessDeniedException";
266
- this.$fault = "client";
267
276
  Object.setPrototypeOf(this, _AccessDeniedException.prototype);
268
277
  }
269
278
  };
270
- __name(_AccessDeniedException, "AccessDeniedException");
271
- var AccessDeniedException = _AccessDeniedException;
272
279
  var AuthType = {
273
280
  API_KEY: "apiKey",
274
281
  OAUTH2: "oauth2"
@@ -307,7 +314,18 @@ var ResultStatus = {
307
314
  FAILED: "FAILED",
308
315
  IN_PROGRESS: "IN_PROGRESS"
309
316
  };
310
- var _InternalServerException = class _InternalServerException extends AppFabricServiceException {
317
+ var InternalServerException = class _InternalServerException extends AppFabricServiceException {
318
+ static {
319
+ __name(this, "InternalServerException");
320
+ }
321
+ name = "InternalServerException";
322
+ $fault = "server";
323
+ $retryable = {};
324
+ /**
325
+ * <p>The period of time after which you should retry your request.</p>
326
+ * @public
327
+ */
328
+ retryAfterSeconds;
311
329
  /**
312
330
  * @internal
313
331
  */
@@ -317,16 +335,26 @@ var _InternalServerException = class _InternalServerException extends AppFabricS
317
335
  $fault: "server",
318
336
  ...opts
319
337
  });
320
- this.name = "InternalServerException";
321
- this.$fault = "server";
322
- this.$retryable = {};
323
338
  Object.setPrototypeOf(this, _InternalServerException.prototype);
324
339
  this.retryAfterSeconds = opts.retryAfterSeconds;
325
340
  }
326
341
  };
327
- __name(_InternalServerException, "InternalServerException");
328
- var InternalServerException = _InternalServerException;
329
- var _ResourceNotFoundException = class _ResourceNotFoundException extends AppFabricServiceException {
342
+ var ResourceNotFoundException = class _ResourceNotFoundException extends AppFabricServiceException {
343
+ static {
344
+ __name(this, "ResourceNotFoundException");
345
+ }
346
+ name = "ResourceNotFoundException";
347
+ $fault = "client";
348
+ /**
349
+ * <p>The resource ID.</p>
350
+ * @public
351
+ */
352
+ resourceId;
353
+ /**
354
+ * <p>The resource type.</p>
355
+ * @public
356
+ */
357
+ resourceType;
330
358
  /**
331
359
  * @internal
332
360
  */
@@ -336,16 +364,35 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends AppFab
336
364
  $fault: "client",
337
365
  ...opts
338
366
  });
339
- this.name = "ResourceNotFoundException";
340
- this.$fault = "client";
341
367
  Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
342
368
  this.resourceId = opts.resourceId;
343
369
  this.resourceType = opts.resourceType;
344
370
  }
345
371
  };
346
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
347
- var ResourceNotFoundException = _ResourceNotFoundException;
348
- var _ThrottlingException = class _ThrottlingException extends AppFabricServiceException {
372
+ var ThrottlingException = class _ThrottlingException extends AppFabricServiceException {
373
+ static {
374
+ __name(this, "ThrottlingException");
375
+ }
376
+ name = "ThrottlingException";
377
+ $fault = "client";
378
+ $retryable = {
379
+ throttling: true
380
+ };
381
+ /**
382
+ * <p>The code of the service.</p>
383
+ * @public
384
+ */
385
+ serviceCode;
386
+ /**
387
+ * <p>The code for the quota exceeded.</p>
388
+ * @public
389
+ */
390
+ quotaCode;
391
+ /**
392
+ * <p>The period of time after which you should retry your request.</p>
393
+ * @public
394
+ */
395
+ retryAfterSeconds;
349
396
  /**
350
397
  * @internal
351
398
  */
@@ -355,26 +402,34 @@ var _ThrottlingException = class _ThrottlingException extends AppFabricServiceEx
355
402
  $fault: "client",
356
403
  ...opts
357
404
  });
358
- this.name = "ThrottlingException";
359
- this.$fault = "client";
360
- this.$retryable = {
361
- throttling: true
362
- };
363
405
  Object.setPrototypeOf(this, _ThrottlingException.prototype);
364
406
  this.serviceCode = opts.serviceCode;
365
407
  this.quotaCode = opts.quotaCode;
366
408
  this.retryAfterSeconds = opts.retryAfterSeconds;
367
409
  }
368
410
  };
369
- __name(_ThrottlingException, "ThrottlingException");
370
- var ThrottlingException = _ThrottlingException;
371
411
  var ValidationExceptionReason = {
372
412
  CANNOT_PARSE: "cannotParse",
373
413
  FIELD_VALIDATION_FAILED: "fieldValidationFailed",
374
414
  OTHER: "other",
375
415
  UNKNOWN_OPERATION: "unknownOperation"
376
416
  };
377
- var _ValidationException = class _ValidationException extends AppFabricServiceException {
417
+ var ValidationException = class _ValidationException extends AppFabricServiceException {
418
+ static {
419
+ __name(this, "ValidationException");
420
+ }
421
+ name = "ValidationException";
422
+ $fault = "client";
423
+ /**
424
+ * <p>The reason for the exception.</p>
425
+ * @public
426
+ */
427
+ reason;
428
+ /**
429
+ * <p>The field list.</p>
430
+ * @public
431
+ */
432
+ fieldList;
378
433
  /**
379
434
  * @internal
380
435
  */
@@ -384,16 +439,27 @@ var _ValidationException = class _ValidationException extends AppFabricServiceEx
384
439
  $fault: "client",
385
440
  ...opts
386
441
  });
387
- this.name = "ValidationException";
388
- this.$fault = "client";
389
442
  Object.setPrototypeOf(this, _ValidationException.prototype);
390
443
  this.reason = opts.reason;
391
444
  this.fieldList = opts.fieldList;
392
445
  }
393
446
  };
394
- __name(_ValidationException, "ValidationException");
395
- var ValidationException = _ValidationException;
396
- var _ConflictException = class _ConflictException extends AppFabricServiceException {
447
+ var ConflictException = class _ConflictException extends AppFabricServiceException {
448
+ static {
449
+ __name(this, "ConflictException");
450
+ }
451
+ name = "ConflictException";
452
+ $fault = "client";
453
+ /**
454
+ * <p>The resource ID.</p>
455
+ * @public
456
+ */
457
+ resourceId;
458
+ /**
459
+ * <p>The resource type.</p>
460
+ * @public
461
+ */
462
+ resourceType;
397
463
  /**
398
464
  * @internal
399
465
  */
@@ -403,15 +469,11 @@ var _ConflictException = class _ConflictException extends AppFabricServiceExcept
403
469
  $fault: "client",
404
470
  ...opts
405
471
  });
406
- this.name = "ConflictException";
407
- this.$fault = "client";
408
472
  Object.setPrototypeOf(this, _ConflictException.prototype);
409
473
  this.resourceId = opts.resourceId;
410
474
  this.resourceType = opts.resourceType;
411
475
  }
412
476
  };
413
- __name(_ConflictException, "ConflictException");
414
- var ConflictException = _ConflictException;
415
477
  var Credential;
416
478
  ((Credential3) => {
417
479
  Credential3.visit = /* @__PURE__ */ __name((value, visitor) => {
@@ -422,7 +484,32 @@ var Credential;
422
484
  return visitor._(value.$unknown[0], value.$unknown[1]);
423
485
  }, "visit");
424
486
  })(Credential || (Credential = {}));
425
- var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extends AppFabricServiceException {
487
+ var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends AppFabricServiceException {
488
+ static {
489
+ __name(this, "ServiceQuotaExceededException");
490
+ }
491
+ name = "ServiceQuotaExceededException";
492
+ $fault = "client";
493
+ /**
494
+ * <p>The resource ID.</p>
495
+ * @public
496
+ */
497
+ resourceId;
498
+ /**
499
+ * <p>The resource type.</p>
500
+ * @public
501
+ */
502
+ resourceType;
503
+ /**
504
+ * <p>The code of the service.</p>
505
+ * @public
506
+ */
507
+ serviceCode;
508
+ /**
509
+ * <p>The code for the quota exceeded.</p>
510
+ * @public
511
+ */
512
+ quotaCode;
426
513
  /**
427
514
  * @internal
428
515
  */
@@ -432,8 +519,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
432
519
  $fault: "client",
433
520
  ...opts
434
521
  });
435
- this.name = "ServiceQuotaExceededException";
436
- this.$fault = "client";
437
522
  Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
438
523
  this.resourceId = opts.resourceId;
439
524
  this.resourceType = opts.resourceType;
@@ -441,8 +526,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
441
526
  this.quotaCode = opts.quotaCode;
442
527
  }
443
528
  };
444
- __name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
445
- var ServiceQuotaExceededException = _ServiceQuotaExceededException;
446
529
  var IngestionType = {
447
530
  AUDIT_LOG: "auditLog"
448
531
  };
@@ -1447,365 +1530,391 @@ var _ra = "retry-after";
1447
1530
  var _tK = "tagKeys";
1448
1531
 
1449
1532
  // src/commands/BatchGetUserAccessTasksCommand.ts
1450
- var _BatchGetUserAccessTasksCommand = class _BatchGetUserAccessTasksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1533
+ var BatchGetUserAccessTasksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1451
1534
  return [
1452
1535
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1453
1536
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1454
1537
  ];
1455
1538
  }).s("FabricFrontEndService", "BatchGetUserAccessTasks", {}).n("AppFabricClient", "BatchGetUserAccessTasksCommand").f(void 0, BatchGetUserAccessTasksResponseFilterSensitiveLog).ser(se_BatchGetUserAccessTasksCommand).de(de_BatchGetUserAccessTasksCommand).build() {
1539
+ static {
1540
+ __name(this, "BatchGetUserAccessTasksCommand");
1541
+ }
1456
1542
  };
1457
- __name(_BatchGetUserAccessTasksCommand, "BatchGetUserAccessTasksCommand");
1458
- var BatchGetUserAccessTasksCommand = _BatchGetUserAccessTasksCommand;
1459
1543
 
1460
1544
  // src/commands/ConnectAppAuthorizationCommand.ts
1461
1545
 
1462
1546
 
1463
1547
 
1464
- var _ConnectAppAuthorizationCommand = class _ConnectAppAuthorizationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1548
+ var ConnectAppAuthorizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1465
1549
  return [
1466
1550
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1467
1551
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1468
1552
  ];
1469
1553
  }).s("FabricFrontEndService", "ConnectAppAuthorization", {}).n("AppFabricClient", "ConnectAppAuthorizationCommand").f(ConnectAppAuthorizationRequestFilterSensitiveLog, void 0).ser(se_ConnectAppAuthorizationCommand).de(de_ConnectAppAuthorizationCommand).build() {
1554
+ static {
1555
+ __name(this, "ConnectAppAuthorizationCommand");
1556
+ }
1470
1557
  };
1471
- __name(_ConnectAppAuthorizationCommand, "ConnectAppAuthorizationCommand");
1472
- var ConnectAppAuthorizationCommand = _ConnectAppAuthorizationCommand;
1473
1558
 
1474
1559
  // src/commands/CreateAppAuthorizationCommand.ts
1475
1560
 
1476
1561
 
1477
1562
 
1478
- var _CreateAppAuthorizationCommand = class _CreateAppAuthorizationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1563
+ var CreateAppAuthorizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1479
1564
  return [
1480
1565
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1481
1566
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1482
1567
  ];
1483
1568
  }).s("FabricFrontEndService", "CreateAppAuthorization", {}).n("AppFabricClient", "CreateAppAuthorizationCommand").f(CreateAppAuthorizationRequestFilterSensitiveLog, void 0).ser(se_CreateAppAuthorizationCommand).de(de_CreateAppAuthorizationCommand).build() {
1569
+ static {
1570
+ __name(this, "CreateAppAuthorizationCommand");
1571
+ }
1484
1572
  };
1485
- __name(_CreateAppAuthorizationCommand, "CreateAppAuthorizationCommand");
1486
- var CreateAppAuthorizationCommand = _CreateAppAuthorizationCommand;
1487
1573
 
1488
1574
  // src/commands/CreateAppBundleCommand.ts
1489
1575
 
1490
1576
 
1491
1577
 
1492
- var _CreateAppBundleCommand = class _CreateAppBundleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1578
+ var CreateAppBundleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1493
1579
  return [
1494
1580
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1495
1581
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1496
1582
  ];
1497
1583
  }).s("FabricFrontEndService", "CreateAppBundle", {}).n("AppFabricClient", "CreateAppBundleCommand").f(void 0, void 0).ser(se_CreateAppBundleCommand).de(de_CreateAppBundleCommand).build() {
1584
+ static {
1585
+ __name(this, "CreateAppBundleCommand");
1586
+ }
1498
1587
  };
1499
- __name(_CreateAppBundleCommand, "CreateAppBundleCommand");
1500
- var CreateAppBundleCommand = _CreateAppBundleCommand;
1501
1588
 
1502
1589
  // src/commands/CreateIngestionCommand.ts
1503
1590
 
1504
1591
 
1505
1592
 
1506
- var _CreateIngestionCommand = class _CreateIngestionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1593
+ var CreateIngestionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1507
1594
  return [
1508
1595
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1509
1596
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1510
1597
  ];
1511
1598
  }).s("FabricFrontEndService", "CreateIngestion", {}).n("AppFabricClient", "CreateIngestionCommand").f(void 0, void 0).ser(se_CreateIngestionCommand).de(de_CreateIngestionCommand).build() {
1599
+ static {
1600
+ __name(this, "CreateIngestionCommand");
1601
+ }
1512
1602
  };
1513
- __name(_CreateIngestionCommand, "CreateIngestionCommand");
1514
- var CreateIngestionCommand = _CreateIngestionCommand;
1515
1603
 
1516
1604
  // src/commands/CreateIngestionDestinationCommand.ts
1517
1605
 
1518
1606
 
1519
1607
 
1520
- var _CreateIngestionDestinationCommand = class _CreateIngestionDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1608
+ var CreateIngestionDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1521
1609
  return [
1522
1610
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1523
1611
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1524
1612
  ];
1525
1613
  }).s("FabricFrontEndService", "CreateIngestionDestination", {}).n("AppFabricClient", "CreateIngestionDestinationCommand").f(void 0, void 0).ser(se_CreateIngestionDestinationCommand).de(de_CreateIngestionDestinationCommand).build() {
1614
+ static {
1615
+ __name(this, "CreateIngestionDestinationCommand");
1616
+ }
1526
1617
  };
1527
- __name(_CreateIngestionDestinationCommand, "CreateIngestionDestinationCommand");
1528
- var CreateIngestionDestinationCommand = _CreateIngestionDestinationCommand;
1529
1618
 
1530
1619
  // src/commands/DeleteAppAuthorizationCommand.ts
1531
1620
 
1532
1621
 
1533
1622
 
1534
- var _DeleteAppAuthorizationCommand = class _DeleteAppAuthorizationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1623
+ var DeleteAppAuthorizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1535
1624
  return [
1536
1625
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1537
1626
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1538
1627
  ];
1539
1628
  }).s("FabricFrontEndService", "DeleteAppAuthorization", {}).n("AppFabricClient", "DeleteAppAuthorizationCommand").f(void 0, void 0).ser(se_DeleteAppAuthorizationCommand).de(de_DeleteAppAuthorizationCommand).build() {
1629
+ static {
1630
+ __name(this, "DeleteAppAuthorizationCommand");
1631
+ }
1540
1632
  };
1541
- __name(_DeleteAppAuthorizationCommand, "DeleteAppAuthorizationCommand");
1542
- var DeleteAppAuthorizationCommand = _DeleteAppAuthorizationCommand;
1543
1633
 
1544
1634
  // src/commands/DeleteAppBundleCommand.ts
1545
1635
 
1546
1636
 
1547
1637
 
1548
- var _DeleteAppBundleCommand = class _DeleteAppBundleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1638
+ var DeleteAppBundleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1549
1639
  return [
1550
1640
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1551
1641
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1552
1642
  ];
1553
1643
  }).s("FabricFrontEndService", "DeleteAppBundle", {}).n("AppFabricClient", "DeleteAppBundleCommand").f(void 0, void 0).ser(se_DeleteAppBundleCommand).de(de_DeleteAppBundleCommand).build() {
1644
+ static {
1645
+ __name(this, "DeleteAppBundleCommand");
1646
+ }
1554
1647
  };
1555
- __name(_DeleteAppBundleCommand, "DeleteAppBundleCommand");
1556
- var DeleteAppBundleCommand = _DeleteAppBundleCommand;
1557
1648
 
1558
1649
  // src/commands/DeleteIngestionCommand.ts
1559
1650
 
1560
1651
 
1561
1652
 
1562
- var _DeleteIngestionCommand = class _DeleteIngestionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1653
+ var DeleteIngestionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1563
1654
  return [
1564
1655
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1565
1656
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1566
1657
  ];
1567
1658
  }).s("FabricFrontEndService", "DeleteIngestion", {}).n("AppFabricClient", "DeleteIngestionCommand").f(void 0, void 0).ser(se_DeleteIngestionCommand).de(de_DeleteIngestionCommand).build() {
1659
+ static {
1660
+ __name(this, "DeleteIngestionCommand");
1661
+ }
1568
1662
  };
1569
- __name(_DeleteIngestionCommand, "DeleteIngestionCommand");
1570
- var DeleteIngestionCommand = _DeleteIngestionCommand;
1571
1663
 
1572
1664
  // src/commands/DeleteIngestionDestinationCommand.ts
1573
1665
 
1574
1666
 
1575
1667
 
1576
- var _DeleteIngestionDestinationCommand = class _DeleteIngestionDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1668
+ var DeleteIngestionDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1577
1669
  return [
1578
1670
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1579
1671
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1580
1672
  ];
1581
1673
  }).s("FabricFrontEndService", "DeleteIngestionDestination", {}).n("AppFabricClient", "DeleteIngestionDestinationCommand").f(void 0, void 0).ser(se_DeleteIngestionDestinationCommand).de(de_DeleteIngestionDestinationCommand).build() {
1674
+ static {
1675
+ __name(this, "DeleteIngestionDestinationCommand");
1676
+ }
1582
1677
  };
1583
- __name(_DeleteIngestionDestinationCommand, "DeleteIngestionDestinationCommand");
1584
- var DeleteIngestionDestinationCommand = _DeleteIngestionDestinationCommand;
1585
1678
 
1586
1679
  // src/commands/GetAppAuthorizationCommand.ts
1587
1680
 
1588
1681
 
1589
1682
 
1590
- var _GetAppAuthorizationCommand = class _GetAppAuthorizationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1683
+ var GetAppAuthorizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1591
1684
  return [
1592
1685
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1593
1686
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1594
1687
  ];
1595
1688
  }).s("FabricFrontEndService", "GetAppAuthorization", {}).n("AppFabricClient", "GetAppAuthorizationCommand").f(void 0, void 0).ser(se_GetAppAuthorizationCommand).de(de_GetAppAuthorizationCommand).build() {
1689
+ static {
1690
+ __name(this, "GetAppAuthorizationCommand");
1691
+ }
1596
1692
  };
1597
- __name(_GetAppAuthorizationCommand, "GetAppAuthorizationCommand");
1598
- var GetAppAuthorizationCommand = _GetAppAuthorizationCommand;
1599
1693
 
1600
1694
  // src/commands/GetAppBundleCommand.ts
1601
1695
 
1602
1696
 
1603
1697
 
1604
- var _GetAppBundleCommand = class _GetAppBundleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1698
+ var GetAppBundleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1605
1699
  return [
1606
1700
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1607
1701
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1608
1702
  ];
1609
1703
  }).s("FabricFrontEndService", "GetAppBundle", {}).n("AppFabricClient", "GetAppBundleCommand").f(void 0, void 0).ser(se_GetAppBundleCommand).de(de_GetAppBundleCommand).build() {
1704
+ static {
1705
+ __name(this, "GetAppBundleCommand");
1706
+ }
1610
1707
  };
1611
- __name(_GetAppBundleCommand, "GetAppBundleCommand");
1612
- var GetAppBundleCommand = _GetAppBundleCommand;
1613
1708
 
1614
1709
  // src/commands/GetIngestionCommand.ts
1615
1710
 
1616
1711
 
1617
1712
 
1618
- var _GetIngestionCommand = class _GetIngestionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1713
+ var GetIngestionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1619
1714
  return [
1620
1715
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1621
1716
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1622
1717
  ];
1623
1718
  }).s("FabricFrontEndService", "GetIngestion", {}).n("AppFabricClient", "GetIngestionCommand").f(void 0, void 0).ser(se_GetIngestionCommand).de(de_GetIngestionCommand).build() {
1719
+ static {
1720
+ __name(this, "GetIngestionCommand");
1721
+ }
1624
1722
  };
1625
- __name(_GetIngestionCommand, "GetIngestionCommand");
1626
- var GetIngestionCommand = _GetIngestionCommand;
1627
1723
 
1628
1724
  // src/commands/GetIngestionDestinationCommand.ts
1629
1725
 
1630
1726
 
1631
1727
 
1632
- var _GetIngestionDestinationCommand = class _GetIngestionDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1728
+ var GetIngestionDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1633
1729
  return [
1634
1730
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1635
1731
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1636
1732
  ];
1637
1733
  }).s("FabricFrontEndService", "GetIngestionDestination", {}).n("AppFabricClient", "GetIngestionDestinationCommand").f(void 0, void 0).ser(se_GetIngestionDestinationCommand).de(de_GetIngestionDestinationCommand).build() {
1734
+ static {
1735
+ __name(this, "GetIngestionDestinationCommand");
1736
+ }
1638
1737
  };
1639
- __name(_GetIngestionDestinationCommand, "GetIngestionDestinationCommand");
1640
- var GetIngestionDestinationCommand = _GetIngestionDestinationCommand;
1641
1738
 
1642
1739
  // src/commands/ListAppAuthorizationsCommand.ts
1643
1740
 
1644
1741
 
1645
1742
 
1646
- var _ListAppAuthorizationsCommand = class _ListAppAuthorizationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1743
+ var ListAppAuthorizationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1647
1744
  return [
1648
1745
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1649
1746
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1650
1747
  ];
1651
1748
  }).s("FabricFrontEndService", "ListAppAuthorizations", {}).n("AppFabricClient", "ListAppAuthorizationsCommand").f(void 0, void 0).ser(se_ListAppAuthorizationsCommand).de(de_ListAppAuthorizationsCommand).build() {
1749
+ static {
1750
+ __name(this, "ListAppAuthorizationsCommand");
1751
+ }
1652
1752
  };
1653
- __name(_ListAppAuthorizationsCommand, "ListAppAuthorizationsCommand");
1654
- var ListAppAuthorizationsCommand = _ListAppAuthorizationsCommand;
1655
1753
 
1656
1754
  // src/commands/ListAppBundlesCommand.ts
1657
1755
 
1658
1756
 
1659
1757
 
1660
- var _ListAppBundlesCommand = class _ListAppBundlesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1758
+ var ListAppBundlesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1661
1759
  return [
1662
1760
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1663
1761
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1664
1762
  ];
1665
1763
  }).s("FabricFrontEndService", "ListAppBundles", {}).n("AppFabricClient", "ListAppBundlesCommand").f(void 0, void 0).ser(se_ListAppBundlesCommand).de(de_ListAppBundlesCommand).build() {
1764
+ static {
1765
+ __name(this, "ListAppBundlesCommand");
1766
+ }
1666
1767
  };
1667
- __name(_ListAppBundlesCommand, "ListAppBundlesCommand");
1668
- var ListAppBundlesCommand = _ListAppBundlesCommand;
1669
1768
 
1670
1769
  // src/commands/ListIngestionDestinationsCommand.ts
1671
1770
 
1672
1771
 
1673
1772
 
1674
- var _ListIngestionDestinationsCommand = class _ListIngestionDestinationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1773
+ var ListIngestionDestinationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1675
1774
  return [
1676
1775
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1677
1776
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1678
1777
  ];
1679
1778
  }).s("FabricFrontEndService", "ListIngestionDestinations", {}).n("AppFabricClient", "ListIngestionDestinationsCommand").f(void 0, void 0).ser(se_ListIngestionDestinationsCommand).de(de_ListIngestionDestinationsCommand).build() {
1779
+ static {
1780
+ __name(this, "ListIngestionDestinationsCommand");
1781
+ }
1680
1782
  };
1681
- __name(_ListIngestionDestinationsCommand, "ListIngestionDestinationsCommand");
1682
- var ListIngestionDestinationsCommand = _ListIngestionDestinationsCommand;
1683
1783
 
1684
1784
  // src/commands/ListIngestionsCommand.ts
1685
1785
 
1686
1786
 
1687
1787
 
1688
- var _ListIngestionsCommand = class _ListIngestionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1788
+ var ListIngestionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1689
1789
  return [
1690
1790
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1691
1791
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1692
1792
  ];
1693
1793
  }).s("FabricFrontEndService", "ListIngestions", {}).n("AppFabricClient", "ListIngestionsCommand").f(void 0, void 0).ser(se_ListIngestionsCommand).de(de_ListIngestionsCommand).build() {
1794
+ static {
1795
+ __name(this, "ListIngestionsCommand");
1796
+ }
1694
1797
  };
1695
- __name(_ListIngestionsCommand, "ListIngestionsCommand");
1696
- var ListIngestionsCommand = _ListIngestionsCommand;
1697
1798
 
1698
1799
  // src/commands/ListTagsForResourceCommand.ts
1699
1800
 
1700
1801
 
1701
1802
 
1702
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1803
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1703
1804
  return [
1704
1805
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1705
1806
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1706
1807
  ];
1707
1808
  }).s("FabricFrontEndService", "ListTagsForResource", {}).n("AppFabricClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
1809
+ static {
1810
+ __name(this, "ListTagsForResourceCommand");
1811
+ }
1708
1812
  };
1709
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
1710
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
1711
1813
 
1712
1814
  // src/commands/StartIngestionCommand.ts
1713
1815
 
1714
1816
 
1715
1817
 
1716
- var _StartIngestionCommand = class _StartIngestionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1818
+ var StartIngestionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1717
1819
  return [
1718
1820
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1719
1821
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1720
1822
  ];
1721
1823
  }).s("FabricFrontEndService", "StartIngestion", {}).n("AppFabricClient", "StartIngestionCommand").f(void 0, void 0).ser(se_StartIngestionCommand).de(de_StartIngestionCommand).build() {
1824
+ static {
1825
+ __name(this, "StartIngestionCommand");
1826
+ }
1722
1827
  };
1723
- __name(_StartIngestionCommand, "StartIngestionCommand");
1724
- var StartIngestionCommand = _StartIngestionCommand;
1725
1828
 
1726
1829
  // src/commands/StartUserAccessTasksCommand.ts
1727
1830
 
1728
1831
 
1729
1832
 
1730
- var _StartUserAccessTasksCommand = class _StartUserAccessTasksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1833
+ var StartUserAccessTasksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1731
1834
  return [
1732
1835
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1733
1836
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1734
1837
  ];
1735
1838
  }).s("FabricFrontEndService", "StartUserAccessTasks", {}).n("AppFabricClient", "StartUserAccessTasksCommand").f(StartUserAccessTasksRequestFilterSensitiveLog, void 0).ser(se_StartUserAccessTasksCommand).de(de_StartUserAccessTasksCommand).build() {
1839
+ static {
1840
+ __name(this, "StartUserAccessTasksCommand");
1841
+ }
1736
1842
  };
1737
- __name(_StartUserAccessTasksCommand, "StartUserAccessTasksCommand");
1738
- var StartUserAccessTasksCommand = _StartUserAccessTasksCommand;
1739
1843
 
1740
1844
  // src/commands/StopIngestionCommand.ts
1741
1845
 
1742
1846
 
1743
1847
 
1744
- var _StopIngestionCommand = class _StopIngestionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1848
+ var StopIngestionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1745
1849
  return [
1746
1850
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1747
1851
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1748
1852
  ];
1749
1853
  }).s("FabricFrontEndService", "StopIngestion", {}).n("AppFabricClient", "StopIngestionCommand").f(void 0, void 0).ser(se_StopIngestionCommand).de(de_StopIngestionCommand).build() {
1854
+ static {
1855
+ __name(this, "StopIngestionCommand");
1856
+ }
1750
1857
  };
1751
- __name(_StopIngestionCommand, "StopIngestionCommand");
1752
- var StopIngestionCommand = _StopIngestionCommand;
1753
1858
 
1754
1859
  // src/commands/TagResourceCommand.ts
1755
1860
 
1756
1861
 
1757
1862
 
1758
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1863
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1759
1864
  return [
1760
1865
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1761
1866
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1762
1867
  ];
1763
1868
  }).s("FabricFrontEndService", "TagResource", {}).n("AppFabricClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
1869
+ static {
1870
+ __name(this, "TagResourceCommand");
1871
+ }
1764
1872
  };
1765
- __name(_TagResourceCommand, "TagResourceCommand");
1766
- var TagResourceCommand = _TagResourceCommand;
1767
1873
 
1768
1874
  // src/commands/UntagResourceCommand.ts
1769
1875
 
1770
1876
 
1771
1877
 
1772
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1878
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1773
1879
  return [
1774
1880
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1775
1881
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1776
1882
  ];
1777
1883
  }).s("FabricFrontEndService", "UntagResource", {}).n("AppFabricClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
1884
+ static {
1885
+ __name(this, "UntagResourceCommand");
1886
+ }
1778
1887
  };
1779
- __name(_UntagResourceCommand, "UntagResourceCommand");
1780
- var UntagResourceCommand = _UntagResourceCommand;
1781
1888
 
1782
1889
  // src/commands/UpdateAppAuthorizationCommand.ts
1783
1890
 
1784
1891
 
1785
1892
 
1786
- var _UpdateAppAuthorizationCommand = class _UpdateAppAuthorizationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1893
+ var UpdateAppAuthorizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1787
1894
  return [
1788
1895
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1789
1896
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1790
1897
  ];
1791
1898
  }).s("FabricFrontEndService", "UpdateAppAuthorization", {}).n("AppFabricClient", "UpdateAppAuthorizationCommand").f(UpdateAppAuthorizationRequestFilterSensitiveLog, void 0).ser(se_UpdateAppAuthorizationCommand).de(de_UpdateAppAuthorizationCommand).build() {
1899
+ static {
1900
+ __name(this, "UpdateAppAuthorizationCommand");
1901
+ }
1792
1902
  };
1793
- __name(_UpdateAppAuthorizationCommand, "UpdateAppAuthorizationCommand");
1794
- var UpdateAppAuthorizationCommand = _UpdateAppAuthorizationCommand;
1795
1903
 
1796
1904
  // src/commands/UpdateIngestionDestinationCommand.ts
1797
1905
 
1798
1906
 
1799
1907
 
1800
- var _UpdateIngestionDestinationCommand = class _UpdateIngestionDestinationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1908
+ var UpdateIngestionDestinationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1801
1909
  return [
1802
1910
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1803
1911
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1804
1912
  ];
1805
1913
  }).s("FabricFrontEndService", "UpdateIngestionDestination", {}).n("AppFabricClient", "UpdateIngestionDestinationCommand").f(void 0, void 0).ser(se_UpdateIngestionDestinationCommand).de(de_UpdateIngestionDestinationCommand).build() {
1914
+ static {
1915
+ __name(this, "UpdateIngestionDestinationCommand");
1916
+ }
1806
1917
  };
1807
- __name(_UpdateIngestionDestinationCommand, "UpdateIngestionDestinationCommand");
1808
- var UpdateIngestionDestinationCommand = _UpdateIngestionDestinationCommand;
1809
1918
 
1810
1919
  // src/AppFabric.ts
1811
1920
  var commands = {
@@ -1836,10 +1945,11 @@ var commands = {
1836
1945
  UpdateAppAuthorizationCommand,
1837
1946
  UpdateIngestionDestinationCommand
1838
1947
  };
1839
- var _AppFabric = class _AppFabric extends AppFabricClient {
1948
+ var AppFabric = class extends AppFabricClient {
1949
+ static {
1950
+ __name(this, "AppFabric");
1951
+ }
1840
1952
  };
1841
- __name(_AppFabric, "AppFabric");
1842
- var AppFabric = _AppFabric;
1843
1953
  (0, import_smithy_client.createAggregatedClient)(commands, AppFabric);
1844
1954
 
1845
1955
  // src/pagination/ListAppAuthorizationsPaginator.ts
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
14
14
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
15
15
  export { __Client };
16
16
  export class AppFabricClient extends __Client {
17
+ config;
17
18
  constructor(...[configuration]) {
18
19
  const _config_0 = __getRuntimeConfig(configuration || {});
19
20
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -1,14 +1,14 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
2
  import { AppFabricServiceException as __BaseException } from "./AppFabricServiceException";
3
3
  export class AccessDeniedException extends __BaseException {
4
+ name = "AccessDeniedException";
5
+ $fault = "client";
4
6
  constructor(opts) {
5
7
  super({
6
8
  name: "AccessDeniedException",
7
9
  $fault: "client",
8
10
  ...opts,
9
11
  });
10
- this.name = "AccessDeniedException";
11
- this.$fault = "client";
12
12
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
13
13
  }
14
14
  }
@@ -51,45 +51,51 @@ export const ResultStatus = {
51
51
  IN_PROGRESS: "IN_PROGRESS",
52
52
  };
53
53
  export class InternalServerException extends __BaseException {
54
+ name = "InternalServerException";
55
+ $fault = "server";
56
+ $retryable = {};
57
+ retryAfterSeconds;
54
58
  constructor(opts) {
55
59
  super({
56
60
  name: "InternalServerException",
57
61
  $fault: "server",
58
62
  ...opts,
59
63
  });
60
- this.name = "InternalServerException";
61
- this.$fault = "server";
62
- this.$retryable = {};
63
64
  Object.setPrototypeOf(this, InternalServerException.prototype);
64
65
  this.retryAfterSeconds = opts.retryAfterSeconds;
65
66
  }
66
67
  }
67
68
  export class ResourceNotFoundException extends __BaseException {
69
+ name = "ResourceNotFoundException";
70
+ $fault = "client";
71
+ resourceId;
72
+ resourceType;
68
73
  constructor(opts) {
69
74
  super({
70
75
  name: "ResourceNotFoundException",
71
76
  $fault: "client",
72
77
  ...opts,
73
78
  });
74
- this.name = "ResourceNotFoundException";
75
- this.$fault = "client";
76
79
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
77
80
  this.resourceId = opts.resourceId;
78
81
  this.resourceType = opts.resourceType;
79
82
  }
80
83
  }
81
84
  export class ThrottlingException extends __BaseException {
85
+ name = "ThrottlingException";
86
+ $fault = "client";
87
+ $retryable = {
88
+ throttling: true,
89
+ };
90
+ serviceCode;
91
+ quotaCode;
92
+ retryAfterSeconds;
82
93
  constructor(opts) {
83
94
  super({
84
95
  name: "ThrottlingException",
85
96
  $fault: "client",
86
97
  ...opts,
87
98
  });
88
- this.name = "ThrottlingException";
89
- this.$fault = "client";
90
- this.$retryable = {
91
- throttling: true,
92
- };
93
99
  Object.setPrototypeOf(this, ThrottlingException.prototype);
94
100
  this.serviceCode = opts.serviceCode;
95
101
  this.quotaCode = opts.quotaCode;
@@ -103,28 +109,32 @@ export const ValidationExceptionReason = {
103
109
  UNKNOWN_OPERATION: "unknownOperation",
104
110
  };
105
111
  export class ValidationException extends __BaseException {
112
+ name = "ValidationException";
113
+ $fault = "client";
114
+ reason;
115
+ fieldList;
106
116
  constructor(opts) {
107
117
  super({
108
118
  name: "ValidationException",
109
119
  $fault: "client",
110
120
  ...opts,
111
121
  });
112
- this.name = "ValidationException";
113
- this.$fault = "client";
114
122
  Object.setPrototypeOf(this, ValidationException.prototype);
115
123
  this.reason = opts.reason;
116
124
  this.fieldList = opts.fieldList;
117
125
  }
118
126
  }
119
127
  export class ConflictException extends __BaseException {
128
+ name = "ConflictException";
129
+ $fault = "client";
130
+ resourceId;
131
+ resourceType;
120
132
  constructor(opts) {
121
133
  super({
122
134
  name: "ConflictException",
123
135
  $fault: "client",
124
136
  ...opts,
125
137
  });
126
- this.name = "ConflictException";
127
- this.$fault = "client";
128
138
  Object.setPrototypeOf(this, ConflictException.prototype);
129
139
  this.resourceId = opts.resourceId;
130
140
  this.resourceType = opts.resourceType;
@@ -141,14 +151,18 @@ export var Credential;
141
151
  };
142
152
  })(Credential || (Credential = {}));
143
153
  export class ServiceQuotaExceededException extends __BaseException {
154
+ name = "ServiceQuotaExceededException";
155
+ $fault = "client";
156
+ resourceId;
157
+ resourceType;
158
+ serviceCode;
159
+ quotaCode;
144
160
  constructor(opts) {
145
161
  super({
146
162
  name: "ServiceQuotaExceededException",
147
163
  $fault: "client",
148
164
  ...opts,
149
165
  });
150
- this.name = "ServiceQuotaExceededException";
151
- this.$fault = "client";
152
166
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
153
167
  this.resourceId = opts.resourceId;
154
168
  this.resourceType = opts.resourceType;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<string>;
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
22
22
  region: string | import("@smithy/types").Provider<any>;
23
23
  profile?: string | undefined;
24
24
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
25
- credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
26
  maxAttempts: number | import("@smithy/types").Provider<number>;
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
31
31
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
32
  userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
33
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
- endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
36
  logger?: import("@smithy/types").Logger | undefined;
37
37
  }) => import("@smithy/types").EndpointV2;
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider: (
10
- input: any
11
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ _: unknown
13
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
12
14
  defaultUserAgentProvider: (
13
15
  config?:
14
16
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider: (
10
- init?:
11
- | import("@aws-sdk/credential-provider-node").DefaultProviderInit
12
- | undefined
13
- ) => import("@smithy/types").MemoizedProvider<
14
- import("@smithy/types").AwsCredentialIdentity
15
- >;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ init?:
13
+ | import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
+ | undefined
15
+ ) => import("@smithy/types").MemoizedProvider<
16
+ import("@smithy/types").AwsCredentialIdentity
17
+ >);
16
18
  defaultUserAgentProvider: (
17
19
  config?:
18
20
  | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
28
28
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
29
29
  | undefined
30
30
  ) => Promise<import("@smithy/types").UserAgent>;
31
- credentialDefaultProvider: (
32
- input: any
33
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
31
+ credentialDefaultProvider:
32
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
33
+ | ((
34
+ _: unknown
35
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
34
36
  maxAttempts: number | import("@smithy/types").Provider<number>;
35
37
  retryMode: string | import("@smithy/types").Provider<string>;
36
38
  logger: import("@smithy/types").Logger;
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: AppFabricClientConfig) => {
50
52
  | import("@smithy/types").RetryStrategyV2
51
53
  | undefined;
52
54
  endpoint?:
53
- | string
54
- | import("@smithy/types").Endpoint
55
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
56
- | import("@smithy/types").EndpointV2
57
- | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
55
+ | ((
56
+ | string
57
+ | import("@smithy/types").Endpoint
58
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
59
+ | import("@smithy/types").EndpointV2
60
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
61
+ ) &
62
+ (
63
+ | string
64
+ | import("@smithy/types").Provider<string>
65
+ | import("@smithy/types").Endpoint
66
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
67
+ | import("@smithy/types").EndpointV2
68
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
69
+ ))
58
70
  | undefined;
59
71
  endpointProvider: (
60
72
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appfabric",
3
3
  "description": "AWS SDK for JavaScript Appfabric Client for Node.js, Browser and React Native",
4
- "version": "3.721.0",
4
+ "version": "3.726.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-appfabric",
@@ -20,58 +20,58 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.721.0",
24
- "@aws-sdk/client-sts": "3.721.0",
25
- "@aws-sdk/core": "3.716.0",
26
- "@aws-sdk/credential-provider-node": "3.721.0",
27
- "@aws-sdk/middleware-host-header": "3.714.0",
28
- "@aws-sdk/middleware-logger": "3.714.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.714.0",
30
- "@aws-sdk/middleware-user-agent": "3.721.0",
31
- "@aws-sdk/region-config-resolver": "3.714.0",
32
- "@aws-sdk/types": "3.714.0",
33
- "@aws-sdk/util-endpoints": "3.714.0",
34
- "@aws-sdk/util-user-agent-browser": "3.714.0",
35
- "@aws-sdk/util-user-agent-node": "3.721.0",
36
- "@smithy/config-resolver": "^3.0.13",
37
- "@smithy/core": "^2.5.5",
38
- "@smithy/fetch-http-handler": "^4.1.2",
39
- "@smithy/hash-node": "^3.0.11",
40
- "@smithy/invalid-dependency": "^3.0.11",
41
- "@smithy/middleware-content-length": "^3.0.13",
42
- "@smithy/middleware-endpoint": "^3.2.6",
43
- "@smithy/middleware-retry": "^3.0.31",
44
- "@smithy/middleware-serde": "^3.0.11",
45
- "@smithy/middleware-stack": "^3.0.11",
46
- "@smithy/node-config-provider": "^3.1.12",
47
- "@smithy/node-http-handler": "^3.3.2",
48
- "@smithy/protocol-http": "^4.1.8",
49
- "@smithy/smithy-client": "^3.5.1",
50
- "@smithy/types": "^3.7.2",
51
- "@smithy/url-parser": "^3.0.11",
52
- "@smithy/util-base64": "^3.0.0",
53
- "@smithy/util-body-length-browser": "^3.0.0",
54
- "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.31",
56
- "@smithy/util-defaults-mode-node": "^3.0.31",
57
- "@smithy/util-endpoints": "^2.1.7",
58
- "@smithy/util-middleware": "^3.0.11",
59
- "@smithy/util-retry": "^3.0.11",
60
- "@smithy/util-utf8": "^3.0.0",
23
+ "@aws-sdk/client-sso-oidc": "3.726.0",
24
+ "@aws-sdk/client-sts": "3.726.0",
25
+ "@aws-sdk/core": "3.723.0",
26
+ "@aws-sdk/credential-provider-node": "3.726.0",
27
+ "@aws-sdk/middleware-host-header": "3.723.0",
28
+ "@aws-sdk/middleware-logger": "3.723.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.723.0",
30
+ "@aws-sdk/middleware-user-agent": "3.726.0",
31
+ "@aws-sdk/region-config-resolver": "3.723.0",
32
+ "@aws-sdk/types": "3.723.0",
33
+ "@aws-sdk/util-endpoints": "3.726.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.723.0",
35
+ "@aws-sdk/util-user-agent-node": "3.726.0",
36
+ "@smithy/config-resolver": "^4.0.0",
37
+ "@smithy/core": "^3.0.0",
38
+ "@smithy/fetch-http-handler": "^5.0.0",
39
+ "@smithy/hash-node": "^4.0.0",
40
+ "@smithy/invalid-dependency": "^4.0.0",
41
+ "@smithy/middleware-content-length": "^4.0.0",
42
+ "@smithy/middleware-endpoint": "^4.0.0",
43
+ "@smithy/middleware-retry": "^4.0.0",
44
+ "@smithy/middleware-serde": "^4.0.0",
45
+ "@smithy/middleware-stack": "^4.0.0",
46
+ "@smithy/node-config-provider": "^4.0.0",
47
+ "@smithy/node-http-handler": "^4.0.0",
48
+ "@smithy/protocol-http": "^5.0.0",
49
+ "@smithy/smithy-client": "^4.0.0",
50
+ "@smithy/types": "^4.0.0",
51
+ "@smithy/url-parser": "^4.0.0",
52
+ "@smithy/util-base64": "^4.0.0",
53
+ "@smithy/util-body-length-browser": "^4.0.0",
54
+ "@smithy/util-body-length-node": "^4.0.0",
55
+ "@smithy/util-defaults-mode-browser": "^4.0.0",
56
+ "@smithy/util-defaults-mode-node": "^4.0.0",
57
+ "@smithy/util-endpoints": "^3.0.0",
58
+ "@smithy/util-middleware": "^4.0.0",
59
+ "@smithy/util-retry": "^4.0.0",
60
+ "@smithy/util-utf8": "^4.0.0",
61
61
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",
63
63
  "uuid": "^9.0.1"
64
64
  },
65
65
  "devDependencies": {
66
- "@tsconfig/node16": "16.1.3",
67
- "@types/node": "^16.18.96",
66
+ "@tsconfig/node18": "18.2.4",
67
+ "@types/node": "^18.19.69",
68
68
  "concurrently": "7.0.0",
69
69
  "downlevel-dts": "0.10.1",
70
70
  "rimraf": "3.0.2",
71
- "typescript": "~4.9.5"
71
+ "typescript": "~5.2.2"
72
72
  },
73
73
  "engines": {
74
- "node": ">=16.0.0"
74
+ "node": ">=18.0.0"
75
75
  },
76
76
  "typesVersions": {
77
77
  "<4.0": {