@aws-sdk/client-codeartifact 3.721.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
@@ -209,7 +209,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
209
209
  }, "resolveRuntimeExtensions");
210
210
 
211
211
  // src/CodeartifactClient.ts
212
- var _CodeartifactClient = class _CodeartifactClient extends import_smithy_client.Client {
212
+ var CodeartifactClient = class extends import_smithy_client.Client {
213
+ static {
214
+ __name(this, "CodeartifactClient");
215
+ }
216
+ /**
217
+ * The resolved configuration of CodeartifactClient class. This is resolved and normalized from the {@link CodeartifactClientConfig | constructor configuration interface}.
218
+ */
219
+ config;
213
220
  constructor(...[configuration]) {
214
221
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
215
222
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -219,7 +226,7 @@ var _CodeartifactClient = class _CodeartifactClient extends import_smithy_client
219
226
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
220
227
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
221
228
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
222
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
229
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
223
230
  super(_config_8);
224
231
  this.config = _config_8;
225
232
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -247,8 +254,6 @@ var _CodeartifactClient = class _CodeartifactClient extends import_smithy_client
247
254
  super.destroy();
248
255
  }
249
256
  };
250
- __name(_CodeartifactClient, "CodeartifactClient");
251
- var CodeartifactClient = _CodeartifactClient;
252
257
 
253
258
  // src/Codeartifact.ts
254
259
 
@@ -265,7 +270,10 @@ var import_core2 = require("@aws-sdk/core");
265
270
 
266
271
  // src/models/CodeartifactServiceException.ts
267
272
 
268
- var _CodeartifactServiceException = class _CodeartifactServiceException extends import_smithy_client.ServiceException {
273
+ var CodeartifactServiceException = class _CodeartifactServiceException extends import_smithy_client.ServiceException {
274
+ static {
275
+ __name(this, "CodeartifactServiceException");
276
+ }
269
277
  /**
270
278
  * @internal
271
279
  */
@@ -274,11 +282,14 @@ var _CodeartifactServiceException = class _CodeartifactServiceException extends
274
282
  Object.setPrototypeOf(this, _CodeartifactServiceException.prototype);
275
283
  }
276
284
  };
277
- __name(_CodeartifactServiceException, "CodeartifactServiceException");
278
- var CodeartifactServiceException = _CodeartifactServiceException;
279
285
 
280
286
  // src/models/models_0.ts
281
- var _AccessDeniedException = class _AccessDeniedException extends CodeartifactServiceException {
287
+ var AccessDeniedException = class _AccessDeniedException extends CodeartifactServiceException {
288
+ static {
289
+ __name(this, "AccessDeniedException");
290
+ }
291
+ name = "AccessDeniedException";
292
+ $fault = "client";
282
293
  /**
283
294
  * @internal
284
295
  */
@@ -288,13 +299,9 @@ var _AccessDeniedException = class _AccessDeniedException extends CodeartifactSe
288
299
  $fault: "client",
289
300
  ...opts
290
301
  });
291
- this.name = "AccessDeniedException";
292
- this.$fault = "client";
293
302
  Object.setPrototypeOf(this, _AccessDeniedException.prototype);
294
303
  }
295
304
  };
296
- __name(_AccessDeniedException, "AccessDeniedException");
297
- var AccessDeniedException = _AccessDeniedException;
298
305
  var AllowPublish = {
299
306
  ALLOW: "ALLOW",
300
307
  BLOCK: "BLOCK"
@@ -333,7 +340,26 @@ var ResourceType = {
333
340
  PACKAGE_VERSION: "package-version",
334
341
  REPOSITORY: "repository"
335
342
  };
336
- var _ConflictException = class _ConflictException extends CodeartifactServiceException {
343
+ var ConflictException = class _ConflictException extends CodeartifactServiceException {
344
+ static {
345
+ __name(this, "ConflictException");
346
+ }
347
+ name = "ConflictException";
348
+ $fault = "client";
349
+ /**
350
+ * <p>
351
+ * The ID of the resource.
352
+ * </p>
353
+ * @public
354
+ */
355
+ resourceId;
356
+ /**
357
+ * <p>
358
+ * The type of Amazon Web Services resource.
359
+ * </p>
360
+ * @public
361
+ */
362
+ resourceType;
337
363
  /**
338
364
  * @internal
339
365
  */
@@ -343,16 +369,17 @@ var _ConflictException = class _ConflictException extends CodeartifactServiceExc
343
369
  $fault: "client",
344
370
  ...opts
345
371
  });
346
- this.name = "ConflictException";
347
- this.$fault = "client";
348
372
  Object.setPrototypeOf(this, _ConflictException.prototype);
349
373
  this.resourceId = opts.resourceId;
350
374
  this.resourceType = opts.resourceType;
351
375
  }
352
376
  };
353
- __name(_ConflictException, "ConflictException");
354
- var ConflictException = _ConflictException;
355
- var _InternalServerException = class _InternalServerException extends CodeartifactServiceException {
377
+ var InternalServerException = class _InternalServerException extends CodeartifactServiceException {
378
+ static {
379
+ __name(this, "InternalServerException");
380
+ }
381
+ name = "InternalServerException";
382
+ $fault = "server";
356
383
  /**
357
384
  * @internal
358
385
  */
@@ -362,14 +389,29 @@ var _InternalServerException = class _InternalServerException extends Codeartifa
362
389
  $fault: "server",
363
390
  ...opts
364
391
  });
365
- this.name = "InternalServerException";
366
- this.$fault = "server";
367
392
  Object.setPrototypeOf(this, _InternalServerException.prototype);
368
393
  }
369
394
  };
370
- __name(_InternalServerException, "InternalServerException");
371
- var InternalServerException = _InternalServerException;
372
- var _ResourceNotFoundException = class _ResourceNotFoundException extends CodeartifactServiceException {
395
+ var ResourceNotFoundException = class _ResourceNotFoundException extends CodeartifactServiceException {
396
+ static {
397
+ __name(this, "ResourceNotFoundException");
398
+ }
399
+ name = "ResourceNotFoundException";
400
+ $fault = "client";
401
+ /**
402
+ * <p>
403
+ * The ID of the resource.
404
+ * </p>
405
+ * @public
406
+ */
407
+ resourceId;
408
+ /**
409
+ * <p>
410
+ * The type of Amazon Web Services resource.
411
+ * </p>
412
+ * @public
413
+ */
414
+ resourceType;
373
415
  /**
374
416
  * @internal
375
417
  */
@@ -379,16 +421,31 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Codear
379
421
  $fault: "client",
380
422
  ...opts
381
423
  });
382
- this.name = "ResourceNotFoundException";
383
- this.$fault = "client";
384
424
  Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
385
425
  this.resourceId = opts.resourceId;
386
426
  this.resourceType = opts.resourceType;
387
427
  }
388
428
  };
389
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
390
- var ResourceNotFoundException = _ResourceNotFoundException;
391
- var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extends CodeartifactServiceException {
429
+ var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends CodeartifactServiceException {
430
+ static {
431
+ __name(this, "ServiceQuotaExceededException");
432
+ }
433
+ name = "ServiceQuotaExceededException";
434
+ $fault = "client";
435
+ /**
436
+ * <p>
437
+ * The ID of the resource.
438
+ * </p>
439
+ * @public
440
+ */
441
+ resourceId;
442
+ /**
443
+ * <p>
444
+ * The type of Amazon Web Services resource.
445
+ * </p>
446
+ * @public
447
+ */
448
+ resourceType;
392
449
  /**
393
450
  * @internal
394
451
  */
@@ -398,16 +455,24 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
398
455
  $fault: "client",
399
456
  ...opts
400
457
  });
401
- this.name = "ServiceQuotaExceededException";
402
- this.$fault = "client";
403
458
  Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
404
459
  this.resourceId = opts.resourceId;
405
460
  this.resourceType = opts.resourceType;
406
461
  }
407
462
  };
408
- __name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
409
- var ServiceQuotaExceededException = _ServiceQuotaExceededException;
410
- var _ThrottlingException = class _ThrottlingException extends CodeartifactServiceException {
463
+ var ThrottlingException = class _ThrottlingException extends CodeartifactServiceException {
464
+ static {
465
+ __name(this, "ThrottlingException");
466
+ }
467
+ name = "ThrottlingException";
468
+ $fault = "client";
469
+ /**
470
+ * <p>
471
+ * The time period, in seconds, to wait before retrying the request.
472
+ * </p>
473
+ * @public
474
+ */
475
+ retryAfterSeconds;
411
476
  /**
412
477
  * @internal
413
478
  */
@@ -417,14 +482,10 @@ var _ThrottlingException = class _ThrottlingException extends CodeartifactServic
417
482
  $fault: "client",
418
483
  ...opts
419
484
  });
420
- this.name = "ThrottlingException";
421
- this.$fault = "client";
422
485
  Object.setPrototypeOf(this, _ThrottlingException.prototype);
423
486
  this.retryAfterSeconds = opts.retryAfterSeconds;
424
487
  }
425
488
  };
426
- __name(_ThrottlingException, "ThrottlingException");
427
- var ThrottlingException = _ThrottlingException;
428
489
  var ValidationExceptionReason = {
429
490
  CANNOT_PARSE: "CANNOT_PARSE",
430
491
  ENCRYPTION_KEY_ERROR: "ENCRYPTION_KEY_ERROR",
@@ -432,7 +493,19 @@ var ValidationExceptionReason = {
432
493
  OTHER: "OTHER",
433
494
  UNKNOWN_OPERATION: "UNKNOWN_OPERATION"
434
495
  };
435
- var _ValidationException = class _ValidationException extends CodeartifactServiceException {
496
+ var ValidationException = class _ValidationException extends CodeartifactServiceException {
497
+ static {
498
+ __name(this, "ValidationException");
499
+ }
500
+ name = "ValidationException";
501
+ $fault = "client";
502
+ /**
503
+ * <p>
504
+ *
505
+ * </p>
506
+ * @public
507
+ */
508
+ reason;
436
509
  /**
437
510
  * @internal
438
511
  */
@@ -442,14 +515,10 @@ var _ValidationException = class _ValidationException extends CodeartifactServic
442
515
  $fault: "client",
443
516
  ...opts
444
517
  });
445
- this.name = "ValidationException";
446
- this.$fault = "client";
447
518
  Object.setPrototypeOf(this, _ValidationException.prototype);
448
519
  this.reason = opts.reason;
449
520
  }
450
521
  };
451
- __name(_ValidationException, "ValidationException");
452
- var ValidationException = _ValidationException;
453
522
  var PackageVersionErrorCode = {
454
523
  ALREADY_EXISTS: "ALREADY_EXISTS",
455
524
  MISMATCHED_REVISION: "MISMATCHED_REVISION",
@@ -2355,673 +2424,721 @@ var _xp = "x-packageversion";
2355
2424
  var _xp_ = "x-packageversionrevision";
2356
2425
 
2357
2426
  // src/commands/AssociateExternalConnectionCommand.ts
2358
- var _AssociateExternalConnectionCommand = class _AssociateExternalConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2427
+ var AssociateExternalConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2359
2428
  return [
2360
2429
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2361
2430
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2362
2431
  ];
2363
2432
  }).s("CodeArtifactControlPlaneService", "AssociateExternalConnection", {}).n("CodeartifactClient", "AssociateExternalConnectionCommand").f(void 0, void 0).ser(se_AssociateExternalConnectionCommand).de(de_AssociateExternalConnectionCommand).build() {
2433
+ static {
2434
+ __name(this, "AssociateExternalConnectionCommand");
2435
+ }
2364
2436
  };
2365
- __name(_AssociateExternalConnectionCommand, "AssociateExternalConnectionCommand");
2366
- var AssociateExternalConnectionCommand = _AssociateExternalConnectionCommand;
2367
2437
 
2368
2438
  // src/commands/CopyPackageVersionsCommand.ts
2369
2439
 
2370
2440
 
2371
2441
 
2372
- var _CopyPackageVersionsCommand = class _CopyPackageVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2442
+ var CopyPackageVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2373
2443
  return [
2374
2444
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2375
2445
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2376
2446
  ];
2377
2447
  }).s("CodeArtifactControlPlaneService", "CopyPackageVersions", {}).n("CodeartifactClient", "CopyPackageVersionsCommand").f(void 0, void 0).ser(se_CopyPackageVersionsCommand).de(de_CopyPackageVersionsCommand).build() {
2448
+ static {
2449
+ __name(this, "CopyPackageVersionsCommand");
2450
+ }
2378
2451
  };
2379
- __name(_CopyPackageVersionsCommand, "CopyPackageVersionsCommand");
2380
- var CopyPackageVersionsCommand = _CopyPackageVersionsCommand;
2381
2452
 
2382
2453
  // src/commands/CreateDomainCommand.ts
2383
2454
 
2384
2455
 
2385
2456
 
2386
- var _CreateDomainCommand = class _CreateDomainCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2457
+ var CreateDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2387
2458
  return [
2388
2459
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2389
2460
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2390
2461
  ];
2391
2462
  }).s("CodeArtifactControlPlaneService", "CreateDomain", {}).n("CodeartifactClient", "CreateDomainCommand").f(void 0, void 0).ser(se_CreateDomainCommand).de(de_CreateDomainCommand).build() {
2463
+ static {
2464
+ __name(this, "CreateDomainCommand");
2465
+ }
2392
2466
  };
2393
- __name(_CreateDomainCommand, "CreateDomainCommand");
2394
- var CreateDomainCommand = _CreateDomainCommand;
2395
2467
 
2396
2468
  // src/commands/CreatePackageGroupCommand.ts
2397
2469
 
2398
2470
 
2399
2471
 
2400
- var _CreatePackageGroupCommand = class _CreatePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2472
+ var CreatePackageGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2401
2473
  return [
2402
2474
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2403
2475
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2404
2476
  ];
2405
2477
  }).s("CodeArtifactControlPlaneService", "CreatePackageGroup", {}).n("CodeartifactClient", "CreatePackageGroupCommand").f(void 0, void 0).ser(se_CreatePackageGroupCommand).de(de_CreatePackageGroupCommand).build() {
2478
+ static {
2479
+ __name(this, "CreatePackageGroupCommand");
2480
+ }
2406
2481
  };
2407
- __name(_CreatePackageGroupCommand, "CreatePackageGroupCommand");
2408
- var CreatePackageGroupCommand = _CreatePackageGroupCommand;
2409
2482
 
2410
2483
  // src/commands/CreateRepositoryCommand.ts
2411
2484
 
2412
2485
 
2413
2486
 
2414
- var _CreateRepositoryCommand = class _CreateRepositoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2487
+ var CreateRepositoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2415
2488
  return [
2416
2489
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2417
2490
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2418
2491
  ];
2419
2492
  }).s("CodeArtifactControlPlaneService", "CreateRepository", {}).n("CodeartifactClient", "CreateRepositoryCommand").f(void 0, void 0).ser(se_CreateRepositoryCommand).de(de_CreateRepositoryCommand).build() {
2493
+ static {
2494
+ __name(this, "CreateRepositoryCommand");
2495
+ }
2420
2496
  };
2421
- __name(_CreateRepositoryCommand, "CreateRepositoryCommand");
2422
- var CreateRepositoryCommand = _CreateRepositoryCommand;
2423
2497
 
2424
2498
  // src/commands/DeleteDomainCommand.ts
2425
2499
 
2426
2500
 
2427
2501
 
2428
- var _DeleteDomainCommand = class _DeleteDomainCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2502
+ var DeleteDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2429
2503
  return [
2430
2504
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2431
2505
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2432
2506
  ];
2433
2507
  }).s("CodeArtifactControlPlaneService", "DeleteDomain", {}).n("CodeartifactClient", "DeleteDomainCommand").f(void 0, void 0).ser(se_DeleteDomainCommand).de(de_DeleteDomainCommand).build() {
2508
+ static {
2509
+ __name(this, "DeleteDomainCommand");
2510
+ }
2434
2511
  };
2435
- __name(_DeleteDomainCommand, "DeleteDomainCommand");
2436
- var DeleteDomainCommand = _DeleteDomainCommand;
2437
2512
 
2438
2513
  // src/commands/DeleteDomainPermissionsPolicyCommand.ts
2439
2514
 
2440
2515
 
2441
2516
 
2442
- var _DeleteDomainPermissionsPolicyCommand = class _DeleteDomainPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2517
+ var DeleteDomainPermissionsPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2443
2518
  return [
2444
2519
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2445
2520
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2446
2521
  ];
2447
2522
  }).s("CodeArtifactControlPlaneService", "DeleteDomainPermissionsPolicy", {}).n("CodeartifactClient", "DeleteDomainPermissionsPolicyCommand").f(void 0, void 0).ser(se_DeleteDomainPermissionsPolicyCommand).de(de_DeleteDomainPermissionsPolicyCommand).build() {
2523
+ static {
2524
+ __name(this, "DeleteDomainPermissionsPolicyCommand");
2525
+ }
2448
2526
  };
2449
- __name(_DeleteDomainPermissionsPolicyCommand, "DeleteDomainPermissionsPolicyCommand");
2450
- var DeleteDomainPermissionsPolicyCommand = _DeleteDomainPermissionsPolicyCommand;
2451
2527
 
2452
2528
  // src/commands/DeletePackageCommand.ts
2453
2529
 
2454
2530
 
2455
2531
 
2456
- var _DeletePackageCommand = class _DeletePackageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2532
+ var DeletePackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2457
2533
  return [
2458
2534
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2459
2535
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2460
2536
  ];
2461
2537
  }).s("CodeArtifactControlPlaneService", "DeletePackage", {}).n("CodeartifactClient", "DeletePackageCommand").f(void 0, void 0).ser(se_DeletePackageCommand).de(de_DeletePackageCommand).build() {
2538
+ static {
2539
+ __name(this, "DeletePackageCommand");
2540
+ }
2462
2541
  };
2463
- __name(_DeletePackageCommand, "DeletePackageCommand");
2464
- var DeletePackageCommand = _DeletePackageCommand;
2465
2542
 
2466
2543
  // src/commands/DeletePackageGroupCommand.ts
2467
2544
 
2468
2545
 
2469
2546
 
2470
- var _DeletePackageGroupCommand = class _DeletePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2547
+ var DeletePackageGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2471
2548
  return [
2472
2549
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2473
2550
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2474
2551
  ];
2475
2552
  }).s("CodeArtifactControlPlaneService", "DeletePackageGroup", {}).n("CodeartifactClient", "DeletePackageGroupCommand").f(void 0, void 0).ser(se_DeletePackageGroupCommand).de(de_DeletePackageGroupCommand).build() {
2553
+ static {
2554
+ __name(this, "DeletePackageGroupCommand");
2555
+ }
2476
2556
  };
2477
- __name(_DeletePackageGroupCommand, "DeletePackageGroupCommand");
2478
- var DeletePackageGroupCommand = _DeletePackageGroupCommand;
2479
2557
 
2480
2558
  // src/commands/DeletePackageVersionsCommand.ts
2481
2559
 
2482
2560
 
2483
2561
 
2484
- var _DeletePackageVersionsCommand = class _DeletePackageVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2562
+ var DeletePackageVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2485
2563
  return [
2486
2564
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2487
2565
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2488
2566
  ];
2489
2567
  }).s("CodeArtifactControlPlaneService", "DeletePackageVersions", {}).n("CodeartifactClient", "DeletePackageVersionsCommand").f(void 0, void 0).ser(se_DeletePackageVersionsCommand).de(de_DeletePackageVersionsCommand).build() {
2568
+ static {
2569
+ __name(this, "DeletePackageVersionsCommand");
2570
+ }
2490
2571
  };
2491
- __name(_DeletePackageVersionsCommand, "DeletePackageVersionsCommand");
2492
- var DeletePackageVersionsCommand = _DeletePackageVersionsCommand;
2493
2572
 
2494
2573
  // src/commands/DeleteRepositoryCommand.ts
2495
2574
 
2496
2575
 
2497
2576
 
2498
- var _DeleteRepositoryCommand = class _DeleteRepositoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2577
+ var DeleteRepositoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2499
2578
  return [
2500
2579
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2501
2580
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2502
2581
  ];
2503
2582
  }).s("CodeArtifactControlPlaneService", "DeleteRepository", {}).n("CodeartifactClient", "DeleteRepositoryCommand").f(void 0, void 0).ser(se_DeleteRepositoryCommand).de(de_DeleteRepositoryCommand).build() {
2583
+ static {
2584
+ __name(this, "DeleteRepositoryCommand");
2585
+ }
2504
2586
  };
2505
- __name(_DeleteRepositoryCommand, "DeleteRepositoryCommand");
2506
- var DeleteRepositoryCommand = _DeleteRepositoryCommand;
2507
2587
 
2508
2588
  // src/commands/DeleteRepositoryPermissionsPolicyCommand.ts
2509
2589
 
2510
2590
 
2511
2591
 
2512
- var _DeleteRepositoryPermissionsPolicyCommand = class _DeleteRepositoryPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2592
+ var DeleteRepositoryPermissionsPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2513
2593
  return [
2514
2594
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2515
2595
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2516
2596
  ];
2517
2597
  }).s("CodeArtifactControlPlaneService", "DeleteRepositoryPermissionsPolicy", {}).n("CodeartifactClient", "DeleteRepositoryPermissionsPolicyCommand").f(void 0, void 0).ser(se_DeleteRepositoryPermissionsPolicyCommand).de(de_DeleteRepositoryPermissionsPolicyCommand).build() {
2598
+ static {
2599
+ __name(this, "DeleteRepositoryPermissionsPolicyCommand");
2600
+ }
2518
2601
  };
2519
- __name(_DeleteRepositoryPermissionsPolicyCommand, "DeleteRepositoryPermissionsPolicyCommand");
2520
- var DeleteRepositoryPermissionsPolicyCommand = _DeleteRepositoryPermissionsPolicyCommand;
2521
2602
 
2522
2603
  // src/commands/DescribeDomainCommand.ts
2523
2604
 
2524
2605
 
2525
2606
 
2526
- var _DescribeDomainCommand = class _DescribeDomainCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2607
+ var DescribeDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2527
2608
  return [
2528
2609
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2529
2610
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2530
2611
  ];
2531
2612
  }).s("CodeArtifactControlPlaneService", "DescribeDomain", {}).n("CodeartifactClient", "DescribeDomainCommand").f(void 0, void 0).ser(se_DescribeDomainCommand).de(de_DescribeDomainCommand).build() {
2613
+ static {
2614
+ __name(this, "DescribeDomainCommand");
2615
+ }
2532
2616
  };
2533
- __name(_DescribeDomainCommand, "DescribeDomainCommand");
2534
- var DescribeDomainCommand = _DescribeDomainCommand;
2535
2617
 
2536
2618
  // src/commands/DescribePackageCommand.ts
2537
2619
 
2538
2620
 
2539
2621
 
2540
- var _DescribePackageCommand = class _DescribePackageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2622
+ var DescribePackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2541
2623
  return [
2542
2624
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2543
2625
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2544
2626
  ];
2545
2627
  }).s("CodeArtifactControlPlaneService", "DescribePackage", {}).n("CodeartifactClient", "DescribePackageCommand").f(void 0, void 0).ser(se_DescribePackageCommand).de(de_DescribePackageCommand).build() {
2628
+ static {
2629
+ __name(this, "DescribePackageCommand");
2630
+ }
2546
2631
  };
2547
- __name(_DescribePackageCommand, "DescribePackageCommand");
2548
- var DescribePackageCommand = _DescribePackageCommand;
2549
2632
 
2550
2633
  // src/commands/DescribePackageGroupCommand.ts
2551
2634
 
2552
2635
 
2553
2636
 
2554
- var _DescribePackageGroupCommand = class _DescribePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2637
+ var DescribePackageGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2555
2638
  return [
2556
2639
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2557
2640
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2558
2641
  ];
2559
2642
  }).s("CodeArtifactControlPlaneService", "DescribePackageGroup", {}).n("CodeartifactClient", "DescribePackageGroupCommand").f(void 0, void 0).ser(se_DescribePackageGroupCommand).de(de_DescribePackageGroupCommand).build() {
2643
+ static {
2644
+ __name(this, "DescribePackageGroupCommand");
2645
+ }
2560
2646
  };
2561
- __name(_DescribePackageGroupCommand, "DescribePackageGroupCommand");
2562
- var DescribePackageGroupCommand = _DescribePackageGroupCommand;
2563
2647
 
2564
2648
  // src/commands/DescribePackageVersionCommand.ts
2565
2649
 
2566
2650
 
2567
2651
 
2568
- var _DescribePackageVersionCommand = class _DescribePackageVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2652
+ var DescribePackageVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2569
2653
  return [
2570
2654
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2571
2655
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2572
2656
  ];
2573
2657
  }).s("CodeArtifactControlPlaneService", "DescribePackageVersion", {}).n("CodeartifactClient", "DescribePackageVersionCommand").f(void 0, void 0).ser(se_DescribePackageVersionCommand).de(de_DescribePackageVersionCommand).build() {
2658
+ static {
2659
+ __name(this, "DescribePackageVersionCommand");
2660
+ }
2574
2661
  };
2575
- __name(_DescribePackageVersionCommand, "DescribePackageVersionCommand");
2576
- var DescribePackageVersionCommand = _DescribePackageVersionCommand;
2577
2662
 
2578
2663
  // src/commands/DescribeRepositoryCommand.ts
2579
2664
 
2580
2665
 
2581
2666
 
2582
- var _DescribeRepositoryCommand = class _DescribeRepositoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2667
+ var DescribeRepositoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2583
2668
  return [
2584
2669
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2585
2670
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2586
2671
  ];
2587
2672
  }).s("CodeArtifactControlPlaneService", "DescribeRepository", {}).n("CodeartifactClient", "DescribeRepositoryCommand").f(void 0, void 0).ser(se_DescribeRepositoryCommand).de(de_DescribeRepositoryCommand).build() {
2673
+ static {
2674
+ __name(this, "DescribeRepositoryCommand");
2675
+ }
2588
2676
  };
2589
- __name(_DescribeRepositoryCommand, "DescribeRepositoryCommand");
2590
- var DescribeRepositoryCommand = _DescribeRepositoryCommand;
2591
2677
 
2592
2678
  // src/commands/DisassociateExternalConnectionCommand.ts
2593
2679
 
2594
2680
 
2595
2681
 
2596
- var _DisassociateExternalConnectionCommand = class _DisassociateExternalConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2682
+ var DisassociateExternalConnectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2597
2683
  return [
2598
2684
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2599
2685
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2600
2686
  ];
2601
2687
  }).s("CodeArtifactControlPlaneService", "DisassociateExternalConnection", {}).n("CodeartifactClient", "DisassociateExternalConnectionCommand").f(void 0, void 0).ser(se_DisassociateExternalConnectionCommand).de(de_DisassociateExternalConnectionCommand).build() {
2688
+ static {
2689
+ __name(this, "DisassociateExternalConnectionCommand");
2690
+ }
2602
2691
  };
2603
- __name(_DisassociateExternalConnectionCommand, "DisassociateExternalConnectionCommand");
2604
- var DisassociateExternalConnectionCommand = _DisassociateExternalConnectionCommand;
2605
2692
 
2606
2693
  // src/commands/DisposePackageVersionsCommand.ts
2607
2694
 
2608
2695
 
2609
2696
 
2610
- var _DisposePackageVersionsCommand = class _DisposePackageVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2697
+ var DisposePackageVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2611
2698
  return [
2612
2699
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2613
2700
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2614
2701
  ];
2615
2702
  }).s("CodeArtifactControlPlaneService", "DisposePackageVersions", {}).n("CodeartifactClient", "DisposePackageVersionsCommand").f(void 0, void 0).ser(se_DisposePackageVersionsCommand).de(de_DisposePackageVersionsCommand).build() {
2703
+ static {
2704
+ __name(this, "DisposePackageVersionsCommand");
2705
+ }
2616
2706
  };
2617
- __name(_DisposePackageVersionsCommand, "DisposePackageVersionsCommand");
2618
- var DisposePackageVersionsCommand = _DisposePackageVersionsCommand;
2619
2707
 
2620
2708
  // src/commands/GetAssociatedPackageGroupCommand.ts
2621
2709
 
2622
2710
 
2623
2711
 
2624
- var _GetAssociatedPackageGroupCommand = class _GetAssociatedPackageGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2712
+ var GetAssociatedPackageGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2625
2713
  return [
2626
2714
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2627
2715
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2628
2716
  ];
2629
2717
  }).s("CodeArtifactControlPlaneService", "GetAssociatedPackageGroup", {}).n("CodeartifactClient", "GetAssociatedPackageGroupCommand").f(void 0, void 0).ser(se_GetAssociatedPackageGroupCommand).de(de_GetAssociatedPackageGroupCommand).build() {
2718
+ static {
2719
+ __name(this, "GetAssociatedPackageGroupCommand");
2720
+ }
2630
2721
  };
2631
- __name(_GetAssociatedPackageGroupCommand, "GetAssociatedPackageGroupCommand");
2632
- var GetAssociatedPackageGroupCommand = _GetAssociatedPackageGroupCommand;
2633
2722
 
2634
2723
  // src/commands/GetAuthorizationTokenCommand.ts
2635
2724
 
2636
2725
 
2637
2726
 
2638
- var _GetAuthorizationTokenCommand = class _GetAuthorizationTokenCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2727
+ var GetAuthorizationTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2639
2728
  return [
2640
2729
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2641
2730
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2642
2731
  ];
2643
2732
  }).s("CodeArtifactControlPlaneService", "GetAuthorizationToken", {}).n("CodeartifactClient", "GetAuthorizationTokenCommand").f(void 0, GetAuthorizationTokenResultFilterSensitiveLog).ser(se_GetAuthorizationTokenCommand).de(de_GetAuthorizationTokenCommand).build() {
2733
+ static {
2734
+ __name(this, "GetAuthorizationTokenCommand");
2735
+ }
2644
2736
  };
2645
- __name(_GetAuthorizationTokenCommand, "GetAuthorizationTokenCommand");
2646
- var GetAuthorizationTokenCommand = _GetAuthorizationTokenCommand;
2647
2737
 
2648
2738
  // src/commands/GetDomainPermissionsPolicyCommand.ts
2649
2739
 
2650
2740
 
2651
2741
 
2652
- var _GetDomainPermissionsPolicyCommand = class _GetDomainPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2742
+ var GetDomainPermissionsPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2653
2743
  return [
2654
2744
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2655
2745
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2656
2746
  ];
2657
2747
  }).s("CodeArtifactControlPlaneService", "GetDomainPermissionsPolicy", {}).n("CodeartifactClient", "GetDomainPermissionsPolicyCommand").f(void 0, void 0).ser(se_GetDomainPermissionsPolicyCommand).de(de_GetDomainPermissionsPolicyCommand).build() {
2748
+ static {
2749
+ __name(this, "GetDomainPermissionsPolicyCommand");
2750
+ }
2658
2751
  };
2659
- __name(_GetDomainPermissionsPolicyCommand, "GetDomainPermissionsPolicyCommand");
2660
- var GetDomainPermissionsPolicyCommand = _GetDomainPermissionsPolicyCommand;
2661
2752
 
2662
2753
  // src/commands/GetPackageVersionAssetCommand.ts
2663
2754
 
2664
2755
 
2665
2756
 
2666
- var _GetPackageVersionAssetCommand = class _GetPackageVersionAssetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2757
+ var GetPackageVersionAssetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2667
2758
  return [
2668
2759
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2669
2760
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2670
2761
  ];
2671
2762
  }).s("CodeArtifactControlPlaneService", "GetPackageVersionAsset", {}).n("CodeartifactClient", "GetPackageVersionAssetCommand").f(void 0, GetPackageVersionAssetResultFilterSensitiveLog).ser(se_GetPackageVersionAssetCommand).de(de_GetPackageVersionAssetCommand).build() {
2763
+ static {
2764
+ __name(this, "GetPackageVersionAssetCommand");
2765
+ }
2672
2766
  };
2673
- __name(_GetPackageVersionAssetCommand, "GetPackageVersionAssetCommand");
2674
- var GetPackageVersionAssetCommand = _GetPackageVersionAssetCommand;
2675
2767
 
2676
2768
  // src/commands/GetPackageVersionReadmeCommand.ts
2677
2769
 
2678
2770
 
2679
2771
 
2680
- var _GetPackageVersionReadmeCommand = class _GetPackageVersionReadmeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2772
+ var GetPackageVersionReadmeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2681
2773
  return [
2682
2774
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2683
2775
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2684
2776
  ];
2685
2777
  }).s("CodeArtifactControlPlaneService", "GetPackageVersionReadme", {}).n("CodeartifactClient", "GetPackageVersionReadmeCommand").f(void 0, void 0).ser(se_GetPackageVersionReadmeCommand).de(de_GetPackageVersionReadmeCommand).build() {
2778
+ static {
2779
+ __name(this, "GetPackageVersionReadmeCommand");
2780
+ }
2686
2781
  };
2687
- __name(_GetPackageVersionReadmeCommand, "GetPackageVersionReadmeCommand");
2688
- var GetPackageVersionReadmeCommand = _GetPackageVersionReadmeCommand;
2689
2782
 
2690
2783
  // src/commands/GetRepositoryEndpointCommand.ts
2691
2784
 
2692
2785
 
2693
2786
 
2694
- var _GetRepositoryEndpointCommand = class _GetRepositoryEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2787
+ var GetRepositoryEndpointCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2695
2788
  return [
2696
2789
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2697
2790
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2698
2791
  ];
2699
2792
  }).s("CodeArtifactControlPlaneService", "GetRepositoryEndpoint", {}).n("CodeartifactClient", "GetRepositoryEndpointCommand").f(void 0, void 0).ser(se_GetRepositoryEndpointCommand).de(de_GetRepositoryEndpointCommand).build() {
2793
+ static {
2794
+ __name(this, "GetRepositoryEndpointCommand");
2795
+ }
2700
2796
  };
2701
- __name(_GetRepositoryEndpointCommand, "GetRepositoryEndpointCommand");
2702
- var GetRepositoryEndpointCommand = _GetRepositoryEndpointCommand;
2703
2797
 
2704
2798
  // src/commands/GetRepositoryPermissionsPolicyCommand.ts
2705
2799
 
2706
2800
 
2707
2801
 
2708
- var _GetRepositoryPermissionsPolicyCommand = class _GetRepositoryPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2802
+ var GetRepositoryPermissionsPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2709
2803
  return [
2710
2804
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2711
2805
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2712
2806
  ];
2713
2807
  }).s("CodeArtifactControlPlaneService", "GetRepositoryPermissionsPolicy", {}).n("CodeartifactClient", "GetRepositoryPermissionsPolicyCommand").f(void 0, void 0).ser(se_GetRepositoryPermissionsPolicyCommand).de(de_GetRepositoryPermissionsPolicyCommand).build() {
2808
+ static {
2809
+ __name(this, "GetRepositoryPermissionsPolicyCommand");
2810
+ }
2714
2811
  };
2715
- __name(_GetRepositoryPermissionsPolicyCommand, "GetRepositoryPermissionsPolicyCommand");
2716
- var GetRepositoryPermissionsPolicyCommand = _GetRepositoryPermissionsPolicyCommand;
2717
2812
 
2718
2813
  // src/commands/ListAllowedRepositoriesForGroupCommand.ts
2719
2814
 
2720
2815
 
2721
2816
 
2722
- var _ListAllowedRepositoriesForGroupCommand = class _ListAllowedRepositoriesForGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2817
+ var ListAllowedRepositoriesForGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2723
2818
  return [
2724
2819
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2725
2820
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2726
2821
  ];
2727
2822
  }).s("CodeArtifactControlPlaneService", "ListAllowedRepositoriesForGroup", {}).n("CodeartifactClient", "ListAllowedRepositoriesForGroupCommand").f(void 0, void 0).ser(se_ListAllowedRepositoriesForGroupCommand).de(de_ListAllowedRepositoriesForGroupCommand).build() {
2823
+ static {
2824
+ __name(this, "ListAllowedRepositoriesForGroupCommand");
2825
+ }
2728
2826
  };
2729
- __name(_ListAllowedRepositoriesForGroupCommand, "ListAllowedRepositoriesForGroupCommand");
2730
- var ListAllowedRepositoriesForGroupCommand = _ListAllowedRepositoriesForGroupCommand;
2731
2827
 
2732
2828
  // src/commands/ListAssociatedPackagesCommand.ts
2733
2829
 
2734
2830
 
2735
2831
 
2736
- var _ListAssociatedPackagesCommand = class _ListAssociatedPackagesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2832
+ var ListAssociatedPackagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2737
2833
  return [
2738
2834
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2739
2835
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2740
2836
  ];
2741
2837
  }).s("CodeArtifactControlPlaneService", "ListAssociatedPackages", {}).n("CodeartifactClient", "ListAssociatedPackagesCommand").f(void 0, void 0).ser(se_ListAssociatedPackagesCommand).de(de_ListAssociatedPackagesCommand).build() {
2838
+ static {
2839
+ __name(this, "ListAssociatedPackagesCommand");
2840
+ }
2742
2841
  };
2743
- __name(_ListAssociatedPackagesCommand, "ListAssociatedPackagesCommand");
2744
- var ListAssociatedPackagesCommand = _ListAssociatedPackagesCommand;
2745
2842
 
2746
2843
  // src/commands/ListDomainsCommand.ts
2747
2844
 
2748
2845
 
2749
2846
 
2750
- var _ListDomainsCommand = class _ListDomainsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2847
+ var ListDomainsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2751
2848
  return [
2752
2849
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2753
2850
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2754
2851
  ];
2755
2852
  }).s("CodeArtifactControlPlaneService", "ListDomains", {}).n("CodeartifactClient", "ListDomainsCommand").f(void 0, void 0).ser(se_ListDomainsCommand).de(de_ListDomainsCommand).build() {
2853
+ static {
2854
+ __name(this, "ListDomainsCommand");
2855
+ }
2756
2856
  };
2757
- __name(_ListDomainsCommand, "ListDomainsCommand");
2758
- var ListDomainsCommand = _ListDomainsCommand;
2759
2857
 
2760
2858
  // src/commands/ListPackageGroupsCommand.ts
2761
2859
 
2762
2860
 
2763
2861
 
2764
- var _ListPackageGroupsCommand = class _ListPackageGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2862
+ var ListPackageGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2765
2863
  return [
2766
2864
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2767
2865
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2768
2866
  ];
2769
2867
  }).s("CodeArtifactControlPlaneService", "ListPackageGroups", {}).n("CodeartifactClient", "ListPackageGroupsCommand").f(void 0, void 0).ser(se_ListPackageGroupsCommand).de(de_ListPackageGroupsCommand).build() {
2868
+ static {
2869
+ __name(this, "ListPackageGroupsCommand");
2870
+ }
2770
2871
  };
2771
- __name(_ListPackageGroupsCommand, "ListPackageGroupsCommand");
2772
- var ListPackageGroupsCommand = _ListPackageGroupsCommand;
2773
2872
 
2774
2873
  // src/commands/ListPackagesCommand.ts
2775
2874
 
2776
2875
 
2777
2876
 
2778
- var _ListPackagesCommand = class _ListPackagesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2877
+ var ListPackagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2779
2878
  return [
2780
2879
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2781
2880
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2782
2881
  ];
2783
2882
  }).s("CodeArtifactControlPlaneService", "ListPackages", {}).n("CodeartifactClient", "ListPackagesCommand").f(void 0, void 0).ser(se_ListPackagesCommand).de(de_ListPackagesCommand).build() {
2883
+ static {
2884
+ __name(this, "ListPackagesCommand");
2885
+ }
2784
2886
  };
2785
- __name(_ListPackagesCommand, "ListPackagesCommand");
2786
- var ListPackagesCommand = _ListPackagesCommand;
2787
2887
 
2788
2888
  // src/commands/ListPackageVersionAssetsCommand.ts
2789
2889
 
2790
2890
 
2791
2891
 
2792
- var _ListPackageVersionAssetsCommand = class _ListPackageVersionAssetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2892
+ var ListPackageVersionAssetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2793
2893
  return [
2794
2894
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2795
2895
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2796
2896
  ];
2797
2897
  }).s("CodeArtifactControlPlaneService", "ListPackageVersionAssets", {}).n("CodeartifactClient", "ListPackageVersionAssetsCommand").f(void 0, void 0).ser(se_ListPackageVersionAssetsCommand).de(de_ListPackageVersionAssetsCommand).build() {
2898
+ static {
2899
+ __name(this, "ListPackageVersionAssetsCommand");
2900
+ }
2798
2901
  };
2799
- __name(_ListPackageVersionAssetsCommand, "ListPackageVersionAssetsCommand");
2800
- var ListPackageVersionAssetsCommand = _ListPackageVersionAssetsCommand;
2801
2902
 
2802
2903
  // src/commands/ListPackageVersionDependenciesCommand.ts
2803
2904
 
2804
2905
 
2805
2906
 
2806
- var _ListPackageVersionDependenciesCommand = class _ListPackageVersionDependenciesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2907
+ var ListPackageVersionDependenciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2807
2908
  return [
2808
2909
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2809
2910
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2810
2911
  ];
2811
2912
  }).s("CodeArtifactControlPlaneService", "ListPackageVersionDependencies", {}).n("CodeartifactClient", "ListPackageVersionDependenciesCommand").f(void 0, void 0).ser(se_ListPackageVersionDependenciesCommand).de(de_ListPackageVersionDependenciesCommand).build() {
2913
+ static {
2914
+ __name(this, "ListPackageVersionDependenciesCommand");
2915
+ }
2812
2916
  };
2813
- __name(_ListPackageVersionDependenciesCommand, "ListPackageVersionDependenciesCommand");
2814
- var ListPackageVersionDependenciesCommand = _ListPackageVersionDependenciesCommand;
2815
2917
 
2816
2918
  // src/commands/ListPackageVersionsCommand.ts
2817
2919
 
2818
2920
 
2819
2921
 
2820
- var _ListPackageVersionsCommand = class _ListPackageVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2922
+ var ListPackageVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2821
2923
  return [
2822
2924
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2823
2925
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2824
2926
  ];
2825
2927
  }).s("CodeArtifactControlPlaneService", "ListPackageVersions", {}).n("CodeartifactClient", "ListPackageVersionsCommand").f(void 0, void 0).ser(se_ListPackageVersionsCommand).de(de_ListPackageVersionsCommand).build() {
2928
+ static {
2929
+ __name(this, "ListPackageVersionsCommand");
2930
+ }
2826
2931
  };
2827
- __name(_ListPackageVersionsCommand, "ListPackageVersionsCommand");
2828
- var ListPackageVersionsCommand = _ListPackageVersionsCommand;
2829
2932
 
2830
2933
  // src/commands/ListRepositoriesCommand.ts
2831
2934
 
2832
2935
 
2833
2936
 
2834
- var _ListRepositoriesCommand = class _ListRepositoriesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2937
+ var ListRepositoriesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2835
2938
  return [
2836
2939
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2837
2940
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2838
2941
  ];
2839
2942
  }).s("CodeArtifactControlPlaneService", "ListRepositories", {}).n("CodeartifactClient", "ListRepositoriesCommand").f(void 0, void 0).ser(se_ListRepositoriesCommand).de(de_ListRepositoriesCommand).build() {
2943
+ static {
2944
+ __name(this, "ListRepositoriesCommand");
2945
+ }
2840
2946
  };
2841
- __name(_ListRepositoriesCommand, "ListRepositoriesCommand");
2842
- var ListRepositoriesCommand = _ListRepositoriesCommand;
2843
2947
 
2844
2948
  // src/commands/ListRepositoriesInDomainCommand.ts
2845
2949
 
2846
2950
 
2847
2951
 
2848
- var _ListRepositoriesInDomainCommand = class _ListRepositoriesInDomainCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2952
+ var ListRepositoriesInDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2849
2953
  return [
2850
2954
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2851
2955
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2852
2956
  ];
2853
2957
  }).s("CodeArtifactControlPlaneService", "ListRepositoriesInDomain", {}).n("CodeartifactClient", "ListRepositoriesInDomainCommand").f(void 0, void 0).ser(se_ListRepositoriesInDomainCommand).de(de_ListRepositoriesInDomainCommand).build() {
2958
+ static {
2959
+ __name(this, "ListRepositoriesInDomainCommand");
2960
+ }
2854
2961
  };
2855
- __name(_ListRepositoriesInDomainCommand, "ListRepositoriesInDomainCommand");
2856
- var ListRepositoriesInDomainCommand = _ListRepositoriesInDomainCommand;
2857
2962
 
2858
2963
  // src/commands/ListSubPackageGroupsCommand.ts
2859
2964
 
2860
2965
 
2861
2966
 
2862
- var _ListSubPackageGroupsCommand = class _ListSubPackageGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2967
+ var ListSubPackageGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2863
2968
  return [
2864
2969
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2865
2970
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2866
2971
  ];
2867
2972
  }).s("CodeArtifactControlPlaneService", "ListSubPackageGroups", {}).n("CodeartifactClient", "ListSubPackageGroupsCommand").f(void 0, void 0).ser(se_ListSubPackageGroupsCommand).de(de_ListSubPackageGroupsCommand).build() {
2973
+ static {
2974
+ __name(this, "ListSubPackageGroupsCommand");
2975
+ }
2868
2976
  };
2869
- __name(_ListSubPackageGroupsCommand, "ListSubPackageGroupsCommand");
2870
- var ListSubPackageGroupsCommand = _ListSubPackageGroupsCommand;
2871
2977
 
2872
2978
  // src/commands/ListTagsForResourceCommand.ts
2873
2979
 
2874
2980
 
2875
2981
 
2876
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2982
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2877
2983
  return [
2878
2984
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2879
2985
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2880
2986
  ];
2881
2987
  }).s("CodeArtifactControlPlaneService", "ListTagsForResource", {}).n("CodeartifactClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
2988
+ static {
2989
+ __name(this, "ListTagsForResourceCommand");
2990
+ }
2882
2991
  };
2883
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
2884
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
2885
2992
 
2886
2993
  // src/commands/PublishPackageVersionCommand.ts
2887
2994
 
2888
2995
 
2889
2996
 
2890
- var _PublishPackageVersionCommand = class _PublishPackageVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2997
+ var PublishPackageVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2891
2998
  return [
2892
2999
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2893
3000
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2894
3001
  ];
2895
3002
  }).s("CodeArtifactControlPlaneService", "PublishPackageVersion", {}).n("CodeartifactClient", "PublishPackageVersionCommand").f(PublishPackageVersionRequestFilterSensitiveLog, void 0).ser(se_PublishPackageVersionCommand).de(de_PublishPackageVersionCommand).build() {
3003
+ static {
3004
+ __name(this, "PublishPackageVersionCommand");
3005
+ }
2896
3006
  };
2897
- __name(_PublishPackageVersionCommand, "PublishPackageVersionCommand");
2898
- var PublishPackageVersionCommand = _PublishPackageVersionCommand;
2899
3007
 
2900
3008
  // src/commands/PutDomainPermissionsPolicyCommand.ts
2901
3009
 
2902
3010
 
2903
3011
 
2904
- var _PutDomainPermissionsPolicyCommand = class _PutDomainPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3012
+ var PutDomainPermissionsPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2905
3013
  return [
2906
3014
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2907
3015
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2908
3016
  ];
2909
3017
  }).s("CodeArtifactControlPlaneService", "PutDomainPermissionsPolicy", {}).n("CodeartifactClient", "PutDomainPermissionsPolicyCommand").f(void 0, void 0).ser(se_PutDomainPermissionsPolicyCommand).de(de_PutDomainPermissionsPolicyCommand).build() {
3018
+ static {
3019
+ __name(this, "PutDomainPermissionsPolicyCommand");
3020
+ }
2910
3021
  };
2911
- __name(_PutDomainPermissionsPolicyCommand, "PutDomainPermissionsPolicyCommand");
2912
- var PutDomainPermissionsPolicyCommand = _PutDomainPermissionsPolicyCommand;
2913
3022
 
2914
3023
  // src/commands/PutPackageOriginConfigurationCommand.ts
2915
3024
 
2916
3025
 
2917
3026
 
2918
- var _PutPackageOriginConfigurationCommand = class _PutPackageOriginConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3027
+ var PutPackageOriginConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2919
3028
  return [
2920
3029
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2921
3030
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2922
3031
  ];
2923
3032
  }).s("CodeArtifactControlPlaneService", "PutPackageOriginConfiguration", {}).n("CodeartifactClient", "PutPackageOriginConfigurationCommand").f(void 0, void 0).ser(se_PutPackageOriginConfigurationCommand).de(de_PutPackageOriginConfigurationCommand).build() {
3033
+ static {
3034
+ __name(this, "PutPackageOriginConfigurationCommand");
3035
+ }
2924
3036
  };
2925
- __name(_PutPackageOriginConfigurationCommand, "PutPackageOriginConfigurationCommand");
2926
- var PutPackageOriginConfigurationCommand = _PutPackageOriginConfigurationCommand;
2927
3037
 
2928
3038
  // src/commands/PutRepositoryPermissionsPolicyCommand.ts
2929
3039
 
2930
3040
 
2931
3041
 
2932
- var _PutRepositoryPermissionsPolicyCommand = class _PutRepositoryPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3042
+ var PutRepositoryPermissionsPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2933
3043
  return [
2934
3044
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2935
3045
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2936
3046
  ];
2937
3047
  }).s("CodeArtifactControlPlaneService", "PutRepositoryPermissionsPolicy", {}).n("CodeartifactClient", "PutRepositoryPermissionsPolicyCommand").f(void 0, void 0).ser(se_PutRepositoryPermissionsPolicyCommand).de(de_PutRepositoryPermissionsPolicyCommand).build() {
3048
+ static {
3049
+ __name(this, "PutRepositoryPermissionsPolicyCommand");
3050
+ }
2938
3051
  };
2939
- __name(_PutRepositoryPermissionsPolicyCommand, "PutRepositoryPermissionsPolicyCommand");
2940
- var PutRepositoryPermissionsPolicyCommand = _PutRepositoryPermissionsPolicyCommand;
2941
3052
 
2942
3053
  // src/commands/TagResourceCommand.ts
2943
3054
 
2944
3055
 
2945
3056
 
2946
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3057
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2947
3058
  return [
2948
3059
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2949
3060
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2950
3061
  ];
2951
3062
  }).s("CodeArtifactControlPlaneService", "TagResource", {}).n("CodeartifactClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
3063
+ static {
3064
+ __name(this, "TagResourceCommand");
3065
+ }
2952
3066
  };
2953
- __name(_TagResourceCommand, "TagResourceCommand");
2954
- var TagResourceCommand = _TagResourceCommand;
2955
3067
 
2956
3068
  // src/commands/UntagResourceCommand.ts
2957
3069
 
2958
3070
 
2959
3071
 
2960
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3072
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2961
3073
  return [
2962
3074
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2963
3075
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2964
3076
  ];
2965
3077
  }).s("CodeArtifactControlPlaneService", "UntagResource", {}).n("CodeartifactClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
3078
+ static {
3079
+ __name(this, "UntagResourceCommand");
3080
+ }
2966
3081
  };
2967
- __name(_UntagResourceCommand, "UntagResourceCommand");
2968
- var UntagResourceCommand = _UntagResourceCommand;
2969
3082
 
2970
3083
  // src/commands/UpdatePackageGroupCommand.ts
2971
3084
 
2972
3085
 
2973
3086
 
2974
- var _UpdatePackageGroupCommand = class _UpdatePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3087
+ var UpdatePackageGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2975
3088
  return [
2976
3089
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2977
3090
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2978
3091
  ];
2979
3092
  }).s("CodeArtifactControlPlaneService", "UpdatePackageGroup", {}).n("CodeartifactClient", "UpdatePackageGroupCommand").f(void 0, void 0).ser(se_UpdatePackageGroupCommand).de(de_UpdatePackageGroupCommand).build() {
3093
+ static {
3094
+ __name(this, "UpdatePackageGroupCommand");
3095
+ }
2980
3096
  };
2981
- __name(_UpdatePackageGroupCommand, "UpdatePackageGroupCommand");
2982
- var UpdatePackageGroupCommand = _UpdatePackageGroupCommand;
2983
3097
 
2984
3098
  // src/commands/UpdatePackageGroupOriginConfigurationCommand.ts
2985
3099
 
2986
3100
 
2987
3101
 
2988
- var _UpdatePackageGroupOriginConfigurationCommand = class _UpdatePackageGroupOriginConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3102
+ var UpdatePackageGroupOriginConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2989
3103
  return [
2990
3104
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2991
3105
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2992
3106
  ];
2993
3107
  }).s("CodeArtifactControlPlaneService", "UpdatePackageGroupOriginConfiguration", {}).n("CodeartifactClient", "UpdatePackageGroupOriginConfigurationCommand").f(void 0, void 0).ser(se_UpdatePackageGroupOriginConfigurationCommand).de(de_UpdatePackageGroupOriginConfigurationCommand).build() {
3108
+ static {
3109
+ __name(this, "UpdatePackageGroupOriginConfigurationCommand");
3110
+ }
2994
3111
  };
2995
- __name(_UpdatePackageGroupOriginConfigurationCommand, "UpdatePackageGroupOriginConfigurationCommand");
2996
- var UpdatePackageGroupOriginConfigurationCommand = _UpdatePackageGroupOriginConfigurationCommand;
2997
3112
 
2998
3113
  // src/commands/UpdatePackageVersionsStatusCommand.ts
2999
3114
 
3000
3115
 
3001
3116
 
3002
- var _UpdatePackageVersionsStatusCommand = class _UpdatePackageVersionsStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3117
+ var UpdatePackageVersionsStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3003
3118
  return [
3004
3119
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3005
3120
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3006
3121
  ];
3007
3122
  }).s("CodeArtifactControlPlaneService", "UpdatePackageVersionsStatus", {}).n("CodeartifactClient", "UpdatePackageVersionsStatusCommand").f(void 0, void 0).ser(se_UpdatePackageVersionsStatusCommand).de(de_UpdatePackageVersionsStatusCommand).build() {
3123
+ static {
3124
+ __name(this, "UpdatePackageVersionsStatusCommand");
3125
+ }
3008
3126
  };
3009
- __name(_UpdatePackageVersionsStatusCommand, "UpdatePackageVersionsStatusCommand");
3010
- var UpdatePackageVersionsStatusCommand = _UpdatePackageVersionsStatusCommand;
3011
3127
 
3012
3128
  // src/commands/UpdateRepositoryCommand.ts
3013
3129
 
3014
3130
 
3015
3131
 
3016
- var _UpdateRepositoryCommand = class _UpdateRepositoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3132
+ var UpdateRepositoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3017
3133
  return [
3018
3134
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3019
3135
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3020
3136
  ];
3021
3137
  }).s("CodeArtifactControlPlaneService", "UpdateRepository", {}).n("CodeartifactClient", "UpdateRepositoryCommand").f(void 0, void 0).ser(se_UpdateRepositoryCommand).de(de_UpdateRepositoryCommand).build() {
3138
+ static {
3139
+ __name(this, "UpdateRepositoryCommand");
3140
+ }
3022
3141
  };
3023
- __name(_UpdateRepositoryCommand, "UpdateRepositoryCommand");
3024
- var UpdateRepositoryCommand = _UpdateRepositoryCommand;
3025
3142
 
3026
3143
  // src/Codeartifact.ts
3027
3144
  var commands = {
@@ -3074,10 +3191,11 @@ var commands = {
3074
3191
  UpdatePackageVersionsStatusCommand,
3075
3192
  UpdateRepositoryCommand
3076
3193
  };
3077
- var _Codeartifact = class _Codeartifact extends CodeartifactClient {
3194
+ var Codeartifact = class extends CodeartifactClient {
3195
+ static {
3196
+ __name(this, "Codeartifact");
3197
+ }
3078
3198
  };
3079
- __name(_Codeartifact, "Codeartifact");
3080
- var Codeartifact = _Codeartifact;
3081
3199
  (0, import_smithy_client.createAggregatedClient)(commands, Codeartifact);
3082
3200
 
3083
3201
  // src/pagination/ListAllowedRepositoriesForGroupPaginator.ts