@aws-sdk/client-codeartifact 3.489.0 → 3.495.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.
Files changed (58) hide show
  1. package/dist-cjs/Codeartifact.js +1 -87
  2. package/dist-cjs/CodeartifactClient.js +1 -43
  3. package/dist-cjs/commands/AssociateExternalConnectionCommand.js +1 -28
  4. package/dist-cjs/commands/CopyPackageVersionsCommand.js +1 -28
  5. package/dist-cjs/commands/CreateDomainCommand.js +1 -28
  6. package/dist-cjs/commands/CreateRepositoryCommand.js +1 -28
  7. package/dist-cjs/commands/DeleteDomainCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteDomainPermissionsPolicyCommand.js +1 -28
  9. package/dist-cjs/commands/DeletePackageCommand.js +1 -28
  10. package/dist-cjs/commands/DeletePackageVersionsCommand.js +1 -28
  11. package/dist-cjs/commands/DeleteRepositoryCommand.js +1 -28
  12. package/dist-cjs/commands/DeleteRepositoryPermissionsPolicyCommand.js +1 -28
  13. package/dist-cjs/commands/DescribeDomainCommand.js +1 -28
  14. package/dist-cjs/commands/DescribePackageCommand.js +1 -28
  15. package/dist-cjs/commands/DescribePackageVersionCommand.js +1 -28
  16. package/dist-cjs/commands/DescribeRepositoryCommand.js +1 -28
  17. package/dist-cjs/commands/DisassociateExternalConnectionCommand.js +1 -28
  18. package/dist-cjs/commands/DisposePackageVersionsCommand.js +1 -28
  19. package/dist-cjs/commands/GetAuthorizationTokenCommand.js +1 -28
  20. package/dist-cjs/commands/GetDomainPermissionsPolicyCommand.js +1 -28
  21. package/dist-cjs/commands/GetPackageVersionAssetCommand.js +1 -29
  22. package/dist-cjs/commands/GetPackageVersionReadmeCommand.js +1 -28
  23. package/dist-cjs/commands/GetRepositoryEndpointCommand.js +1 -28
  24. package/dist-cjs/commands/GetRepositoryPermissionsPolicyCommand.js +1 -28
  25. package/dist-cjs/commands/ListDomainsCommand.js +1 -28
  26. package/dist-cjs/commands/ListPackageVersionAssetsCommand.js +1 -28
  27. package/dist-cjs/commands/ListPackageVersionDependenciesCommand.js +1 -28
  28. package/dist-cjs/commands/ListPackageVersionsCommand.js +1 -28
  29. package/dist-cjs/commands/ListPackagesCommand.js +1 -28
  30. package/dist-cjs/commands/ListRepositoriesCommand.js +1 -28
  31. package/dist-cjs/commands/ListRepositoriesInDomainCommand.js +1 -28
  32. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  33. package/dist-cjs/commands/PublishPackageVersionCommand.js +1 -29
  34. package/dist-cjs/commands/PutDomainPermissionsPolicyCommand.js +1 -28
  35. package/dist-cjs/commands/PutPackageOriginConfigurationCommand.js +1 -28
  36. package/dist-cjs/commands/PutRepositoryPermissionsPolicyCommand.js +1 -28
  37. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  38. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  39. package/dist-cjs/commands/UpdatePackageVersionsStatusCommand.js +1 -28
  40. package/dist-cjs/commands/UpdateRepositoryCommand.js +1 -28
  41. package/dist-cjs/commands/index.js +1 -41
  42. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  43. package/dist-cjs/extensionConfiguration.js +1 -2
  44. package/dist-cjs/index.js +3941 -11
  45. package/dist-cjs/models/CodeartifactServiceException.js +1 -12
  46. package/dist-cjs/models/index.js +1 -4
  47. package/dist-cjs/models/models_0.js +1 -178
  48. package/dist-cjs/pagination/Interfaces.js +1 -2
  49. package/dist-cjs/pagination/ListDomainsPaginator.js +1 -7
  50. package/dist-cjs/pagination/ListPackageVersionAssetsPaginator.js +1 -7
  51. package/dist-cjs/pagination/ListPackageVersionsPaginator.js +1 -7
  52. package/dist-cjs/pagination/ListPackagesPaginator.js +1 -7
  53. package/dist-cjs/pagination/ListRepositoriesInDomainPaginator.js +1 -7
  54. package/dist-cjs/pagination/ListRepositoriesPaginator.js +1 -7
  55. package/dist-cjs/pagination/index.js +1 -10
  56. package/dist-cjs/protocols/Aws_restJson1.js +1 -2810
  57. package/dist-cjs/runtimeExtensions.js +1 -22
  58. package/package.json +41 -41
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetAuthorizationTokenCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetAuthorizationTokenCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "GetAuthorizationToken", {})
22
- .n("CodeartifactClient", "GetAuthorizationTokenCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetAuthorizationTokenCommand)
25
- .de(Aws_restJson1_1.de_GetAuthorizationTokenCommand)
26
- .build() {
27
- }
28
- exports.GetAuthorizationTokenCommand = GetAuthorizationTokenCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetDomainPermissionsPolicyCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetDomainPermissionsPolicyCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "GetDomainPermissionsPolicy", {})
22
- .n("CodeartifactClient", "GetDomainPermissionsPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetDomainPermissionsPolicyCommand)
25
- .de(Aws_restJson1_1.de_GetDomainPermissionsPolicyCommand)
26
- .build() {
27
- }
28
- exports.GetDomainPermissionsPolicyCommand = GetDomainPermissionsPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetPackageVersionAssetCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class GetPackageVersionAssetCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("CodeArtifactControlPlaneService", "GetPackageVersionAsset", {})
23
- .n("CodeartifactClient", "GetPackageVersionAssetCommand")
24
- .f(void 0, models_0_1.GetPackageVersionAssetResultFilterSensitiveLog)
25
- .ser(Aws_restJson1_1.se_GetPackageVersionAssetCommand)
26
- .de(Aws_restJson1_1.de_GetPackageVersionAssetCommand)
27
- .build() {
28
- }
29
- exports.GetPackageVersionAssetCommand = GetPackageVersionAssetCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetPackageVersionReadmeCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetPackageVersionReadmeCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "GetPackageVersionReadme", {})
22
- .n("CodeartifactClient", "GetPackageVersionReadmeCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetPackageVersionReadmeCommand)
25
- .de(Aws_restJson1_1.de_GetPackageVersionReadmeCommand)
26
- .build() {
27
- }
28
- exports.GetPackageVersionReadmeCommand = GetPackageVersionReadmeCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetRepositoryEndpointCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetRepositoryEndpointCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "GetRepositoryEndpoint", {})
22
- .n("CodeartifactClient", "GetRepositoryEndpointCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetRepositoryEndpointCommand)
25
- .de(Aws_restJson1_1.de_GetRepositoryEndpointCommand)
26
- .build() {
27
- }
28
- exports.GetRepositoryEndpointCommand = GetRepositoryEndpointCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetRepositoryPermissionsPolicyCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetRepositoryPermissionsPolicyCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "GetRepositoryPermissionsPolicy", {})
22
- .n("CodeartifactClient", "GetRepositoryPermissionsPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetRepositoryPermissionsPolicyCommand)
25
- .de(Aws_restJson1_1.de_GetRepositoryPermissionsPolicyCommand)
26
- .build() {
27
- }
28
- exports.GetRepositoryPermissionsPolicyCommand = GetRepositoryPermissionsPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListDomainsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListDomainsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "ListDomains", {})
22
- .n("CodeartifactClient", "ListDomainsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListDomainsCommand)
25
- .de(Aws_restJson1_1.de_ListDomainsCommand)
26
- .build() {
27
- }
28
- exports.ListDomainsCommand = ListDomainsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListPackageVersionAssetsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListPackageVersionAssetsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "ListPackageVersionAssets", {})
22
- .n("CodeartifactClient", "ListPackageVersionAssetsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListPackageVersionAssetsCommand)
25
- .de(Aws_restJson1_1.de_ListPackageVersionAssetsCommand)
26
- .build() {
27
- }
28
- exports.ListPackageVersionAssetsCommand = ListPackageVersionAssetsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListPackageVersionDependenciesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListPackageVersionDependenciesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "ListPackageVersionDependencies", {})
22
- .n("CodeartifactClient", "ListPackageVersionDependenciesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListPackageVersionDependenciesCommand)
25
- .de(Aws_restJson1_1.de_ListPackageVersionDependenciesCommand)
26
- .build() {
27
- }
28
- exports.ListPackageVersionDependenciesCommand = ListPackageVersionDependenciesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListPackageVersionsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListPackageVersionsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "ListPackageVersions", {})
22
- .n("CodeartifactClient", "ListPackageVersionsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListPackageVersionsCommand)
25
- .de(Aws_restJson1_1.de_ListPackageVersionsCommand)
26
- .build() {
27
- }
28
- exports.ListPackageVersionsCommand = ListPackageVersionsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListPackagesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListPackagesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "ListPackages", {})
22
- .n("CodeartifactClient", "ListPackagesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListPackagesCommand)
25
- .de(Aws_restJson1_1.de_ListPackagesCommand)
26
- .build() {
27
- }
28
- exports.ListPackagesCommand = ListPackagesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListRepositoriesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListRepositoriesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "ListRepositories", {})
22
- .n("CodeartifactClient", "ListRepositoriesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListRepositoriesCommand)
25
- .de(Aws_restJson1_1.de_ListRepositoriesCommand)
26
- .build() {
27
- }
28
- exports.ListRepositoriesCommand = ListRepositoriesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListRepositoriesInDomainCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListRepositoriesInDomainCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "ListRepositoriesInDomain", {})
22
- .n("CodeartifactClient", "ListRepositoriesInDomainCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListRepositoriesInDomainCommand)
25
- .de(Aws_restJson1_1.de_ListRepositoriesInDomainCommand)
26
- .build() {
27
- }
28
- exports.ListRepositoriesInDomainCommand = ListRepositoriesInDomainCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTagsForResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListTagsForResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "ListTagsForResource", {})
22
- .n("CodeartifactClient", "ListTagsForResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListTagsForResourceCommand)
25
- .de(Aws_restJson1_1.de_ListTagsForResourceCommand)
26
- .build() {
27
- }
28
- exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,29 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PublishPackageVersionCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const models_0_1 = require("../models/models_0");
10
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
11
- class PublishPackageVersionCommand extends smithy_client_1.Command
12
- .classBuilder()
13
- .ep({
14
- ...EndpointParameters_1.commonParams,
15
- })
16
- .m(function (Command, cs, config, o) {
17
- return [
18
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
19
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
20
- ];
21
- })
22
- .s("CodeArtifactControlPlaneService", "PublishPackageVersion", {})
23
- .n("CodeartifactClient", "PublishPackageVersionCommand")
24
- .f(models_0_1.PublishPackageVersionRequestFilterSensitiveLog, void 0)
25
- .ser(Aws_restJson1_1.se_PublishPackageVersionCommand)
26
- .de(Aws_restJson1_1.de_PublishPackageVersionCommand)
27
- .build() {
28
- }
29
- exports.PublishPackageVersionCommand = PublishPackageVersionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutDomainPermissionsPolicyCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutDomainPermissionsPolicyCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "PutDomainPermissionsPolicy", {})
22
- .n("CodeartifactClient", "PutDomainPermissionsPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutDomainPermissionsPolicyCommand)
25
- .de(Aws_restJson1_1.de_PutDomainPermissionsPolicyCommand)
26
- .build() {
27
- }
28
- exports.PutDomainPermissionsPolicyCommand = PutDomainPermissionsPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutPackageOriginConfigurationCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutPackageOriginConfigurationCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "PutPackageOriginConfiguration", {})
22
- .n("CodeartifactClient", "PutPackageOriginConfigurationCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutPackageOriginConfigurationCommand)
25
- .de(Aws_restJson1_1.de_PutPackageOriginConfigurationCommand)
26
- .build() {
27
- }
28
- exports.PutPackageOriginConfigurationCommand = PutPackageOriginConfigurationCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutRepositoryPermissionsPolicyCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutRepositoryPermissionsPolicyCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "PutRepositoryPermissionsPolicy", {})
22
- .n("CodeartifactClient", "PutRepositoryPermissionsPolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutRepositoryPermissionsPolicyCommand)
25
- .de(Aws_restJson1_1.de_PutRepositoryPermissionsPolicyCommand)
26
- .build() {
27
- }
28
- exports.PutRepositoryPermissionsPolicyCommand = PutRepositoryPermissionsPolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class TagResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "TagResource", {})
22
- .n("CodeartifactClient", "TagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_TagResourceCommand)
25
- .de(Aws_restJson1_1.de_TagResourceCommand)
26
- .build() {
27
- }
28
- exports.TagResourceCommand = TagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UntagResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "UntagResource", {})
22
- .n("CodeartifactClient", "UntagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UntagResourceCommand)
25
- .de(Aws_restJson1_1.de_UntagResourceCommand)
26
- .build() {
27
- }
28
- exports.UntagResourceCommand = UntagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdatePackageVersionsStatusCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UpdatePackageVersionsStatusCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("CodeArtifactControlPlaneService", "UpdatePackageVersionsStatus", {})
22
- .n("CodeartifactClient", "UpdatePackageVersionsStatusCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdatePackageVersionsStatusCommand)
25
- .de(Aws_restJson1_1.de_UpdatePackageVersionsStatusCommand)
26
- .build() {
27
- }
28
- exports.UpdatePackageVersionsStatusCommand = UpdatePackageVersionsStatusCommand;
1
+ module.exports = require("../index.js");