@aws-sdk/client-codecatalyst 3.490.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 (63) hide show
  1. package/dist-cjs/CodeCatalyst.js +1 -87
  2. package/dist-cjs/CodeCatalystClient.js +1 -56
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +1 -43
  4. package/dist-cjs/commands/CreateAccessTokenCommand.js +1 -29
  5. package/dist-cjs/commands/CreateDevEnvironmentCommand.js +1 -28
  6. package/dist-cjs/commands/CreateProjectCommand.js +1 -28
  7. package/dist-cjs/commands/CreateSourceRepositoryBranchCommand.js +1 -28
  8. package/dist-cjs/commands/CreateSourceRepositoryCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteAccessTokenCommand.js +1 -28
  10. package/dist-cjs/commands/DeleteDevEnvironmentCommand.js +1 -28
  11. package/dist-cjs/commands/DeleteProjectCommand.js +1 -28
  12. package/dist-cjs/commands/DeleteSourceRepositoryCommand.js +1 -28
  13. package/dist-cjs/commands/DeleteSpaceCommand.js +1 -28
  14. package/dist-cjs/commands/GetDevEnvironmentCommand.js +1 -28
  15. package/dist-cjs/commands/GetProjectCommand.js +1 -28
  16. package/dist-cjs/commands/GetSourceRepositoryCloneUrlsCommand.js +1 -28
  17. package/dist-cjs/commands/GetSourceRepositoryCommand.js +1 -28
  18. package/dist-cjs/commands/GetSpaceCommand.js +1 -28
  19. package/dist-cjs/commands/GetSubscriptionCommand.js +1 -28
  20. package/dist-cjs/commands/GetUserDetailsCommand.js +1 -28
  21. package/dist-cjs/commands/GetWorkflowCommand.js +1 -28
  22. package/dist-cjs/commands/GetWorkflowRunCommand.js +1 -28
  23. package/dist-cjs/commands/ListAccessTokensCommand.js +1 -28
  24. package/dist-cjs/commands/ListDevEnvironmentSessionsCommand.js +1 -28
  25. package/dist-cjs/commands/ListDevEnvironmentsCommand.js +1 -28
  26. package/dist-cjs/commands/ListEventLogsCommand.js +1 -28
  27. package/dist-cjs/commands/ListProjectsCommand.js +1 -28
  28. package/dist-cjs/commands/ListSourceRepositoriesCommand.js +1 -28
  29. package/dist-cjs/commands/ListSourceRepositoryBranchesCommand.js +1 -28
  30. package/dist-cjs/commands/ListSpacesCommand.js +1 -28
  31. package/dist-cjs/commands/ListWorkflowRunsCommand.js +1 -28
  32. package/dist-cjs/commands/ListWorkflowsCommand.js +1 -28
  33. package/dist-cjs/commands/StartDevEnvironmentCommand.js +1 -28
  34. package/dist-cjs/commands/StartDevEnvironmentSessionCommand.js +1 -29
  35. package/dist-cjs/commands/StartWorkflowRunCommand.js +1 -28
  36. package/dist-cjs/commands/StopDevEnvironmentCommand.js +1 -28
  37. package/dist-cjs/commands/StopDevEnvironmentSessionCommand.js +1 -28
  38. package/dist-cjs/commands/UpdateDevEnvironmentCommand.js +1 -28
  39. package/dist-cjs/commands/UpdateProjectCommand.js +1 -28
  40. package/dist-cjs/commands/UpdateSpaceCommand.js +1 -28
  41. package/dist-cjs/commands/VerifySessionCommand.js +1 -28
  42. package/dist-cjs/commands/index.js +1 -41
  43. package/dist-cjs/endpoint/EndpointParameters.js +1 -16
  44. package/dist-cjs/extensionConfiguration.js +1 -2
  45. package/dist-cjs/index.js +4028 -11
  46. package/dist-cjs/models/CodeCatalystServiceException.js +1 -12
  47. package/dist-cjs/models/index.js +1 -4
  48. package/dist-cjs/models/models_0.js +1 -163
  49. package/dist-cjs/pagination/Interfaces.js +1 -2
  50. package/dist-cjs/pagination/ListAccessTokensPaginator.js +1 -7
  51. package/dist-cjs/pagination/ListDevEnvironmentSessionsPaginator.js +1 -7
  52. package/dist-cjs/pagination/ListDevEnvironmentsPaginator.js +1 -7
  53. package/dist-cjs/pagination/ListEventLogsPaginator.js +1 -7
  54. package/dist-cjs/pagination/ListProjectsPaginator.js +1 -7
  55. package/dist-cjs/pagination/ListSourceRepositoriesPaginator.js +1 -7
  56. package/dist-cjs/pagination/ListSourceRepositoryBranchesPaginator.js +1 -7
  57. package/dist-cjs/pagination/ListSpacesPaginator.js +1 -7
  58. package/dist-cjs/pagination/ListWorkflowRunsPaginator.js +1 -7
  59. package/dist-cjs/pagination/ListWorkflowsPaginator.js +1 -7
  60. package/dist-cjs/pagination/index.js +1 -14
  61. package/dist-cjs/protocols/Aws_restJson1.js +1 -2838
  62. package/dist-cjs/runtimeExtensions.js +1 -25
  63. package/package.json +39 -39
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateProjectCommand = 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 UpdateProjectCommand 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("CodeCatalyst", "UpdateProject", {})
22
- .n("CodeCatalystClient", "UpdateProjectCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateProjectCommand)
25
- .de(Aws_restJson1_1.de_UpdateProjectCommand)
26
- .build() {
27
- }
28
- exports.UpdateProjectCommand = UpdateProjectCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateSpaceCommand = 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 UpdateSpaceCommand 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("CodeCatalyst", "UpdateSpace", {})
22
- .n("CodeCatalystClient", "UpdateSpaceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateSpaceCommand)
25
- .de(Aws_restJson1_1.de_UpdateSpaceCommand)
26
- .build() {
27
- }
28
- exports.UpdateSpaceCommand = UpdateSpaceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VerifySessionCommand = 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 VerifySessionCommand 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("CodeCatalyst", "VerifySession", {})
22
- .n("CodeCatalystClient", "VerifySessionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_VerifySessionCommand)
25
- .de(Aws_restJson1_1.de_VerifySessionCommand)
26
- .build() {
27
- }
28
- exports.VerifySessionCommand = VerifySessionCommand;
1
+ module.exports = require("../index.js");
@@ -1,41 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./CreateAccessTokenCommand"), exports);
5
- tslib_1.__exportStar(require("./CreateDevEnvironmentCommand"), exports);
6
- tslib_1.__exportStar(require("./CreateProjectCommand"), exports);
7
- tslib_1.__exportStar(require("./CreateSourceRepositoryBranchCommand"), exports);
8
- tslib_1.__exportStar(require("./CreateSourceRepositoryCommand"), exports);
9
- tslib_1.__exportStar(require("./DeleteAccessTokenCommand"), exports);
10
- tslib_1.__exportStar(require("./DeleteDevEnvironmentCommand"), exports);
11
- tslib_1.__exportStar(require("./DeleteProjectCommand"), exports);
12
- tslib_1.__exportStar(require("./DeleteSourceRepositoryCommand"), exports);
13
- tslib_1.__exportStar(require("./DeleteSpaceCommand"), exports);
14
- tslib_1.__exportStar(require("./GetDevEnvironmentCommand"), exports);
15
- tslib_1.__exportStar(require("./GetProjectCommand"), exports);
16
- tslib_1.__exportStar(require("./GetSourceRepositoryCloneUrlsCommand"), exports);
17
- tslib_1.__exportStar(require("./GetSourceRepositoryCommand"), exports);
18
- tslib_1.__exportStar(require("./GetSpaceCommand"), exports);
19
- tslib_1.__exportStar(require("./GetSubscriptionCommand"), exports);
20
- tslib_1.__exportStar(require("./GetUserDetailsCommand"), exports);
21
- tslib_1.__exportStar(require("./GetWorkflowCommand"), exports);
22
- tslib_1.__exportStar(require("./GetWorkflowRunCommand"), exports);
23
- tslib_1.__exportStar(require("./ListAccessTokensCommand"), exports);
24
- tslib_1.__exportStar(require("./ListDevEnvironmentSessionsCommand"), exports);
25
- tslib_1.__exportStar(require("./ListDevEnvironmentsCommand"), exports);
26
- tslib_1.__exportStar(require("./ListEventLogsCommand"), exports);
27
- tslib_1.__exportStar(require("./ListProjectsCommand"), exports);
28
- tslib_1.__exportStar(require("./ListSourceRepositoriesCommand"), exports);
29
- tslib_1.__exportStar(require("./ListSourceRepositoryBranchesCommand"), exports);
30
- tslib_1.__exportStar(require("./ListSpacesCommand"), exports);
31
- tslib_1.__exportStar(require("./ListWorkflowRunsCommand"), exports);
32
- tslib_1.__exportStar(require("./ListWorkflowsCommand"), exports);
33
- tslib_1.__exportStar(require("./StartDevEnvironmentCommand"), exports);
34
- tslib_1.__exportStar(require("./StartDevEnvironmentSessionCommand"), exports);
35
- tslib_1.__exportStar(require("./StartWorkflowRunCommand"), exports);
36
- tslib_1.__exportStar(require("./StopDevEnvironmentCommand"), exports);
37
- tslib_1.__exportStar(require("./StopDevEnvironmentSessionCommand"), exports);
38
- tslib_1.__exportStar(require("./UpdateDevEnvironmentCommand"), exports);
39
- tslib_1.__exportStar(require("./UpdateProjectCommand"), exports);
40
- tslib_1.__exportStar(require("./UpdateSpaceCommand"), exports);
41
- tslib_1.__exportStar(require("./VerifySessionCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,16 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
- const resolveClientEndpointParameters = (options) => {
5
- return {
6
- ...options,
7
- useFipsEndpoint: options.useFipsEndpoint ?? false,
8
- defaultSigningName: "codecatalyst",
9
- };
10
- };
11
- exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
12
- exports.commonParams = {
13
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
14
- Endpoint: { type: "builtInParams", name: "endpoint" },
15
- Region: { type: "builtInParams", name: "region" },
16
- };
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");