@aws-sdk/client-codecatalyst 3.1075.0 → 3.1076.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 +1425 -16
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -36
- package/dist-cjs/endpoint/bdd.js +0 -36
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/CodeCatalystServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -74
- package/dist-cjs/runtimeConfig.browser.js +0 -31
- package/dist-cjs/runtimeConfig.js +0 -54
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1128
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,53 @@
|
|
|
1
|
-
|
|
2
|
-
const {
|
|
3
|
-
const {
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
|
+
const { memoizeIdentityProvider, isIdentityExpired, doesIdentityRequireRefresh, HttpBearerAuthSigner, getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { nodeProvider } = require("@aws-sdk/token-providers");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultCodeCatalystHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
function createSmithyApiHttpBearerAuthHttpAuthOption(authParameters) {
|
|
23
|
+
return {
|
|
24
|
+
schemeId: "smithy.api#httpBearerAuth",
|
|
25
|
+
propertiesExtractor: ({ profile, filepath, configFilepath, ignoreCache, }, context) => ({
|
|
26
|
+
identityProperties: {
|
|
27
|
+
profile,
|
|
28
|
+
filepath,
|
|
29
|
+
configFilepath,
|
|
30
|
+
ignoreCache,
|
|
31
|
+
},
|
|
32
|
+
}),
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
const defaultCodeCatalystHttpAuthSchemeProvider = (authParameters) => {
|
|
36
|
+
const options = [];
|
|
37
|
+
switch (authParameters.operation) {
|
|
38
|
+
default: {
|
|
39
|
+
options.push(createSmithyApiHttpBearerAuthHttpAuthOption());
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
return options;
|
|
43
|
+
};
|
|
44
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
45
|
+
const token = memoizeIdentityProvider(config.token, isIdentityExpired, doesIdentityRequireRefresh);
|
|
46
|
+
return Object.assign(config, {
|
|
47
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
48
|
+
token,
|
|
49
|
+
});
|
|
50
|
+
};
|
|
19
51
|
|
|
20
52
|
const resolveClientEndpointParameters = (options) => {
|
|
21
53
|
return Object.assign(options, {
|
|
@@ -29,6 +61,1225 @@ const commonParams = {
|
|
|
29
61
|
Region: { type: "builtInParams", name: "region" },
|
|
30
62
|
};
|
|
31
63
|
|
|
64
|
+
var version = "3.1075.0";
|
|
65
|
+
var packageInfo = {
|
|
66
|
+
version: version};
|
|
67
|
+
|
|
68
|
+
const a = true, b = "isSet", c = "aws.partition", d = (n) => "PartitionResult_ssa_" + n + "", e = "booleanEquals", f = "getAttr", g = "supportsFIPS", h = (n) => "https://codecatalyst-fips.global.{PartitionResult_ssa_" + n + "#dualStackDnsSuffix}", i = (n) => "https://codecatalyst.global.{PartitionResult_ssa_" + n + "#dualStackDnsSuffix}", j = { "ref": "Endpoint" }, k = {}, l = [{ "ref": "Region" }];
|
|
69
|
+
const _data = {
|
|
70
|
+
conditions: [
|
|
71
|
+
[b, [j]],
|
|
72
|
+
[b, l],
|
|
73
|
+
[c, l, d(2)],
|
|
74
|
+
[c, ["us-west-2"], d(1)],
|
|
75
|
+
[e, [{ ref: "UseFIPS" }, a]],
|
|
76
|
+
[e, [{ fn: f, argv: [{ ref: d(1) }, g] }, a]],
|
|
77
|
+
[e, [{ fn: f, argv: [{ ref: d(2) }, g] }, a]]
|
|
78
|
+
],
|
|
79
|
+
results: [
|
|
80
|
+
[-1],
|
|
81
|
+
[j, k],
|
|
82
|
+
[-1, "Partition does not support FIPS."],
|
|
83
|
+
[h(1), k],
|
|
84
|
+
[i(1), k],
|
|
85
|
+
[h(2), k],
|
|
86
|
+
[i(2), k]
|
|
87
|
+
]
|
|
88
|
+
};
|
|
89
|
+
const root = 2;
|
|
90
|
+
const r = 100_000_000;
|
|
91
|
+
const nodes = new Int32Array([
|
|
92
|
+
-1, 1, -1,
|
|
93
|
+
0, r + 1, 3,
|
|
94
|
+
1, 7, 4,
|
|
95
|
+
3, 5, r + 0,
|
|
96
|
+
4, 6, r + 4,
|
|
97
|
+
5, r + 3, r + 2,
|
|
98
|
+
2, 8, r + 0,
|
|
99
|
+
4, 9, r + 6,
|
|
100
|
+
6, r + 5, r + 2,
|
|
101
|
+
]);
|
|
102
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
103
|
+
|
|
104
|
+
const cache = new EndpointCache({
|
|
105
|
+
size: 50,
|
|
106
|
+
params: ["Endpoint", "Region", "UseFIPS"],
|
|
107
|
+
});
|
|
108
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
109
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
110
|
+
endpointParams: endpointParams,
|
|
111
|
+
logger: context.logger,
|
|
112
|
+
}));
|
|
113
|
+
};
|
|
114
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
115
|
+
|
|
116
|
+
class CodeCatalystServiceException extends ServiceException {
|
|
117
|
+
constructor(options) {
|
|
118
|
+
super(options);
|
|
119
|
+
Object.setPrototypeOf(this, CodeCatalystServiceException.prototype);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
class AccessDeniedException extends CodeCatalystServiceException {
|
|
124
|
+
name = "AccessDeniedException";
|
|
125
|
+
$fault = "client";
|
|
126
|
+
constructor(opts) {
|
|
127
|
+
super({
|
|
128
|
+
name: "AccessDeniedException",
|
|
129
|
+
$fault: "client",
|
|
130
|
+
...opts,
|
|
131
|
+
});
|
|
132
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
class ConflictException extends CodeCatalystServiceException {
|
|
136
|
+
name = "ConflictException";
|
|
137
|
+
$fault = "client";
|
|
138
|
+
constructor(opts) {
|
|
139
|
+
super({
|
|
140
|
+
name: "ConflictException",
|
|
141
|
+
$fault: "client",
|
|
142
|
+
...opts,
|
|
143
|
+
});
|
|
144
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
class ResourceNotFoundException extends CodeCatalystServiceException {
|
|
148
|
+
name = "ResourceNotFoundException";
|
|
149
|
+
$fault = "client";
|
|
150
|
+
constructor(opts) {
|
|
151
|
+
super({
|
|
152
|
+
name: "ResourceNotFoundException",
|
|
153
|
+
$fault: "client",
|
|
154
|
+
...opts,
|
|
155
|
+
});
|
|
156
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
class ServiceQuotaExceededException extends CodeCatalystServiceException {
|
|
160
|
+
name = "ServiceQuotaExceededException";
|
|
161
|
+
$fault = "client";
|
|
162
|
+
constructor(opts) {
|
|
163
|
+
super({
|
|
164
|
+
name: "ServiceQuotaExceededException",
|
|
165
|
+
$fault: "client",
|
|
166
|
+
...opts,
|
|
167
|
+
});
|
|
168
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
class ThrottlingException extends CodeCatalystServiceException {
|
|
172
|
+
name = "ThrottlingException";
|
|
173
|
+
$fault = "client";
|
|
174
|
+
$retryable = {};
|
|
175
|
+
constructor(opts) {
|
|
176
|
+
super({
|
|
177
|
+
name: "ThrottlingException",
|
|
178
|
+
$fault: "client",
|
|
179
|
+
...opts,
|
|
180
|
+
});
|
|
181
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
class ValidationException extends CodeCatalystServiceException {
|
|
185
|
+
name = "ValidationException";
|
|
186
|
+
$fault = "client";
|
|
187
|
+
constructor(opts) {
|
|
188
|
+
super({
|
|
189
|
+
name: "ValidationException",
|
|
190
|
+
$fault: "client",
|
|
191
|
+
...opts,
|
|
192
|
+
});
|
|
193
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
const _ADE = "AccessDeniedException";
|
|
198
|
+
const _ATS = "AccessTokenSecret";
|
|
199
|
+
const _ATSc = "AccessTokenSummary";
|
|
200
|
+
const _ATScc = "AccessTokenSummaries";
|
|
201
|
+
const _CAT = "CreateAccessToken";
|
|
202
|
+
const _CATR = "CreateAccessTokenRequest";
|
|
203
|
+
const _CATRr = "CreateAccessTokenResponse";
|
|
204
|
+
const _CDE = "CreateDevEnvironment";
|
|
205
|
+
const _CDER = "CreateDevEnvironmentRequest";
|
|
206
|
+
const _CDERr = "CreateDevEnvironmentResponse";
|
|
207
|
+
const _CE = "ConflictException";
|
|
208
|
+
const _CP = "CreateProject";
|
|
209
|
+
const _CPR = "CreateProjectRequest";
|
|
210
|
+
const _CPRr = "CreateProjectResponse";
|
|
211
|
+
const _CSR = "CreateSourceRepository";
|
|
212
|
+
const _CSRB = "CreateSourceRepositoryBranch";
|
|
213
|
+
const _CSRBR = "CreateSourceRepositoryBranchRequest";
|
|
214
|
+
const _CSRBRr = "CreateSourceRepositoryBranchResponse";
|
|
215
|
+
const _CSRR = "CreateSourceRepositoryRequest";
|
|
216
|
+
const _CSRRr = "CreateSourceRepositoryResponse";
|
|
217
|
+
const _DAT = "DeleteAccessToken";
|
|
218
|
+
const _DATR = "DeleteAccessTokenRequest";
|
|
219
|
+
const _DATRe = "DeleteAccessTokenResponse";
|
|
220
|
+
const _DDE = "DeleteDevEnvironment";
|
|
221
|
+
const _DDER = "DeleteDevEnvironmentRequest";
|
|
222
|
+
const _DDERe = "DeleteDevEnvironmentResponse";
|
|
223
|
+
const _DEAD = "DevEnvironmentAccessDetails";
|
|
224
|
+
const _DERS = "DevEnvironmentRepositorySummary";
|
|
225
|
+
const _DERSe = "DevEnvironmentRepositorySummaries";
|
|
226
|
+
const _DES = "DevEnvironmentSummary";
|
|
227
|
+
const _DESC = "DevEnvironmentSessionConfiguration";
|
|
228
|
+
const _DESL = "DevEnvironmentSummaryList";
|
|
229
|
+
const _DESS = "DevEnvironmentSessionSummary";
|
|
230
|
+
const _DESSL = "DevEnvironmentSessionsSummaryList";
|
|
231
|
+
const _DP = "DeleteProject";
|
|
232
|
+
const _DPR = "DeleteProjectRequest";
|
|
233
|
+
const _DPRe = "DeleteProjectResponse";
|
|
234
|
+
const _DS = "DeleteSpace";
|
|
235
|
+
const _DSR = "DeleteSpaceRequest";
|
|
236
|
+
const _DSRR = "DeleteSourceRepositoryRequest";
|
|
237
|
+
const _DSRRe = "DeleteSourceRepositoryResponse";
|
|
238
|
+
const _DSRe = "DeleteSpaceResponse";
|
|
239
|
+
const _DSRel = "DeleteSourceRepository";
|
|
240
|
+
const _EA = "EmailAddress";
|
|
241
|
+
const _ECSC = "ExecuteCommandSessionConfiguration";
|
|
242
|
+
const _ELE = "EventLogEntry";
|
|
243
|
+
const _ELEv = "EventLogEntries";
|
|
244
|
+
const _EP = "EventPayload";
|
|
245
|
+
const _F = "Filter";
|
|
246
|
+
const _Fi = "Filters";
|
|
247
|
+
const _GDE = "GetDevEnvironment";
|
|
248
|
+
const _GDER = "GetDevEnvironmentRequest";
|
|
249
|
+
const _GDERe = "GetDevEnvironmentResponse";
|
|
250
|
+
const _GP = "GetProject";
|
|
251
|
+
const _GPR = "GetProjectRequest";
|
|
252
|
+
const _GPRe = "GetProjectResponse";
|
|
253
|
+
const _GS = "GetSpace";
|
|
254
|
+
const _GSR = "GetSpaceRequest";
|
|
255
|
+
const _GSRCU = "GetSourceRepositoryCloneUrls";
|
|
256
|
+
const _GSRCUR = "GetSourceRepositoryCloneUrlsRequest";
|
|
257
|
+
const _GSRCURe = "GetSourceRepositoryCloneUrlsResponse";
|
|
258
|
+
const _GSRR = "GetSourceRepositoryRequest";
|
|
259
|
+
const _GSRRe = "GetSourceRepositoryResponse";
|
|
260
|
+
const _GSRe = "GetSpaceResponse";
|
|
261
|
+
const _GSRet = "GetSubscriptionRequest";
|
|
262
|
+
const _GSReto = "GetSourceRepository";
|
|
263
|
+
const _GSRetu = "GetSubscriptionResponse";
|
|
264
|
+
const _GSe = "GetSubscription";
|
|
265
|
+
const _GUD = "GetUserDetails";
|
|
266
|
+
const _GUDR = "GetUserDetailsRequest";
|
|
267
|
+
const _GUDRe = "GetUserDetailsResponse";
|
|
268
|
+
const _GW = "GetWorkflow";
|
|
269
|
+
const _GWR = "GetWorkflowRequest";
|
|
270
|
+
const _GWRR = "GetWorkflowRunRequest";
|
|
271
|
+
const _GWRRe = "GetWorkflowRunResponse";
|
|
272
|
+
const _GWRe = "GetWorkflowResponse";
|
|
273
|
+
const _GWRet = "GetWorkflowRun";
|
|
274
|
+
const _I = "Ide";
|
|
275
|
+
const _IC = "IdeConfiguration";
|
|
276
|
+
const _ICL = "IdeConfigurationList";
|
|
277
|
+
const _Id = "Ides";
|
|
278
|
+
const _LAT = "ListAccessTokens";
|
|
279
|
+
const _LATR = "ListAccessTokensRequest";
|
|
280
|
+
const _LATRi = "ListAccessTokensResponse";
|
|
281
|
+
const _LDE = "ListDevEnvironments";
|
|
282
|
+
const _LDER = "ListDevEnvironmentsRequest";
|
|
283
|
+
const _LDERi = "ListDevEnvironmentsResponse";
|
|
284
|
+
const _LDES = "ListDevEnvironmentSessions";
|
|
285
|
+
const _LDESR = "ListDevEnvironmentSessionsRequest";
|
|
286
|
+
const _LDESRi = "ListDevEnvironmentSessionsResponse";
|
|
287
|
+
const _LEL = "ListEventLogs";
|
|
288
|
+
const _LELR = "ListEventLogsRequest";
|
|
289
|
+
const _LELRi = "ListEventLogsResponse";
|
|
290
|
+
const _LP = "ListProjects";
|
|
291
|
+
const _LPR = "ListProjectsRequest";
|
|
292
|
+
const _LPRi = "ListProjectsResponse";
|
|
293
|
+
const _LS = "ListSpaces";
|
|
294
|
+
const _LSR = "ListSpacesRequest";
|
|
295
|
+
const _LSRB = "ListSourceRepositoryBranches";
|
|
296
|
+
const _LSRBI = "ListSourceRepositoryBranchesItem";
|
|
297
|
+
const _LSRBIi = "ListSourceRepositoryBranchesItems";
|
|
298
|
+
const _LSRBR = "ListSourceRepositoryBranchesRequest";
|
|
299
|
+
const _LSRBRi = "ListSourceRepositoryBranchesResponse";
|
|
300
|
+
const _LSRI = "ListSourceRepositoriesItem";
|
|
301
|
+
const _LSRIi = "ListSourceRepositoriesItems";
|
|
302
|
+
const _LSRR = "ListSourceRepositoriesRequest";
|
|
303
|
+
const _LSRRi = "ListSourceRepositoriesResponse";
|
|
304
|
+
const _LSRi = "ListSpacesResponse";
|
|
305
|
+
const _LSRis = "ListSourceRepositories";
|
|
306
|
+
const _LW = "ListWorkflows";
|
|
307
|
+
const _LWR = "ListWorkflowsRequest";
|
|
308
|
+
const _LWRR = "ListWorkflowRunsRequest";
|
|
309
|
+
const _LWRRi = "ListWorkflowRunsResponse";
|
|
310
|
+
const _LWRi = "ListWorkflowsResponse";
|
|
311
|
+
const _LWRis = "ListWorkflowRuns";
|
|
312
|
+
const _PI = "ProjectInformation";
|
|
313
|
+
const _PLF = "ProjectListFilter";
|
|
314
|
+
const _PLFr = "ProjectListFilters";
|
|
315
|
+
const _PS = "PersistentStorage";
|
|
316
|
+
const _PSC = "PersistentStorageConfiguration";
|
|
317
|
+
const _PSr = "ProjectSummary";
|
|
318
|
+
const _PSro = "ProjectSummaries";
|
|
319
|
+
const _RI = "RepositoryInput";
|
|
320
|
+
const _RIe = "RepositoriesInput";
|
|
321
|
+
const _RNFE = "ResourceNotFoundException";
|
|
322
|
+
const _SDE = "StartDevEnvironment";
|
|
323
|
+
const _SDER = "StartDevEnvironmentRequest";
|
|
324
|
+
const _SDERt = "StartDevEnvironmentResponse";
|
|
325
|
+
const _SDERto = "StopDevEnvironmentRequest";
|
|
326
|
+
const _SDERtop = "StopDevEnvironmentResponse";
|
|
327
|
+
const _SDES = "StartDevEnvironmentSession";
|
|
328
|
+
const _SDESR = "StartDevEnvironmentSessionRequest";
|
|
329
|
+
const _SDESRt = "StartDevEnvironmentSessionResponse";
|
|
330
|
+
const _SDESRto = "StopDevEnvironmentSessionRequest";
|
|
331
|
+
const _SDESRtop = "StopDevEnvironmentSessionResponse";
|
|
332
|
+
const _SDESt = "StopDevEnvironmentSession";
|
|
333
|
+
const _SDEt = "StopDevEnvironment";
|
|
334
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
335
|
+
const _SS = "SensitiveString";
|
|
336
|
+
const _SSp = "SpaceSummary";
|
|
337
|
+
const _SSpa = "SpaceSummaries";
|
|
338
|
+
const _SWR = "StartWorkflowRun";
|
|
339
|
+
const _SWRR = "StartWorkflowRunRequest";
|
|
340
|
+
const _SWRRt = "StartWorkflowRunResponse";
|
|
341
|
+
const _TE = "ThrottlingException";
|
|
342
|
+
const _UDE = "UpdateDevEnvironment";
|
|
343
|
+
const _UDER = "UpdateDevEnvironmentRequest";
|
|
344
|
+
const _UDERp = "UpdateDevEnvironmentResponse";
|
|
345
|
+
const _UI = "UserIdentity";
|
|
346
|
+
const _UP = "UpdateProject";
|
|
347
|
+
const _UPR = "UpdateProjectRequest";
|
|
348
|
+
const _UPRp = "UpdateProjectResponse";
|
|
349
|
+
const _US = "UpdateSpace";
|
|
350
|
+
const _USR = "UpdateSpaceRequest";
|
|
351
|
+
const _USRp = "UpdateSpaceResponse";
|
|
352
|
+
const _VE = "ValidationException";
|
|
353
|
+
const _VS = "VerifySession";
|
|
354
|
+
const _VSR = "VerifySessionResponse";
|
|
355
|
+
const _WD = "WorkflowDefinition";
|
|
356
|
+
const _WDS = "WorkflowDefinitionSummary";
|
|
357
|
+
const _WRS = "WorkflowRunSummary";
|
|
358
|
+
const _WRSC = "WorkflowRunSortCriteria";
|
|
359
|
+
const _WRSCL = "WorkflowRunSortCriteriaList";
|
|
360
|
+
const _WRSR = "WorkflowRunStatusReason";
|
|
361
|
+
const _WRSRo = "WorkflowRunStatusReasons";
|
|
362
|
+
const _WRSo = "WorkflowRunSummaries";
|
|
363
|
+
const _WS = "WorkflowSummary";
|
|
364
|
+
const _WSC = "WorkflowSortCriteria";
|
|
365
|
+
const _WSCL = "WorkflowSortCriteriaList";
|
|
366
|
+
const _WSo = "WorkflowSummaries";
|
|
367
|
+
const _a = "alias";
|
|
368
|
+
const _aAI = "awsAccountId";
|
|
369
|
+
const _aAN = "awsAccountName";
|
|
370
|
+
const _aD = "accessDetails";
|
|
371
|
+
const _aTI = "accessTokenId";
|
|
372
|
+
const _ar = "arguments";
|
|
373
|
+
const _bN = "branchName";
|
|
374
|
+
const _c = "client";
|
|
375
|
+
const _cI = "creatorId";
|
|
376
|
+
const _cO = "comparisonOperator";
|
|
377
|
+
const _cT = "clientToken";
|
|
378
|
+
const _cTo = "contentType";
|
|
379
|
+
const _cTr = "createdTime";
|
|
380
|
+
const _co = "command";
|
|
381
|
+
const _d = "description";
|
|
382
|
+
const _dEI = "devEnvironmentId";
|
|
383
|
+
const _dN = "displayName";
|
|
384
|
+
const _da = "data";
|
|
385
|
+
const _de = "definition";
|
|
386
|
+
const _e = "error";
|
|
387
|
+
const _eC = "eventCategory";
|
|
388
|
+
const _eCSC = "executeCommandSessionConfiguration";
|
|
389
|
+
const _eCr = "errorCode";
|
|
390
|
+
const _eN = "eventName";
|
|
391
|
+
const _eS = "eventSource";
|
|
392
|
+
const _eT = "expiresTime";
|
|
393
|
+
const _eTn = "endTime";
|
|
394
|
+
const _eTv = "eventType";
|
|
395
|
+
const _eTve = "eventTime";
|
|
396
|
+
const _em = "email";
|
|
397
|
+
const _f = "filters";
|
|
398
|
+
const _h = "https";
|
|
399
|
+
const _hCI = "headCommitId";
|
|
400
|
+
const _hE = "httpError";
|
|
401
|
+
const _hQ = "httpQuery";
|
|
402
|
+
const _ht = "http";
|
|
403
|
+
const _i = "id";
|
|
404
|
+
const _iT = "instanceType";
|
|
405
|
+
const _iTM = "inactivityTimeoutMinutes";
|
|
406
|
+
const _id = "ides";
|
|
407
|
+
const _ide = "identity";
|
|
408
|
+
const _it = "items";
|
|
409
|
+
const _k = "key";
|
|
410
|
+
const _lUT = "lastUpdatedTime";
|
|
411
|
+
const _m = "message";
|
|
412
|
+
const _mR = "maxResults";
|
|
413
|
+
const _n = "name";
|
|
414
|
+
const _nT = "nextToken";
|
|
415
|
+
const _oT = "operationType";
|
|
416
|
+
const _p = "path";
|
|
417
|
+
const _pE = "primaryEmail";
|
|
418
|
+
const _pI = "projectInformation";
|
|
419
|
+
const _pIr = "projectId";
|
|
420
|
+
const _pIri = "principalId";
|
|
421
|
+
const _pN = "projectName";
|
|
422
|
+
const _pS = "persistentStorage";
|
|
423
|
+
const _pSST = "pendingSubscriptionStartTime";
|
|
424
|
+
const _pST = "pendingSubscriptionType";
|
|
425
|
+
const _r = "repositories";
|
|
426
|
+
const _rI = "requestId";
|
|
427
|
+
const _rM = "runMode";
|
|
428
|
+
const _rN = "repositoryName";
|
|
429
|
+
const _rNe = "regionName";
|
|
430
|
+
const _rP = "requestPayload";
|
|
431
|
+
const _rPe = "responsePayload";
|
|
432
|
+
const _re = "ref";
|
|
433
|
+
const _ru = "runtime";
|
|
434
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.codecatalyst";
|
|
435
|
+
const _sB = "sortBy";
|
|
436
|
+
const _sBN = "sourceBranchName";
|
|
437
|
+
const _sC = "sessionConfiguration";
|
|
438
|
+
const _sI = "sessionId";
|
|
439
|
+
const _sIA = "sourceIpAddress";
|
|
440
|
+
const _sIGB = "sizeInGiB";
|
|
441
|
+
const _sN = "spaceName";
|
|
442
|
+
const _sR = "statusReason";
|
|
443
|
+
const _sRN = "sourceRepositoryName";
|
|
444
|
+
const _sRt = "statusReasons";
|
|
445
|
+
const _sT = "sessionType";
|
|
446
|
+
const _sTt = "startedTime";
|
|
447
|
+
const _sTta = "startTime";
|
|
448
|
+
const _sTu = "subscriptionType";
|
|
449
|
+
const _sU = "streamUrl";
|
|
450
|
+
const _se = "secret";
|
|
451
|
+
const _st = "status";
|
|
452
|
+
const _tV = "tokenValue";
|
|
453
|
+
const _uA = "userAgent";
|
|
454
|
+
const _uI = "userIdentity";
|
|
455
|
+
const _uIs = "userId";
|
|
456
|
+
const _uN = "userName";
|
|
457
|
+
const _uT = "userType";
|
|
458
|
+
const _v = "verified";
|
|
459
|
+
const _vCN = "vpcConnectionName";
|
|
460
|
+
const _va = "values";
|
|
461
|
+
const _ve = "version";
|
|
462
|
+
const _wI = "workflowId";
|
|
463
|
+
const _wN = "workflowName";
|
|
464
|
+
const n0 = "com.amazonaws.codecatalyst";
|
|
465
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
466
|
+
var CodeCatalystServiceException$ = [-3, _s, "CodeCatalystServiceException", 0, [], []];
|
|
467
|
+
_s_registry.registerError(CodeCatalystServiceException$, CodeCatalystServiceException);
|
|
468
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
469
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
470
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
471
|
+
[_m],
|
|
472
|
+
[0], 1
|
|
473
|
+
];
|
|
474
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
475
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
476
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
477
|
+
[_m],
|
|
478
|
+
[0], 1
|
|
479
|
+
];
|
|
480
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
481
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
482
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
483
|
+
[_m],
|
|
484
|
+
[0], 1
|
|
485
|
+
];
|
|
486
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
487
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
488
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
489
|
+
[_m],
|
|
490
|
+
[0], 1
|
|
491
|
+
];
|
|
492
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
493
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
494
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
495
|
+
[_m],
|
|
496
|
+
[0], 1
|
|
497
|
+
];
|
|
498
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
499
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
500
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
501
|
+
[_m],
|
|
502
|
+
[0], 1
|
|
503
|
+
];
|
|
504
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
505
|
+
const errorTypeRegistries = [
|
|
506
|
+
_s_registry,
|
|
507
|
+
n0_registry,
|
|
508
|
+
];
|
|
509
|
+
var AccessTokenSecret = [0, n0, _ATS, 8, 0];
|
|
510
|
+
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
511
|
+
var AccessTokenSummary$ = [3, n0, _ATSc,
|
|
512
|
+
0,
|
|
513
|
+
[_i, _n, _eT],
|
|
514
|
+
[0, 0, 5], 2
|
|
515
|
+
];
|
|
516
|
+
var CreateAccessTokenRequest$ = [3, n0, _CATR,
|
|
517
|
+
0,
|
|
518
|
+
[_n, _eT],
|
|
519
|
+
[0, 5], 1
|
|
520
|
+
];
|
|
521
|
+
var CreateAccessTokenResponse$ = [3, n0, _CATRr,
|
|
522
|
+
0,
|
|
523
|
+
[_se, _n, _eT, _aTI],
|
|
524
|
+
[[() => AccessTokenSecret, 0], 0, 5, 0], 4
|
|
525
|
+
];
|
|
526
|
+
var CreateDevEnvironmentRequest$ = [3, n0, _CDER,
|
|
527
|
+
0,
|
|
528
|
+
[_sN, _pN, _iT, _pS, _r, _cT, _a, _id, _iTM, _vCN],
|
|
529
|
+
[[0, 1], [0, 1], 0, () => PersistentStorageConfiguration$, () => RepositoriesInput, 0, 0, () => IdeConfigurationList, 1, 0], 4
|
|
530
|
+
];
|
|
531
|
+
var CreateDevEnvironmentResponse$ = [3, n0, _CDERr,
|
|
532
|
+
0,
|
|
533
|
+
[_sN, _pN, _i, _vCN],
|
|
534
|
+
[0, 0, 0, 0], 3
|
|
535
|
+
];
|
|
536
|
+
var CreateProjectRequest$ = [3, n0, _CPR,
|
|
537
|
+
0,
|
|
538
|
+
[_sN, _dN, _d],
|
|
539
|
+
[[0, 1], 0, 0], 2
|
|
540
|
+
];
|
|
541
|
+
var CreateProjectResponse$ = [3, n0, _CPRr,
|
|
542
|
+
0,
|
|
543
|
+
[_n, _sN, _dN, _d],
|
|
544
|
+
[0, 0, 0, 0], 1
|
|
545
|
+
];
|
|
546
|
+
var CreateSourceRepositoryBranchRequest$ = [3, n0, _CSRBR,
|
|
547
|
+
0,
|
|
548
|
+
[_sN, _pN, _sRN, _n, _hCI],
|
|
549
|
+
[[0, 1], [0, 1], [0, 1], [0, 1], 0], 4
|
|
550
|
+
];
|
|
551
|
+
var CreateSourceRepositoryBranchResponse$ = [3, n0, _CSRBRr,
|
|
552
|
+
0,
|
|
553
|
+
[_re, _n, _lUT, _hCI],
|
|
554
|
+
[0, 0, 5, 0]
|
|
555
|
+
];
|
|
556
|
+
var CreateSourceRepositoryRequest$ = [3, n0, _CSRR,
|
|
557
|
+
0,
|
|
558
|
+
[_sN, _pN, _n, _d],
|
|
559
|
+
[[0, 1], [0, 1], [0, 1], 0], 3
|
|
560
|
+
];
|
|
561
|
+
var CreateSourceRepositoryResponse$ = [3, n0, _CSRRr,
|
|
562
|
+
0,
|
|
563
|
+
[_sN, _pN, _n, _d],
|
|
564
|
+
[0, 0, 0, 0], 3
|
|
565
|
+
];
|
|
566
|
+
var DeleteAccessTokenRequest$ = [3, n0, _DATR,
|
|
567
|
+
0,
|
|
568
|
+
[_i],
|
|
569
|
+
[[0, 1]], 1
|
|
570
|
+
];
|
|
571
|
+
var DeleteAccessTokenResponse$ = [3, n0, _DATRe,
|
|
572
|
+
0,
|
|
573
|
+
[],
|
|
574
|
+
[]
|
|
575
|
+
];
|
|
576
|
+
var DeleteDevEnvironmentRequest$ = [3, n0, _DDER,
|
|
577
|
+
0,
|
|
578
|
+
[_sN, _pN, _i],
|
|
579
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
580
|
+
];
|
|
581
|
+
var DeleteDevEnvironmentResponse$ = [3, n0, _DDERe,
|
|
582
|
+
0,
|
|
583
|
+
[_sN, _pN, _i],
|
|
584
|
+
[0, 0, 0], 3
|
|
585
|
+
];
|
|
586
|
+
var DeleteProjectRequest$ = [3, n0, _DPR,
|
|
587
|
+
0,
|
|
588
|
+
[_sN, _n],
|
|
589
|
+
[[0, 1], [0, 1]], 2
|
|
590
|
+
];
|
|
591
|
+
var DeleteProjectResponse$ = [3, n0, _DPRe,
|
|
592
|
+
0,
|
|
593
|
+
[_sN, _n, _dN],
|
|
594
|
+
[0, 0, 0], 2
|
|
595
|
+
];
|
|
596
|
+
var DeleteSourceRepositoryRequest$ = [3, n0, _DSRR,
|
|
597
|
+
0,
|
|
598
|
+
[_sN, _pN, _n],
|
|
599
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
600
|
+
];
|
|
601
|
+
var DeleteSourceRepositoryResponse$ = [3, n0, _DSRRe,
|
|
602
|
+
0,
|
|
603
|
+
[_sN, _pN, _n],
|
|
604
|
+
[0, 0, 0], 3
|
|
605
|
+
];
|
|
606
|
+
var DeleteSpaceRequest$ = [3, n0, _DSR,
|
|
607
|
+
0,
|
|
608
|
+
[_n],
|
|
609
|
+
[[0, 1]], 1
|
|
610
|
+
];
|
|
611
|
+
var DeleteSpaceResponse$ = [3, n0, _DSRe,
|
|
612
|
+
0,
|
|
613
|
+
[_n, _dN],
|
|
614
|
+
[0, 0], 1
|
|
615
|
+
];
|
|
616
|
+
var DevEnvironmentAccessDetails$ = [3, n0, _DEAD,
|
|
617
|
+
8,
|
|
618
|
+
[_sU, _tV],
|
|
619
|
+
[[() => SensitiveString, 0], [() => SensitiveString, 0]], 2
|
|
620
|
+
];
|
|
621
|
+
var DevEnvironmentRepositorySummary$ = [3, n0, _DERS,
|
|
622
|
+
0,
|
|
623
|
+
[_rN, _bN],
|
|
624
|
+
[0, 0], 1
|
|
625
|
+
];
|
|
626
|
+
var DevEnvironmentSessionConfiguration$ = [3, n0, _DESC,
|
|
627
|
+
0,
|
|
628
|
+
[_sT, _eCSC],
|
|
629
|
+
[0, () => ExecuteCommandSessionConfiguration$], 1
|
|
630
|
+
];
|
|
631
|
+
var DevEnvironmentSessionSummary$ = [3, n0, _DESS,
|
|
632
|
+
0,
|
|
633
|
+
[_sN, _pN, _dEI, _sTt, _i],
|
|
634
|
+
[0, 0, 0, 5, 0], 5
|
|
635
|
+
];
|
|
636
|
+
var DevEnvironmentSummary$ = [3, n0, _DES,
|
|
637
|
+
0,
|
|
638
|
+
[_i, _lUT, _cI, _st, _r, _iT, _iTM, _pS, _sN, _pN, _sR, _a, _id, _vCN],
|
|
639
|
+
[0, 5, 0, 0, () => DevEnvironmentRepositorySummaries, 0, 1, () => PersistentStorage$, 0, 0, 0, 0, () => Ides, 0], 8
|
|
640
|
+
];
|
|
641
|
+
var EmailAddress$ = [3, n0, _EA,
|
|
642
|
+
0,
|
|
643
|
+
[_em, _v],
|
|
644
|
+
[0, 2]
|
|
645
|
+
];
|
|
646
|
+
var EventLogEntry$ = [3, n0, _ELE,
|
|
647
|
+
0,
|
|
648
|
+
[_i, _eN, _eTv, _eC, _eS, _eTve, _oT, _uI, _pI, _rI, _rP, _rPe, _eCr, _sIA, _uA],
|
|
649
|
+
[0, 0, 0, 0, 0, 5, 0, () => UserIdentity$, () => ProjectInformation$, 0, () => EventPayload$, () => EventPayload$, 0, 0, 0], 8
|
|
650
|
+
];
|
|
651
|
+
var EventPayload$ = [3, n0, _EP,
|
|
652
|
+
0,
|
|
653
|
+
[_cTo, _da],
|
|
654
|
+
[0, 0]
|
|
655
|
+
];
|
|
656
|
+
var ExecuteCommandSessionConfiguration$ = [3, n0, _ECSC,
|
|
657
|
+
0,
|
|
658
|
+
[_co, _ar],
|
|
659
|
+
[0, 64 | 0], 1
|
|
660
|
+
];
|
|
661
|
+
var Filter$ = [3, n0, _F,
|
|
662
|
+
0,
|
|
663
|
+
[_k, _va, _cO],
|
|
664
|
+
[0, 64 | 0, 0], 2
|
|
665
|
+
];
|
|
666
|
+
var GetDevEnvironmentRequest$ = [3, n0, _GDER,
|
|
667
|
+
0,
|
|
668
|
+
[_sN, _pN, _i],
|
|
669
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
670
|
+
];
|
|
671
|
+
var GetDevEnvironmentResponse$ = [3, n0, _GDERe,
|
|
672
|
+
0,
|
|
673
|
+
[_sN, _pN, _i, _lUT, _cI, _st, _r, _iT, _iTM, _pS, _sR, _a, _id, _vCN],
|
|
674
|
+
[0, 0, 0, 5, 0, 0, () => DevEnvironmentRepositorySummaries, 0, 1, () => PersistentStorage$, 0, 0, () => Ides, 0], 10
|
|
675
|
+
];
|
|
676
|
+
var GetProjectRequest$ = [3, n0, _GPR,
|
|
677
|
+
0,
|
|
678
|
+
[_sN, _n],
|
|
679
|
+
[[0, 1], [0, 1]], 2
|
|
680
|
+
];
|
|
681
|
+
var GetProjectResponse$ = [3, n0, _GPRe,
|
|
682
|
+
0,
|
|
683
|
+
[_n, _sN, _dN, _d],
|
|
684
|
+
[0, 0, 0, 0], 1
|
|
685
|
+
];
|
|
686
|
+
var GetSourceRepositoryCloneUrlsRequest$ = [3, n0, _GSRCUR,
|
|
687
|
+
0,
|
|
688
|
+
[_sN, _pN, _sRN],
|
|
689
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
690
|
+
];
|
|
691
|
+
var GetSourceRepositoryCloneUrlsResponse$ = [3, n0, _GSRCURe,
|
|
692
|
+
0,
|
|
693
|
+
[_h],
|
|
694
|
+
[0], 1
|
|
695
|
+
];
|
|
696
|
+
var GetSourceRepositoryRequest$ = [3, n0, _GSRR,
|
|
697
|
+
0,
|
|
698
|
+
[_sN, _pN, _n],
|
|
699
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
700
|
+
];
|
|
701
|
+
var GetSourceRepositoryResponse$ = [3, n0, _GSRRe,
|
|
702
|
+
0,
|
|
703
|
+
[_sN, _pN, _n, _lUT, _cTr, _d],
|
|
704
|
+
[0, 0, 0, 5, 5, 0], 5
|
|
705
|
+
];
|
|
706
|
+
var GetSpaceRequest$ = [3, n0, _GSR,
|
|
707
|
+
0,
|
|
708
|
+
[_n],
|
|
709
|
+
[[0, 1]], 1
|
|
710
|
+
];
|
|
711
|
+
var GetSpaceResponse$ = [3, n0, _GSRe,
|
|
712
|
+
0,
|
|
713
|
+
[_n, _rNe, _dN, _d],
|
|
714
|
+
[0, 0, 0, 0], 2
|
|
715
|
+
];
|
|
716
|
+
var GetSubscriptionRequest$ = [3, n0, _GSRet,
|
|
717
|
+
0,
|
|
718
|
+
[_sN],
|
|
719
|
+
[[0, 1]], 1
|
|
720
|
+
];
|
|
721
|
+
var GetSubscriptionResponse$ = [3, n0, _GSRetu,
|
|
722
|
+
0,
|
|
723
|
+
[_sTu, _aAN, _pST, _pSST],
|
|
724
|
+
[0, 0, 0, 5]
|
|
725
|
+
];
|
|
726
|
+
var GetUserDetailsRequest$ = [3, n0, _GUDR,
|
|
727
|
+
0,
|
|
728
|
+
[_i, _uN],
|
|
729
|
+
[[0, { [_hQ]: _i }], [0, { [_hQ]: _uN }]]
|
|
730
|
+
];
|
|
731
|
+
var GetUserDetailsResponse$ = [3, n0, _GUDRe,
|
|
732
|
+
0,
|
|
733
|
+
[_uIs, _uN, _dN, _pE, _ve],
|
|
734
|
+
[0, 0, 0, () => EmailAddress$, 0]
|
|
735
|
+
];
|
|
736
|
+
var GetWorkflowRequest$ = [3, n0, _GWR,
|
|
737
|
+
0,
|
|
738
|
+
[_sN, _i, _pN],
|
|
739
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
740
|
+
];
|
|
741
|
+
var GetWorkflowResponse$ = [3, n0, _GWRe,
|
|
742
|
+
0,
|
|
743
|
+
[_sN, _pN, _i, _n, _de, _cTr, _lUT, _rM, _st, _sRN, _sBN],
|
|
744
|
+
[0, 0, 0, 0, () => WorkflowDefinition$, 5, 5, 0, 0, 0, 0], 9
|
|
745
|
+
];
|
|
746
|
+
var GetWorkflowRunRequest$ = [3, n0, _GWRR,
|
|
747
|
+
0,
|
|
748
|
+
[_sN, _i, _pN],
|
|
749
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
750
|
+
];
|
|
751
|
+
var GetWorkflowRunResponse$ = [3, n0, _GWRRe,
|
|
752
|
+
0,
|
|
753
|
+
[_sN, _pN, _i, _wI, _st, _sTta, _lUT, _sRt, _eTn],
|
|
754
|
+
[0, 0, 0, 0, 0, 5, 5, () => WorkflowRunStatusReasons, 5], 7
|
|
755
|
+
];
|
|
756
|
+
var Ide$ = [3, n0, _I,
|
|
757
|
+
0,
|
|
758
|
+
[_ru, _n],
|
|
759
|
+
[0, 0]
|
|
760
|
+
];
|
|
761
|
+
var IdeConfiguration$ = [3, n0, _IC,
|
|
762
|
+
0,
|
|
763
|
+
[_ru, _n],
|
|
764
|
+
[0, 0]
|
|
765
|
+
];
|
|
766
|
+
var ListAccessTokensRequest$ = [3, n0, _LATR,
|
|
767
|
+
0,
|
|
768
|
+
[_mR, _nT],
|
|
769
|
+
[1, 0]
|
|
770
|
+
];
|
|
771
|
+
var ListAccessTokensResponse$ = [3, n0, _LATRi,
|
|
772
|
+
0,
|
|
773
|
+
[_it, _nT],
|
|
774
|
+
[() => AccessTokenSummaries, 0], 1
|
|
775
|
+
];
|
|
776
|
+
var ListDevEnvironmentSessionsRequest$ = [3, n0, _LDESR,
|
|
777
|
+
0,
|
|
778
|
+
[_sN, _pN, _dEI, _nT, _mR],
|
|
779
|
+
[[0, 1], [0, 1], [0, 1], 0, 1], 3
|
|
780
|
+
];
|
|
781
|
+
var ListDevEnvironmentSessionsResponse$ = [3, n0, _LDESRi,
|
|
782
|
+
0,
|
|
783
|
+
[_it, _nT],
|
|
784
|
+
[() => DevEnvironmentSessionsSummaryList, 0], 1
|
|
785
|
+
];
|
|
786
|
+
var ListDevEnvironmentsRequest$ = [3, n0, _LDER,
|
|
787
|
+
0,
|
|
788
|
+
[_sN, _pN, _f, _nT, _mR],
|
|
789
|
+
[[0, 1], 0, () => Filters, 0, 1], 1
|
|
790
|
+
];
|
|
791
|
+
var ListDevEnvironmentsResponse$ = [3, n0, _LDERi,
|
|
792
|
+
0,
|
|
793
|
+
[_it, _nT],
|
|
794
|
+
[() => DevEnvironmentSummaryList, 0], 1
|
|
795
|
+
];
|
|
796
|
+
var ListEventLogsRequest$ = [3, n0, _LELR,
|
|
797
|
+
0,
|
|
798
|
+
[_sN, _sTta, _eTn, _eN, _nT, _mR],
|
|
799
|
+
[[0, 1], 5, 5, 0, 0, 1], 3
|
|
800
|
+
];
|
|
801
|
+
var ListEventLogsResponse$ = [3, n0, _LELRi,
|
|
802
|
+
0,
|
|
803
|
+
[_it, _nT],
|
|
804
|
+
[() => EventLogEntries, 0], 1
|
|
805
|
+
];
|
|
806
|
+
var ListProjectsRequest$ = [3, n0, _LPR,
|
|
807
|
+
0,
|
|
808
|
+
[_sN, _nT, _mR, _f],
|
|
809
|
+
[[0, 1], 0, 1, () => ProjectListFilters], 1
|
|
810
|
+
];
|
|
811
|
+
var ListProjectsResponse$ = [3, n0, _LPRi,
|
|
812
|
+
0,
|
|
813
|
+
[_nT, _it],
|
|
814
|
+
[0, () => ProjectSummaries]
|
|
815
|
+
];
|
|
816
|
+
var ListSourceRepositoriesItem$ = [3, n0, _LSRI,
|
|
817
|
+
0,
|
|
818
|
+
[_i, _n, _lUT, _cTr, _d],
|
|
819
|
+
[0, 0, 5, 5, 0], 4
|
|
820
|
+
];
|
|
821
|
+
var ListSourceRepositoriesRequest$ = [3, n0, _LSRR,
|
|
822
|
+
0,
|
|
823
|
+
[_sN, _pN, _nT, _mR],
|
|
824
|
+
[[0, 1], [0, 1], 0, 1], 2
|
|
825
|
+
];
|
|
826
|
+
var ListSourceRepositoriesResponse$ = [3, n0, _LSRRi,
|
|
827
|
+
0,
|
|
828
|
+
[_it, _nT],
|
|
829
|
+
[() => ListSourceRepositoriesItems, 0]
|
|
830
|
+
];
|
|
831
|
+
var ListSourceRepositoryBranchesItem$ = [3, n0, _LSRBI,
|
|
832
|
+
0,
|
|
833
|
+
[_re, _n, _lUT, _hCI],
|
|
834
|
+
[0, 0, 5, 0]
|
|
835
|
+
];
|
|
836
|
+
var ListSourceRepositoryBranchesRequest$ = [3, n0, _LSRBR,
|
|
837
|
+
0,
|
|
838
|
+
[_sN, _pN, _sRN, _nT, _mR],
|
|
839
|
+
[[0, 1], [0, 1], [0, 1], 0, 1], 3
|
|
840
|
+
];
|
|
841
|
+
var ListSourceRepositoryBranchesResponse$ = [3, n0, _LSRBRi,
|
|
842
|
+
0,
|
|
843
|
+
[_it, _nT],
|
|
844
|
+
[() => ListSourceRepositoryBranchesItems, 0], 1
|
|
845
|
+
];
|
|
846
|
+
var ListSpacesRequest$ = [3, n0, _LSR,
|
|
847
|
+
0,
|
|
848
|
+
[_nT],
|
|
849
|
+
[0]
|
|
850
|
+
];
|
|
851
|
+
var ListSpacesResponse$ = [3, n0, _LSRi,
|
|
852
|
+
0,
|
|
853
|
+
[_nT, _it],
|
|
854
|
+
[0, () => SpaceSummaries]
|
|
855
|
+
];
|
|
856
|
+
var ListWorkflowRunsRequest$ = [3, n0, _LWRR,
|
|
857
|
+
0,
|
|
858
|
+
[_sN, _pN, _wI, _nT, _mR, _sB],
|
|
859
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _wI }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], () => WorkflowRunSortCriteriaList], 2
|
|
860
|
+
];
|
|
861
|
+
var ListWorkflowRunsResponse$ = [3, n0, _LWRRi,
|
|
862
|
+
0,
|
|
863
|
+
[_nT, _it],
|
|
864
|
+
[0, () => WorkflowRunSummaries]
|
|
865
|
+
];
|
|
866
|
+
var ListWorkflowsRequest$ = [3, n0, _LWR,
|
|
867
|
+
0,
|
|
868
|
+
[_sN, _pN, _nT, _mR, _sB],
|
|
869
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], () => WorkflowSortCriteriaList], 2
|
|
870
|
+
];
|
|
871
|
+
var ListWorkflowsResponse$ = [3, n0, _LWRi,
|
|
872
|
+
0,
|
|
873
|
+
[_nT, _it],
|
|
874
|
+
[0, () => WorkflowSummaries]
|
|
875
|
+
];
|
|
876
|
+
var PersistentStorage$ = [3, n0, _PS,
|
|
877
|
+
0,
|
|
878
|
+
[_sIGB],
|
|
879
|
+
[1], 1
|
|
880
|
+
];
|
|
881
|
+
var PersistentStorageConfiguration$ = [3, n0, _PSC,
|
|
882
|
+
0,
|
|
883
|
+
[_sIGB],
|
|
884
|
+
[1], 1
|
|
885
|
+
];
|
|
886
|
+
var ProjectInformation$ = [3, n0, _PI,
|
|
887
|
+
0,
|
|
888
|
+
[_n, _pIr],
|
|
889
|
+
[0, 0]
|
|
890
|
+
];
|
|
891
|
+
var ProjectListFilter$ = [3, n0, _PLF,
|
|
892
|
+
0,
|
|
893
|
+
[_k, _va, _cO],
|
|
894
|
+
[0, 64 | 0, 0], 2
|
|
895
|
+
];
|
|
896
|
+
var ProjectSummary$ = [3, n0, _PSr,
|
|
897
|
+
0,
|
|
898
|
+
[_n, _dN, _d],
|
|
899
|
+
[0, 0, 0], 1
|
|
900
|
+
];
|
|
901
|
+
var RepositoryInput$ = [3, n0, _RI,
|
|
902
|
+
0,
|
|
903
|
+
[_rN, _bN],
|
|
904
|
+
[0, 0], 1
|
|
905
|
+
];
|
|
906
|
+
var SpaceSummary$ = [3, n0, _SSp,
|
|
907
|
+
0,
|
|
908
|
+
[_n, _rNe, _dN, _d],
|
|
909
|
+
[0, 0, 0, 0], 2
|
|
910
|
+
];
|
|
911
|
+
var StartDevEnvironmentRequest$ = [3, n0, _SDER,
|
|
912
|
+
0,
|
|
913
|
+
[_sN, _pN, _i, _id, _iT, _iTM],
|
|
914
|
+
[[0, 1], [0, 1], [0, 1], () => IdeConfigurationList, 0, 1], 3
|
|
915
|
+
];
|
|
916
|
+
var StartDevEnvironmentResponse$ = [3, n0, _SDERt,
|
|
917
|
+
0,
|
|
918
|
+
[_sN, _pN, _i, _st],
|
|
919
|
+
[0, 0, 0, 0], 4
|
|
920
|
+
];
|
|
921
|
+
var StartDevEnvironmentSessionRequest$ = [3, n0, _SDESR,
|
|
922
|
+
0,
|
|
923
|
+
[_sN, _pN, _i, _sC],
|
|
924
|
+
[[0, 1], [0, 1], [0, 1], () => DevEnvironmentSessionConfiguration$], 4
|
|
925
|
+
];
|
|
926
|
+
var StartDevEnvironmentSessionResponse$ = [3, n0, _SDESRt,
|
|
927
|
+
0,
|
|
928
|
+
[_aD, _sN, _pN, _i, _sI],
|
|
929
|
+
[[() => DevEnvironmentAccessDetails$, 0], 0, 0, 0, 0], 4
|
|
930
|
+
];
|
|
931
|
+
var StartWorkflowRunRequest$ = [3, n0, _SWRR,
|
|
932
|
+
0,
|
|
933
|
+
[_sN, _pN, _wI, _cT],
|
|
934
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _wI }], [0, 4]], 3
|
|
935
|
+
];
|
|
936
|
+
var StartWorkflowRunResponse$ = [3, n0, _SWRRt,
|
|
937
|
+
0,
|
|
938
|
+
[_sN, _pN, _i, _wI],
|
|
939
|
+
[0, 0, 0, 0], 4
|
|
940
|
+
];
|
|
941
|
+
var StopDevEnvironmentRequest$ = [3, n0, _SDERto,
|
|
942
|
+
0,
|
|
943
|
+
[_sN, _pN, _i],
|
|
944
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
945
|
+
];
|
|
946
|
+
var StopDevEnvironmentResponse$ = [3, n0, _SDERtop,
|
|
947
|
+
0,
|
|
948
|
+
[_sN, _pN, _i, _st],
|
|
949
|
+
[0, 0, 0, 0], 4
|
|
950
|
+
];
|
|
951
|
+
var StopDevEnvironmentSessionRequest$ = [3, n0, _SDESRto,
|
|
952
|
+
0,
|
|
953
|
+
[_sN, _pN, _i, _sI],
|
|
954
|
+
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
955
|
+
];
|
|
956
|
+
var StopDevEnvironmentSessionResponse$ = [3, n0, _SDESRtop,
|
|
957
|
+
0,
|
|
958
|
+
[_sN, _pN, _i, _sI],
|
|
959
|
+
[0, 0, 0, 0], 4
|
|
960
|
+
];
|
|
961
|
+
var UpdateDevEnvironmentRequest$ = [3, n0, _UDER,
|
|
962
|
+
0,
|
|
963
|
+
[_sN, _pN, _i, _a, _id, _iT, _iTM, _cT],
|
|
964
|
+
[[0, 1], [0, 1], [0, 1], 0, () => IdeConfigurationList, 0, 1, 0], 3
|
|
965
|
+
];
|
|
966
|
+
var UpdateDevEnvironmentResponse$ = [3, n0, _UDERp,
|
|
967
|
+
0,
|
|
968
|
+
[_i, _sN, _pN, _a, _id, _iT, _iTM, _cT],
|
|
969
|
+
[0, 0, 0, 0, () => IdeConfigurationList, 0, 1, 0], 3
|
|
970
|
+
];
|
|
971
|
+
var UpdateProjectRequest$ = [3, n0, _UPR,
|
|
972
|
+
0,
|
|
973
|
+
[_sN, _n, _d],
|
|
974
|
+
[[0, 1], [0, 1], 0], 2
|
|
975
|
+
];
|
|
976
|
+
var UpdateProjectResponse$ = [3, n0, _UPRp,
|
|
977
|
+
0,
|
|
978
|
+
[_sN, _n, _dN, _d],
|
|
979
|
+
[0, 0, 0, 0]
|
|
980
|
+
];
|
|
981
|
+
var UpdateSpaceRequest$ = [3, n0, _USR,
|
|
982
|
+
0,
|
|
983
|
+
[_n, _d],
|
|
984
|
+
[[0, 1], 0], 1
|
|
985
|
+
];
|
|
986
|
+
var UpdateSpaceResponse$ = [3, n0, _USRp,
|
|
987
|
+
0,
|
|
988
|
+
[_n, _dN, _d],
|
|
989
|
+
[0, 0, 0]
|
|
990
|
+
];
|
|
991
|
+
var UserIdentity$ = [3, n0, _UI,
|
|
992
|
+
0,
|
|
993
|
+
[_uT, _pIri, _uN, _aAI],
|
|
994
|
+
[0, 0, 0, 0], 2
|
|
995
|
+
];
|
|
996
|
+
var VerifySessionResponse$ = [3, n0, _VSR,
|
|
997
|
+
0,
|
|
998
|
+
[_ide],
|
|
999
|
+
[0]
|
|
1000
|
+
];
|
|
1001
|
+
var WorkflowDefinition$ = [3, n0, _WD,
|
|
1002
|
+
0,
|
|
1003
|
+
[_p],
|
|
1004
|
+
[0], 1
|
|
1005
|
+
];
|
|
1006
|
+
var WorkflowDefinitionSummary$ = [3, n0, _WDS,
|
|
1007
|
+
0,
|
|
1008
|
+
[_p],
|
|
1009
|
+
[0], 1
|
|
1010
|
+
];
|
|
1011
|
+
var WorkflowRunSortCriteria$ = [3, n0, _WRSC,
|
|
1012
|
+
0,
|
|
1013
|
+
[],
|
|
1014
|
+
[]
|
|
1015
|
+
];
|
|
1016
|
+
var WorkflowRunStatusReason$ = [3, n0, _WRSR,
|
|
1017
|
+
0,
|
|
1018
|
+
[],
|
|
1019
|
+
[]
|
|
1020
|
+
];
|
|
1021
|
+
var WorkflowRunSummary$ = [3, n0, _WRS,
|
|
1022
|
+
0,
|
|
1023
|
+
[_i, _wI, _wN, _st, _sTta, _lUT, _sRt, _eTn],
|
|
1024
|
+
[0, 0, 0, 0, 5, 5, () => WorkflowRunStatusReasons, 5], 6
|
|
1025
|
+
];
|
|
1026
|
+
var WorkflowSortCriteria$ = [3, n0, _WSC,
|
|
1027
|
+
0,
|
|
1028
|
+
[],
|
|
1029
|
+
[]
|
|
1030
|
+
];
|
|
1031
|
+
var WorkflowSummary$ = [3, n0, _WS,
|
|
1032
|
+
0,
|
|
1033
|
+
[_i, _n, _sRN, _sBN, _de, _cTr, _lUT, _rM, _st],
|
|
1034
|
+
[0, 0, 0, 0, () => WorkflowDefinitionSummary$, 5, 5, 0, 0], 9
|
|
1035
|
+
];
|
|
1036
|
+
var __Unit = "unit";
|
|
1037
|
+
var AccessTokenSummaries = [1, n0, _ATScc,
|
|
1038
|
+
0, () => AccessTokenSummary$
|
|
1039
|
+
];
|
|
1040
|
+
var DevEnvironmentRepositorySummaries = [1, n0, _DERSe,
|
|
1041
|
+
0, () => DevEnvironmentRepositorySummary$
|
|
1042
|
+
];
|
|
1043
|
+
var DevEnvironmentSessionsSummaryList = [1, n0, _DESSL,
|
|
1044
|
+
0, () => DevEnvironmentSessionSummary$
|
|
1045
|
+
];
|
|
1046
|
+
var DevEnvironmentSummaryList = [1, n0, _DESL,
|
|
1047
|
+
0, () => DevEnvironmentSummary$
|
|
1048
|
+
];
|
|
1049
|
+
var EventLogEntries = [1, n0, _ELEv,
|
|
1050
|
+
0, () => EventLogEntry$
|
|
1051
|
+
];
|
|
1052
|
+
var Filters = [1, n0, _Fi,
|
|
1053
|
+
0, () => Filter$
|
|
1054
|
+
];
|
|
1055
|
+
var IdeConfigurationList = [1, n0, _ICL,
|
|
1056
|
+
0, () => IdeConfiguration$
|
|
1057
|
+
];
|
|
1058
|
+
var Ides = [1, n0, _Id,
|
|
1059
|
+
0, () => Ide$
|
|
1060
|
+
];
|
|
1061
|
+
var ListSourceRepositoriesItems = [1, n0, _LSRIi,
|
|
1062
|
+
0, () => ListSourceRepositoriesItem$
|
|
1063
|
+
];
|
|
1064
|
+
var ListSourceRepositoryBranchesItems = [1, n0, _LSRBIi,
|
|
1065
|
+
0, () => ListSourceRepositoryBranchesItem$
|
|
1066
|
+
];
|
|
1067
|
+
var ProjectListFilters = [1, n0, _PLFr,
|
|
1068
|
+
0, () => ProjectListFilter$
|
|
1069
|
+
];
|
|
1070
|
+
var ProjectSummaries = [1, n0, _PSro,
|
|
1071
|
+
0, () => ProjectSummary$
|
|
1072
|
+
];
|
|
1073
|
+
var RepositoriesInput = [1, n0, _RIe,
|
|
1074
|
+
0, () => RepositoryInput$
|
|
1075
|
+
];
|
|
1076
|
+
var SpaceSummaries = [1, n0, _SSpa,
|
|
1077
|
+
0, () => SpaceSummary$
|
|
1078
|
+
];
|
|
1079
|
+
var WorkflowRunSortCriteriaList = [1, n0, _WRSCL,
|
|
1080
|
+
0, () => WorkflowRunSortCriteria$
|
|
1081
|
+
];
|
|
1082
|
+
var WorkflowRunStatusReasons = [1, n0, _WRSRo,
|
|
1083
|
+
0, () => WorkflowRunStatusReason$
|
|
1084
|
+
];
|
|
1085
|
+
var WorkflowRunSummaries = [1, n0, _WRSo,
|
|
1086
|
+
0, () => WorkflowRunSummary$
|
|
1087
|
+
];
|
|
1088
|
+
var WorkflowSortCriteriaList = [1, n0, _WSCL,
|
|
1089
|
+
0, () => WorkflowSortCriteria$
|
|
1090
|
+
];
|
|
1091
|
+
var WorkflowSummaries = [1, n0, _WSo,
|
|
1092
|
+
0, () => WorkflowSummary$
|
|
1093
|
+
];
|
|
1094
|
+
var CreateAccessToken$ = [9, n0, _CAT,
|
|
1095
|
+
{ [_ht]: ["PUT", "/v1/accessTokens", 201] }, () => CreateAccessTokenRequest$, () => CreateAccessTokenResponse$
|
|
1096
|
+
];
|
|
1097
|
+
var CreateDevEnvironment$ = [9, n0, _CDE,
|
|
1098
|
+
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments", 201] }, () => CreateDevEnvironmentRequest$, () => CreateDevEnvironmentResponse$
|
|
1099
|
+
];
|
|
1100
|
+
var CreateProject$ = [9, n0, _CP,
|
|
1101
|
+
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects", 201] }, () => CreateProjectRequest$, () => CreateProjectResponse$
|
|
1102
|
+
];
|
|
1103
|
+
var CreateSourceRepository$ = [9, n0, _CSR,
|
|
1104
|
+
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}", 201] }, () => CreateSourceRepositoryRequest$, () => CreateSourceRepositoryResponse$
|
|
1105
|
+
];
|
|
1106
|
+
var CreateSourceRepositoryBranch$ = [9, n0, _CSRB,
|
|
1107
|
+
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{sourceRepositoryName}/branches/{name}", 201] }, () => CreateSourceRepositoryBranchRequest$, () => CreateSourceRepositoryBranchResponse$
|
|
1108
|
+
];
|
|
1109
|
+
var DeleteAccessToken$ = [9, n0, _DAT,
|
|
1110
|
+
{ [_ht]: ["DELETE", "/v1/accessTokens/{id}", 200] }, () => DeleteAccessTokenRequest$, () => DeleteAccessTokenResponse$
|
|
1111
|
+
];
|
|
1112
|
+
var DeleteDevEnvironment$ = [9, n0, _DDE,
|
|
1113
|
+
{ [_ht]: ["DELETE", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}", 200] }, () => DeleteDevEnvironmentRequest$, () => DeleteDevEnvironmentResponse$
|
|
1114
|
+
];
|
|
1115
|
+
var DeleteProject$ = [9, n0, _DP,
|
|
1116
|
+
{ [_ht]: ["DELETE", "/v1/spaces/{spaceName}/projects/{name}", 200] }, () => DeleteProjectRequest$, () => DeleteProjectResponse$
|
|
1117
|
+
];
|
|
1118
|
+
var DeleteSourceRepository$ = [9, n0, _DSRel,
|
|
1119
|
+
{ [_ht]: ["DELETE", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}", 200] }, () => DeleteSourceRepositoryRequest$, () => DeleteSourceRepositoryResponse$
|
|
1120
|
+
];
|
|
1121
|
+
var DeleteSpace$ = [9, n0, _DS,
|
|
1122
|
+
{ [_ht]: ["DELETE", "/v1/spaces/{name}", 200] }, () => DeleteSpaceRequest$, () => DeleteSpaceResponse$
|
|
1123
|
+
];
|
|
1124
|
+
var GetDevEnvironment$ = [9, n0, _GDE,
|
|
1125
|
+
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}", 200] }, () => GetDevEnvironmentRequest$, () => GetDevEnvironmentResponse$
|
|
1126
|
+
];
|
|
1127
|
+
var GetProject$ = [9, n0, _GP,
|
|
1128
|
+
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{name}", 200] }, () => GetProjectRequest$, () => GetProjectResponse$
|
|
1129
|
+
];
|
|
1130
|
+
var GetSourceRepository$ = [9, n0, _GSReto,
|
|
1131
|
+
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}", 200] }, () => GetSourceRepositoryRequest$, () => GetSourceRepositoryResponse$
|
|
1132
|
+
];
|
|
1133
|
+
var GetSourceRepositoryCloneUrls$ = [9, n0, _GSRCU,
|
|
1134
|
+
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{sourceRepositoryName}/cloneUrls", 200] }, () => GetSourceRepositoryCloneUrlsRequest$, () => GetSourceRepositoryCloneUrlsResponse$
|
|
1135
|
+
];
|
|
1136
|
+
var GetSpace$ = [9, n0, _GS,
|
|
1137
|
+
{ [_ht]: ["GET", "/v1/spaces/{name}", 200] }, () => GetSpaceRequest$, () => GetSpaceResponse$
|
|
1138
|
+
];
|
|
1139
|
+
var GetSubscription$ = [9, n0, _GSe,
|
|
1140
|
+
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/subscription", 200] }, () => GetSubscriptionRequest$, () => GetSubscriptionResponse$
|
|
1141
|
+
];
|
|
1142
|
+
var GetUserDetails$ = [9, n0, _GUD,
|
|
1143
|
+
{ [_ht]: ["GET", "/userDetails", 200] }, () => GetUserDetailsRequest$, () => GetUserDetailsResponse$
|
|
1144
|
+
];
|
|
1145
|
+
var GetWorkflow$ = [9, n0, _GW,
|
|
1146
|
+
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/workflows/{id}", 200] }, () => GetWorkflowRequest$, () => GetWorkflowResponse$
|
|
1147
|
+
];
|
|
1148
|
+
var GetWorkflowRun$ = [9, n0, _GWRet,
|
|
1149
|
+
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns/{id}", 200] }, () => GetWorkflowRunRequest$, () => GetWorkflowRunResponse$
|
|
1150
|
+
];
|
|
1151
|
+
var ListAccessTokens$ = [9, n0, _LAT,
|
|
1152
|
+
{ [_ht]: ["POST", "/v1/accessTokens", 200] }, () => ListAccessTokensRequest$, () => ListAccessTokensResponse$
|
|
1153
|
+
];
|
|
1154
|
+
var ListDevEnvironments$ = [9, n0, _LDE,
|
|
1155
|
+
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/devEnvironments", 200] }, () => ListDevEnvironmentsRequest$, () => ListDevEnvironmentsResponse$
|
|
1156
|
+
];
|
|
1157
|
+
var ListDevEnvironmentSessions$ = [9, n0, _LDES,
|
|
1158
|
+
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{devEnvironmentId}/sessions", 200] }, () => ListDevEnvironmentSessionsRequest$, () => ListDevEnvironmentSessionsResponse$
|
|
1159
|
+
];
|
|
1160
|
+
var ListEventLogs$ = [9, n0, _LEL,
|
|
1161
|
+
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/eventLogs", 200] }, () => ListEventLogsRequest$, () => ListEventLogsResponse$
|
|
1162
|
+
];
|
|
1163
|
+
var ListProjects$ = [9, n0, _LP,
|
|
1164
|
+
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/projects", 200] }, () => ListProjectsRequest$, () => ListProjectsResponse$
|
|
1165
|
+
];
|
|
1166
|
+
var ListSourceRepositories$ = [9, n0, _LSRis,
|
|
1167
|
+
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories", 200] }, () => ListSourceRepositoriesRequest$, () => ListSourceRepositoriesResponse$
|
|
1168
|
+
];
|
|
1169
|
+
var ListSourceRepositoryBranches$ = [9, n0, _LSRB,
|
|
1170
|
+
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{sourceRepositoryName}/branches", 200] }, () => ListSourceRepositoryBranchesRequest$, () => ListSourceRepositoryBranchesResponse$
|
|
1171
|
+
];
|
|
1172
|
+
var ListSpaces$ = [9, n0, _LS,
|
|
1173
|
+
{ [_ht]: ["POST", "/v1/spaces", 200] }, () => ListSpacesRequest$, () => ListSpacesResponse$
|
|
1174
|
+
];
|
|
1175
|
+
var ListWorkflowRuns$ = [9, n0, _LWRis,
|
|
1176
|
+
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns", 200] }, () => ListWorkflowRunsRequest$, () => ListWorkflowRunsResponse$
|
|
1177
|
+
];
|
|
1178
|
+
var ListWorkflows$ = [9, n0, _LW,
|
|
1179
|
+
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/workflows", 200] }, () => ListWorkflowsRequest$, () => ListWorkflowsResponse$
|
|
1180
|
+
];
|
|
1181
|
+
var StartDevEnvironment$ = [9, n0, _SDE,
|
|
1182
|
+
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/start", 200] }, () => StartDevEnvironmentRequest$, () => StartDevEnvironmentResponse$
|
|
1183
|
+
];
|
|
1184
|
+
var StartDevEnvironmentSession$ = [9, n0, _SDES,
|
|
1185
|
+
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/session", 200] }, () => StartDevEnvironmentSessionRequest$, () => StartDevEnvironmentSessionResponse$
|
|
1186
|
+
];
|
|
1187
|
+
var StartWorkflowRun$ = [9, n0, _SWR,
|
|
1188
|
+
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns", 200] }, () => StartWorkflowRunRequest$, () => StartWorkflowRunResponse$
|
|
1189
|
+
];
|
|
1190
|
+
var StopDevEnvironment$ = [9, n0, _SDEt,
|
|
1191
|
+
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/stop", 200] }, () => StopDevEnvironmentRequest$, () => StopDevEnvironmentResponse$
|
|
1192
|
+
];
|
|
1193
|
+
var StopDevEnvironmentSession$ = [9, n0, _SDESt,
|
|
1194
|
+
{ [_ht]: ["DELETE", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/session/{sessionId}", 200] }, () => StopDevEnvironmentSessionRequest$, () => StopDevEnvironmentSessionResponse$
|
|
1195
|
+
];
|
|
1196
|
+
var UpdateDevEnvironment$ = [9, n0, _UDE,
|
|
1197
|
+
{ [_ht]: ["PATCH", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}", 200] }, () => UpdateDevEnvironmentRequest$, () => UpdateDevEnvironmentResponse$
|
|
1198
|
+
];
|
|
1199
|
+
var UpdateProject$ = [9, n0, _UP,
|
|
1200
|
+
{ [_ht]: ["PATCH", "/v1/spaces/{spaceName}/projects/{name}", 200] }, () => UpdateProjectRequest$, () => UpdateProjectResponse$
|
|
1201
|
+
];
|
|
1202
|
+
var UpdateSpace$ = [9, n0, _US,
|
|
1203
|
+
{ [_ht]: ["PATCH", "/v1/spaces/{name}", 200] }, () => UpdateSpaceRequest$, () => UpdateSpaceResponse$
|
|
1204
|
+
];
|
|
1205
|
+
var VerifySession$ = [9, n0, _VS,
|
|
1206
|
+
{ [_ht]: ["GET", "/session", 200] }, () => __Unit, () => VerifySessionResponse$
|
|
1207
|
+
];
|
|
1208
|
+
|
|
1209
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1210
|
+
return {
|
|
1211
|
+
apiVersion: "2022-09-28",
|
|
1212
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1213
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1214
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1215
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1216
|
+
extensions: config?.extensions ?? [],
|
|
1217
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCodeCatalystHttpAuthSchemeProvider,
|
|
1218
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1219
|
+
{
|
|
1220
|
+
schemeId: "smithy.api#httpBearerAuth",
|
|
1221
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#httpBearerAuth"),
|
|
1222
|
+
signer: new HttpBearerAuthSigner(),
|
|
1223
|
+
},
|
|
1224
|
+
],
|
|
1225
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1226
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1227
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1228
|
+
defaultNamespace: "com.amazonaws.codecatalyst",
|
|
1229
|
+
errorTypeRegistries,
|
|
1230
|
+
version: "2022-09-28",
|
|
1231
|
+
serviceTarget: "CodeCatalyst",
|
|
1232
|
+
},
|
|
1233
|
+
serviceId: config?.serviceId ?? "CodeCatalyst",
|
|
1234
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1235
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1236
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1237
|
+
};
|
|
1238
|
+
};
|
|
1239
|
+
|
|
1240
|
+
const getRuntimeConfig = (config) => {
|
|
1241
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1242
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1243
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1244
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1245
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1246
|
+
const loaderConfig = {
|
|
1247
|
+
profile: config?.profile,
|
|
1248
|
+
logger: clientSharedValues.logger,
|
|
1249
|
+
};
|
|
1250
|
+
return {
|
|
1251
|
+
...clientSharedValues,
|
|
1252
|
+
...config,
|
|
1253
|
+
runtime: "node",
|
|
1254
|
+
defaultsMode,
|
|
1255
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1256
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1257
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1258
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1259
|
+
{
|
|
1260
|
+
schemeId: "smithy.api#httpBearerAuth",
|
|
1261
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("smithy.api#httpBearerAuth") || (async (idProps) => {
|
|
1262
|
+
return await nodeProvider(idProps)(idProps);
|
|
1263
|
+
}),
|
|
1264
|
+
signer: new HttpBearerAuthSigner(),
|
|
1265
|
+
},
|
|
1266
|
+
],
|
|
1267
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1268
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1269
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1270
|
+
retryMode: config?.retryMode ??
|
|
1271
|
+
loadConfig({
|
|
1272
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1273
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1274
|
+
}, config),
|
|
1275
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1276
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1277
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1278
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1279
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1280
|
+
};
|
|
1281
|
+
};
|
|
1282
|
+
|
|
32
1283
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
33
1284
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
34
1285
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -705,56 +1956,214 @@ const WorkflowRunStatus = {
|
|
|
705
1956
|
VALIDATING: "VALIDATING",
|
|
706
1957
|
};
|
|
707
1958
|
|
|
1959
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1960
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1961
|
+
exports.AccessTokenSummary$ = AccessTokenSummary$;
|
|
708
1962
|
exports.CodeCatalyst = CodeCatalyst;
|
|
709
1963
|
exports.CodeCatalystClient = CodeCatalystClient;
|
|
1964
|
+
exports.CodeCatalystServiceException = CodeCatalystServiceException;
|
|
1965
|
+
exports.CodeCatalystServiceException$ = CodeCatalystServiceException$;
|
|
710
1966
|
exports.ComparisonOperator = ComparisonOperator;
|
|
1967
|
+
exports.ConflictException = ConflictException;
|
|
1968
|
+
exports.ConflictException$ = ConflictException$;
|
|
1969
|
+
exports.CreateAccessToken$ = CreateAccessToken$;
|
|
711
1970
|
exports.CreateAccessTokenCommand = CreateAccessTokenCommand;
|
|
1971
|
+
exports.CreateAccessTokenRequest$ = CreateAccessTokenRequest$;
|
|
1972
|
+
exports.CreateAccessTokenResponse$ = CreateAccessTokenResponse$;
|
|
1973
|
+
exports.CreateDevEnvironment$ = CreateDevEnvironment$;
|
|
712
1974
|
exports.CreateDevEnvironmentCommand = CreateDevEnvironmentCommand;
|
|
1975
|
+
exports.CreateDevEnvironmentRequest$ = CreateDevEnvironmentRequest$;
|
|
1976
|
+
exports.CreateDevEnvironmentResponse$ = CreateDevEnvironmentResponse$;
|
|
1977
|
+
exports.CreateProject$ = CreateProject$;
|
|
713
1978
|
exports.CreateProjectCommand = CreateProjectCommand;
|
|
1979
|
+
exports.CreateProjectRequest$ = CreateProjectRequest$;
|
|
1980
|
+
exports.CreateProjectResponse$ = CreateProjectResponse$;
|
|
1981
|
+
exports.CreateSourceRepository$ = CreateSourceRepository$;
|
|
1982
|
+
exports.CreateSourceRepositoryBranch$ = CreateSourceRepositoryBranch$;
|
|
714
1983
|
exports.CreateSourceRepositoryBranchCommand = CreateSourceRepositoryBranchCommand;
|
|
1984
|
+
exports.CreateSourceRepositoryBranchRequest$ = CreateSourceRepositoryBranchRequest$;
|
|
1985
|
+
exports.CreateSourceRepositoryBranchResponse$ = CreateSourceRepositoryBranchResponse$;
|
|
715
1986
|
exports.CreateSourceRepositoryCommand = CreateSourceRepositoryCommand;
|
|
1987
|
+
exports.CreateSourceRepositoryRequest$ = CreateSourceRepositoryRequest$;
|
|
1988
|
+
exports.CreateSourceRepositoryResponse$ = CreateSourceRepositoryResponse$;
|
|
1989
|
+
exports.DeleteAccessToken$ = DeleteAccessToken$;
|
|
716
1990
|
exports.DeleteAccessTokenCommand = DeleteAccessTokenCommand;
|
|
1991
|
+
exports.DeleteAccessTokenRequest$ = DeleteAccessTokenRequest$;
|
|
1992
|
+
exports.DeleteAccessTokenResponse$ = DeleteAccessTokenResponse$;
|
|
1993
|
+
exports.DeleteDevEnvironment$ = DeleteDevEnvironment$;
|
|
717
1994
|
exports.DeleteDevEnvironmentCommand = DeleteDevEnvironmentCommand;
|
|
1995
|
+
exports.DeleteDevEnvironmentRequest$ = DeleteDevEnvironmentRequest$;
|
|
1996
|
+
exports.DeleteDevEnvironmentResponse$ = DeleteDevEnvironmentResponse$;
|
|
1997
|
+
exports.DeleteProject$ = DeleteProject$;
|
|
718
1998
|
exports.DeleteProjectCommand = DeleteProjectCommand;
|
|
1999
|
+
exports.DeleteProjectRequest$ = DeleteProjectRequest$;
|
|
2000
|
+
exports.DeleteProjectResponse$ = DeleteProjectResponse$;
|
|
2001
|
+
exports.DeleteSourceRepository$ = DeleteSourceRepository$;
|
|
719
2002
|
exports.DeleteSourceRepositoryCommand = DeleteSourceRepositoryCommand;
|
|
2003
|
+
exports.DeleteSourceRepositoryRequest$ = DeleteSourceRepositoryRequest$;
|
|
2004
|
+
exports.DeleteSourceRepositoryResponse$ = DeleteSourceRepositoryResponse$;
|
|
2005
|
+
exports.DeleteSpace$ = DeleteSpace$;
|
|
720
2006
|
exports.DeleteSpaceCommand = DeleteSpaceCommand;
|
|
2007
|
+
exports.DeleteSpaceRequest$ = DeleteSpaceRequest$;
|
|
2008
|
+
exports.DeleteSpaceResponse$ = DeleteSpaceResponse$;
|
|
2009
|
+
exports.DevEnvironmentAccessDetails$ = DevEnvironmentAccessDetails$;
|
|
2010
|
+
exports.DevEnvironmentRepositorySummary$ = DevEnvironmentRepositorySummary$;
|
|
2011
|
+
exports.DevEnvironmentSessionConfiguration$ = DevEnvironmentSessionConfiguration$;
|
|
2012
|
+
exports.DevEnvironmentSessionSummary$ = DevEnvironmentSessionSummary$;
|
|
721
2013
|
exports.DevEnvironmentSessionType = DevEnvironmentSessionType;
|
|
722
2014
|
exports.DevEnvironmentStatus = DevEnvironmentStatus;
|
|
2015
|
+
exports.DevEnvironmentSummary$ = DevEnvironmentSummary$;
|
|
2016
|
+
exports.EmailAddress$ = EmailAddress$;
|
|
2017
|
+
exports.EventLogEntry$ = EventLogEntry$;
|
|
2018
|
+
exports.EventPayload$ = EventPayload$;
|
|
2019
|
+
exports.ExecuteCommandSessionConfiguration$ = ExecuteCommandSessionConfiguration$;
|
|
2020
|
+
exports.Filter$ = Filter$;
|
|
723
2021
|
exports.FilterKey = FilterKey;
|
|
2022
|
+
exports.GetDevEnvironment$ = GetDevEnvironment$;
|
|
724
2023
|
exports.GetDevEnvironmentCommand = GetDevEnvironmentCommand;
|
|
2024
|
+
exports.GetDevEnvironmentRequest$ = GetDevEnvironmentRequest$;
|
|
2025
|
+
exports.GetDevEnvironmentResponse$ = GetDevEnvironmentResponse$;
|
|
2026
|
+
exports.GetProject$ = GetProject$;
|
|
725
2027
|
exports.GetProjectCommand = GetProjectCommand;
|
|
2028
|
+
exports.GetProjectRequest$ = GetProjectRequest$;
|
|
2029
|
+
exports.GetProjectResponse$ = GetProjectResponse$;
|
|
2030
|
+
exports.GetSourceRepository$ = GetSourceRepository$;
|
|
2031
|
+
exports.GetSourceRepositoryCloneUrls$ = GetSourceRepositoryCloneUrls$;
|
|
726
2032
|
exports.GetSourceRepositoryCloneUrlsCommand = GetSourceRepositoryCloneUrlsCommand;
|
|
2033
|
+
exports.GetSourceRepositoryCloneUrlsRequest$ = GetSourceRepositoryCloneUrlsRequest$;
|
|
2034
|
+
exports.GetSourceRepositoryCloneUrlsResponse$ = GetSourceRepositoryCloneUrlsResponse$;
|
|
727
2035
|
exports.GetSourceRepositoryCommand = GetSourceRepositoryCommand;
|
|
2036
|
+
exports.GetSourceRepositoryRequest$ = GetSourceRepositoryRequest$;
|
|
2037
|
+
exports.GetSourceRepositoryResponse$ = GetSourceRepositoryResponse$;
|
|
2038
|
+
exports.GetSpace$ = GetSpace$;
|
|
728
2039
|
exports.GetSpaceCommand = GetSpaceCommand;
|
|
2040
|
+
exports.GetSpaceRequest$ = GetSpaceRequest$;
|
|
2041
|
+
exports.GetSpaceResponse$ = GetSpaceResponse$;
|
|
2042
|
+
exports.GetSubscription$ = GetSubscription$;
|
|
729
2043
|
exports.GetSubscriptionCommand = GetSubscriptionCommand;
|
|
2044
|
+
exports.GetSubscriptionRequest$ = GetSubscriptionRequest$;
|
|
2045
|
+
exports.GetSubscriptionResponse$ = GetSubscriptionResponse$;
|
|
2046
|
+
exports.GetUserDetails$ = GetUserDetails$;
|
|
730
2047
|
exports.GetUserDetailsCommand = GetUserDetailsCommand;
|
|
2048
|
+
exports.GetUserDetailsRequest$ = GetUserDetailsRequest$;
|
|
2049
|
+
exports.GetUserDetailsResponse$ = GetUserDetailsResponse$;
|
|
2050
|
+
exports.GetWorkflow$ = GetWorkflow$;
|
|
731
2051
|
exports.GetWorkflowCommand = GetWorkflowCommand;
|
|
2052
|
+
exports.GetWorkflowRequest$ = GetWorkflowRequest$;
|
|
2053
|
+
exports.GetWorkflowResponse$ = GetWorkflowResponse$;
|
|
2054
|
+
exports.GetWorkflowRun$ = GetWorkflowRun$;
|
|
732
2055
|
exports.GetWorkflowRunCommand = GetWorkflowRunCommand;
|
|
2056
|
+
exports.GetWorkflowRunRequest$ = GetWorkflowRunRequest$;
|
|
2057
|
+
exports.GetWorkflowRunResponse$ = GetWorkflowRunResponse$;
|
|
2058
|
+
exports.Ide$ = Ide$;
|
|
2059
|
+
exports.IdeConfiguration$ = IdeConfiguration$;
|
|
2060
|
+
exports.ListAccessTokens$ = ListAccessTokens$;
|
|
733
2061
|
exports.ListAccessTokensCommand = ListAccessTokensCommand;
|
|
2062
|
+
exports.ListAccessTokensRequest$ = ListAccessTokensRequest$;
|
|
2063
|
+
exports.ListAccessTokensResponse$ = ListAccessTokensResponse$;
|
|
2064
|
+
exports.ListDevEnvironmentSessions$ = ListDevEnvironmentSessions$;
|
|
734
2065
|
exports.ListDevEnvironmentSessionsCommand = ListDevEnvironmentSessionsCommand;
|
|
2066
|
+
exports.ListDevEnvironmentSessionsRequest$ = ListDevEnvironmentSessionsRequest$;
|
|
2067
|
+
exports.ListDevEnvironmentSessionsResponse$ = ListDevEnvironmentSessionsResponse$;
|
|
2068
|
+
exports.ListDevEnvironments$ = ListDevEnvironments$;
|
|
735
2069
|
exports.ListDevEnvironmentsCommand = ListDevEnvironmentsCommand;
|
|
2070
|
+
exports.ListDevEnvironmentsRequest$ = ListDevEnvironmentsRequest$;
|
|
2071
|
+
exports.ListDevEnvironmentsResponse$ = ListDevEnvironmentsResponse$;
|
|
2072
|
+
exports.ListEventLogs$ = ListEventLogs$;
|
|
736
2073
|
exports.ListEventLogsCommand = ListEventLogsCommand;
|
|
2074
|
+
exports.ListEventLogsRequest$ = ListEventLogsRequest$;
|
|
2075
|
+
exports.ListEventLogsResponse$ = ListEventLogsResponse$;
|
|
2076
|
+
exports.ListProjects$ = ListProjects$;
|
|
737
2077
|
exports.ListProjectsCommand = ListProjectsCommand;
|
|
2078
|
+
exports.ListProjectsRequest$ = ListProjectsRequest$;
|
|
2079
|
+
exports.ListProjectsResponse$ = ListProjectsResponse$;
|
|
2080
|
+
exports.ListSourceRepositories$ = ListSourceRepositories$;
|
|
738
2081
|
exports.ListSourceRepositoriesCommand = ListSourceRepositoriesCommand;
|
|
2082
|
+
exports.ListSourceRepositoriesItem$ = ListSourceRepositoriesItem$;
|
|
2083
|
+
exports.ListSourceRepositoriesRequest$ = ListSourceRepositoriesRequest$;
|
|
2084
|
+
exports.ListSourceRepositoriesResponse$ = ListSourceRepositoriesResponse$;
|
|
2085
|
+
exports.ListSourceRepositoryBranches$ = ListSourceRepositoryBranches$;
|
|
739
2086
|
exports.ListSourceRepositoryBranchesCommand = ListSourceRepositoryBranchesCommand;
|
|
2087
|
+
exports.ListSourceRepositoryBranchesItem$ = ListSourceRepositoryBranchesItem$;
|
|
2088
|
+
exports.ListSourceRepositoryBranchesRequest$ = ListSourceRepositoryBranchesRequest$;
|
|
2089
|
+
exports.ListSourceRepositoryBranchesResponse$ = ListSourceRepositoryBranchesResponse$;
|
|
2090
|
+
exports.ListSpaces$ = ListSpaces$;
|
|
740
2091
|
exports.ListSpacesCommand = ListSpacesCommand;
|
|
2092
|
+
exports.ListSpacesRequest$ = ListSpacesRequest$;
|
|
2093
|
+
exports.ListSpacesResponse$ = ListSpacesResponse$;
|
|
2094
|
+
exports.ListWorkflowRuns$ = ListWorkflowRuns$;
|
|
741
2095
|
exports.ListWorkflowRunsCommand = ListWorkflowRunsCommand;
|
|
2096
|
+
exports.ListWorkflowRunsRequest$ = ListWorkflowRunsRequest$;
|
|
2097
|
+
exports.ListWorkflowRunsResponse$ = ListWorkflowRunsResponse$;
|
|
2098
|
+
exports.ListWorkflows$ = ListWorkflows$;
|
|
742
2099
|
exports.ListWorkflowsCommand = ListWorkflowsCommand;
|
|
2100
|
+
exports.ListWorkflowsRequest$ = ListWorkflowsRequest$;
|
|
2101
|
+
exports.ListWorkflowsResponse$ = ListWorkflowsResponse$;
|
|
743
2102
|
exports.OperationType = OperationType;
|
|
2103
|
+
exports.PersistentStorage$ = PersistentStorage$;
|
|
2104
|
+
exports.PersistentStorageConfiguration$ = PersistentStorageConfiguration$;
|
|
2105
|
+
exports.ProjectInformation$ = ProjectInformation$;
|
|
2106
|
+
exports.ProjectListFilter$ = ProjectListFilter$;
|
|
2107
|
+
exports.ProjectSummary$ = ProjectSummary$;
|
|
2108
|
+
exports.RepositoryInput$ = RepositoryInput$;
|
|
2109
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2110
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2111
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2112
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2113
|
+
exports.SpaceSummary$ = SpaceSummary$;
|
|
2114
|
+
exports.StartDevEnvironment$ = StartDevEnvironment$;
|
|
744
2115
|
exports.StartDevEnvironmentCommand = StartDevEnvironmentCommand;
|
|
2116
|
+
exports.StartDevEnvironmentRequest$ = StartDevEnvironmentRequest$;
|
|
2117
|
+
exports.StartDevEnvironmentResponse$ = StartDevEnvironmentResponse$;
|
|
2118
|
+
exports.StartDevEnvironmentSession$ = StartDevEnvironmentSession$;
|
|
745
2119
|
exports.StartDevEnvironmentSessionCommand = StartDevEnvironmentSessionCommand;
|
|
2120
|
+
exports.StartDevEnvironmentSessionRequest$ = StartDevEnvironmentSessionRequest$;
|
|
2121
|
+
exports.StartDevEnvironmentSessionResponse$ = StartDevEnvironmentSessionResponse$;
|
|
2122
|
+
exports.StartWorkflowRun$ = StartWorkflowRun$;
|
|
746
2123
|
exports.StartWorkflowRunCommand = StartWorkflowRunCommand;
|
|
2124
|
+
exports.StartWorkflowRunRequest$ = StartWorkflowRunRequest$;
|
|
2125
|
+
exports.StartWorkflowRunResponse$ = StartWorkflowRunResponse$;
|
|
2126
|
+
exports.StopDevEnvironment$ = StopDevEnvironment$;
|
|
747
2127
|
exports.StopDevEnvironmentCommand = StopDevEnvironmentCommand;
|
|
2128
|
+
exports.StopDevEnvironmentRequest$ = StopDevEnvironmentRequest$;
|
|
2129
|
+
exports.StopDevEnvironmentResponse$ = StopDevEnvironmentResponse$;
|
|
2130
|
+
exports.StopDevEnvironmentSession$ = StopDevEnvironmentSession$;
|
|
748
2131
|
exports.StopDevEnvironmentSessionCommand = StopDevEnvironmentSessionCommand;
|
|
2132
|
+
exports.StopDevEnvironmentSessionRequest$ = StopDevEnvironmentSessionRequest$;
|
|
2133
|
+
exports.StopDevEnvironmentSessionResponse$ = StopDevEnvironmentSessionResponse$;
|
|
2134
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2135
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2136
|
+
exports.UpdateDevEnvironment$ = UpdateDevEnvironment$;
|
|
749
2137
|
exports.UpdateDevEnvironmentCommand = UpdateDevEnvironmentCommand;
|
|
2138
|
+
exports.UpdateDevEnvironmentRequest$ = UpdateDevEnvironmentRequest$;
|
|
2139
|
+
exports.UpdateDevEnvironmentResponse$ = UpdateDevEnvironmentResponse$;
|
|
2140
|
+
exports.UpdateProject$ = UpdateProject$;
|
|
750
2141
|
exports.UpdateProjectCommand = UpdateProjectCommand;
|
|
2142
|
+
exports.UpdateProjectRequest$ = UpdateProjectRequest$;
|
|
2143
|
+
exports.UpdateProjectResponse$ = UpdateProjectResponse$;
|
|
2144
|
+
exports.UpdateSpace$ = UpdateSpace$;
|
|
751
2145
|
exports.UpdateSpaceCommand = UpdateSpaceCommand;
|
|
2146
|
+
exports.UpdateSpaceRequest$ = UpdateSpaceRequest$;
|
|
2147
|
+
exports.UpdateSpaceResponse$ = UpdateSpaceResponse$;
|
|
2148
|
+
exports.UserIdentity$ = UserIdentity$;
|
|
752
2149
|
exports.UserType = UserType;
|
|
2150
|
+
exports.ValidationException = ValidationException;
|
|
2151
|
+
exports.ValidationException$ = ValidationException$;
|
|
2152
|
+
exports.VerifySession$ = VerifySession$;
|
|
753
2153
|
exports.VerifySessionCommand = VerifySessionCommand;
|
|
2154
|
+
exports.VerifySessionResponse$ = VerifySessionResponse$;
|
|
2155
|
+
exports.WorkflowDefinition$ = WorkflowDefinition$;
|
|
2156
|
+
exports.WorkflowDefinitionSummary$ = WorkflowDefinitionSummary$;
|
|
754
2157
|
exports.WorkflowRunMode = WorkflowRunMode;
|
|
2158
|
+
exports.WorkflowRunSortCriteria$ = WorkflowRunSortCriteria$;
|
|
755
2159
|
exports.WorkflowRunStatus = WorkflowRunStatus;
|
|
2160
|
+
exports.WorkflowRunStatusReason$ = WorkflowRunStatusReason$;
|
|
2161
|
+
exports.WorkflowRunSummary$ = WorkflowRunSummary$;
|
|
2162
|
+
exports.WorkflowSortCriteria$ = WorkflowSortCriteria$;
|
|
756
2163
|
exports.WorkflowStatus = WorkflowStatus;
|
|
2164
|
+
exports.WorkflowSummary$ = WorkflowSummary$;
|
|
757
2165
|
exports._InstanceType = _InstanceType;
|
|
2166
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
758
2167
|
exports.paginateListAccessTokens = paginateListAccessTokens;
|
|
759
2168
|
exports.paginateListDevEnvironmentSessions = paginateListDevEnvironmentSessions;
|
|
760
2169
|
exports.paginateListDevEnvironments = paginateListDevEnvironments;
|