@aws-sdk/client-codecatalyst 3.936.0 → 3.940.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +74 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +63 -0
- package/dist-es/models/models_0.js +1 -63
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +143 -0
- package/dist-types/models/models_0.d.ts +1 -143
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +79 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -79
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -2088,6 +2088,70 @@ const paginateListWorkflowRuns = core.createPaginator(CodeCatalystClient, ListWo
|
|
|
2088
2088
|
|
|
2089
2089
|
const paginateListWorkflows = core.createPaginator(CodeCatalystClient, ListWorkflowsCommand, "nextToken", "nextToken", "maxResults");
|
|
2090
2090
|
|
|
2091
|
+
const OperationType = {
|
|
2092
|
+
MUTATION: "MUTATION",
|
|
2093
|
+
READONLY: "READONLY",
|
|
2094
|
+
};
|
|
2095
|
+
const UserType = {
|
|
2096
|
+
AWS_ACCOUNT: "AWS_ACCOUNT",
|
|
2097
|
+
UNKNOWN: "UNKNOWN",
|
|
2098
|
+
USER: "USER",
|
|
2099
|
+
};
|
|
2100
|
+
const _InstanceType = {
|
|
2101
|
+
DEV_STANDARD1_LARGE: "dev.standard1.large",
|
|
2102
|
+
DEV_STANDARD1_MEDIUM: "dev.standard1.medium",
|
|
2103
|
+
DEV_STANDARD1_SMALL: "dev.standard1.small",
|
|
2104
|
+
DEV_STANDARD1_XLARGE: "dev.standard1.xlarge",
|
|
2105
|
+
};
|
|
2106
|
+
const DevEnvironmentStatus = {
|
|
2107
|
+
DELETED: "DELETED",
|
|
2108
|
+
DELETING: "DELETING",
|
|
2109
|
+
FAILED: "FAILED",
|
|
2110
|
+
PENDING: "PENDING",
|
|
2111
|
+
RUNNING: "RUNNING",
|
|
2112
|
+
STARTING: "STARTING",
|
|
2113
|
+
STOPPED: "STOPPED",
|
|
2114
|
+
STOPPING: "STOPPING",
|
|
2115
|
+
};
|
|
2116
|
+
const DevEnvironmentSessionType = {
|
|
2117
|
+
SSH: "SSH",
|
|
2118
|
+
SSM: "SSM",
|
|
2119
|
+
};
|
|
2120
|
+
const ComparisonOperator = {
|
|
2121
|
+
BEGINS_WITH: "BEGINS_WITH",
|
|
2122
|
+
EQUALS: "EQ",
|
|
2123
|
+
GREATER_THAN: "GT",
|
|
2124
|
+
GREATER_THAN_OR_EQUALS: "GE",
|
|
2125
|
+
LESS_THAN: "LT",
|
|
2126
|
+
LESS_THAN_OR_EQUALS: "LE",
|
|
2127
|
+
};
|
|
2128
|
+
const FilterKey = {
|
|
2129
|
+
HAS_ACCESS_TO: "hasAccessTo",
|
|
2130
|
+
NAME: "name",
|
|
2131
|
+
};
|
|
2132
|
+
const WorkflowRunMode = {
|
|
2133
|
+
PARALLEL: "PARALLEL",
|
|
2134
|
+
QUEUED: "QUEUED",
|
|
2135
|
+
SUPERSEDED: "SUPERSEDED",
|
|
2136
|
+
};
|
|
2137
|
+
const WorkflowStatus = {
|
|
2138
|
+
ACTIVE: "ACTIVE",
|
|
2139
|
+
INVALID: "INVALID",
|
|
2140
|
+
};
|
|
2141
|
+
const WorkflowRunStatus = {
|
|
2142
|
+
ABANDONED: "ABANDONED",
|
|
2143
|
+
CANCELLED: "CANCELLED",
|
|
2144
|
+
FAILED: "FAILED",
|
|
2145
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
2146
|
+
NOT_RUN: "NOT_RUN",
|
|
2147
|
+
PROVISIONING: "PROVISIONING",
|
|
2148
|
+
STOPPED: "STOPPED",
|
|
2149
|
+
STOPPING: "STOPPING",
|
|
2150
|
+
SUCCEEDED: "SUCCEEDED",
|
|
2151
|
+
SUPERSEDED: "SUPERSEDED",
|
|
2152
|
+
VALIDATING: "VALIDATING",
|
|
2153
|
+
};
|
|
2154
|
+
|
|
2091
2155
|
Object.defineProperty(exports, "$Command", {
|
|
2092
2156
|
enumerable: true,
|
|
2093
2157
|
get: function () { return smithyClient.Command; }
|
|
@@ -2100,6 +2164,7 @@ exports.AccessDeniedException = AccessDeniedException$1;
|
|
|
2100
2164
|
exports.CodeCatalyst = CodeCatalyst;
|
|
2101
2165
|
exports.CodeCatalystClient = CodeCatalystClient;
|
|
2102
2166
|
exports.CodeCatalystServiceException = CodeCatalystServiceException$1;
|
|
2167
|
+
exports.ComparisonOperator = ComparisonOperator;
|
|
2103
2168
|
exports.ConflictException = ConflictException$1;
|
|
2104
2169
|
exports.CreateAccessTokenCommand = CreateAccessTokenCommand;
|
|
2105
2170
|
exports.CreateDevEnvironmentCommand = CreateDevEnvironmentCommand;
|
|
@@ -2111,6 +2176,9 @@ exports.DeleteDevEnvironmentCommand = DeleteDevEnvironmentCommand;
|
|
|
2111
2176
|
exports.DeleteProjectCommand = DeleteProjectCommand;
|
|
2112
2177
|
exports.DeleteSourceRepositoryCommand = DeleteSourceRepositoryCommand;
|
|
2113
2178
|
exports.DeleteSpaceCommand = DeleteSpaceCommand;
|
|
2179
|
+
exports.DevEnvironmentSessionType = DevEnvironmentSessionType;
|
|
2180
|
+
exports.DevEnvironmentStatus = DevEnvironmentStatus;
|
|
2181
|
+
exports.FilterKey = FilterKey;
|
|
2114
2182
|
exports.GetDevEnvironmentCommand = GetDevEnvironmentCommand;
|
|
2115
2183
|
exports.GetProjectCommand = GetProjectCommand;
|
|
2116
2184
|
exports.GetSourceRepositoryCloneUrlsCommand = GetSourceRepositoryCloneUrlsCommand;
|
|
@@ -2130,6 +2198,7 @@ exports.ListSourceRepositoryBranchesCommand = ListSourceRepositoryBranchesComman
|
|
|
2130
2198
|
exports.ListSpacesCommand = ListSpacesCommand;
|
|
2131
2199
|
exports.ListWorkflowRunsCommand = ListWorkflowRunsCommand;
|
|
2132
2200
|
exports.ListWorkflowsCommand = ListWorkflowsCommand;
|
|
2201
|
+
exports.OperationType = OperationType;
|
|
2133
2202
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2134
2203
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
2135
2204
|
exports.StartDevEnvironmentCommand = StartDevEnvironmentCommand;
|
|
@@ -2141,8 +2210,13 @@ exports.ThrottlingException = ThrottlingException$1;
|
|
|
2141
2210
|
exports.UpdateDevEnvironmentCommand = UpdateDevEnvironmentCommand;
|
|
2142
2211
|
exports.UpdateProjectCommand = UpdateProjectCommand;
|
|
2143
2212
|
exports.UpdateSpaceCommand = UpdateSpaceCommand;
|
|
2213
|
+
exports.UserType = UserType;
|
|
2144
2214
|
exports.ValidationException = ValidationException$1;
|
|
2145
2215
|
exports.VerifySessionCommand = VerifySessionCommand;
|
|
2216
|
+
exports.WorkflowRunMode = WorkflowRunMode;
|
|
2217
|
+
exports.WorkflowRunStatus = WorkflowRunStatus;
|
|
2218
|
+
exports.WorkflowStatus = WorkflowStatus;
|
|
2219
|
+
exports._InstanceType = _InstanceType;
|
|
2146
2220
|
exports.paginateListAccessTokens = paginateListAccessTokens;
|
|
2147
2221
|
exports.paginateListDevEnvironmentSessions = paginateListDevEnvironmentSessions;
|
|
2148
2222
|
exports.paginateListDevEnvironments = paginateListDevEnvironments;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./CodeCatalystClient";
|
|
|
2
2
|
export * from "./CodeCatalyst";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models/enums";
|
|
5
6
|
export * from "./models/errors";
|
|
6
7
|
export { CodeCatalystServiceException } from "./models/CodeCatalystServiceException";
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
export const OperationType = {
|
|
2
|
+
MUTATION: "MUTATION",
|
|
3
|
+
READONLY: "READONLY",
|
|
4
|
+
};
|
|
5
|
+
export const UserType = {
|
|
6
|
+
AWS_ACCOUNT: "AWS_ACCOUNT",
|
|
7
|
+
UNKNOWN: "UNKNOWN",
|
|
8
|
+
USER: "USER",
|
|
9
|
+
};
|
|
10
|
+
export const _InstanceType = {
|
|
11
|
+
DEV_STANDARD1_LARGE: "dev.standard1.large",
|
|
12
|
+
DEV_STANDARD1_MEDIUM: "dev.standard1.medium",
|
|
13
|
+
DEV_STANDARD1_SMALL: "dev.standard1.small",
|
|
14
|
+
DEV_STANDARD1_XLARGE: "dev.standard1.xlarge",
|
|
15
|
+
};
|
|
16
|
+
export const DevEnvironmentStatus = {
|
|
17
|
+
DELETED: "DELETED",
|
|
18
|
+
DELETING: "DELETING",
|
|
19
|
+
FAILED: "FAILED",
|
|
20
|
+
PENDING: "PENDING",
|
|
21
|
+
RUNNING: "RUNNING",
|
|
22
|
+
STARTING: "STARTING",
|
|
23
|
+
STOPPED: "STOPPED",
|
|
24
|
+
STOPPING: "STOPPING",
|
|
25
|
+
};
|
|
26
|
+
export const DevEnvironmentSessionType = {
|
|
27
|
+
SSH: "SSH",
|
|
28
|
+
SSM: "SSM",
|
|
29
|
+
};
|
|
30
|
+
export const ComparisonOperator = {
|
|
31
|
+
BEGINS_WITH: "BEGINS_WITH",
|
|
32
|
+
EQUALS: "EQ",
|
|
33
|
+
GREATER_THAN: "GT",
|
|
34
|
+
GREATER_THAN_OR_EQUALS: "GE",
|
|
35
|
+
LESS_THAN: "LT",
|
|
36
|
+
LESS_THAN_OR_EQUALS: "LE",
|
|
37
|
+
};
|
|
38
|
+
export const FilterKey = {
|
|
39
|
+
HAS_ACCESS_TO: "hasAccessTo",
|
|
40
|
+
NAME: "name",
|
|
41
|
+
};
|
|
42
|
+
export const WorkflowRunMode = {
|
|
43
|
+
PARALLEL: "PARALLEL",
|
|
44
|
+
QUEUED: "QUEUED",
|
|
45
|
+
SUPERSEDED: "SUPERSEDED",
|
|
46
|
+
};
|
|
47
|
+
export const WorkflowStatus = {
|
|
48
|
+
ACTIVE: "ACTIVE",
|
|
49
|
+
INVALID: "INVALID",
|
|
50
|
+
};
|
|
51
|
+
export const WorkflowRunStatus = {
|
|
52
|
+
ABANDONED: "ABANDONED",
|
|
53
|
+
CANCELLED: "CANCELLED",
|
|
54
|
+
FAILED: "FAILED",
|
|
55
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
56
|
+
NOT_RUN: "NOT_RUN",
|
|
57
|
+
PROVISIONING: "PROVISIONING",
|
|
58
|
+
STOPPED: "STOPPED",
|
|
59
|
+
STOPPING: "STOPPING",
|
|
60
|
+
SUCCEEDED: "SUCCEEDED",
|
|
61
|
+
SUPERSEDED: "SUPERSEDED",
|
|
62
|
+
VALIDATING: "VALIDATING",
|
|
63
|
+
};
|
|
@@ -1,63 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
MUTATION: "MUTATION",
|
|
3
|
-
READONLY: "READONLY",
|
|
4
|
-
};
|
|
5
|
-
export const UserType = {
|
|
6
|
-
AWS_ACCOUNT: "AWS_ACCOUNT",
|
|
7
|
-
UNKNOWN: "UNKNOWN",
|
|
8
|
-
USER: "USER",
|
|
9
|
-
};
|
|
10
|
-
export const _InstanceType = {
|
|
11
|
-
DEV_STANDARD1_LARGE: "dev.standard1.large",
|
|
12
|
-
DEV_STANDARD1_MEDIUM: "dev.standard1.medium",
|
|
13
|
-
DEV_STANDARD1_SMALL: "dev.standard1.small",
|
|
14
|
-
DEV_STANDARD1_XLARGE: "dev.standard1.xlarge",
|
|
15
|
-
};
|
|
16
|
-
export const DevEnvironmentStatus = {
|
|
17
|
-
DELETED: "DELETED",
|
|
18
|
-
DELETING: "DELETING",
|
|
19
|
-
FAILED: "FAILED",
|
|
20
|
-
PENDING: "PENDING",
|
|
21
|
-
RUNNING: "RUNNING",
|
|
22
|
-
STARTING: "STARTING",
|
|
23
|
-
STOPPED: "STOPPED",
|
|
24
|
-
STOPPING: "STOPPING",
|
|
25
|
-
};
|
|
26
|
-
export const DevEnvironmentSessionType = {
|
|
27
|
-
SSH: "SSH",
|
|
28
|
-
SSM: "SSM",
|
|
29
|
-
};
|
|
30
|
-
export const ComparisonOperator = {
|
|
31
|
-
BEGINS_WITH: "BEGINS_WITH",
|
|
32
|
-
EQUALS: "EQ",
|
|
33
|
-
GREATER_THAN: "GT",
|
|
34
|
-
GREATER_THAN_OR_EQUALS: "GE",
|
|
35
|
-
LESS_THAN: "LT",
|
|
36
|
-
LESS_THAN_OR_EQUALS: "LE",
|
|
37
|
-
};
|
|
38
|
-
export const FilterKey = {
|
|
39
|
-
HAS_ACCESS_TO: "hasAccessTo",
|
|
40
|
-
NAME: "name",
|
|
41
|
-
};
|
|
42
|
-
export const WorkflowRunMode = {
|
|
43
|
-
PARALLEL: "PARALLEL",
|
|
44
|
-
QUEUED: "QUEUED",
|
|
45
|
-
SUPERSEDED: "SUPERSEDED",
|
|
46
|
-
};
|
|
47
|
-
export const WorkflowStatus = {
|
|
48
|
-
ACTIVE: "ACTIVE",
|
|
49
|
-
INVALID: "INVALID",
|
|
50
|
-
};
|
|
51
|
-
export const WorkflowRunStatus = {
|
|
52
|
-
ABANDONED: "ABANDONED",
|
|
53
|
-
CANCELLED: "CANCELLED",
|
|
54
|
-
FAILED: "FAILED",
|
|
55
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
56
|
-
NOT_RUN: "NOT_RUN",
|
|
57
|
-
PROVISIONING: "PROVISIONING",
|
|
58
|
-
STOPPED: "STOPPED",
|
|
59
|
-
STOPPING: "STOPPING",
|
|
60
|
-
SUCCEEDED: "SUCCEEDED",
|
|
61
|
-
SUPERSEDED: "SUPERSEDED",
|
|
62
|
-
VALIDATING: "VALIDATING",
|
|
63
|
-
};
|
|
1
|
+
export {};
|
package/dist-types/index.d.ts
CHANGED
|
@@ -184,6 +184,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
184
184
|
export type { CodeCatalystExtensionConfiguration } from "./extensionConfiguration";
|
|
185
185
|
export * from "./commands";
|
|
186
186
|
export * from "./pagination";
|
|
187
|
+
export * from "./models/enums";
|
|
187
188
|
export * from "./models/errors";
|
|
188
189
|
export type * from "./models/models_0";
|
|
189
190
|
export { CodeCatalystServiceException } from "./models/CodeCatalystServiceException";
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const OperationType: {
|
|
6
|
+
readonly MUTATION: "MUTATION";
|
|
7
|
+
readonly READONLY: "READONLY";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const UserType: {
|
|
18
|
+
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
19
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
20
|
+
readonly USER: "USER";
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* @enum
|
|
29
|
+
*/
|
|
30
|
+
export declare const _InstanceType: {
|
|
31
|
+
readonly DEV_STANDARD1_LARGE: "dev.standard1.large";
|
|
32
|
+
readonly DEV_STANDARD1_MEDIUM: "dev.standard1.medium";
|
|
33
|
+
readonly DEV_STANDARD1_SMALL: "dev.standard1.small";
|
|
34
|
+
readonly DEV_STANDARD1_XLARGE: "dev.standard1.xlarge";
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
* @enum
|
|
43
|
+
*/
|
|
44
|
+
export declare const DevEnvironmentStatus: {
|
|
45
|
+
readonly DELETED: "DELETED";
|
|
46
|
+
readonly DELETING: "DELETING";
|
|
47
|
+
readonly FAILED: "FAILED";
|
|
48
|
+
readonly PENDING: "PENDING";
|
|
49
|
+
readonly RUNNING: "RUNNING";
|
|
50
|
+
readonly STARTING: "STARTING";
|
|
51
|
+
readonly STOPPED: "STOPPED";
|
|
52
|
+
readonly STOPPING: "STOPPING";
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
export type DevEnvironmentStatus = (typeof DevEnvironmentStatus)[keyof typeof DevEnvironmentStatus];
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
* @enum
|
|
61
|
+
*/
|
|
62
|
+
export declare const DevEnvironmentSessionType: {
|
|
63
|
+
readonly SSH: "SSH";
|
|
64
|
+
readonly SSM: "SSM";
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
export type DevEnvironmentSessionType = (typeof DevEnvironmentSessionType)[keyof typeof DevEnvironmentSessionType];
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
* @enum
|
|
73
|
+
*/
|
|
74
|
+
export declare const ComparisonOperator: {
|
|
75
|
+
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
76
|
+
readonly EQUALS: "EQ";
|
|
77
|
+
readonly GREATER_THAN: "GT";
|
|
78
|
+
readonly GREATER_THAN_OR_EQUALS: "GE";
|
|
79
|
+
readonly LESS_THAN: "LT";
|
|
80
|
+
readonly LESS_THAN_OR_EQUALS: "LE";
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
* @enum
|
|
89
|
+
*/
|
|
90
|
+
export declare const FilterKey: {
|
|
91
|
+
readonly HAS_ACCESS_TO: "hasAccessTo";
|
|
92
|
+
readonly NAME: "name";
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export type FilterKey = (typeof FilterKey)[keyof typeof FilterKey];
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
* @enum
|
|
101
|
+
*/
|
|
102
|
+
export declare const WorkflowRunMode: {
|
|
103
|
+
readonly PARALLEL: "PARALLEL";
|
|
104
|
+
readonly QUEUED: "QUEUED";
|
|
105
|
+
readonly SUPERSEDED: "SUPERSEDED";
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
export type WorkflowRunMode = (typeof WorkflowRunMode)[keyof typeof WorkflowRunMode];
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
* @enum
|
|
114
|
+
*/
|
|
115
|
+
export declare const WorkflowStatus: {
|
|
116
|
+
readonly ACTIVE: "ACTIVE";
|
|
117
|
+
readonly INVALID: "INVALID";
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
export type WorkflowStatus = (typeof WorkflowStatus)[keyof typeof WorkflowStatus];
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
* @enum
|
|
126
|
+
*/
|
|
127
|
+
export declare const WorkflowRunStatus: {
|
|
128
|
+
readonly ABANDONED: "ABANDONED";
|
|
129
|
+
readonly CANCELLED: "CANCELLED";
|
|
130
|
+
readonly FAILED: "FAILED";
|
|
131
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
132
|
+
readonly NOT_RUN: "NOT_RUN";
|
|
133
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
134
|
+
readonly STOPPED: "STOPPED";
|
|
135
|
+
readonly STOPPING: "STOPPING";
|
|
136
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
137
|
+
readonly SUPERSEDED: "SUPERSEDED";
|
|
138
|
+
readonly VALIDATING: "VALIDATING";
|
|
139
|
+
};
|
|
140
|
+
/**
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
export type WorkflowRunStatus = (typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { _InstanceType, ComparisonOperator, DevEnvironmentSessionType, DevEnvironmentStatus, FilterKey, OperationType, UserType, WorkflowRunMode, WorkflowRunStatus, WorkflowStatus } from "./enums";
|
|
1
2
|
/**
|
|
2
3
|
* @public
|
|
3
4
|
*/
|
|
@@ -225,18 +226,6 @@ export interface ListEventLogsRequest {
|
|
|
225
226
|
*/
|
|
226
227
|
maxResults?: number | undefined;
|
|
227
228
|
}
|
|
228
|
-
/**
|
|
229
|
-
* @public
|
|
230
|
-
* @enum
|
|
231
|
-
*/
|
|
232
|
-
export declare const OperationType: {
|
|
233
|
-
readonly MUTATION: "MUTATION";
|
|
234
|
-
readonly READONLY: "READONLY";
|
|
235
|
-
};
|
|
236
|
-
/**
|
|
237
|
-
* @public
|
|
238
|
-
*/
|
|
239
|
-
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
240
229
|
/**
|
|
241
230
|
* <p>Information about a project in a space.</p>
|
|
242
231
|
* @public
|
|
@@ -269,19 +258,6 @@ export interface EventPayload {
|
|
|
269
258
|
*/
|
|
270
259
|
data?: string | undefined;
|
|
271
260
|
}
|
|
272
|
-
/**
|
|
273
|
-
* @public
|
|
274
|
-
* @enum
|
|
275
|
-
*/
|
|
276
|
-
export declare const UserType: {
|
|
277
|
-
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
278
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
279
|
-
readonly USER: "USER";
|
|
280
|
-
};
|
|
281
|
-
/**
|
|
282
|
-
* @public
|
|
283
|
-
*/
|
|
284
|
-
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
285
261
|
/**
|
|
286
262
|
* <p>Information about a user whose activity is recorded in an event for a space.</p>
|
|
287
263
|
* @public
|
|
@@ -506,20 +482,6 @@ export interface Ide {
|
|
|
506
482
|
*/
|
|
507
483
|
name?: string | undefined;
|
|
508
484
|
}
|
|
509
|
-
/**
|
|
510
|
-
* @public
|
|
511
|
-
* @enum
|
|
512
|
-
*/
|
|
513
|
-
export declare const _InstanceType: {
|
|
514
|
-
readonly DEV_STANDARD1_LARGE: "dev.standard1.large";
|
|
515
|
-
readonly DEV_STANDARD1_MEDIUM: "dev.standard1.medium";
|
|
516
|
-
readonly DEV_STANDARD1_SMALL: "dev.standard1.small";
|
|
517
|
-
readonly DEV_STANDARD1_XLARGE: "dev.standard1.xlarge";
|
|
518
|
-
};
|
|
519
|
-
/**
|
|
520
|
-
* @public
|
|
521
|
-
*/
|
|
522
|
-
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
523
485
|
/**
|
|
524
486
|
* <p>Information about the persistent storage for a Dev Environment.</p>
|
|
525
487
|
* @public
|
|
@@ -551,24 +513,6 @@ export interface DevEnvironmentRepositorySummary {
|
|
|
551
513
|
*/
|
|
552
514
|
branchName?: string | undefined;
|
|
553
515
|
}
|
|
554
|
-
/**
|
|
555
|
-
* @public
|
|
556
|
-
* @enum
|
|
557
|
-
*/
|
|
558
|
-
export declare const DevEnvironmentStatus: {
|
|
559
|
-
readonly DELETED: "DELETED";
|
|
560
|
-
readonly DELETING: "DELETING";
|
|
561
|
-
readonly FAILED: "FAILED";
|
|
562
|
-
readonly PENDING: "PENDING";
|
|
563
|
-
readonly RUNNING: "RUNNING";
|
|
564
|
-
readonly STARTING: "STARTING";
|
|
565
|
-
readonly STOPPED: "STOPPED";
|
|
566
|
-
readonly STOPPING: "STOPPING";
|
|
567
|
-
};
|
|
568
|
-
/**
|
|
569
|
-
* @public
|
|
570
|
-
*/
|
|
571
|
-
export type DevEnvironmentStatus = (typeof DevEnvironmentStatus)[keyof typeof DevEnvironmentStatus];
|
|
572
516
|
/**
|
|
573
517
|
* <p>Information about a Dev Environment. </p>
|
|
574
518
|
* @public
|
|
@@ -1222,18 +1166,6 @@ export interface ExecuteCommandSessionConfiguration {
|
|
|
1222
1166
|
*/
|
|
1223
1167
|
arguments?: string[] | undefined;
|
|
1224
1168
|
}
|
|
1225
|
-
/**
|
|
1226
|
-
* @public
|
|
1227
|
-
* @enum
|
|
1228
|
-
*/
|
|
1229
|
-
export declare const DevEnvironmentSessionType: {
|
|
1230
|
-
readonly SSH: "SSH";
|
|
1231
|
-
readonly SSM: "SSM";
|
|
1232
|
-
};
|
|
1233
|
-
/**
|
|
1234
|
-
* @public
|
|
1235
|
-
*/
|
|
1236
|
-
export type DevEnvironmentSessionType = (typeof DevEnvironmentSessionType)[keyof typeof DevEnvironmentSessionType];
|
|
1237
1169
|
/**
|
|
1238
1170
|
* <p>Information about the configuration of a Dev Environment session.</p>
|
|
1239
1171
|
* @public
|
|
@@ -1555,34 +1487,6 @@ export interface GetProjectResponse {
|
|
|
1555
1487
|
*/
|
|
1556
1488
|
description?: string | undefined;
|
|
1557
1489
|
}
|
|
1558
|
-
/**
|
|
1559
|
-
* @public
|
|
1560
|
-
* @enum
|
|
1561
|
-
*/
|
|
1562
|
-
export declare const ComparisonOperator: {
|
|
1563
|
-
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
1564
|
-
readonly EQUALS: "EQ";
|
|
1565
|
-
readonly GREATER_THAN: "GT";
|
|
1566
|
-
readonly GREATER_THAN_OR_EQUALS: "GE";
|
|
1567
|
-
readonly LESS_THAN: "LT";
|
|
1568
|
-
readonly LESS_THAN_OR_EQUALS: "LE";
|
|
1569
|
-
};
|
|
1570
|
-
/**
|
|
1571
|
-
* @public
|
|
1572
|
-
*/
|
|
1573
|
-
export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
1574
|
-
/**
|
|
1575
|
-
* @public
|
|
1576
|
-
* @enum
|
|
1577
|
-
*/
|
|
1578
|
-
export declare const FilterKey: {
|
|
1579
|
-
readonly HAS_ACCESS_TO: "hasAccessTo";
|
|
1580
|
-
readonly NAME: "name";
|
|
1581
|
-
};
|
|
1582
|
-
/**
|
|
1583
|
-
* @public
|
|
1584
|
-
*/
|
|
1585
|
-
export type FilterKey = (typeof FilterKey)[keyof typeof FilterKey];
|
|
1586
1490
|
/**
|
|
1587
1491
|
* <p>nformation about the filter used to narrow the results returned in a list of projects.</p>
|
|
1588
1492
|
* @public
|
|
@@ -2113,31 +2017,6 @@ export interface WorkflowDefinition {
|
|
|
2113
2017
|
*/
|
|
2114
2018
|
path: string | undefined;
|
|
2115
2019
|
}
|
|
2116
|
-
/**
|
|
2117
|
-
* @public
|
|
2118
|
-
* @enum
|
|
2119
|
-
*/
|
|
2120
|
-
export declare const WorkflowRunMode: {
|
|
2121
|
-
readonly PARALLEL: "PARALLEL";
|
|
2122
|
-
readonly QUEUED: "QUEUED";
|
|
2123
|
-
readonly SUPERSEDED: "SUPERSEDED";
|
|
2124
|
-
};
|
|
2125
|
-
/**
|
|
2126
|
-
* @public
|
|
2127
|
-
*/
|
|
2128
|
-
export type WorkflowRunMode = (typeof WorkflowRunMode)[keyof typeof WorkflowRunMode];
|
|
2129
|
-
/**
|
|
2130
|
-
* @public
|
|
2131
|
-
* @enum
|
|
2132
|
-
*/
|
|
2133
|
-
export declare const WorkflowStatus: {
|
|
2134
|
-
readonly ACTIVE: "ACTIVE";
|
|
2135
|
-
readonly INVALID: "INVALID";
|
|
2136
|
-
};
|
|
2137
|
-
/**
|
|
2138
|
-
* @public
|
|
2139
|
-
*/
|
|
2140
|
-
export type WorkflowStatus = (typeof WorkflowStatus)[keyof typeof WorkflowStatus];
|
|
2141
2020
|
/**
|
|
2142
2021
|
* @public
|
|
2143
2022
|
*/
|
|
@@ -2336,27 +2215,6 @@ export interface GetWorkflowRunRequest {
|
|
|
2336
2215
|
*/
|
|
2337
2216
|
projectName: string | undefined;
|
|
2338
2217
|
}
|
|
2339
|
-
/**
|
|
2340
|
-
* @public
|
|
2341
|
-
* @enum
|
|
2342
|
-
*/
|
|
2343
|
-
export declare const WorkflowRunStatus: {
|
|
2344
|
-
readonly ABANDONED: "ABANDONED";
|
|
2345
|
-
readonly CANCELLED: "CANCELLED";
|
|
2346
|
-
readonly FAILED: "FAILED";
|
|
2347
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2348
|
-
readonly NOT_RUN: "NOT_RUN";
|
|
2349
|
-
readonly PROVISIONING: "PROVISIONING";
|
|
2350
|
-
readonly STOPPED: "STOPPED";
|
|
2351
|
-
readonly STOPPING: "STOPPING";
|
|
2352
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
2353
|
-
readonly SUPERSEDED: "SUPERSEDED";
|
|
2354
|
-
readonly VALIDATING: "VALIDATING";
|
|
2355
|
-
};
|
|
2356
|
-
/**
|
|
2357
|
-
* @public
|
|
2358
|
-
*/
|
|
2359
|
-
export type WorkflowRunStatus = (typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];
|
|
2360
2218
|
/**
|
|
2361
2219
|
* <p>Information about the status of a workflow run.</p>
|
|
2362
2220
|
* @public
|
|
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { CodeCatalystExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./models/enums";
|
|
8
9
|
export * from "./models/errors";
|
|
9
10
|
export * from "./models/models_0";
|
|
10
11
|
export { CodeCatalystServiceException } from "./models/CodeCatalystServiceException";
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
export declare const OperationType: {
|
|
2
|
+
readonly MUTATION: "MUTATION";
|
|
3
|
+
readonly READONLY: "READONLY";
|
|
4
|
+
};
|
|
5
|
+
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
6
|
+
export declare const UserType: {
|
|
7
|
+
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
8
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
9
|
+
readonly USER: "USER";
|
|
10
|
+
};
|
|
11
|
+
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
12
|
+
export declare const _InstanceType: {
|
|
13
|
+
readonly DEV_STANDARD1_LARGE: "dev.standard1.large";
|
|
14
|
+
readonly DEV_STANDARD1_MEDIUM: "dev.standard1.medium";
|
|
15
|
+
readonly DEV_STANDARD1_SMALL: "dev.standard1.small";
|
|
16
|
+
readonly DEV_STANDARD1_XLARGE: "dev.standard1.xlarge";
|
|
17
|
+
};
|
|
18
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
19
|
+
export declare const DevEnvironmentStatus: {
|
|
20
|
+
readonly DELETED: "DELETED";
|
|
21
|
+
readonly DELETING: "DELETING";
|
|
22
|
+
readonly FAILED: "FAILED";
|
|
23
|
+
readonly PENDING: "PENDING";
|
|
24
|
+
readonly RUNNING: "RUNNING";
|
|
25
|
+
readonly STARTING: "STARTING";
|
|
26
|
+
readonly STOPPED: "STOPPED";
|
|
27
|
+
readonly STOPPING: "STOPPING";
|
|
28
|
+
};
|
|
29
|
+
export type DevEnvironmentStatus =
|
|
30
|
+
(typeof DevEnvironmentStatus)[keyof typeof DevEnvironmentStatus];
|
|
31
|
+
export declare const DevEnvironmentSessionType: {
|
|
32
|
+
readonly SSH: "SSH";
|
|
33
|
+
readonly SSM: "SSM";
|
|
34
|
+
};
|
|
35
|
+
export type DevEnvironmentSessionType =
|
|
36
|
+
(typeof DevEnvironmentSessionType)[keyof typeof DevEnvironmentSessionType];
|
|
37
|
+
export declare const ComparisonOperator: {
|
|
38
|
+
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
39
|
+
readonly EQUALS: "EQ";
|
|
40
|
+
readonly GREATER_THAN: "GT";
|
|
41
|
+
readonly GREATER_THAN_OR_EQUALS: "GE";
|
|
42
|
+
readonly LESS_THAN: "LT";
|
|
43
|
+
readonly LESS_THAN_OR_EQUALS: "LE";
|
|
44
|
+
};
|
|
45
|
+
export type ComparisonOperator =
|
|
46
|
+
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
47
|
+
export declare const FilterKey: {
|
|
48
|
+
readonly HAS_ACCESS_TO: "hasAccessTo";
|
|
49
|
+
readonly NAME: "name";
|
|
50
|
+
};
|
|
51
|
+
export type FilterKey = (typeof FilterKey)[keyof typeof FilterKey];
|
|
52
|
+
export declare const WorkflowRunMode: {
|
|
53
|
+
readonly PARALLEL: "PARALLEL";
|
|
54
|
+
readonly QUEUED: "QUEUED";
|
|
55
|
+
readonly SUPERSEDED: "SUPERSEDED";
|
|
56
|
+
};
|
|
57
|
+
export type WorkflowRunMode =
|
|
58
|
+
(typeof WorkflowRunMode)[keyof typeof WorkflowRunMode];
|
|
59
|
+
export declare const WorkflowStatus: {
|
|
60
|
+
readonly ACTIVE: "ACTIVE";
|
|
61
|
+
readonly INVALID: "INVALID";
|
|
62
|
+
};
|
|
63
|
+
export type WorkflowStatus =
|
|
64
|
+
(typeof WorkflowStatus)[keyof typeof WorkflowStatus];
|
|
65
|
+
export declare const WorkflowRunStatus: {
|
|
66
|
+
readonly ABANDONED: "ABANDONED";
|
|
67
|
+
readonly CANCELLED: "CANCELLED";
|
|
68
|
+
readonly FAILED: "FAILED";
|
|
69
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
70
|
+
readonly NOT_RUN: "NOT_RUN";
|
|
71
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
72
|
+
readonly STOPPED: "STOPPED";
|
|
73
|
+
readonly STOPPING: "STOPPING";
|
|
74
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
75
|
+
readonly SUPERSEDED: "SUPERSEDED";
|
|
76
|
+
readonly VALIDATING: "VALIDATING";
|
|
77
|
+
};
|
|
78
|
+
export type WorkflowRunStatus =
|
|
79
|
+
(typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
import {
|
|
2
|
+
_InstanceType,
|
|
3
|
+
ComparisonOperator,
|
|
4
|
+
DevEnvironmentSessionType,
|
|
5
|
+
DevEnvironmentStatus,
|
|
6
|
+
FilterKey,
|
|
7
|
+
OperationType,
|
|
8
|
+
UserType,
|
|
9
|
+
WorkflowRunMode,
|
|
10
|
+
WorkflowRunStatus,
|
|
11
|
+
WorkflowStatus,
|
|
12
|
+
} from "./enums";
|
|
1
13
|
export interface CreateAccessTokenRequest {
|
|
2
14
|
name: string | undefined;
|
|
3
15
|
expiresTime?: Date | undefined;
|
|
@@ -55,11 +67,6 @@ export interface ListEventLogsRequest {
|
|
|
55
67
|
nextToken?: string | undefined;
|
|
56
68
|
maxResults?: number | undefined;
|
|
57
69
|
}
|
|
58
|
-
export declare const OperationType: {
|
|
59
|
-
readonly MUTATION: "MUTATION";
|
|
60
|
-
readonly READONLY: "READONLY";
|
|
61
|
-
};
|
|
62
|
-
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
63
70
|
export interface ProjectInformation {
|
|
64
71
|
name?: string | undefined;
|
|
65
72
|
projectId?: string | undefined;
|
|
@@ -68,12 +75,6 @@ export interface EventPayload {
|
|
|
68
75
|
contentType?: string | undefined;
|
|
69
76
|
data?: string | undefined;
|
|
70
77
|
}
|
|
71
|
-
export declare const UserType: {
|
|
72
|
-
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
73
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
74
|
-
readonly USER: "USER";
|
|
75
|
-
};
|
|
76
|
-
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
77
78
|
export interface UserIdentity {
|
|
78
79
|
userType: UserType | undefined;
|
|
79
80
|
principalId: string | undefined;
|
|
@@ -126,13 +127,6 @@ export interface Ide {
|
|
|
126
127
|
runtime?: string | undefined;
|
|
127
128
|
name?: string | undefined;
|
|
128
129
|
}
|
|
129
|
-
export declare const _InstanceType: {
|
|
130
|
-
readonly DEV_STANDARD1_LARGE: "dev.standard1.large";
|
|
131
|
-
readonly DEV_STANDARD1_MEDIUM: "dev.standard1.medium";
|
|
132
|
-
readonly DEV_STANDARD1_SMALL: "dev.standard1.small";
|
|
133
|
-
readonly DEV_STANDARD1_XLARGE: "dev.standard1.xlarge";
|
|
134
|
-
};
|
|
135
|
-
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
136
130
|
export interface PersistentStorage {
|
|
137
131
|
sizeInGiB: number | undefined;
|
|
138
132
|
}
|
|
@@ -140,18 +134,6 @@ export interface DevEnvironmentRepositorySummary {
|
|
|
140
134
|
repositoryName: string | undefined;
|
|
141
135
|
branchName?: string | undefined;
|
|
142
136
|
}
|
|
143
|
-
export declare const DevEnvironmentStatus: {
|
|
144
|
-
readonly DELETED: "DELETED";
|
|
145
|
-
readonly DELETING: "DELETING";
|
|
146
|
-
readonly FAILED: "FAILED";
|
|
147
|
-
readonly PENDING: "PENDING";
|
|
148
|
-
readonly RUNNING: "RUNNING";
|
|
149
|
-
readonly STARTING: "STARTING";
|
|
150
|
-
readonly STOPPED: "STOPPED";
|
|
151
|
-
readonly STOPPING: "STOPPING";
|
|
152
|
-
};
|
|
153
|
-
export type DevEnvironmentStatus =
|
|
154
|
-
(typeof DevEnvironmentStatus)[keyof typeof DevEnvironmentStatus];
|
|
155
137
|
export interface DevEnvironmentSummary {
|
|
156
138
|
spaceName?: string | undefined;
|
|
157
139
|
projectName?: string | undefined;
|
|
@@ -301,12 +283,6 @@ export interface ExecuteCommandSessionConfiguration {
|
|
|
301
283
|
command: string | undefined;
|
|
302
284
|
arguments?: string[] | undefined;
|
|
303
285
|
}
|
|
304
|
-
export declare const DevEnvironmentSessionType: {
|
|
305
|
-
readonly SSH: "SSH";
|
|
306
|
-
readonly SSM: "SSM";
|
|
307
|
-
};
|
|
308
|
-
export type DevEnvironmentSessionType =
|
|
309
|
-
(typeof DevEnvironmentSessionType)[keyof typeof DevEnvironmentSessionType];
|
|
310
286
|
export interface DevEnvironmentSessionConfiguration {
|
|
311
287
|
sessionType: DevEnvironmentSessionType | undefined;
|
|
312
288
|
executeCommandSessionConfiguration?:
|
|
@@ -383,21 +359,6 @@ export interface GetProjectResponse {
|
|
|
383
359
|
displayName?: string | undefined;
|
|
384
360
|
description?: string | undefined;
|
|
385
361
|
}
|
|
386
|
-
export declare const ComparisonOperator: {
|
|
387
|
-
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
388
|
-
readonly EQUALS: "EQ";
|
|
389
|
-
readonly GREATER_THAN: "GT";
|
|
390
|
-
readonly GREATER_THAN_OR_EQUALS: "GE";
|
|
391
|
-
readonly LESS_THAN: "LT";
|
|
392
|
-
readonly LESS_THAN_OR_EQUALS: "LE";
|
|
393
|
-
};
|
|
394
|
-
export type ComparisonOperator =
|
|
395
|
-
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
396
|
-
export declare const FilterKey: {
|
|
397
|
-
readonly HAS_ACCESS_TO: "hasAccessTo";
|
|
398
|
-
readonly NAME: "name";
|
|
399
|
-
};
|
|
400
|
-
export type FilterKey = (typeof FilterKey)[keyof typeof FilterKey];
|
|
401
362
|
export interface ProjectListFilter {
|
|
402
363
|
key: FilterKey | undefined;
|
|
403
364
|
values: string[] | undefined;
|
|
@@ -527,19 +488,6 @@ export interface GetWorkflowRequest {
|
|
|
527
488
|
export interface WorkflowDefinition {
|
|
528
489
|
path: string | undefined;
|
|
529
490
|
}
|
|
530
|
-
export declare const WorkflowRunMode: {
|
|
531
|
-
readonly PARALLEL: "PARALLEL";
|
|
532
|
-
readonly QUEUED: "QUEUED";
|
|
533
|
-
readonly SUPERSEDED: "SUPERSEDED";
|
|
534
|
-
};
|
|
535
|
-
export type WorkflowRunMode =
|
|
536
|
-
(typeof WorkflowRunMode)[keyof typeof WorkflowRunMode];
|
|
537
|
-
export declare const WorkflowStatus: {
|
|
538
|
-
readonly ACTIVE: "ACTIVE";
|
|
539
|
-
readonly INVALID: "INVALID";
|
|
540
|
-
};
|
|
541
|
-
export type WorkflowStatus =
|
|
542
|
-
(typeof WorkflowStatus)[keyof typeof WorkflowStatus];
|
|
543
491
|
export interface GetWorkflowResponse {
|
|
544
492
|
spaceName: string | undefined;
|
|
545
493
|
projectName: string | undefined;
|
|
@@ -584,21 +532,6 @@ export interface GetWorkflowRunRequest {
|
|
|
584
532
|
id: string | undefined;
|
|
585
533
|
projectName: string | undefined;
|
|
586
534
|
}
|
|
587
|
-
export declare const WorkflowRunStatus: {
|
|
588
|
-
readonly ABANDONED: "ABANDONED";
|
|
589
|
-
readonly CANCELLED: "CANCELLED";
|
|
590
|
-
readonly FAILED: "FAILED";
|
|
591
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
592
|
-
readonly NOT_RUN: "NOT_RUN";
|
|
593
|
-
readonly PROVISIONING: "PROVISIONING";
|
|
594
|
-
readonly STOPPED: "STOPPED";
|
|
595
|
-
readonly STOPPING: "STOPPING";
|
|
596
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
597
|
-
readonly SUPERSEDED: "SUPERSEDED";
|
|
598
|
-
readonly VALIDATING: "VALIDATING";
|
|
599
|
-
};
|
|
600
|
-
export type WorkflowRunStatus =
|
|
601
|
-
(typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];
|
|
602
535
|
export interface WorkflowRunStatusReason {}
|
|
603
536
|
export interface GetWorkflowRunResponse {
|
|
604
537
|
spaceName: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codecatalyst",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codecatalyst Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.940.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-codecatalyst",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
23
|
+
"@aws-sdk/core": "3.940.0",
|
|
24
24
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
25
25
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
27
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
27
|
+
"@aws-sdk/middleware-user-agent": "3.940.0",
|
|
28
28
|
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
29
|
-
"@aws-sdk/token-providers": "3.
|
|
29
|
+
"@aws-sdk/token-providers": "3.940.0",
|
|
30
30
|
"@aws-sdk/types": "3.936.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.940.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|