@aws-sdk/client-codeartifact 3.645.0 → 3.650.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/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +48 -144
- package/dist-es/commands/AssociateExternalConnectionCommand.js +1 -3
- package/dist-es/commands/CopyPackageVersionsCommand.js +1 -3
- package/dist-es/commands/CreateDomainCommand.js +1 -3
- package/dist-es/commands/CreatePackageGroupCommand.js +1 -3
- package/dist-es/commands/CreateRepositoryCommand.js +1 -3
- package/dist-es/commands/DeleteDomainCommand.js +1 -3
- package/dist-es/commands/DeleteDomainPermissionsPolicyCommand.js +1 -3
- package/dist-es/commands/DeletePackageCommand.js +1 -3
- package/dist-es/commands/DeletePackageGroupCommand.js +1 -3
- package/dist-es/commands/DeletePackageVersionsCommand.js +1 -3
- package/dist-es/commands/DeleteRepositoryCommand.js +1 -3
- package/dist-es/commands/DeleteRepositoryPermissionsPolicyCommand.js +1 -3
- package/dist-es/commands/DescribeDomainCommand.js +1 -3
- package/dist-es/commands/DescribePackageCommand.js +1 -3
- package/dist-es/commands/DescribePackageGroupCommand.js +1 -3
- package/dist-es/commands/DescribePackageVersionCommand.js +1 -3
- package/dist-es/commands/DescribeRepositoryCommand.js +1 -3
- package/dist-es/commands/DisassociateExternalConnectionCommand.js +1 -3
- package/dist-es/commands/DisposePackageVersionsCommand.js +1 -3
- package/dist-es/commands/GetAssociatedPackageGroupCommand.js +1 -3
- package/dist-es/commands/GetAuthorizationTokenCommand.js +1 -3
- package/dist-es/commands/GetDomainPermissionsPolicyCommand.js +1 -3
- package/dist-es/commands/GetPackageVersionAssetCommand.js +1 -3
- package/dist-es/commands/GetPackageVersionReadmeCommand.js +1 -3
- package/dist-es/commands/GetRepositoryEndpointCommand.js +1 -3
- package/dist-es/commands/GetRepositoryPermissionsPolicyCommand.js +1 -3
- package/dist-es/commands/ListAllowedRepositoriesForGroupCommand.js +1 -3
- package/dist-es/commands/ListAssociatedPackagesCommand.js +1 -3
- package/dist-es/commands/ListDomainsCommand.js +1 -3
- package/dist-es/commands/ListPackageGroupsCommand.js +1 -3
- package/dist-es/commands/ListPackageVersionAssetsCommand.js +1 -3
- package/dist-es/commands/ListPackageVersionDependenciesCommand.js +1 -3
- package/dist-es/commands/ListPackageVersionsCommand.js +1 -3
- package/dist-es/commands/ListPackagesCommand.js +1 -3
- package/dist-es/commands/ListRepositoriesCommand.js +1 -3
- package/dist-es/commands/ListRepositoriesInDomainCommand.js +1 -3
- package/dist-es/commands/ListSubPackageGroupsCommand.js +1 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
- package/dist-es/commands/PublishPackageVersionCommand.js +1 -3
- package/dist-es/commands/PutDomainPermissionsPolicyCommand.js +1 -3
- package/dist-es/commands/PutPackageOriginConfigurationCommand.js +1 -3
- package/dist-es/commands/PutRepositoryPermissionsPolicyCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdatePackageGroupCommand.js +1 -3
- package/dist-es/commands/UpdatePackageGroupOriginConfigurationCommand.js +1 -3
- package/dist-es/commands/UpdatePackageVersionsStatusCommand.js +1 -3
- package/dist-es/commands/UpdateRepositoryCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +36 -36
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -2349,9 +2349,7 @@ var _xp = "x-packageversion";
|
|
|
2349
2349
|
var _xp_ = "x-packageversionrevision";
|
|
2350
2350
|
|
|
2351
2351
|
// src/commands/AssociateExternalConnectionCommand.ts
|
|
2352
|
-
var _AssociateExternalConnectionCommand = class _AssociateExternalConnectionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2353
|
-
...commonParams
|
|
2354
|
-
}).m(function(Command, cs, config, o) {
|
|
2352
|
+
var _AssociateExternalConnectionCommand = class _AssociateExternalConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2355
2353
|
return [
|
|
2356
2354
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2357
2355
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2365,9 +2363,7 @@ var AssociateExternalConnectionCommand = _AssociateExternalConnectionCommand;
|
|
|
2365
2363
|
|
|
2366
2364
|
|
|
2367
2365
|
|
|
2368
|
-
var _CopyPackageVersionsCommand = class _CopyPackageVersionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2369
|
-
...commonParams
|
|
2370
|
-
}).m(function(Command, cs, config, o) {
|
|
2366
|
+
var _CopyPackageVersionsCommand = class _CopyPackageVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2371
2367
|
return [
|
|
2372
2368
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2373
2369
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2381,9 +2377,7 @@ var CopyPackageVersionsCommand = _CopyPackageVersionsCommand;
|
|
|
2381
2377
|
|
|
2382
2378
|
|
|
2383
2379
|
|
|
2384
|
-
var _CreateDomainCommand = class _CreateDomainCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2385
|
-
...commonParams
|
|
2386
|
-
}).m(function(Command, cs, config, o) {
|
|
2380
|
+
var _CreateDomainCommand = class _CreateDomainCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2387
2381
|
return [
|
|
2388
2382
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2389
2383
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2397,9 +2391,7 @@ var CreateDomainCommand = _CreateDomainCommand;
|
|
|
2397
2391
|
|
|
2398
2392
|
|
|
2399
2393
|
|
|
2400
|
-
var _CreatePackageGroupCommand = class _CreatePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2401
|
-
...commonParams
|
|
2402
|
-
}).m(function(Command, cs, config, o) {
|
|
2394
|
+
var _CreatePackageGroupCommand = class _CreatePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2403
2395
|
return [
|
|
2404
2396
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2405
2397
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2413,9 +2405,7 @@ var CreatePackageGroupCommand = _CreatePackageGroupCommand;
|
|
|
2413
2405
|
|
|
2414
2406
|
|
|
2415
2407
|
|
|
2416
|
-
var _CreateRepositoryCommand = class _CreateRepositoryCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2417
|
-
...commonParams
|
|
2418
|
-
}).m(function(Command, cs, config, o) {
|
|
2408
|
+
var _CreateRepositoryCommand = class _CreateRepositoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2419
2409
|
return [
|
|
2420
2410
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2421
2411
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2429,9 +2419,7 @@ var CreateRepositoryCommand = _CreateRepositoryCommand;
|
|
|
2429
2419
|
|
|
2430
2420
|
|
|
2431
2421
|
|
|
2432
|
-
var _DeleteDomainCommand = class _DeleteDomainCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2433
|
-
...commonParams
|
|
2434
|
-
}).m(function(Command, cs, config, o) {
|
|
2422
|
+
var _DeleteDomainCommand = class _DeleteDomainCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2435
2423
|
return [
|
|
2436
2424
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2437
2425
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2445,9 +2433,7 @@ var DeleteDomainCommand = _DeleteDomainCommand;
|
|
|
2445
2433
|
|
|
2446
2434
|
|
|
2447
2435
|
|
|
2448
|
-
var _DeleteDomainPermissionsPolicyCommand = class _DeleteDomainPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2449
|
-
...commonParams
|
|
2450
|
-
}).m(function(Command, cs, config, o) {
|
|
2436
|
+
var _DeleteDomainPermissionsPolicyCommand = class _DeleteDomainPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2451
2437
|
return [
|
|
2452
2438
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2453
2439
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2461,9 +2447,7 @@ var DeleteDomainPermissionsPolicyCommand = _DeleteDomainPermissionsPolicyCommand
|
|
|
2461
2447
|
|
|
2462
2448
|
|
|
2463
2449
|
|
|
2464
|
-
var _DeletePackageCommand = class _DeletePackageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2465
|
-
...commonParams
|
|
2466
|
-
}).m(function(Command, cs, config, o) {
|
|
2450
|
+
var _DeletePackageCommand = class _DeletePackageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2467
2451
|
return [
|
|
2468
2452
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2469
2453
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2477,9 +2461,7 @@ var DeletePackageCommand = _DeletePackageCommand;
|
|
|
2477
2461
|
|
|
2478
2462
|
|
|
2479
2463
|
|
|
2480
|
-
var _DeletePackageGroupCommand = class _DeletePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2481
|
-
...commonParams
|
|
2482
|
-
}).m(function(Command, cs, config, o) {
|
|
2464
|
+
var _DeletePackageGroupCommand = class _DeletePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2483
2465
|
return [
|
|
2484
2466
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2485
2467
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2493,9 +2475,7 @@ var DeletePackageGroupCommand = _DeletePackageGroupCommand;
|
|
|
2493
2475
|
|
|
2494
2476
|
|
|
2495
2477
|
|
|
2496
|
-
var _DeletePackageVersionsCommand = class _DeletePackageVersionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2497
|
-
...commonParams
|
|
2498
|
-
}).m(function(Command, cs, config, o) {
|
|
2478
|
+
var _DeletePackageVersionsCommand = class _DeletePackageVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2499
2479
|
return [
|
|
2500
2480
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2501
2481
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2509,9 +2489,7 @@ var DeletePackageVersionsCommand = _DeletePackageVersionsCommand;
|
|
|
2509
2489
|
|
|
2510
2490
|
|
|
2511
2491
|
|
|
2512
|
-
var _DeleteRepositoryCommand = class _DeleteRepositoryCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2513
|
-
...commonParams
|
|
2514
|
-
}).m(function(Command, cs, config, o) {
|
|
2492
|
+
var _DeleteRepositoryCommand = class _DeleteRepositoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2515
2493
|
return [
|
|
2516
2494
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2517
2495
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2525,9 +2503,7 @@ var DeleteRepositoryCommand = _DeleteRepositoryCommand;
|
|
|
2525
2503
|
|
|
2526
2504
|
|
|
2527
2505
|
|
|
2528
|
-
var _DeleteRepositoryPermissionsPolicyCommand = class _DeleteRepositoryPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2529
|
-
...commonParams
|
|
2530
|
-
}).m(function(Command, cs, config, o) {
|
|
2506
|
+
var _DeleteRepositoryPermissionsPolicyCommand = class _DeleteRepositoryPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2531
2507
|
return [
|
|
2532
2508
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2533
2509
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2541,9 +2517,7 @@ var DeleteRepositoryPermissionsPolicyCommand = _DeleteRepositoryPermissionsPolic
|
|
|
2541
2517
|
|
|
2542
2518
|
|
|
2543
2519
|
|
|
2544
|
-
var _DescribeDomainCommand = class _DescribeDomainCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2545
|
-
...commonParams
|
|
2546
|
-
}).m(function(Command, cs, config, o) {
|
|
2520
|
+
var _DescribeDomainCommand = class _DescribeDomainCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2547
2521
|
return [
|
|
2548
2522
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2549
2523
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2557,9 +2531,7 @@ var DescribeDomainCommand = _DescribeDomainCommand;
|
|
|
2557
2531
|
|
|
2558
2532
|
|
|
2559
2533
|
|
|
2560
|
-
var _DescribePackageCommand = class _DescribePackageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2561
|
-
...commonParams
|
|
2562
|
-
}).m(function(Command, cs, config, o) {
|
|
2534
|
+
var _DescribePackageCommand = class _DescribePackageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2563
2535
|
return [
|
|
2564
2536
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2565
2537
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2573,9 +2545,7 @@ var DescribePackageCommand = _DescribePackageCommand;
|
|
|
2573
2545
|
|
|
2574
2546
|
|
|
2575
2547
|
|
|
2576
|
-
var _DescribePackageGroupCommand = class _DescribePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2577
|
-
...commonParams
|
|
2578
|
-
}).m(function(Command, cs, config, o) {
|
|
2548
|
+
var _DescribePackageGroupCommand = class _DescribePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2579
2549
|
return [
|
|
2580
2550
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2581
2551
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2589,9 +2559,7 @@ var DescribePackageGroupCommand = _DescribePackageGroupCommand;
|
|
|
2589
2559
|
|
|
2590
2560
|
|
|
2591
2561
|
|
|
2592
|
-
var _DescribePackageVersionCommand = class _DescribePackageVersionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2593
|
-
...commonParams
|
|
2594
|
-
}).m(function(Command, cs, config, o) {
|
|
2562
|
+
var _DescribePackageVersionCommand = class _DescribePackageVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2595
2563
|
return [
|
|
2596
2564
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2597
2565
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2605,9 +2573,7 @@ var DescribePackageVersionCommand = _DescribePackageVersionCommand;
|
|
|
2605
2573
|
|
|
2606
2574
|
|
|
2607
2575
|
|
|
2608
|
-
var _DescribeRepositoryCommand = class _DescribeRepositoryCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2609
|
-
...commonParams
|
|
2610
|
-
}).m(function(Command, cs, config, o) {
|
|
2576
|
+
var _DescribeRepositoryCommand = class _DescribeRepositoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2611
2577
|
return [
|
|
2612
2578
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2613
2579
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2621,9 +2587,7 @@ var DescribeRepositoryCommand = _DescribeRepositoryCommand;
|
|
|
2621
2587
|
|
|
2622
2588
|
|
|
2623
2589
|
|
|
2624
|
-
var _DisassociateExternalConnectionCommand = class _DisassociateExternalConnectionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2625
|
-
...commonParams
|
|
2626
|
-
}).m(function(Command, cs, config, o) {
|
|
2590
|
+
var _DisassociateExternalConnectionCommand = class _DisassociateExternalConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2627
2591
|
return [
|
|
2628
2592
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2629
2593
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2637,9 +2601,7 @@ var DisassociateExternalConnectionCommand = _DisassociateExternalConnectionComma
|
|
|
2637
2601
|
|
|
2638
2602
|
|
|
2639
2603
|
|
|
2640
|
-
var _DisposePackageVersionsCommand = class _DisposePackageVersionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2641
|
-
...commonParams
|
|
2642
|
-
}).m(function(Command, cs, config, o) {
|
|
2604
|
+
var _DisposePackageVersionsCommand = class _DisposePackageVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2643
2605
|
return [
|
|
2644
2606
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2645
2607
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2653,9 +2615,7 @@ var DisposePackageVersionsCommand = _DisposePackageVersionsCommand;
|
|
|
2653
2615
|
|
|
2654
2616
|
|
|
2655
2617
|
|
|
2656
|
-
var _GetAssociatedPackageGroupCommand = class _GetAssociatedPackageGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2657
|
-
...commonParams
|
|
2658
|
-
}).m(function(Command, cs, config, o) {
|
|
2618
|
+
var _GetAssociatedPackageGroupCommand = class _GetAssociatedPackageGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2659
2619
|
return [
|
|
2660
2620
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2661
2621
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2669,9 +2629,7 @@ var GetAssociatedPackageGroupCommand = _GetAssociatedPackageGroupCommand;
|
|
|
2669
2629
|
|
|
2670
2630
|
|
|
2671
2631
|
|
|
2672
|
-
var _GetAuthorizationTokenCommand = class _GetAuthorizationTokenCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2673
|
-
...commonParams
|
|
2674
|
-
}).m(function(Command, cs, config, o) {
|
|
2632
|
+
var _GetAuthorizationTokenCommand = class _GetAuthorizationTokenCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2675
2633
|
return [
|
|
2676
2634
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2677
2635
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2685,9 +2643,7 @@ var GetAuthorizationTokenCommand = _GetAuthorizationTokenCommand;
|
|
|
2685
2643
|
|
|
2686
2644
|
|
|
2687
2645
|
|
|
2688
|
-
var _GetDomainPermissionsPolicyCommand = class _GetDomainPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2689
|
-
...commonParams
|
|
2690
|
-
}).m(function(Command, cs, config, o) {
|
|
2646
|
+
var _GetDomainPermissionsPolicyCommand = class _GetDomainPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2691
2647
|
return [
|
|
2692
2648
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2693
2649
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2701,9 +2657,7 @@ var GetDomainPermissionsPolicyCommand = _GetDomainPermissionsPolicyCommand;
|
|
|
2701
2657
|
|
|
2702
2658
|
|
|
2703
2659
|
|
|
2704
|
-
var _GetPackageVersionAssetCommand = class _GetPackageVersionAssetCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2705
|
-
...commonParams
|
|
2706
|
-
}).m(function(Command, cs, config, o) {
|
|
2660
|
+
var _GetPackageVersionAssetCommand = class _GetPackageVersionAssetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2707
2661
|
return [
|
|
2708
2662
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2709
2663
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2717,9 +2671,7 @@ var GetPackageVersionAssetCommand = _GetPackageVersionAssetCommand;
|
|
|
2717
2671
|
|
|
2718
2672
|
|
|
2719
2673
|
|
|
2720
|
-
var _GetPackageVersionReadmeCommand = class _GetPackageVersionReadmeCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2721
|
-
...commonParams
|
|
2722
|
-
}).m(function(Command, cs, config, o) {
|
|
2674
|
+
var _GetPackageVersionReadmeCommand = class _GetPackageVersionReadmeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2723
2675
|
return [
|
|
2724
2676
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2725
2677
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2733,9 +2685,7 @@ var GetPackageVersionReadmeCommand = _GetPackageVersionReadmeCommand;
|
|
|
2733
2685
|
|
|
2734
2686
|
|
|
2735
2687
|
|
|
2736
|
-
var _GetRepositoryEndpointCommand = class _GetRepositoryEndpointCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2737
|
-
...commonParams
|
|
2738
|
-
}).m(function(Command, cs, config, o) {
|
|
2688
|
+
var _GetRepositoryEndpointCommand = class _GetRepositoryEndpointCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2739
2689
|
return [
|
|
2740
2690
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2741
2691
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2749,9 +2699,7 @@ var GetRepositoryEndpointCommand = _GetRepositoryEndpointCommand;
|
|
|
2749
2699
|
|
|
2750
2700
|
|
|
2751
2701
|
|
|
2752
|
-
var _GetRepositoryPermissionsPolicyCommand = class _GetRepositoryPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2753
|
-
...commonParams
|
|
2754
|
-
}).m(function(Command, cs, config, o) {
|
|
2702
|
+
var _GetRepositoryPermissionsPolicyCommand = class _GetRepositoryPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2755
2703
|
return [
|
|
2756
2704
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2757
2705
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2765,9 +2713,7 @@ var GetRepositoryPermissionsPolicyCommand = _GetRepositoryPermissionsPolicyComma
|
|
|
2765
2713
|
|
|
2766
2714
|
|
|
2767
2715
|
|
|
2768
|
-
var _ListAllowedRepositoriesForGroupCommand = class _ListAllowedRepositoriesForGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2769
|
-
...commonParams
|
|
2770
|
-
}).m(function(Command, cs, config, o) {
|
|
2716
|
+
var _ListAllowedRepositoriesForGroupCommand = class _ListAllowedRepositoriesForGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2771
2717
|
return [
|
|
2772
2718
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2773
2719
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2781,9 +2727,7 @@ var ListAllowedRepositoriesForGroupCommand = _ListAllowedRepositoriesForGroupCom
|
|
|
2781
2727
|
|
|
2782
2728
|
|
|
2783
2729
|
|
|
2784
|
-
var _ListAssociatedPackagesCommand = class _ListAssociatedPackagesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2785
|
-
...commonParams
|
|
2786
|
-
}).m(function(Command, cs, config, o) {
|
|
2730
|
+
var _ListAssociatedPackagesCommand = class _ListAssociatedPackagesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2787
2731
|
return [
|
|
2788
2732
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2789
2733
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2797,9 +2741,7 @@ var ListAssociatedPackagesCommand = _ListAssociatedPackagesCommand;
|
|
|
2797
2741
|
|
|
2798
2742
|
|
|
2799
2743
|
|
|
2800
|
-
var _ListDomainsCommand = class _ListDomainsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2801
|
-
...commonParams
|
|
2802
|
-
}).m(function(Command, cs, config, o) {
|
|
2744
|
+
var _ListDomainsCommand = class _ListDomainsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2803
2745
|
return [
|
|
2804
2746
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2805
2747
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2813,9 +2755,7 @@ var ListDomainsCommand = _ListDomainsCommand;
|
|
|
2813
2755
|
|
|
2814
2756
|
|
|
2815
2757
|
|
|
2816
|
-
var _ListPackageGroupsCommand = class _ListPackageGroupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2817
|
-
...commonParams
|
|
2818
|
-
}).m(function(Command, cs, config, o) {
|
|
2758
|
+
var _ListPackageGroupsCommand = class _ListPackageGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2819
2759
|
return [
|
|
2820
2760
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2821
2761
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2829,9 +2769,7 @@ var ListPackageGroupsCommand = _ListPackageGroupsCommand;
|
|
|
2829
2769
|
|
|
2830
2770
|
|
|
2831
2771
|
|
|
2832
|
-
var _ListPackagesCommand = class _ListPackagesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2833
|
-
...commonParams
|
|
2834
|
-
}).m(function(Command, cs, config, o) {
|
|
2772
|
+
var _ListPackagesCommand = class _ListPackagesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2835
2773
|
return [
|
|
2836
2774
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2837
2775
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2845,9 +2783,7 @@ var ListPackagesCommand = _ListPackagesCommand;
|
|
|
2845
2783
|
|
|
2846
2784
|
|
|
2847
2785
|
|
|
2848
|
-
var _ListPackageVersionAssetsCommand = class _ListPackageVersionAssetsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2849
|
-
...commonParams
|
|
2850
|
-
}).m(function(Command, cs, config, o) {
|
|
2786
|
+
var _ListPackageVersionAssetsCommand = class _ListPackageVersionAssetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2851
2787
|
return [
|
|
2852
2788
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2853
2789
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2861,9 +2797,7 @@ var ListPackageVersionAssetsCommand = _ListPackageVersionAssetsCommand;
|
|
|
2861
2797
|
|
|
2862
2798
|
|
|
2863
2799
|
|
|
2864
|
-
var _ListPackageVersionDependenciesCommand = class _ListPackageVersionDependenciesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2865
|
-
...commonParams
|
|
2866
|
-
}).m(function(Command, cs, config, o) {
|
|
2800
|
+
var _ListPackageVersionDependenciesCommand = class _ListPackageVersionDependenciesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2867
2801
|
return [
|
|
2868
2802
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2869
2803
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2877,9 +2811,7 @@ var ListPackageVersionDependenciesCommand = _ListPackageVersionDependenciesComma
|
|
|
2877
2811
|
|
|
2878
2812
|
|
|
2879
2813
|
|
|
2880
|
-
var _ListPackageVersionsCommand = class _ListPackageVersionsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2881
|
-
...commonParams
|
|
2882
|
-
}).m(function(Command, cs, config, o) {
|
|
2814
|
+
var _ListPackageVersionsCommand = class _ListPackageVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2883
2815
|
return [
|
|
2884
2816
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2885
2817
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2893,9 +2825,7 @@ var ListPackageVersionsCommand = _ListPackageVersionsCommand;
|
|
|
2893
2825
|
|
|
2894
2826
|
|
|
2895
2827
|
|
|
2896
|
-
var _ListRepositoriesCommand = class _ListRepositoriesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2897
|
-
...commonParams
|
|
2898
|
-
}).m(function(Command, cs, config, o) {
|
|
2828
|
+
var _ListRepositoriesCommand = class _ListRepositoriesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2899
2829
|
return [
|
|
2900
2830
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2901
2831
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2909,9 +2839,7 @@ var ListRepositoriesCommand = _ListRepositoriesCommand;
|
|
|
2909
2839
|
|
|
2910
2840
|
|
|
2911
2841
|
|
|
2912
|
-
var _ListRepositoriesInDomainCommand = class _ListRepositoriesInDomainCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2913
|
-
...commonParams
|
|
2914
|
-
}).m(function(Command, cs, config, o) {
|
|
2842
|
+
var _ListRepositoriesInDomainCommand = class _ListRepositoriesInDomainCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2915
2843
|
return [
|
|
2916
2844
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2917
2845
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2925,9 +2853,7 @@ var ListRepositoriesInDomainCommand = _ListRepositoriesInDomainCommand;
|
|
|
2925
2853
|
|
|
2926
2854
|
|
|
2927
2855
|
|
|
2928
|
-
var _ListSubPackageGroupsCommand = class _ListSubPackageGroupsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2929
|
-
...commonParams
|
|
2930
|
-
}).m(function(Command, cs, config, o) {
|
|
2856
|
+
var _ListSubPackageGroupsCommand = class _ListSubPackageGroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2931
2857
|
return [
|
|
2932
2858
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2933
2859
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2941,9 +2867,7 @@ var ListSubPackageGroupsCommand = _ListSubPackageGroupsCommand;
|
|
|
2941
2867
|
|
|
2942
2868
|
|
|
2943
2869
|
|
|
2944
|
-
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2945
|
-
...commonParams
|
|
2946
|
-
}).m(function(Command, cs, config, o) {
|
|
2870
|
+
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2947
2871
|
return [
|
|
2948
2872
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2949
2873
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2957,9 +2881,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
|
2957
2881
|
|
|
2958
2882
|
|
|
2959
2883
|
|
|
2960
|
-
var _PublishPackageVersionCommand = class _PublishPackageVersionCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2961
|
-
...commonParams
|
|
2962
|
-
}).m(function(Command, cs, config, o) {
|
|
2884
|
+
var _PublishPackageVersionCommand = class _PublishPackageVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2963
2885
|
return [
|
|
2964
2886
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2965
2887
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2973,9 +2895,7 @@ var PublishPackageVersionCommand = _PublishPackageVersionCommand;
|
|
|
2973
2895
|
|
|
2974
2896
|
|
|
2975
2897
|
|
|
2976
|
-
var _PutDomainPermissionsPolicyCommand = class _PutDomainPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2977
|
-
...commonParams
|
|
2978
|
-
}).m(function(Command, cs, config, o) {
|
|
2898
|
+
var _PutDomainPermissionsPolicyCommand = class _PutDomainPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2979
2899
|
return [
|
|
2980
2900
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2981
2901
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2989,9 +2909,7 @@ var PutDomainPermissionsPolicyCommand = _PutDomainPermissionsPolicyCommand;
|
|
|
2989
2909
|
|
|
2990
2910
|
|
|
2991
2911
|
|
|
2992
|
-
var _PutPackageOriginConfigurationCommand = class _PutPackageOriginConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2993
|
-
...commonParams
|
|
2994
|
-
}).m(function(Command, cs, config, o) {
|
|
2912
|
+
var _PutPackageOriginConfigurationCommand = class _PutPackageOriginConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2995
2913
|
return [
|
|
2996
2914
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2997
2915
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3005,9 +2923,7 @@ var PutPackageOriginConfigurationCommand = _PutPackageOriginConfigurationCommand
|
|
|
3005
2923
|
|
|
3006
2924
|
|
|
3007
2925
|
|
|
3008
|
-
var _PutRepositoryPermissionsPolicyCommand = class _PutRepositoryPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3009
|
-
...commonParams
|
|
3010
|
-
}).m(function(Command, cs, config, o) {
|
|
2926
|
+
var _PutRepositoryPermissionsPolicyCommand = class _PutRepositoryPermissionsPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3011
2927
|
return [
|
|
3012
2928
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3013
2929
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3021,9 +2937,7 @@ var PutRepositoryPermissionsPolicyCommand = _PutRepositoryPermissionsPolicyComma
|
|
|
3021
2937
|
|
|
3022
2938
|
|
|
3023
2939
|
|
|
3024
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3025
|
-
...commonParams
|
|
3026
|
-
}).m(function(Command, cs, config, o) {
|
|
2940
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3027
2941
|
return [
|
|
3028
2942
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3029
2943
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3037,9 +2951,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
3037
2951
|
|
|
3038
2952
|
|
|
3039
2953
|
|
|
3040
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3041
|
-
...commonParams
|
|
3042
|
-
}).m(function(Command, cs, config, o) {
|
|
2954
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3043
2955
|
return [
|
|
3044
2956
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3045
2957
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3053,9 +2965,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
3053
2965
|
|
|
3054
2966
|
|
|
3055
2967
|
|
|
3056
|
-
var _UpdatePackageGroupCommand = class _UpdatePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3057
|
-
...commonParams
|
|
3058
|
-
}).m(function(Command, cs, config, o) {
|
|
2968
|
+
var _UpdatePackageGroupCommand = class _UpdatePackageGroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3059
2969
|
return [
|
|
3060
2970
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3061
2971
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3069,9 +2979,7 @@ var UpdatePackageGroupCommand = _UpdatePackageGroupCommand;
|
|
|
3069
2979
|
|
|
3070
2980
|
|
|
3071
2981
|
|
|
3072
|
-
var _UpdatePackageGroupOriginConfigurationCommand = class _UpdatePackageGroupOriginConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3073
|
-
...commonParams
|
|
3074
|
-
}).m(function(Command, cs, config, o) {
|
|
2982
|
+
var _UpdatePackageGroupOriginConfigurationCommand = class _UpdatePackageGroupOriginConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3075
2983
|
return [
|
|
3076
2984
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3077
2985
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3085,9 +2993,7 @@ var UpdatePackageGroupOriginConfigurationCommand = _UpdatePackageGroupOriginConf
|
|
|
3085
2993
|
|
|
3086
2994
|
|
|
3087
2995
|
|
|
3088
|
-
var _UpdatePackageVersionsStatusCommand = class _UpdatePackageVersionsStatusCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3089
|
-
...commonParams
|
|
3090
|
-
}).m(function(Command, cs, config, o) {
|
|
2996
|
+
var _UpdatePackageVersionsStatusCommand = class _UpdatePackageVersionsStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3091
2997
|
return [
|
|
3092
2998
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3093
2999
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3101,9 +3007,7 @@ var UpdatePackageVersionsStatusCommand = _UpdatePackageVersionsStatusCommand;
|
|
|
3101
3007
|
|
|
3102
3008
|
|
|
3103
3009
|
|
|
3104
|
-
var _UpdateRepositoryCommand = class _UpdateRepositoryCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3105
|
-
...commonParams
|
|
3106
|
-
}).m(function(Command, cs, config, o) {
|
|
3010
|
+
var _UpdateRepositoryCommand = class _UpdateRepositoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3107
3011
|
return [
|
|
3108
3012
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3109
3013
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_AssociateExternalConnectionCommand, se_AssociateExternalConnectionCo
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class AssociateExternalConnectionCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CopyPackageVersionsCommand, se_CopyPackageVersionsCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CopyPackageVersionsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateDomainCommand, se_CreateDomainCommand } from "../protocols/Aws
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateDomainCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreatePackageGroupCommand, se_CreatePackageGroupCommand } from "../p
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreatePackageGroupCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateRepositoryCommand, se_CreateRepositoryCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateRepositoryCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteDomainCommand, se_DeleteDomainCommand } from "../protocols/Aws
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteDomainCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeleteDomainPermissionsPolicyCommand, se_DeleteDomainPermissionsPoli
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeleteDomainPermissionsPolicyCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeletePackageCommand, se_DeletePackageCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeletePackageCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeletePackageGroupCommand, se_DeletePackageGroupCommand } from "../p
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeletePackageGroupCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_DeletePackageVersionsCommand, se_DeletePackageVersionsCommand } from
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class DeletePackageVersionsCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|