@aws-sdk/client-appintegrations 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
@@ -163,7 +163,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
163
163
  }, "resolveRuntimeExtensions");
164
164
 
165
165
  // src/AppIntegrationsClient.ts
166
- var _AppIntegrationsClient = class _AppIntegrationsClient extends import_smithy_client.Client {
166
+ var AppIntegrationsClient = class extends import_smithy_client.Client {
167
+ static {
168
+ __name(this, "AppIntegrationsClient");
169
+ }
170
+ /**
171
+ * The resolved configuration of AppIntegrationsClient class. This is resolved and normalized from the {@link AppIntegrationsClientConfig | constructor configuration interface}.
172
+ */
173
+ config;
167
174
  constructor(...[configuration]) {
168
175
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
169
176
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -173,7 +180,7 @@ var _AppIntegrationsClient = class _AppIntegrationsClient extends import_smithy_
173
180
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
174
181
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
175
182
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
176
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
183
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
177
184
  super(_config_8);
178
185
  this.config = _config_8;
179
186
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -201,8 +208,6 @@ var _AppIntegrationsClient = class _AppIntegrationsClient extends import_smithy_
201
208
  super.destroy();
202
209
  }
203
210
  };
204
- __name(_AppIntegrationsClient, "AppIntegrationsClient");
205
- var AppIntegrationsClient = _AppIntegrationsClient;
206
211
 
207
212
  // src/AppIntegrations.ts
208
213
 
@@ -220,7 +225,10 @@ var import_uuid = require("uuid");
220
225
 
221
226
  // src/models/AppIntegrationsServiceException.ts
222
227
 
223
- var _AppIntegrationsServiceException = class _AppIntegrationsServiceException extends import_smithy_client.ServiceException {
228
+ var AppIntegrationsServiceException = class _AppIntegrationsServiceException extends import_smithy_client.ServiceException {
229
+ static {
230
+ __name(this, "AppIntegrationsServiceException");
231
+ }
224
232
  /**
225
233
  * @internal
226
234
  */
@@ -229,11 +237,15 @@ var _AppIntegrationsServiceException = class _AppIntegrationsServiceException ex
229
237
  Object.setPrototypeOf(this, _AppIntegrationsServiceException.prototype);
230
238
  }
231
239
  };
232
- __name(_AppIntegrationsServiceException, "AppIntegrationsServiceException");
233
- var AppIntegrationsServiceException = _AppIntegrationsServiceException;
234
240
 
235
241
  // src/models/models_0.ts
236
- var _AccessDeniedException = class _AccessDeniedException extends AppIntegrationsServiceException {
242
+ var AccessDeniedException = class _AccessDeniedException extends AppIntegrationsServiceException {
243
+ static {
244
+ __name(this, "AccessDeniedException");
245
+ }
246
+ name = "AccessDeniedException";
247
+ $fault = "client";
248
+ Message;
237
249
  /**
238
250
  * @internal
239
251
  */
@@ -243,15 +255,17 @@ var _AccessDeniedException = class _AccessDeniedException extends AppIntegration
243
255
  $fault: "client",
244
256
  ...opts
245
257
  });
246
- this.name = "AccessDeniedException";
247
- this.$fault = "client";
248
258
  Object.setPrototypeOf(this, _AccessDeniedException.prototype);
249
259
  this.Message = opts.Message;
250
260
  }
251
261
  };
252
- __name(_AccessDeniedException, "AccessDeniedException");
253
- var AccessDeniedException = _AccessDeniedException;
254
- var _DuplicateResourceException = class _DuplicateResourceException extends AppIntegrationsServiceException {
262
+ var DuplicateResourceException = class _DuplicateResourceException extends AppIntegrationsServiceException {
263
+ static {
264
+ __name(this, "DuplicateResourceException");
265
+ }
266
+ name = "DuplicateResourceException";
267
+ $fault = "client";
268
+ Message;
255
269
  /**
256
270
  * @internal
257
271
  */
@@ -261,15 +275,17 @@ var _DuplicateResourceException = class _DuplicateResourceException extends AppI
261
275
  $fault: "client",
262
276
  ...opts
263
277
  });
264
- this.name = "DuplicateResourceException";
265
- this.$fault = "client";
266
278
  Object.setPrototypeOf(this, _DuplicateResourceException.prototype);
267
279
  this.Message = opts.Message;
268
280
  }
269
281
  };
270
- __name(_DuplicateResourceException, "DuplicateResourceException");
271
- var DuplicateResourceException = _DuplicateResourceException;
272
- var _InternalServiceError = class _InternalServiceError extends AppIntegrationsServiceException {
282
+ var InternalServiceError = class _InternalServiceError extends AppIntegrationsServiceException {
283
+ static {
284
+ __name(this, "InternalServiceError");
285
+ }
286
+ name = "InternalServiceError";
287
+ $fault = "server";
288
+ Message;
273
289
  /**
274
290
  * @internal
275
291
  */
@@ -279,15 +295,17 @@ var _InternalServiceError = class _InternalServiceError extends AppIntegrationsS
279
295
  $fault: "server",
280
296
  ...opts
281
297
  });
282
- this.name = "InternalServiceError";
283
- this.$fault = "server";
284
298
  Object.setPrototypeOf(this, _InternalServiceError.prototype);
285
299
  this.Message = opts.Message;
286
300
  }
287
301
  };
288
- __name(_InternalServiceError, "InternalServiceError");
289
- var InternalServiceError = _InternalServiceError;
290
- var _InvalidRequestException = class _InvalidRequestException extends AppIntegrationsServiceException {
302
+ var InvalidRequestException = class _InvalidRequestException extends AppIntegrationsServiceException {
303
+ static {
304
+ __name(this, "InvalidRequestException");
305
+ }
306
+ name = "InvalidRequestException";
307
+ $fault = "client";
308
+ Message;
291
309
  /**
292
310
  * @internal
293
311
  */
@@ -297,15 +315,17 @@ var _InvalidRequestException = class _InvalidRequestException extends AppIntegra
297
315
  $fault: "client",
298
316
  ...opts
299
317
  });
300
- this.name = "InvalidRequestException";
301
- this.$fault = "client";
302
318
  Object.setPrototypeOf(this, _InvalidRequestException.prototype);
303
319
  this.Message = opts.Message;
304
320
  }
305
321
  };
306
- __name(_InvalidRequestException, "InvalidRequestException");
307
- var InvalidRequestException = _InvalidRequestException;
308
- var _ResourceQuotaExceededException = class _ResourceQuotaExceededException extends AppIntegrationsServiceException {
322
+ var ResourceQuotaExceededException = class _ResourceQuotaExceededException extends AppIntegrationsServiceException {
323
+ static {
324
+ __name(this, "ResourceQuotaExceededException");
325
+ }
326
+ name = "ResourceQuotaExceededException";
327
+ $fault = "client";
328
+ Message;
309
329
  /**
310
330
  * @internal
311
331
  */
@@ -315,15 +335,17 @@ var _ResourceQuotaExceededException = class _ResourceQuotaExceededException exte
315
335
  $fault: "client",
316
336
  ...opts
317
337
  });
318
- this.name = "ResourceQuotaExceededException";
319
- this.$fault = "client";
320
338
  Object.setPrototypeOf(this, _ResourceQuotaExceededException.prototype);
321
339
  this.Message = opts.Message;
322
340
  }
323
341
  };
324
- __name(_ResourceQuotaExceededException, "ResourceQuotaExceededException");
325
- var ResourceQuotaExceededException = _ResourceQuotaExceededException;
326
- var _ThrottlingException = class _ThrottlingException extends AppIntegrationsServiceException {
342
+ var ThrottlingException = class _ThrottlingException extends AppIntegrationsServiceException {
343
+ static {
344
+ __name(this, "ThrottlingException");
345
+ }
346
+ name = "ThrottlingException";
347
+ $fault = "client";
348
+ Message;
327
349
  /**
328
350
  * @internal
329
351
  */
@@ -333,15 +355,17 @@ var _ThrottlingException = class _ThrottlingException extends AppIntegrationsSer
333
355
  $fault: "client",
334
356
  ...opts
335
357
  });
336
- this.name = "ThrottlingException";
337
- this.$fault = "client";
338
358
  Object.setPrototypeOf(this, _ThrottlingException.prototype);
339
359
  this.Message = opts.Message;
340
360
  }
341
361
  };
342
- __name(_ThrottlingException, "ThrottlingException");
343
- var ThrottlingException = _ThrottlingException;
344
- var _UnsupportedOperationException = class _UnsupportedOperationException extends AppIntegrationsServiceException {
362
+ var UnsupportedOperationException = class _UnsupportedOperationException extends AppIntegrationsServiceException {
363
+ static {
364
+ __name(this, "UnsupportedOperationException");
365
+ }
366
+ name = "UnsupportedOperationException";
367
+ $fault = "client";
368
+ Message;
345
369
  /**
346
370
  * @internal
347
371
  */
@@ -351,19 +375,21 @@ var _UnsupportedOperationException = class _UnsupportedOperationException extend
351
375
  $fault: "client",
352
376
  ...opts
353
377
  });
354
- this.name = "UnsupportedOperationException";
355
- this.$fault = "client";
356
378
  Object.setPrototypeOf(this, _UnsupportedOperationException.prototype);
357
379
  this.Message = opts.Message;
358
380
  }
359
381
  };
360
- __name(_UnsupportedOperationException, "UnsupportedOperationException");
361
- var UnsupportedOperationException = _UnsupportedOperationException;
362
382
  var ExecutionMode = {
363
383
  ON_DEMAND: "ON_DEMAND",
364
384
  SCHEDULED: "SCHEDULED"
365
385
  };
366
- var _ResourceNotFoundException = class _ResourceNotFoundException extends AppIntegrationsServiceException {
386
+ var ResourceNotFoundException = class _ResourceNotFoundException extends AppIntegrationsServiceException {
387
+ static {
388
+ __name(this, "ResourceNotFoundException");
389
+ }
390
+ name = "ResourceNotFoundException";
391
+ $fault = "client";
392
+ Message;
367
393
  /**
368
394
  * @internal
369
395
  */
@@ -373,14 +399,10 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends AppInt
373
399
  $fault: "client",
374
400
  ...opts
375
401
  });
376
- this.name = "ResourceNotFoundException";
377
- this.$fault = "client";
378
402
  Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
379
403
  this.Message = opts.Message;
380
404
  }
381
405
  };
382
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
383
- var ResourceNotFoundException = _ResourceNotFoundException;
384
406
  var ExecutionStatus = {
385
407
  COMPLETED: "COMPLETED",
386
408
  FAILED: "FAILED",
@@ -1220,323 +1242,346 @@ var _nT = "nextToken";
1220
1242
  var _tK = "tagKeys";
1221
1243
 
1222
1244
  // src/commands/CreateApplicationCommand.ts
1223
- var _CreateApplicationCommand = class _CreateApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1245
+ var CreateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1224
1246
  return [
1225
1247
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1226
1248
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1227
1249
  ];
1228
1250
  }).s("AmazonAppIntegrationService", "CreateApplication", {}).n("AppIntegrationsClient", "CreateApplicationCommand").f(void 0, void 0).ser(se_CreateApplicationCommand).de(de_CreateApplicationCommand).build() {
1251
+ static {
1252
+ __name(this, "CreateApplicationCommand");
1253
+ }
1229
1254
  };
1230
- __name(_CreateApplicationCommand, "CreateApplicationCommand");
1231
- var CreateApplicationCommand = _CreateApplicationCommand;
1232
1255
 
1233
1256
  // src/commands/CreateDataIntegrationAssociationCommand.ts
1234
1257
 
1235
1258
 
1236
1259
 
1237
- var _CreateDataIntegrationAssociationCommand = class _CreateDataIntegrationAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1260
+ var CreateDataIntegrationAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1238
1261
  return [
1239
1262
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1240
1263
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1241
1264
  ];
1242
1265
  }).s("AmazonAppIntegrationService", "CreateDataIntegrationAssociation", {}).n("AppIntegrationsClient", "CreateDataIntegrationAssociationCommand").f(void 0, void 0).ser(se_CreateDataIntegrationAssociationCommand).de(de_CreateDataIntegrationAssociationCommand).build() {
1266
+ static {
1267
+ __name(this, "CreateDataIntegrationAssociationCommand");
1268
+ }
1243
1269
  };
1244
- __name(_CreateDataIntegrationAssociationCommand, "CreateDataIntegrationAssociationCommand");
1245
- var CreateDataIntegrationAssociationCommand = _CreateDataIntegrationAssociationCommand;
1246
1270
 
1247
1271
  // src/commands/CreateDataIntegrationCommand.ts
1248
1272
 
1249
1273
 
1250
1274
 
1251
- var _CreateDataIntegrationCommand = class _CreateDataIntegrationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1275
+ var CreateDataIntegrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1252
1276
  return [
1253
1277
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1254
1278
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1255
1279
  ];
1256
1280
  }).s("AmazonAppIntegrationService", "CreateDataIntegration", {}).n("AppIntegrationsClient", "CreateDataIntegrationCommand").f(void 0, void 0).ser(se_CreateDataIntegrationCommand).de(de_CreateDataIntegrationCommand).build() {
1281
+ static {
1282
+ __name(this, "CreateDataIntegrationCommand");
1283
+ }
1257
1284
  };
1258
- __name(_CreateDataIntegrationCommand, "CreateDataIntegrationCommand");
1259
- var CreateDataIntegrationCommand = _CreateDataIntegrationCommand;
1260
1285
 
1261
1286
  // src/commands/CreateEventIntegrationCommand.ts
1262
1287
 
1263
1288
 
1264
1289
 
1265
- var _CreateEventIntegrationCommand = class _CreateEventIntegrationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1290
+ var CreateEventIntegrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1266
1291
  return [
1267
1292
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1268
1293
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1269
1294
  ];
1270
1295
  }).s("AmazonAppIntegrationService", "CreateEventIntegration", {}).n("AppIntegrationsClient", "CreateEventIntegrationCommand").f(void 0, void 0).ser(se_CreateEventIntegrationCommand).de(de_CreateEventIntegrationCommand).build() {
1296
+ static {
1297
+ __name(this, "CreateEventIntegrationCommand");
1298
+ }
1271
1299
  };
1272
- __name(_CreateEventIntegrationCommand, "CreateEventIntegrationCommand");
1273
- var CreateEventIntegrationCommand = _CreateEventIntegrationCommand;
1274
1300
 
1275
1301
  // src/commands/DeleteApplicationCommand.ts
1276
1302
 
1277
1303
 
1278
1304
 
1279
- var _DeleteApplicationCommand = class _DeleteApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1305
+ var DeleteApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1280
1306
  return [
1281
1307
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1282
1308
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1283
1309
  ];
1284
1310
  }).s("AmazonAppIntegrationService", "DeleteApplication", {}).n("AppIntegrationsClient", "DeleteApplicationCommand").f(void 0, void 0).ser(se_DeleteApplicationCommand).de(de_DeleteApplicationCommand).build() {
1311
+ static {
1312
+ __name(this, "DeleteApplicationCommand");
1313
+ }
1285
1314
  };
1286
- __name(_DeleteApplicationCommand, "DeleteApplicationCommand");
1287
- var DeleteApplicationCommand = _DeleteApplicationCommand;
1288
1315
 
1289
1316
  // src/commands/DeleteDataIntegrationCommand.ts
1290
1317
 
1291
1318
 
1292
1319
 
1293
- var _DeleteDataIntegrationCommand = class _DeleteDataIntegrationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1320
+ var DeleteDataIntegrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1294
1321
  return [
1295
1322
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1296
1323
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1297
1324
  ];
1298
1325
  }).s("AmazonAppIntegrationService", "DeleteDataIntegration", {}).n("AppIntegrationsClient", "DeleteDataIntegrationCommand").f(void 0, void 0).ser(se_DeleteDataIntegrationCommand).de(de_DeleteDataIntegrationCommand).build() {
1326
+ static {
1327
+ __name(this, "DeleteDataIntegrationCommand");
1328
+ }
1299
1329
  };
1300
- __name(_DeleteDataIntegrationCommand, "DeleteDataIntegrationCommand");
1301
- var DeleteDataIntegrationCommand = _DeleteDataIntegrationCommand;
1302
1330
 
1303
1331
  // src/commands/DeleteEventIntegrationCommand.ts
1304
1332
 
1305
1333
 
1306
1334
 
1307
- var _DeleteEventIntegrationCommand = class _DeleteEventIntegrationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1335
+ var DeleteEventIntegrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1308
1336
  return [
1309
1337
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1310
1338
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1311
1339
  ];
1312
1340
  }).s("AmazonAppIntegrationService", "DeleteEventIntegration", {}).n("AppIntegrationsClient", "DeleteEventIntegrationCommand").f(void 0, void 0).ser(se_DeleteEventIntegrationCommand).de(de_DeleteEventIntegrationCommand).build() {
1341
+ static {
1342
+ __name(this, "DeleteEventIntegrationCommand");
1343
+ }
1313
1344
  };
1314
- __name(_DeleteEventIntegrationCommand, "DeleteEventIntegrationCommand");
1315
- var DeleteEventIntegrationCommand = _DeleteEventIntegrationCommand;
1316
1345
 
1317
1346
  // src/commands/GetApplicationCommand.ts
1318
1347
 
1319
1348
 
1320
1349
 
1321
- var _GetApplicationCommand = class _GetApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1350
+ var GetApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1322
1351
  return [
1323
1352
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1324
1353
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1325
1354
  ];
1326
1355
  }).s("AmazonAppIntegrationService", "GetApplication", {}).n("AppIntegrationsClient", "GetApplicationCommand").f(void 0, void 0).ser(se_GetApplicationCommand).de(de_GetApplicationCommand).build() {
1356
+ static {
1357
+ __name(this, "GetApplicationCommand");
1358
+ }
1327
1359
  };
1328
- __name(_GetApplicationCommand, "GetApplicationCommand");
1329
- var GetApplicationCommand = _GetApplicationCommand;
1330
1360
 
1331
1361
  // src/commands/GetDataIntegrationCommand.ts
1332
1362
 
1333
1363
 
1334
1364
 
1335
- var _GetDataIntegrationCommand = class _GetDataIntegrationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1365
+ var GetDataIntegrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1336
1366
  return [
1337
1367
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1338
1368
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1339
1369
  ];
1340
1370
  }).s("AmazonAppIntegrationService", "GetDataIntegration", {}).n("AppIntegrationsClient", "GetDataIntegrationCommand").f(void 0, void 0).ser(se_GetDataIntegrationCommand).de(de_GetDataIntegrationCommand).build() {
1371
+ static {
1372
+ __name(this, "GetDataIntegrationCommand");
1373
+ }
1341
1374
  };
1342
- __name(_GetDataIntegrationCommand, "GetDataIntegrationCommand");
1343
- var GetDataIntegrationCommand = _GetDataIntegrationCommand;
1344
1375
 
1345
1376
  // src/commands/GetEventIntegrationCommand.ts
1346
1377
 
1347
1378
 
1348
1379
 
1349
- var _GetEventIntegrationCommand = class _GetEventIntegrationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1380
+ var GetEventIntegrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1350
1381
  return [
1351
1382
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1352
1383
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1353
1384
  ];
1354
1385
  }).s("AmazonAppIntegrationService", "GetEventIntegration", {}).n("AppIntegrationsClient", "GetEventIntegrationCommand").f(void 0, void 0).ser(se_GetEventIntegrationCommand).de(de_GetEventIntegrationCommand).build() {
1386
+ static {
1387
+ __name(this, "GetEventIntegrationCommand");
1388
+ }
1355
1389
  };
1356
- __name(_GetEventIntegrationCommand, "GetEventIntegrationCommand");
1357
- var GetEventIntegrationCommand = _GetEventIntegrationCommand;
1358
1390
 
1359
1391
  // src/commands/ListApplicationAssociationsCommand.ts
1360
1392
 
1361
1393
 
1362
1394
 
1363
- var _ListApplicationAssociationsCommand = class _ListApplicationAssociationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1395
+ var ListApplicationAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1364
1396
  return [
1365
1397
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1366
1398
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1367
1399
  ];
1368
1400
  }).s("AmazonAppIntegrationService", "ListApplicationAssociations", {}).n("AppIntegrationsClient", "ListApplicationAssociationsCommand").f(void 0, void 0).ser(se_ListApplicationAssociationsCommand).de(de_ListApplicationAssociationsCommand).build() {
1401
+ static {
1402
+ __name(this, "ListApplicationAssociationsCommand");
1403
+ }
1369
1404
  };
1370
- __name(_ListApplicationAssociationsCommand, "ListApplicationAssociationsCommand");
1371
- var ListApplicationAssociationsCommand = _ListApplicationAssociationsCommand;
1372
1405
 
1373
1406
  // src/commands/ListApplicationsCommand.ts
1374
1407
 
1375
1408
 
1376
1409
 
1377
- var _ListApplicationsCommand = class _ListApplicationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1410
+ var ListApplicationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1378
1411
  return [
1379
1412
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1380
1413
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1381
1414
  ];
1382
1415
  }).s("AmazonAppIntegrationService", "ListApplications", {}).n("AppIntegrationsClient", "ListApplicationsCommand").f(void 0, void 0).ser(se_ListApplicationsCommand).de(de_ListApplicationsCommand).build() {
1416
+ static {
1417
+ __name(this, "ListApplicationsCommand");
1418
+ }
1383
1419
  };
1384
- __name(_ListApplicationsCommand, "ListApplicationsCommand");
1385
- var ListApplicationsCommand = _ListApplicationsCommand;
1386
1420
 
1387
1421
  // src/commands/ListDataIntegrationAssociationsCommand.ts
1388
1422
 
1389
1423
 
1390
1424
 
1391
- var _ListDataIntegrationAssociationsCommand = class _ListDataIntegrationAssociationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1425
+ var ListDataIntegrationAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1392
1426
  return [
1393
1427
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1394
1428
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1395
1429
  ];
1396
1430
  }).s("AmazonAppIntegrationService", "ListDataIntegrationAssociations", {}).n("AppIntegrationsClient", "ListDataIntegrationAssociationsCommand").f(void 0, void 0).ser(se_ListDataIntegrationAssociationsCommand).de(de_ListDataIntegrationAssociationsCommand).build() {
1431
+ static {
1432
+ __name(this, "ListDataIntegrationAssociationsCommand");
1433
+ }
1397
1434
  };
1398
- __name(_ListDataIntegrationAssociationsCommand, "ListDataIntegrationAssociationsCommand");
1399
- var ListDataIntegrationAssociationsCommand = _ListDataIntegrationAssociationsCommand;
1400
1435
 
1401
1436
  // src/commands/ListDataIntegrationsCommand.ts
1402
1437
 
1403
1438
 
1404
1439
 
1405
- var _ListDataIntegrationsCommand = class _ListDataIntegrationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1440
+ var ListDataIntegrationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1406
1441
  return [
1407
1442
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1408
1443
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1409
1444
  ];
1410
1445
  }).s("AmazonAppIntegrationService", "ListDataIntegrations", {}).n("AppIntegrationsClient", "ListDataIntegrationsCommand").f(void 0, void 0).ser(se_ListDataIntegrationsCommand).de(de_ListDataIntegrationsCommand).build() {
1446
+ static {
1447
+ __name(this, "ListDataIntegrationsCommand");
1448
+ }
1411
1449
  };
1412
- __name(_ListDataIntegrationsCommand, "ListDataIntegrationsCommand");
1413
- var ListDataIntegrationsCommand = _ListDataIntegrationsCommand;
1414
1450
 
1415
1451
  // src/commands/ListEventIntegrationAssociationsCommand.ts
1416
1452
 
1417
1453
 
1418
1454
 
1419
- var _ListEventIntegrationAssociationsCommand = class _ListEventIntegrationAssociationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1455
+ var ListEventIntegrationAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1420
1456
  return [
1421
1457
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1422
1458
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1423
1459
  ];
1424
1460
  }).s("AmazonAppIntegrationService", "ListEventIntegrationAssociations", {}).n("AppIntegrationsClient", "ListEventIntegrationAssociationsCommand").f(void 0, void 0).ser(se_ListEventIntegrationAssociationsCommand).de(de_ListEventIntegrationAssociationsCommand).build() {
1461
+ static {
1462
+ __name(this, "ListEventIntegrationAssociationsCommand");
1463
+ }
1425
1464
  };
1426
- __name(_ListEventIntegrationAssociationsCommand, "ListEventIntegrationAssociationsCommand");
1427
- var ListEventIntegrationAssociationsCommand = _ListEventIntegrationAssociationsCommand;
1428
1465
 
1429
1466
  // src/commands/ListEventIntegrationsCommand.ts
1430
1467
 
1431
1468
 
1432
1469
 
1433
- var _ListEventIntegrationsCommand = class _ListEventIntegrationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1470
+ var ListEventIntegrationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1434
1471
  return [
1435
1472
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1436
1473
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1437
1474
  ];
1438
1475
  }).s("AmazonAppIntegrationService", "ListEventIntegrations", {}).n("AppIntegrationsClient", "ListEventIntegrationsCommand").f(void 0, void 0).ser(se_ListEventIntegrationsCommand).de(de_ListEventIntegrationsCommand).build() {
1476
+ static {
1477
+ __name(this, "ListEventIntegrationsCommand");
1478
+ }
1439
1479
  };
1440
- __name(_ListEventIntegrationsCommand, "ListEventIntegrationsCommand");
1441
- var ListEventIntegrationsCommand = _ListEventIntegrationsCommand;
1442
1480
 
1443
1481
  // src/commands/ListTagsForResourceCommand.ts
1444
1482
 
1445
1483
 
1446
1484
 
1447
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1485
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1448
1486
  return [
1449
1487
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1450
1488
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1451
1489
  ];
1452
1490
  }).s("AmazonAppIntegrationService", "ListTagsForResource", {}).n("AppIntegrationsClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
1491
+ static {
1492
+ __name(this, "ListTagsForResourceCommand");
1493
+ }
1453
1494
  };
1454
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
1455
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
1456
1495
 
1457
1496
  // src/commands/TagResourceCommand.ts
1458
1497
 
1459
1498
 
1460
1499
 
1461
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1500
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1462
1501
  return [
1463
1502
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1464
1503
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1465
1504
  ];
1466
1505
  }).s("AmazonAppIntegrationService", "TagResource", {}).n("AppIntegrationsClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
1506
+ static {
1507
+ __name(this, "TagResourceCommand");
1508
+ }
1467
1509
  };
1468
- __name(_TagResourceCommand, "TagResourceCommand");
1469
- var TagResourceCommand = _TagResourceCommand;
1470
1510
 
1471
1511
  // src/commands/UntagResourceCommand.ts
1472
1512
 
1473
1513
 
1474
1514
 
1475
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1515
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1476
1516
  return [
1477
1517
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1478
1518
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1479
1519
  ];
1480
1520
  }).s("AmazonAppIntegrationService", "UntagResource", {}).n("AppIntegrationsClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
1521
+ static {
1522
+ __name(this, "UntagResourceCommand");
1523
+ }
1481
1524
  };
1482
- __name(_UntagResourceCommand, "UntagResourceCommand");
1483
- var UntagResourceCommand = _UntagResourceCommand;
1484
1525
 
1485
1526
  // src/commands/UpdateApplicationCommand.ts
1486
1527
 
1487
1528
 
1488
1529
 
1489
- var _UpdateApplicationCommand = class _UpdateApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1530
+ var UpdateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1490
1531
  return [
1491
1532
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1492
1533
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1493
1534
  ];
1494
1535
  }).s("AmazonAppIntegrationService", "UpdateApplication", {}).n("AppIntegrationsClient", "UpdateApplicationCommand").f(void 0, void 0).ser(se_UpdateApplicationCommand).de(de_UpdateApplicationCommand).build() {
1536
+ static {
1537
+ __name(this, "UpdateApplicationCommand");
1538
+ }
1495
1539
  };
1496
- __name(_UpdateApplicationCommand, "UpdateApplicationCommand");
1497
- var UpdateApplicationCommand = _UpdateApplicationCommand;
1498
1540
 
1499
1541
  // src/commands/UpdateDataIntegrationAssociationCommand.ts
1500
1542
 
1501
1543
 
1502
1544
 
1503
- var _UpdateDataIntegrationAssociationCommand = class _UpdateDataIntegrationAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1545
+ var UpdateDataIntegrationAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1504
1546
  return [
1505
1547
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1506
1548
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1507
1549
  ];
1508
1550
  }).s("AmazonAppIntegrationService", "UpdateDataIntegrationAssociation", {}).n("AppIntegrationsClient", "UpdateDataIntegrationAssociationCommand").f(void 0, void 0).ser(se_UpdateDataIntegrationAssociationCommand).de(de_UpdateDataIntegrationAssociationCommand).build() {
1551
+ static {
1552
+ __name(this, "UpdateDataIntegrationAssociationCommand");
1553
+ }
1509
1554
  };
1510
- __name(_UpdateDataIntegrationAssociationCommand, "UpdateDataIntegrationAssociationCommand");
1511
- var UpdateDataIntegrationAssociationCommand = _UpdateDataIntegrationAssociationCommand;
1512
1555
 
1513
1556
  // src/commands/UpdateDataIntegrationCommand.ts
1514
1557
 
1515
1558
 
1516
1559
 
1517
- var _UpdateDataIntegrationCommand = class _UpdateDataIntegrationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1560
+ var UpdateDataIntegrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1518
1561
  return [
1519
1562
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1520
1563
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1521
1564
  ];
1522
1565
  }).s("AmazonAppIntegrationService", "UpdateDataIntegration", {}).n("AppIntegrationsClient", "UpdateDataIntegrationCommand").f(void 0, void 0).ser(se_UpdateDataIntegrationCommand).de(de_UpdateDataIntegrationCommand).build() {
1566
+ static {
1567
+ __name(this, "UpdateDataIntegrationCommand");
1568
+ }
1523
1569
  };
1524
- __name(_UpdateDataIntegrationCommand, "UpdateDataIntegrationCommand");
1525
- var UpdateDataIntegrationCommand = _UpdateDataIntegrationCommand;
1526
1570
 
1527
1571
  // src/commands/UpdateEventIntegrationCommand.ts
1528
1572
 
1529
1573
 
1530
1574
 
1531
- var _UpdateEventIntegrationCommand = class _UpdateEventIntegrationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1575
+ var UpdateEventIntegrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1532
1576
  return [
1533
1577
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1534
1578
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1535
1579
  ];
1536
1580
  }).s("AmazonAppIntegrationService", "UpdateEventIntegration", {}).n("AppIntegrationsClient", "UpdateEventIntegrationCommand").f(void 0, void 0).ser(se_UpdateEventIntegrationCommand).de(de_UpdateEventIntegrationCommand).build() {
1581
+ static {
1582
+ __name(this, "UpdateEventIntegrationCommand");
1583
+ }
1537
1584
  };
1538
- __name(_UpdateEventIntegrationCommand, "UpdateEventIntegrationCommand");
1539
- var UpdateEventIntegrationCommand = _UpdateEventIntegrationCommand;
1540
1585
 
1541
1586
  // src/AppIntegrations.ts
1542
1587
  var commands = {
@@ -1564,10 +1609,11 @@ var commands = {
1564
1609
  UpdateDataIntegrationAssociationCommand,
1565
1610
  UpdateEventIntegrationCommand
1566
1611
  };
1567
- var _AppIntegrations = class _AppIntegrations extends AppIntegrationsClient {
1612
+ var AppIntegrations = class extends AppIntegrationsClient {
1613
+ static {
1614
+ __name(this, "AppIntegrations");
1615
+ }
1568
1616
  };
1569
- __name(_AppIntegrations, "AppIntegrations");
1570
- var AppIntegrations = _AppIntegrations;
1571
1617
  (0, import_smithy_client.createAggregatedClient)(commands, AppIntegrations);
1572
1618
 
1573
1619
  // src/pagination/ListApplicationAssociationsPaginator.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 AppIntegrationsClient extends __Client {
17
+ config;
17
18
  constructor(...[configuration]) {
18
19
  const _config_0 = __getRuntimeConfig(configuration || {});
19
20
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -1,91 +1,98 @@
1
1
  import { AppIntegrationsServiceException as __BaseException } from "./AppIntegrationsServiceException";
2
2
  export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
5
+ Message;
3
6
  constructor(opts) {
4
7
  super({
5
8
  name: "AccessDeniedException",
6
9
  $fault: "client",
7
10
  ...opts,
8
11
  });
9
- this.name = "AccessDeniedException";
10
- this.$fault = "client";
11
12
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
13
  this.Message = opts.Message;
13
14
  }
14
15
  }
15
16
  export class DuplicateResourceException extends __BaseException {
17
+ name = "DuplicateResourceException";
18
+ $fault = "client";
19
+ Message;
16
20
  constructor(opts) {
17
21
  super({
18
22
  name: "DuplicateResourceException",
19
23
  $fault: "client",
20
24
  ...opts,
21
25
  });
22
- this.name = "DuplicateResourceException";
23
- this.$fault = "client";
24
26
  Object.setPrototypeOf(this, DuplicateResourceException.prototype);
25
27
  this.Message = opts.Message;
26
28
  }
27
29
  }
28
30
  export class InternalServiceError extends __BaseException {
31
+ name = "InternalServiceError";
32
+ $fault = "server";
33
+ Message;
29
34
  constructor(opts) {
30
35
  super({
31
36
  name: "InternalServiceError",
32
37
  $fault: "server",
33
38
  ...opts,
34
39
  });
35
- this.name = "InternalServiceError";
36
- this.$fault = "server";
37
40
  Object.setPrototypeOf(this, InternalServiceError.prototype);
38
41
  this.Message = opts.Message;
39
42
  }
40
43
  }
41
44
  export class InvalidRequestException extends __BaseException {
45
+ name = "InvalidRequestException";
46
+ $fault = "client";
47
+ Message;
42
48
  constructor(opts) {
43
49
  super({
44
50
  name: "InvalidRequestException",
45
51
  $fault: "client",
46
52
  ...opts,
47
53
  });
48
- this.name = "InvalidRequestException";
49
- this.$fault = "client";
50
54
  Object.setPrototypeOf(this, InvalidRequestException.prototype);
51
55
  this.Message = opts.Message;
52
56
  }
53
57
  }
54
58
  export class ResourceQuotaExceededException extends __BaseException {
59
+ name = "ResourceQuotaExceededException";
60
+ $fault = "client";
61
+ Message;
55
62
  constructor(opts) {
56
63
  super({
57
64
  name: "ResourceQuotaExceededException",
58
65
  $fault: "client",
59
66
  ...opts,
60
67
  });
61
- this.name = "ResourceQuotaExceededException";
62
- this.$fault = "client";
63
68
  Object.setPrototypeOf(this, ResourceQuotaExceededException.prototype);
64
69
  this.Message = opts.Message;
65
70
  }
66
71
  }
67
72
  export class ThrottlingException extends __BaseException {
73
+ name = "ThrottlingException";
74
+ $fault = "client";
75
+ Message;
68
76
  constructor(opts) {
69
77
  super({
70
78
  name: "ThrottlingException",
71
79
  $fault: "client",
72
80
  ...opts,
73
81
  });
74
- this.name = "ThrottlingException";
75
- this.$fault = "client";
76
82
  Object.setPrototypeOf(this, ThrottlingException.prototype);
77
83
  this.Message = opts.Message;
78
84
  }
79
85
  }
80
86
  export class UnsupportedOperationException extends __BaseException {
87
+ name = "UnsupportedOperationException";
88
+ $fault = "client";
89
+ Message;
81
90
  constructor(opts) {
82
91
  super({
83
92
  name: "UnsupportedOperationException",
84
93
  $fault: "client",
85
94
  ...opts,
86
95
  });
87
- this.name = "UnsupportedOperationException";
88
- this.$fault = "client";
89
96
  Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
90
97
  this.Message = opts.Message;
91
98
  }
@@ -95,14 +102,15 @@ export const ExecutionMode = {
95
102
  SCHEDULED: "SCHEDULED",
96
103
  };
97
104
  export class ResourceNotFoundException extends __BaseException {
105
+ name = "ResourceNotFoundException";
106
+ $fault = "client";
107
+ Message;
98
108
  constructor(opts) {
99
109
  super({
100
110
  name: "ResourceNotFoundException",
101
111
  $fault: "client",
102
112
  ...opts,
103
113
  });
104
- this.name = "ResourceNotFoundException";
105
- this.$fault = "client";
106
114
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
107
115
  this.Message = opts.Message;
108
116
  }
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: AppIntegrationsClientConfig) =>
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: AppIntegrationsClientConfig) =>
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: AppIntegrationsClientConfig) =>
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: AppIntegrationsClientConfig) =>
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;
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
8
8
  import("@smithy/smithy-client").ResolvedDefaultsMode
9
9
  >;
10
10
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
- credentialDefaultProvider: (
12
- input: any
13
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
11
+ credentialDefaultProvider:
12
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
13
+ | ((
14
+ _: unknown
15
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
14
16
  defaultUserAgentProvider: (
15
17
  config?:
16
18
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
8
8
  import("@smithy/smithy-client").ResolvedDefaultsMode
9
9
  >;
10
10
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
- credentialDefaultProvider: (
12
- init?:
13
- | import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
- | undefined
15
- ) => import("@smithy/types").MemoizedProvider<
16
- import("@smithy/types").AwsCredentialIdentity
17
- >;
11
+ credentialDefaultProvider:
12
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
13
+ | ((
14
+ init?:
15
+ | import("@aws-sdk/credential-provider-node").DefaultProviderInit
16
+ | undefined
17
+ ) => import("@smithy/types").MemoizedProvider<
18
+ import("@smithy/types").AwsCredentialIdentity
19
+ >);
18
20
  defaultUserAgentProvider: (
19
21
  config?:
20
22
  | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
30
30
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
31
31
  | undefined
32
32
  ) => Promise<import("@smithy/types").UserAgent>;
33
- credentialDefaultProvider: (
34
- input: any
35
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
33
+ credentialDefaultProvider:
34
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
35
+ | ((
36
+ _: unknown
37
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
36
38
  maxAttempts: number | import("@smithy/types").Provider<number>;
37
39
  retryMode: string | import("@smithy/types").Provider<string>;
38
40
  logger: import("@smithy/types").Logger;
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
52
54
  | import("@smithy/types").RetryStrategyV2
53
55
  | undefined;
54
56
  endpoint?:
55
- | string
56
- | import("@smithy/types").Endpoint
57
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
58
- | import("@smithy/types").EndpointV2
59
- | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
57
+ | ((
58
+ | string
59
+ | import("@smithy/types").Endpoint
60
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
61
+ | import("@smithy/types").EndpointV2
62
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
63
+ ) &
64
+ (
65
+ | string
66
+ | import("@smithy/types").Provider<string>
67
+ | import("@smithy/types").Endpoint
68
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
69
+ | import("@smithy/types").EndpointV2
70
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
71
+ ))
60
72
  | undefined;
61
73
  endpointProvider: (
62
74
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appintegrations",
3
3
  "description": "AWS SDK for JavaScript Appintegrations 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-appintegrations",
@@ -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": {