@aws-sdk/client-service-catalog-appregistry 3.716.0 → 3.723.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
@@ -165,7 +165,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
165
165
  }, "resolveRuntimeExtensions");
166
166
 
167
167
  // src/ServiceCatalogAppRegistryClient.ts
168
- var _ServiceCatalogAppRegistryClient = class _ServiceCatalogAppRegistryClient extends import_smithy_client.Client {
168
+ var ServiceCatalogAppRegistryClient = class extends import_smithy_client.Client {
169
+ static {
170
+ __name(this, "ServiceCatalogAppRegistryClient");
171
+ }
172
+ /**
173
+ * The resolved configuration of ServiceCatalogAppRegistryClient class. This is resolved and normalized from the {@link ServiceCatalogAppRegistryClientConfig | constructor configuration interface}.
174
+ */
175
+ config;
169
176
  constructor(...[configuration]) {
170
177
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
171
178
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -175,7 +182,7 @@ var _ServiceCatalogAppRegistryClient = class _ServiceCatalogAppRegistryClient ex
175
182
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
176
183
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
177
184
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
178
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
185
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
179
186
  super(_config_8);
180
187
  this.config = _config_8;
181
188
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -203,8 +210,6 @@ var _ServiceCatalogAppRegistryClient = class _ServiceCatalogAppRegistryClient ex
203
210
  super.destroy();
204
211
  }
205
212
  };
206
- __name(_ServiceCatalogAppRegistryClient, "ServiceCatalogAppRegistryClient");
207
- var ServiceCatalogAppRegistryClient = _ServiceCatalogAppRegistryClient;
208
213
 
209
214
  // src/ServiceCatalogAppRegistry.ts
210
215
 
@@ -222,7 +227,10 @@ var import_uuid = require("uuid");
222
227
 
223
228
  // src/models/ServiceCatalogAppRegistryServiceException.ts
224
229
 
225
- var _ServiceCatalogAppRegistryServiceException = class _ServiceCatalogAppRegistryServiceException extends import_smithy_client.ServiceException {
230
+ var ServiceCatalogAppRegistryServiceException = class _ServiceCatalogAppRegistryServiceException extends import_smithy_client.ServiceException {
231
+ static {
232
+ __name(this, "ServiceCatalogAppRegistryServiceException");
233
+ }
226
234
  /**
227
235
  * @internal
228
236
  */
@@ -231,8 +239,6 @@ var _ServiceCatalogAppRegistryServiceException = class _ServiceCatalogAppRegistr
231
239
  Object.setPrototypeOf(this, _ServiceCatalogAppRegistryServiceException.prototype);
232
240
  }
233
241
  };
234
- __name(_ServiceCatalogAppRegistryServiceException, "ServiceCatalogAppRegistryServiceException");
235
- var ServiceCatalogAppRegistryServiceException = _ServiceCatalogAppRegistryServiceException;
236
242
 
237
243
  // src/models/models_0.ts
238
244
  var ApplicationTagStatus = {
@@ -240,7 +246,12 @@ var ApplicationTagStatus = {
240
246
  IN_PROGRESS: "IN_PROGRESS",
241
247
  SUCCESS: "SUCCESS"
242
248
  };
243
- var _ConflictException = class _ConflictException extends ServiceCatalogAppRegistryServiceException {
249
+ var ConflictException = class _ConflictException extends ServiceCatalogAppRegistryServiceException {
250
+ static {
251
+ __name(this, "ConflictException");
252
+ }
253
+ name = "ConflictException";
254
+ $fault = "client";
244
255
  /**
245
256
  * @internal
246
257
  */
@@ -250,14 +261,15 @@ var _ConflictException = class _ConflictException extends ServiceCatalogAppRegis
250
261
  $fault: "client",
251
262
  ...opts
252
263
  });
253
- this.name = "ConflictException";
254
- this.$fault = "client";
255
264
  Object.setPrototypeOf(this, _ConflictException.prototype);
256
265
  }
257
266
  };
258
- __name(_ConflictException, "ConflictException");
259
- var ConflictException = _ConflictException;
260
- var _InternalServerException = class _InternalServerException extends ServiceCatalogAppRegistryServiceException {
267
+ var InternalServerException = class _InternalServerException extends ServiceCatalogAppRegistryServiceException {
268
+ static {
269
+ __name(this, "InternalServerException");
270
+ }
271
+ name = "InternalServerException";
272
+ $fault = "server";
261
273
  /**
262
274
  * @internal
263
275
  */
@@ -267,14 +279,15 @@ var _InternalServerException = class _InternalServerException extends ServiceCat
267
279
  $fault: "server",
268
280
  ...opts
269
281
  });
270
- this.name = "InternalServerException";
271
- this.$fault = "server";
272
282
  Object.setPrototypeOf(this, _InternalServerException.prototype);
273
283
  }
274
284
  };
275
- __name(_InternalServerException, "InternalServerException");
276
- var InternalServerException = _InternalServerException;
277
- var _ResourceNotFoundException = class _ResourceNotFoundException extends ServiceCatalogAppRegistryServiceException {
285
+ var ResourceNotFoundException = class _ResourceNotFoundException extends ServiceCatalogAppRegistryServiceException {
286
+ static {
287
+ __name(this, "ResourceNotFoundException");
288
+ }
289
+ name = "ResourceNotFoundException";
290
+ $fault = "client";
278
291
  /**
279
292
  * @internal
280
293
  */
@@ -284,14 +297,15 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Servic
284
297
  $fault: "client",
285
298
  ...opts
286
299
  });
287
- this.name = "ResourceNotFoundException";
288
- this.$fault = "client";
289
300
  Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
290
301
  }
291
302
  };
292
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
293
- var ResourceNotFoundException = _ResourceNotFoundException;
294
- var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extends ServiceCatalogAppRegistryServiceException {
303
+ var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends ServiceCatalogAppRegistryServiceException {
304
+ static {
305
+ __name(this, "ServiceQuotaExceededException");
306
+ }
307
+ name = "ServiceQuotaExceededException";
308
+ $fault = "client";
295
309
  /**
296
310
  * @internal
297
311
  */
@@ -301,14 +315,15 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
301
315
  $fault: "client",
302
316
  ...opts
303
317
  });
304
- this.name = "ServiceQuotaExceededException";
305
- this.$fault = "client";
306
318
  Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
307
319
  }
308
320
  };
309
- __name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
310
- var ServiceQuotaExceededException = _ServiceQuotaExceededException;
311
- var _ValidationException = class _ValidationException extends ServiceCatalogAppRegistryServiceException {
321
+ var ValidationException = class _ValidationException extends ServiceCatalogAppRegistryServiceException {
322
+ static {
323
+ __name(this, "ValidationException");
324
+ }
325
+ name = "ValidationException";
326
+ $fault = "client";
312
327
  /**
313
328
  * @internal
314
329
  */
@@ -318,13 +333,9 @@ var _ValidationException = class _ValidationException extends ServiceCatalogAppR
318
333
  $fault: "client",
319
334
  ...opts
320
335
  });
321
- this.name = "ValidationException";
322
- this.$fault = "client";
323
336
  Object.setPrototypeOf(this, _ValidationException.prototype);
324
337
  }
325
338
  };
326
- __name(_ValidationException, "ValidationException");
327
- var ValidationException = _ValidationException;
328
339
  var AssociationOption = {
329
340
  APPLY_APPLICATION_TAG: "APPLY_APPLICATION_TAG",
330
341
  SKIP_APPLICATION_TAG: "SKIP_APPLICATION_TAG"
@@ -333,7 +344,17 @@ var ResourceType = {
333
344
  CFN_STACK: "CFN_STACK",
334
345
  RESOURCE_TAG_VALUE: "RESOURCE_TAG_VALUE"
335
346
  };
336
- var _ThrottlingException = class _ThrottlingException extends ServiceCatalogAppRegistryServiceException {
347
+ var ThrottlingException = class _ThrottlingException extends ServiceCatalogAppRegistryServiceException {
348
+ static {
349
+ __name(this, "ThrottlingException");
350
+ }
351
+ name = "ThrottlingException";
352
+ $fault = "client";
353
+ /**
354
+ * <p>The originating service code.</p>
355
+ * @public
356
+ */
357
+ serviceCode;
337
358
  /**
338
359
  * @internal
339
360
  */
@@ -343,14 +364,10 @@ var _ThrottlingException = class _ThrottlingException extends ServiceCatalogAppR
343
364
  $fault: "client",
344
365
  ...opts
345
366
  });
346
- this.name = "ThrottlingException";
347
- this.$fault = "client";
348
367
  Object.setPrototypeOf(this, _ThrottlingException.prototype);
349
368
  this.serviceCode = opts.serviceCode;
350
369
  }
351
370
  };
352
- __name(_ThrottlingException, "ThrottlingException");
353
- var ThrottlingException = _ThrottlingException;
354
371
  var ResourceGroupState = {
355
372
  CREATE_COMPLETE: "CREATE_COMPLETE",
356
373
  CREATE_FAILED: "CREATE_FAILED",
@@ -1222,337 +1239,361 @@ var _rTS = "resourceTagStatus";
1222
1239
  var _tK = "tagKeys";
1223
1240
 
1224
1241
  // src/commands/AssociateAttributeGroupCommand.ts
1225
- var _AssociateAttributeGroupCommand = class _AssociateAttributeGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1242
+ var AssociateAttributeGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1226
1243
  return [
1227
1244
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1228
1245
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1229
1246
  ];
1230
1247
  }).s("AWS242AppRegistry", "AssociateAttributeGroup", {}).n("ServiceCatalogAppRegistryClient", "AssociateAttributeGroupCommand").f(void 0, void 0).ser(se_AssociateAttributeGroupCommand).de(de_AssociateAttributeGroupCommand).build() {
1248
+ static {
1249
+ __name(this, "AssociateAttributeGroupCommand");
1250
+ }
1231
1251
  };
1232
- __name(_AssociateAttributeGroupCommand, "AssociateAttributeGroupCommand");
1233
- var AssociateAttributeGroupCommand = _AssociateAttributeGroupCommand;
1234
1252
 
1235
1253
  // src/commands/AssociateResourceCommand.ts
1236
1254
 
1237
1255
 
1238
1256
 
1239
- var _AssociateResourceCommand = class _AssociateResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1257
+ var AssociateResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1240
1258
  return [
1241
1259
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1242
1260
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1243
1261
  ];
1244
1262
  }).s("AWS242AppRegistry", "AssociateResource", {}).n("ServiceCatalogAppRegistryClient", "AssociateResourceCommand").f(void 0, void 0).ser(se_AssociateResourceCommand).de(de_AssociateResourceCommand).build() {
1263
+ static {
1264
+ __name(this, "AssociateResourceCommand");
1265
+ }
1245
1266
  };
1246
- __name(_AssociateResourceCommand, "AssociateResourceCommand");
1247
- var AssociateResourceCommand = _AssociateResourceCommand;
1248
1267
 
1249
1268
  // src/commands/CreateApplicationCommand.ts
1250
1269
 
1251
1270
 
1252
1271
 
1253
- var _CreateApplicationCommand = class _CreateApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1272
+ var CreateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1254
1273
  return [
1255
1274
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1256
1275
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1257
1276
  ];
1258
1277
  }).s("AWS242AppRegistry", "CreateApplication", {}).n("ServiceCatalogAppRegistryClient", "CreateApplicationCommand").f(void 0, void 0).ser(se_CreateApplicationCommand).de(de_CreateApplicationCommand).build() {
1278
+ static {
1279
+ __name(this, "CreateApplicationCommand");
1280
+ }
1259
1281
  };
1260
- __name(_CreateApplicationCommand, "CreateApplicationCommand");
1261
- var CreateApplicationCommand = _CreateApplicationCommand;
1262
1282
 
1263
1283
  // src/commands/CreateAttributeGroupCommand.ts
1264
1284
 
1265
1285
 
1266
1286
 
1267
- var _CreateAttributeGroupCommand = class _CreateAttributeGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1287
+ var CreateAttributeGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1268
1288
  return [
1269
1289
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1270
1290
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1271
1291
  ];
1272
1292
  }).s("AWS242AppRegistry", "CreateAttributeGroup", {}).n("ServiceCatalogAppRegistryClient", "CreateAttributeGroupCommand").f(void 0, void 0).ser(se_CreateAttributeGroupCommand).de(de_CreateAttributeGroupCommand).build() {
1293
+ static {
1294
+ __name(this, "CreateAttributeGroupCommand");
1295
+ }
1273
1296
  };
1274
- __name(_CreateAttributeGroupCommand, "CreateAttributeGroupCommand");
1275
- var CreateAttributeGroupCommand = _CreateAttributeGroupCommand;
1276
1297
 
1277
1298
  // src/commands/DeleteApplicationCommand.ts
1278
1299
 
1279
1300
 
1280
1301
 
1281
- var _DeleteApplicationCommand = class _DeleteApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1302
+ var DeleteApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1282
1303
  return [
1283
1304
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1284
1305
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1285
1306
  ];
1286
1307
  }).s("AWS242AppRegistry", "DeleteApplication", {}).n("ServiceCatalogAppRegistryClient", "DeleteApplicationCommand").f(void 0, void 0).ser(se_DeleteApplicationCommand).de(de_DeleteApplicationCommand).build() {
1308
+ static {
1309
+ __name(this, "DeleteApplicationCommand");
1310
+ }
1287
1311
  };
1288
- __name(_DeleteApplicationCommand, "DeleteApplicationCommand");
1289
- var DeleteApplicationCommand = _DeleteApplicationCommand;
1290
1312
 
1291
1313
  // src/commands/DeleteAttributeGroupCommand.ts
1292
1314
 
1293
1315
 
1294
1316
 
1295
- var _DeleteAttributeGroupCommand = class _DeleteAttributeGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1317
+ var DeleteAttributeGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1296
1318
  return [
1297
1319
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1298
1320
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1299
1321
  ];
1300
1322
  }).s("AWS242AppRegistry", "DeleteAttributeGroup", {}).n("ServiceCatalogAppRegistryClient", "DeleteAttributeGroupCommand").f(void 0, void 0).ser(se_DeleteAttributeGroupCommand).de(de_DeleteAttributeGroupCommand).build() {
1323
+ static {
1324
+ __name(this, "DeleteAttributeGroupCommand");
1325
+ }
1301
1326
  };
1302
- __name(_DeleteAttributeGroupCommand, "DeleteAttributeGroupCommand");
1303
- var DeleteAttributeGroupCommand = _DeleteAttributeGroupCommand;
1304
1327
 
1305
1328
  // src/commands/DisassociateAttributeGroupCommand.ts
1306
1329
 
1307
1330
 
1308
1331
 
1309
- var _DisassociateAttributeGroupCommand = class _DisassociateAttributeGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1332
+ var DisassociateAttributeGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1310
1333
  return [
1311
1334
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1312
1335
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1313
1336
  ];
1314
1337
  }).s("AWS242AppRegistry", "DisassociateAttributeGroup", {}).n("ServiceCatalogAppRegistryClient", "DisassociateAttributeGroupCommand").f(void 0, void 0).ser(se_DisassociateAttributeGroupCommand).de(de_DisassociateAttributeGroupCommand).build() {
1338
+ static {
1339
+ __name(this, "DisassociateAttributeGroupCommand");
1340
+ }
1315
1341
  };
1316
- __name(_DisassociateAttributeGroupCommand, "DisassociateAttributeGroupCommand");
1317
- var DisassociateAttributeGroupCommand = _DisassociateAttributeGroupCommand;
1318
1342
 
1319
1343
  // src/commands/DisassociateResourceCommand.ts
1320
1344
 
1321
1345
 
1322
1346
 
1323
- var _DisassociateResourceCommand = class _DisassociateResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1347
+ var DisassociateResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1324
1348
  return [
1325
1349
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1326
1350
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1327
1351
  ];
1328
1352
  }).s("AWS242AppRegistry", "DisassociateResource", {}).n("ServiceCatalogAppRegistryClient", "DisassociateResourceCommand").f(void 0, void 0).ser(se_DisassociateResourceCommand).de(de_DisassociateResourceCommand).build() {
1353
+ static {
1354
+ __name(this, "DisassociateResourceCommand");
1355
+ }
1329
1356
  };
1330
- __name(_DisassociateResourceCommand, "DisassociateResourceCommand");
1331
- var DisassociateResourceCommand = _DisassociateResourceCommand;
1332
1357
 
1333
1358
  // src/commands/GetApplicationCommand.ts
1334
1359
 
1335
1360
 
1336
1361
 
1337
- var _GetApplicationCommand = class _GetApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1362
+ var GetApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1338
1363
  return [
1339
1364
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1340
1365
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1341
1366
  ];
1342
1367
  }).s("AWS242AppRegistry", "GetApplication", {}).n("ServiceCatalogAppRegistryClient", "GetApplicationCommand").f(void 0, void 0).ser(se_GetApplicationCommand).de(de_GetApplicationCommand).build() {
1368
+ static {
1369
+ __name(this, "GetApplicationCommand");
1370
+ }
1343
1371
  };
1344
- __name(_GetApplicationCommand, "GetApplicationCommand");
1345
- var GetApplicationCommand = _GetApplicationCommand;
1346
1372
 
1347
1373
  // src/commands/GetAssociatedResourceCommand.ts
1348
1374
 
1349
1375
 
1350
1376
 
1351
- var _GetAssociatedResourceCommand = class _GetAssociatedResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1377
+ var GetAssociatedResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1352
1378
  return [
1353
1379
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1354
1380
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1355
1381
  ];
1356
1382
  }).s("AWS242AppRegistry", "GetAssociatedResource", {}).n("ServiceCatalogAppRegistryClient", "GetAssociatedResourceCommand").f(void 0, void 0).ser(se_GetAssociatedResourceCommand).de(de_GetAssociatedResourceCommand).build() {
1383
+ static {
1384
+ __name(this, "GetAssociatedResourceCommand");
1385
+ }
1357
1386
  };
1358
- __name(_GetAssociatedResourceCommand, "GetAssociatedResourceCommand");
1359
- var GetAssociatedResourceCommand = _GetAssociatedResourceCommand;
1360
1387
 
1361
1388
  // src/commands/GetAttributeGroupCommand.ts
1362
1389
 
1363
1390
 
1364
1391
 
1365
- var _GetAttributeGroupCommand = class _GetAttributeGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1392
+ var GetAttributeGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1366
1393
  return [
1367
1394
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1368
1395
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1369
1396
  ];
1370
1397
  }).s("AWS242AppRegistry", "GetAttributeGroup", {}).n("ServiceCatalogAppRegistryClient", "GetAttributeGroupCommand").f(void 0, void 0).ser(se_GetAttributeGroupCommand).de(de_GetAttributeGroupCommand).build() {
1398
+ static {
1399
+ __name(this, "GetAttributeGroupCommand");
1400
+ }
1371
1401
  };
1372
- __name(_GetAttributeGroupCommand, "GetAttributeGroupCommand");
1373
- var GetAttributeGroupCommand = _GetAttributeGroupCommand;
1374
1402
 
1375
1403
  // src/commands/GetConfigurationCommand.ts
1376
1404
 
1377
1405
 
1378
1406
 
1379
- var _GetConfigurationCommand = class _GetConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1407
+ var GetConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1380
1408
  return [
1381
1409
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1382
1410
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1383
1411
  ];
1384
1412
  }).s("AWS242AppRegistry", "GetConfiguration", {}).n("ServiceCatalogAppRegistryClient", "GetConfigurationCommand").f(void 0, void 0).ser(se_GetConfigurationCommand).de(de_GetConfigurationCommand).build() {
1413
+ static {
1414
+ __name(this, "GetConfigurationCommand");
1415
+ }
1385
1416
  };
1386
- __name(_GetConfigurationCommand, "GetConfigurationCommand");
1387
- var GetConfigurationCommand = _GetConfigurationCommand;
1388
1417
 
1389
1418
  // src/commands/ListApplicationsCommand.ts
1390
1419
 
1391
1420
 
1392
1421
 
1393
- var _ListApplicationsCommand = class _ListApplicationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1422
+ var ListApplicationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1394
1423
  return [
1395
1424
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1396
1425
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1397
1426
  ];
1398
1427
  }).s("AWS242AppRegistry", "ListApplications", {}).n("ServiceCatalogAppRegistryClient", "ListApplicationsCommand").f(void 0, void 0).ser(se_ListApplicationsCommand).de(de_ListApplicationsCommand).build() {
1428
+ static {
1429
+ __name(this, "ListApplicationsCommand");
1430
+ }
1399
1431
  };
1400
- __name(_ListApplicationsCommand, "ListApplicationsCommand");
1401
- var ListApplicationsCommand = _ListApplicationsCommand;
1402
1432
 
1403
1433
  // src/commands/ListAssociatedAttributeGroupsCommand.ts
1404
1434
 
1405
1435
 
1406
1436
 
1407
- var _ListAssociatedAttributeGroupsCommand = class _ListAssociatedAttributeGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1437
+ var ListAssociatedAttributeGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1408
1438
  return [
1409
1439
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1410
1440
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1411
1441
  ];
1412
1442
  }).s("AWS242AppRegistry", "ListAssociatedAttributeGroups", {}).n("ServiceCatalogAppRegistryClient", "ListAssociatedAttributeGroupsCommand").f(void 0, void 0).ser(se_ListAssociatedAttributeGroupsCommand).de(de_ListAssociatedAttributeGroupsCommand).build() {
1443
+ static {
1444
+ __name(this, "ListAssociatedAttributeGroupsCommand");
1445
+ }
1413
1446
  };
1414
- __name(_ListAssociatedAttributeGroupsCommand, "ListAssociatedAttributeGroupsCommand");
1415
- var ListAssociatedAttributeGroupsCommand = _ListAssociatedAttributeGroupsCommand;
1416
1447
 
1417
1448
  // src/commands/ListAssociatedResourcesCommand.ts
1418
1449
 
1419
1450
 
1420
1451
 
1421
- var _ListAssociatedResourcesCommand = class _ListAssociatedResourcesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1452
+ var ListAssociatedResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1422
1453
  return [
1423
1454
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1424
1455
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1425
1456
  ];
1426
1457
  }).s("AWS242AppRegistry", "ListAssociatedResources", {}).n("ServiceCatalogAppRegistryClient", "ListAssociatedResourcesCommand").f(void 0, void 0).ser(se_ListAssociatedResourcesCommand).de(de_ListAssociatedResourcesCommand).build() {
1458
+ static {
1459
+ __name(this, "ListAssociatedResourcesCommand");
1460
+ }
1427
1461
  };
1428
- __name(_ListAssociatedResourcesCommand, "ListAssociatedResourcesCommand");
1429
- var ListAssociatedResourcesCommand = _ListAssociatedResourcesCommand;
1430
1462
 
1431
1463
  // src/commands/ListAttributeGroupsCommand.ts
1432
1464
 
1433
1465
 
1434
1466
 
1435
- var _ListAttributeGroupsCommand = class _ListAttributeGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1467
+ var ListAttributeGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1436
1468
  return [
1437
1469
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1438
1470
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1439
1471
  ];
1440
1472
  }).s("AWS242AppRegistry", "ListAttributeGroups", {}).n("ServiceCatalogAppRegistryClient", "ListAttributeGroupsCommand").f(void 0, void 0).ser(se_ListAttributeGroupsCommand).de(de_ListAttributeGroupsCommand).build() {
1473
+ static {
1474
+ __name(this, "ListAttributeGroupsCommand");
1475
+ }
1441
1476
  };
1442
- __name(_ListAttributeGroupsCommand, "ListAttributeGroupsCommand");
1443
- var ListAttributeGroupsCommand = _ListAttributeGroupsCommand;
1444
1477
 
1445
1478
  // src/commands/ListAttributeGroupsForApplicationCommand.ts
1446
1479
 
1447
1480
 
1448
1481
 
1449
- var _ListAttributeGroupsForApplicationCommand = class _ListAttributeGroupsForApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1482
+ var ListAttributeGroupsForApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1450
1483
  return [
1451
1484
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1452
1485
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1453
1486
  ];
1454
1487
  }).s("AWS242AppRegistry", "ListAttributeGroupsForApplication", {}).n("ServiceCatalogAppRegistryClient", "ListAttributeGroupsForApplicationCommand").f(void 0, void 0).ser(se_ListAttributeGroupsForApplicationCommand).de(de_ListAttributeGroupsForApplicationCommand).build() {
1488
+ static {
1489
+ __name(this, "ListAttributeGroupsForApplicationCommand");
1490
+ }
1455
1491
  };
1456
- __name(_ListAttributeGroupsForApplicationCommand, "ListAttributeGroupsForApplicationCommand");
1457
- var ListAttributeGroupsForApplicationCommand = _ListAttributeGroupsForApplicationCommand;
1458
1492
 
1459
1493
  // src/commands/ListTagsForResourceCommand.ts
1460
1494
 
1461
1495
 
1462
1496
 
1463
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1497
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1464
1498
  return [
1465
1499
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1466
1500
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1467
1501
  ];
1468
1502
  }).s("AWS242AppRegistry", "ListTagsForResource", {}).n("ServiceCatalogAppRegistryClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
1503
+ static {
1504
+ __name(this, "ListTagsForResourceCommand");
1505
+ }
1469
1506
  };
1470
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
1471
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
1472
1507
 
1473
1508
  // src/commands/PutConfigurationCommand.ts
1474
1509
 
1475
1510
 
1476
1511
 
1477
- var _PutConfigurationCommand = class _PutConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1512
+ var PutConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1478
1513
  return [
1479
1514
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1480
1515
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1481
1516
  ];
1482
1517
  }).s("AWS242AppRegistry", "PutConfiguration", {}).n("ServiceCatalogAppRegistryClient", "PutConfigurationCommand").f(void 0, void 0).ser(se_PutConfigurationCommand).de(de_PutConfigurationCommand).build() {
1518
+ static {
1519
+ __name(this, "PutConfigurationCommand");
1520
+ }
1483
1521
  };
1484
- __name(_PutConfigurationCommand, "PutConfigurationCommand");
1485
- var PutConfigurationCommand = _PutConfigurationCommand;
1486
1522
 
1487
1523
  // src/commands/SyncResourceCommand.ts
1488
1524
 
1489
1525
 
1490
1526
 
1491
- var _SyncResourceCommand = class _SyncResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1527
+ var SyncResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1492
1528
  return [
1493
1529
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1494
1530
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1495
1531
  ];
1496
1532
  }).s("AWS242AppRegistry", "SyncResource", {}).n("ServiceCatalogAppRegistryClient", "SyncResourceCommand").f(void 0, void 0).ser(se_SyncResourceCommand).de(de_SyncResourceCommand).build() {
1533
+ static {
1534
+ __name(this, "SyncResourceCommand");
1535
+ }
1497
1536
  };
1498
- __name(_SyncResourceCommand, "SyncResourceCommand");
1499
- var SyncResourceCommand = _SyncResourceCommand;
1500
1537
 
1501
1538
  // src/commands/TagResourceCommand.ts
1502
1539
 
1503
1540
 
1504
1541
 
1505
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1542
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1506
1543
  return [
1507
1544
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1508
1545
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1509
1546
  ];
1510
1547
  }).s("AWS242AppRegistry", "TagResource", {}).n("ServiceCatalogAppRegistryClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
1548
+ static {
1549
+ __name(this, "TagResourceCommand");
1550
+ }
1511
1551
  };
1512
- __name(_TagResourceCommand, "TagResourceCommand");
1513
- var TagResourceCommand = _TagResourceCommand;
1514
1552
 
1515
1553
  // src/commands/UntagResourceCommand.ts
1516
1554
 
1517
1555
 
1518
1556
 
1519
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1557
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1520
1558
  return [
1521
1559
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1522
1560
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1523
1561
  ];
1524
1562
  }).s("AWS242AppRegistry", "UntagResource", {}).n("ServiceCatalogAppRegistryClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
1563
+ static {
1564
+ __name(this, "UntagResourceCommand");
1565
+ }
1525
1566
  };
1526
- __name(_UntagResourceCommand, "UntagResourceCommand");
1527
- var UntagResourceCommand = _UntagResourceCommand;
1528
1567
 
1529
1568
  // src/commands/UpdateApplicationCommand.ts
1530
1569
 
1531
1570
 
1532
1571
 
1533
- var _UpdateApplicationCommand = class _UpdateApplicationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1572
+ var UpdateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1534
1573
  return [
1535
1574
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1536
1575
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1537
1576
  ];
1538
1577
  }).s("AWS242AppRegistry", "UpdateApplication", {}).n("ServiceCatalogAppRegistryClient", "UpdateApplicationCommand").f(void 0, void 0).ser(se_UpdateApplicationCommand).de(de_UpdateApplicationCommand).build() {
1578
+ static {
1579
+ __name(this, "UpdateApplicationCommand");
1580
+ }
1539
1581
  };
1540
- __name(_UpdateApplicationCommand, "UpdateApplicationCommand");
1541
- var UpdateApplicationCommand = _UpdateApplicationCommand;
1542
1582
 
1543
1583
  // src/commands/UpdateAttributeGroupCommand.ts
1544
1584
 
1545
1585
 
1546
1586
 
1547
- var _UpdateAttributeGroupCommand = class _UpdateAttributeGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1587
+ var UpdateAttributeGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1548
1588
  return [
1549
1589
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1550
1590
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1551
1591
  ];
1552
1592
  }).s("AWS242AppRegistry", "UpdateAttributeGroup", {}).n("ServiceCatalogAppRegistryClient", "UpdateAttributeGroupCommand").f(void 0, void 0).ser(se_UpdateAttributeGroupCommand).de(de_UpdateAttributeGroupCommand).build() {
1593
+ static {
1594
+ __name(this, "UpdateAttributeGroupCommand");
1595
+ }
1553
1596
  };
1554
- __name(_UpdateAttributeGroupCommand, "UpdateAttributeGroupCommand");
1555
- var UpdateAttributeGroupCommand = _UpdateAttributeGroupCommand;
1556
1597
 
1557
1598
  // src/ServiceCatalogAppRegistry.ts
1558
1599
  var commands = {
@@ -1581,10 +1622,11 @@ var commands = {
1581
1622
  UpdateApplicationCommand,
1582
1623
  UpdateAttributeGroupCommand
1583
1624
  };
1584
- var _ServiceCatalogAppRegistry = class _ServiceCatalogAppRegistry extends ServiceCatalogAppRegistryClient {
1625
+ var ServiceCatalogAppRegistry = class extends ServiceCatalogAppRegistryClient {
1626
+ static {
1627
+ __name(this, "ServiceCatalogAppRegistry");
1628
+ }
1585
1629
  };
1586
- __name(_ServiceCatalogAppRegistry, "ServiceCatalogAppRegistry");
1587
- var ServiceCatalogAppRegistry = _ServiceCatalogAppRegistry;
1588
1630
  (0, import_smithy_client.createAggregatedClient)(commands, ServiceCatalogAppRegistry);
1589
1631
 
1590
1632
  // src/pagination/ListApplicationsPaginator.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 ServiceCatalogAppRegistryClient extends __Client {
17
+ config;
17
18
  constructor(...[configuration]) {
18
19
  const _config_0 = __getRuntimeConfig(configuration || {});
19
20
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -5,62 +5,62 @@ export const ApplicationTagStatus = {
5
5
  SUCCESS: "SUCCESS",
6
6
  };
7
7
  export class ConflictException extends __BaseException {
8
+ name = "ConflictException";
9
+ $fault = "client";
8
10
  constructor(opts) {
9
11
  super({
10
12
  name: "ConflictException",
11
13
  $fault: "client",
12
14
  ...opts,
13
15
  });
14
- this.name = "ConflictException";
15
- this.$fault = "client";
16
16
  Object.setPrototypeOf(this, ConflictException.prototype);
17
17
  }
18
18
  }
19
19
  export class InternalServerException extends __BaseException {
20
+ name = "InternalServerException";
21
+ $fault = "server";
20
22
  constructor(opts) {
21
23
  super({
22
24
  name: "InternalServerException",
23
25
  $fault: "server",
24
26
  ...opts,
25
27
  });
26
- this.name = "InternalServerException";
27
- this.$fault = "server";
28
28
  Object.setPrototypeOf(this, InternalServerException.prototype);
29
29
  }
30
30
  }
31
31
  export class ResourceNotFoundException extends __BaseException {
32
+ name = "ResourceNotFoundException";
33
+ $fault = "client";
32
34
  constructor(opts) {
33
35
  super({
34
36
  name: "ResourceNotFoundException",
35
37
  $fault: "client",
36
38
  ...opts,
37
39
  });
38
- this.name = "ResourceNotFoundException";
39
- this.$fault = "client";
40
40
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
41
41
  }
42
42
  }
43
43
  export class ServiceQuotaExceededException extends __BaseException {
44
+ name = "ServiceQuotaExceededException";
45
+ $fault = "client";
44
46
  constructor(opts) {
45
47
  super({
46
48
  name: "ServiceQuotaExceededException",
47
49
  $fault: "client",
48
50
  ...opts,
49
51
  });
50
- this.name = "ServiceQuotaExceededException";
51
- this.$fault = "client";
52
52
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
53
53
  }
54
54
  }
55
55
  export class ValidationException extends __BaseException {
56
+ name = "ValidationException";
57
+ $fault = "client";
56
58
  constructor(opts) {
57
59
  super({
58
60
  name: "ValidationException",
59
61
  $fault: "client",
60
62
  ...opts,
61
63
  });
62
- this.name = "ValidationException";
63
- this.$fault = "client";
64
64
  Object.setPrototypeOf(this, ValidationException.prototype);
65
65
  }
66
66
  }
@@ -73,14 +73,15 @@ export const ResourceType = {
73
73
  RESOURCE_TAG_VALUE: "RESOURCE_TAG_VALUE",
74
74
  };
75
75
  export class ThrottlingException extends __BaseException {
76
+ name = "ThrottlingException";
77
+ $fault = "client";
78
+ serviceCode;
76
79
  constructor(opts) {
77
80
  super({
78
81
  name: "ThrottlingException",
79
82
  $fault: "client",
80
83
  ...opts,
81
84
  });
82
- this.name = "ThrottlingException";
83
- this.$fault = "client";
84
85
  Object.setPrototypeOf(this, ThrottlingException.prototype);
85
86
  this.serviceCode = opts.serviceCode;
86
87
  }
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ServiceCatalogAppRegistryClientC
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: ServiceCatalogAppRegistryClientC
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: ServiceCatalogAppRegistryClientC
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: ServiceCatalogAppRegistryClientC
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-service-catalog-appregistry",
3
3
  "description": "AWS SDK for JavaScript Service Catalog Appregistry Client for Node.js, Browser and React Native",
4
- "version": "3.716.0",
4
+ "version": "3.723.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-service-catalog-appregistry",
@@ -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.716.0",
24
- "@aws-sdk/client-sts": "3.716.0",
25
- "@aws-sdk/core": "3.716.0",
26
- "@aws-sdk/credential-provider-node": "3.716.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.716.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.716.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.723.0",
24
+ "@aws-sdk/client-sts": "3.723.0",
25
+ "@aws-sdk/core": "3.723.0",
26
+ "@aws-sdk/credential-provider-node": "3.723.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.723.0",
31
+ "@aws-sdk/region-config-resolver": "3.723.0",
32
+ "@aws-sdk/types": "3.723.0",
33
+ "@aws-sdk/util-endpoints": "3.723.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.723.0",
35
+ "@aws-sdk/util-user-agent-node": "3.723.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": {