@aws-sdk/client-codecatalyst 3.987.0 → 3.989.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 +57 -1282
- package/dist-cjs/models/CodeCatalystServiceException.js +12 -0
- package/dist-cjs/models/errors.js +83 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1022 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +44 -38
- package/dist-types/schemas/schemas_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -6
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var CodeCatalystServiceException = require('./models/CodeCatalystServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -108,1093 +111,6 @@ class CodeCatalystClient extends smithyClient.Client {
|
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class CodeCatalystServiceException extends smithyClient.ServiceException {
|
|
112
|
-
constructor(options) {
|
|
113
|
-
super(options);
|
|
114
|
-
Object.setPrototypeOf(this, CodeCatalystServiceException.prototype);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
class AccessDeniedException extends CodeCatalystServiceException {
|
|
119
|
-
name = "AccessDeniedException";
|
|
120
|
-
$fault = "client";
|
|
121
|
-
constructor(opts) {
|
|
122
|
-
super({
|
|
123
|
-
name: "AccessDeniedException",
|
|
124
|
-
$fault: "client",
|
|
125
|
-
...opts,
|
|
126
|
-
});
|
|
127
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
class ConflictException extends CodeCatalystServiceException {
|
|
131
|
-
name = "ConflictException";
|
|
132
|
-
$fault = "client";
|
|
133
|
-
constructor(opts) {
|
|
134
|
-
super({
|
|
135
|
-
name: "ConflictException",
|
|
136
|
-
$fault: "client",
|
|
137
|
-
...opts,
|
|
138
|
-
});
|
|
139
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
class ResourceNotFoundException extends CodeCatalystServiceException {
|
|
143
|
-
name = "ResourceNotFoundException";
|
|
144
|
-
$fault = "client";
|
|
145
|
-
constructor(opts) {
|
|
146
|
-
super({
|
|
147
|
-
name: "ResourceNotFoundException",
|
|
148
|
-
$fault: "client",
|
|
149
|
-
...opts,
|
|
150
|
-
});
|
|
151
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
152
|
-
}
|
|
153
|
-
}
|
|
154
|
-
class ServiceQuotaExceededException extends CodeCatalystServiceException {
|
|
155
|
-
name = "ServiceQuotaExceededException";
|
|
156
|
-
$fault = "client";
|
|
157
|
-
constructor(opts) {
|
|
158
|
-
super({
|
|
159
|
-
name: "ServiceQuotaExceededException",
|
|
160
|
-
$fault: "client",
|
|
161
|
-
...opts,
|
|
162
|
-
});
|
|
163
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
class ThrottlingException extends CodeCatalystServiceException {
|
|
167
|
-
name = "ThrottlingException";
|
|
168
|
-
$fault = "client";
|
|
169
|
-
$retryable = {};
|
|
170
|
-
constructor(opts) {
|
|
171
|
-
super({
|
|
172
|
-
name: "ThrottlingException",
|
|
173
|
-
$fault: "client",
|
|
174
|
-
...opts,
|
|
175
|
-
});
|
|
176
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
class ValidationException extends CodeCatalystServiceException {
|
|
180
|
-
name = "ValidationException";
|
|
181
|
-
$fault = "client";
|
|
182
|
-
constructor(opts) {
|
|
183
|
-
super({
|
|
184
|
-
name: "ValidationException",
|
|
185
|
-
$fault: "client",
|
|
186
|
-
...opts,
|
|
187
|
-
});
|
|
188
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
const _ADE = "AccessDeniedException";
|
|
193
|
-
const _ATS = "AccessTokenSecret";
|
|
194
|
-
const _ATSc = "AccessTokenSummary";
|
|
195
|
-
const _ATScc = "AccessTokenSummaries";
|
|
196
|
-
const _CAT = "CreateAccessToken";
|
|
197
|
-
const _CATR = "CreateAccessTokenRequest";
|
|
198
|
-
const _CATRr = "CreateAccessTokenResponse";
|
|
199
|
-
const _CDE = "CreateDevEnvironment";
|
|
200
|
-
const _CDER = "CreateDevEnvironmentRequest";
|
|
201
|
-
const _CDERr = "CreateDevEnvironmentResponse";
|
|
202
|
-
const _CE = "ConflictException";
|
|
203
|
-
const _CP = "CreateProject";
|
|
204
|
-
const _CPR = "CreateProjectRequest";
|
|
205
|
-
const _CPRr = "CreateProjectResponse";
|
|
206
|
-
const _CSR = "CreateSourceRepository";
|
|
207
|
-
const _CSRB = "CreateSourceRepositoryBranch";
|
|
208
|
-
const _CSRBR = "CreateSourceRepositoryBranchRequest";
|
|
209
|
-
const _CSRBRr = "CreateSourceRepositoryBranchResponse";
|
|
210
|
-
const _CSRR = "CreateSourceRepositoryRequest";
|
|
211
|
-
const _CSRRr = "CreateSourceRepositoryResponse";
|
|
212
|
-
const _DAT = "DeleteAccessToken";
|
|
213
|
-
const _DATR = "DeleteAccessTokenRequest";
|
|
214
|
-
const _DATRe = "DeleteAccessTokenResponse";
|
|
215
|
-
const _DDE = "DeleteDevEnvironment";
|
|
216
|
-
const _DDER = "DeleteDevEnvironmentRequest";
|
|
217
|
-
const _DDERe = "DeleteDevEnvironmentResponse";
|
|
218
|
-
const _DEAD = "DevEnvironmentAccessDetails";
|
|
219
|
-
const _DERS = "DevEnvironmentRepositorySummary";
|
|
220
|
-
const _DERSe = "DevEnvironmentRepositorySummaries";
|
|
221
|
-
const _DES = "DevEnvironmentSummary";
|
|
222
|
-
const _DESC = "DevEnvironmentSessionConfiguration";
|
|
223
|
-
const _DESL = "DevEnvironmentSummaryList";
|
|
224
|
-
const _DESS = "DevEnvironmentSessionSummary";
|
|
225
|
-
const _DESSL = "DevEnvironmentSessionsSummaryList";
|
|
226
|
-
const _DP = "DeleteProject";
|
|
227
|
-
const _DPR = "DeleteProjectRequest";
|
|
228
|
-
const _DPRe = "DeleteProjectResponse";
|
|
229
|
-
const _DS = "DeleteSpace";
|
|
230
|
-
const _DSR = "DeleteSpaceRequest";
|
|
231
|
-
const _DSRR = "DeleteSourceRepositoryRequest";
|
|
232
|
-
const _DSRRe = "DeleteSourceRepositoryResponse";
|
|
233
|
-
const _DSRe = "DeleteSpaceResponse";
|
|
234
|
-
const _DSRel = "DeleteSourceRepository";
|
|
235
|
-
const _EA = "EmailAddress";
|
|
236
|
-
const _ECSC = "ExecuteCommandSessionConfiguration";
|
|
237
|
-
const _ELE = "EventLogEntry";
|
|
238
|
-
const _ELEv = "EventLogEntries";
|
|
239
|
-
const _EP = "EventPayload";
|
|
240
|
-
const _F = "Filter";
|
|
241
|
-
const _Fi = "Filters";
|
|
242
|
-
const _GDE = "GetDevEnvironment";
|
|
243
|
-
const _GDER = "GetDevEnvironmentRequest";
|
|
244
|
-
const _GDERe = "GetDevEnvironmentResponse";
|
|
245
|
-
const _GP = "GetProject";
|
|
246
|
-
const _GPR = "GetProjectRequest";
|
|
247
|
-
const _GPRe = "GetProjectResponse";
|
|
248
|
-
const _GS = "GetSpace";
|
|
249
|
-
const _GSR = "GetSpaceRequest";
|
|
250
|
-
const _GSRCU = "GetSourceRepositoryCloneUrls";
|
|
251
|
-
const _GSRCUR = "GetSourceRepositoryCloneUrlsRequest";
|
|
252
|
-
const _GSRCURe = "GetSourceRepositoryCloneUrlsResponse";
|
|
253
|
-
const _GSRR = "GetSourceRepositoryRequest";
|
|
254
|
-
const _GSRRe = "GetSourceRepositoryResponse";
|
|
255
|
-
const _GSRe = "GetSpaceResponse";
|
|
256
|
-
const _GSRet = "GetSubscriptionRequest";
|
|
257
|
-
const _GSReto = "GetSourceRepository";
|
|
258
|
-
const _GSRetu = "GetSubscriptionResponse";
|
|
259
|
-
const _GSe = "GetSubscription";
|
|
260
|
-
const _GUD = "GetUserDetails";
|
|
261
|
-
const _GUDR = "GetUserDetailsRequest";
|
|
262
|
-
const _GUDRe = "GetUserDetailsResponse";
|
|
263
|
-
const _GW = "GetWorkflow";
|
|
264
|
-
const _GWR = "GetWorkflowRequest";
|
|
265
|
-
const _GWRR = "GetWorkflowRunRequest";
|
|
266
|
-
const _GWRRe = "GetWorkflowRunResponse";
|
|
267
|
-
const _GWRe = "GetWorkflowResponse";
|
|
268
|
-
const _GWRet = "GetWorkflowRun";
|
|
269
|
-
const _I = "Ide";
|
|
270
|
-
const _IC = "IdeConfiguration";
|
|
271
|
-
const _ICL = "IdeConfigurationList";
|
|
272
|
-
const _Id = "Ides";
|
|
273
|
-
const _LAT = "ListAccessTokens";
|
|
274
|
-
const _LATR = "ListAccessTokensRequest";
|
|
275
|
-
const _LATRi = "ListAccessTokensResponse";
|
|
276
|
-
const _LDE = "ListDevEnvironments";
|
|
277
|
-
const _LDER = "ListDevEnvironmentsRequest";
|
|
278
|
-
const _LDERi = "ListDevEnvironmentsResponse";
|
|
279
|
-
const _LDES = "ListDevEnvironmentSessions";
|
|
280
|
-
const _LDESR = "ListDevEnvironmentSessionsRequest";
|
|
281
|
-
const _LDESRi = "ListDevEnvironmentSessionsResponse";
|
|
282
|
-
const _LEL = "ListEventLogs";
|
|
283
|
-
const _LELR = "ListEventLogsRequest";
|
|
284
|
-
const _LELRi = "ListEventLogsResponse";
|
|
285
|
-
const _LP = "ListProjects";
|
|
286
|
-
const _LPR = "ListProjectsRequest";
|
|
287
|
-
const _LPRi = "ListProjectsResponse";
|
|
288
|
-
const _LS = "ListSpaces";
|
|
289
|
-
const _LSR = "ListSpacesRequest";
|
|
290
|
-
const _LSRB = "ListSourceRepositoryBranches";
|
|
291
|
-
const _LSRBI = "ListSourceRepositoryBranchesItem";
|
|
292
|
-
const _LSRBIi = "ListSourceRepositoryBranchesItems";
|
|
293
|
-
const _LSRBR = "ListSourceRepositoryBranchesRequest";
|
|
294
|
-
const _LSRBRi = "ListSourceRepositoryBranchesResponse";
|
|
295
|
-
const _LSRI = "ListSourceRepositoriesItem";
|
|
296
|
-
const _LSRIi = "ListSourceRepositoriesItems";
|
|
297
|
-
const _LSRR = "ListSourceRepositoriesRequest";
|
|
298
|
-
const _LSRRi = "ListSourceRepositoriesResponse";
|
|
299
|
-
const _LSRi = "ListSpacesResponse";
|
|
300
|
-
const _LSRis = "ListSourceRepositories";
|
|
301
|
-
const _LW = "ListWorkflows";
|
|
302
|
-
const _LWR = "ListWorkflowsRequest";
|
|
303
|
-
const _LWRR = "ListWorkflowRunsRequest";
|
|
304
|
-
const _LWRRi = "ListWorkflowRunsResponse";
|
|
305
|
-
const _LWRi = "ListWorkflowsResponse";
|
|
306
|
-
const _LWRis = "ListWorkflowRuns";
|
|
307
|
-
const _PI = "ProjectInformation";
|
|
308
|
-
const _PLF = "ProjectListFilter";
|
|
309
|
-
const _PLFr = "ProjectListFilters";
|
|
310
|
-
const _PS = "PersistentStorage";
|
|
311
|
-
const _PSC = "PersistentStorageConfiguration";
|
|
312
|
-
const _PSr = "ProjectSummary";
|
|
313
|
-
const _PSro = "ProjectSummaries";
|
|
314
|
-
const _RI = "RepositoryInput";
|
|
315
|
-
const _RIe = "RepositoriesInput";
|
|
316
|
-
const _RNFE = "ResourceNotFoundException";
|
|
317
|
-
const _SDE = "StartDevEnvironment";
|
|
318
|
-
const _SDER = "StartDevEnvironmentRequest";
|
|
319
|
-
const _SDERt = "StartDevEnvironmentResponse";
|
|
320
|
-
const _SDERto = "StopDevEnvironmentRequest";
|
|
321
|
-
const _SDERtop = "StopDevEnvironmentResponse";
|
|
322
|
-
const _SDES = "StartDevEnvironmentSession";
|
|
323
|
-
const _SDESR = "StartDevEnvironmentSessionRequest";
|
|
324
|
-
const _SDESRt = "StartDevEnvironmentSessionResponse";
|
|
325
|
-
const _SDESRto = "StopDevEnvironmentSessionRequest";
|
|
326
|
-
const _SDESRtop = "StopDevEnvironmentSessionResponse";
|
|
327
|
-
const _SDESt = "StopDevEnvironmentSession";
|
|
328
|
-
const _SDEt = "StopDevEnvironment";
|
|
329
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
330
|
-
const _SS = "SensitiveString";
|
|
331
|
-
const _SSp = "SpaceSummary";
|
|
332
|
-
const _SSpa = "SpaceSummaries";
|
|
333
|
-
const _SWR = "StartWorkflowRun";
|
|
334
|
-
const _SWRR = "StartWorkflowRunRequest";
|
|
335
|
-
const _SWRRt = "StartWorkflowRunResponse";
|
|
336
|
-
const _TE = "ThrottlingException";
|
|
337
|
-
const _UDE = "UpdateDevEnvironment";
|
|
338
|
-
const _UDER = "UpdateDevEnvironmentRequest";
|
|
339
|
-
const _UDERp = "UpdateDevEnvironmentResponse";
|
|
340
|
-
const _UI = "UserIdentity";
|
|
341
|
-
const _UP = "UpdateProject";
|
|
342
|
-
const _UPR = "UpdateProjectRequest";
|
|
343
|
-
const _UPRp = "UpdateProjectResponse";
|
|
344
|
-
const _US = "UpdateSpace";
|
|
345
|
-
const _USR = "UpdateSpaceRequest";
|
|
346
|
-
const _USRp = "UpdateSpaceResponse";
|
|
347
|
-
const _VE = "ValidationException";
|
|
348
|
-
const _VS = "VerifySession";
|
|
349
|
-
const _VSR = "VerifySessionResponse";
|
|
350
|
-
const _WD = "WorkflowDefinition";
|
|
351
|
-
const _WDS = "WorkflowDefinitionSummary";
|
|
352
|
-
const _WRS = "WorkflowRunSummary";
|
|
353
|
-
const _WRSC = "WorkflowRunSortCriteria";
|
|
354
|
-
const _WRSCL = "WorkflowRunSortCriteriaList";
|
|
355
|
-
const _WRSR = "WorkflowRunStatusReason";
|
|
356
|
-
const _WRSRo = "WorkflowRunStatusReasons";
|
|
357
|
-
const _WRSo = "WorkflowRunSummaries";
|
|
358
|
-
const _WS = "WorkflowSummary";
|
|
359
|
-
const _WSC = "WorkflowSortCriteria";
|
|
360
|
-
const _WSCL = "WorkflowSortCriteriaList";
|
|
361
|
-
const _WSo = "WorkflowSummaries";
|
|
362
|
-
const _a = "alias";
|
|
363
|
-
const _aAI = "awsAccountId";
|
|
364
|
-
const _aAN = "awsAccountName";
|
|
365
|
-
const _aD = "accessDetails";
|
|
366
|
-
const _aTI = "accessTokenId";
|
|
367
|
-
const _ar = "arguments";
|
|
368
|
-
const _bN = "branchName";
|
|
369
|
-
const _c = "client";
|
|
370
|
-
const _cI = "creatorId";
|
|
371
|
-
const _cO = "comparisonOperator";
|
|
372
|
-
const _cT = "clientToken";
|
|
373
|
-
const _cTo = "contentType";
|
|
374
|
-
const _cTr = "createdTime";
|
|
375
|
-
const _co = "command";
|
|
376
|
-
const _d = "description";
|
|
377
|
-
const _dEI = "devEnvironmentId";
|
|
378
|
-
const _dN = "displayName";
|
|
379
|
-
const _da = "data";
|
|
380
|
-
const _de = "definition";
|
|
381
|
-
const _e = "error";
|
|
382
|
-
const _eC = "eventCategory";
|
|
383
|
-
const _eCSC = "executeCommandSessionConfiguration";
|
|
384
|
-
const _eCr = "errorCode";
|
|
385
|
-
const _eN = "eventName";
|
|
386
|
-
const _eS = "eventSource";
|
|
387
|
-
const _eT = "expiresTime";
|
|
388
|
-
const _eTn = "endTime";
|
|
389
|
-
const _eTv = "eventType";
|
|
390
|
-
const _eTve = "eventTime";
|
|
391
|
-
const _em = "email";
|
|
392
|
-
const _f = "filters";
|
|
393
|
-
const _h = "https";
|
|
394
|
-
const _hCI = "headCommitId";
|
|
395
|
-
const _hE = "httpError";
|
|
396
|
-
const _hQ = "httpQuery";
|
|
397
|
-
const _ht = "http";
|
|
398
|
-
const _i = "id";
|
|
399
|
-
const _iT = "instanceType";
|
|
400
|
-
const _iTM = "inactivityTimeoutMinutes";
|
|
401
|
-
const _id = "ides";
|
|
402
|
-
const _ide = "identity";
|
|
403
|
-
const _it = "items";
|
|
404
|
-
const _k = "key";
|
|
405
|
-
const _lUT = "lastUpdatedTime";
|
|
406
|
-
const _m = "message";
|
|
407
|
-
const _mR = "maxResults";
|
|
408
|
-
const _n = "name";
|
|
409
|
-
const _nT = "nextToken";
|
|
410
|
-
const _oT = "operationType";
|
|
411
|
-
const _p = "path";
|
|
412
|
-
const _pE = "primaryEmail";
|
|
413
|
-
const _pI = "projectInformation";
|
|
414
|
-
const _pIr = "projectId";
|
|
415
|
-
const _pIri = "principalId";
|
|
416
|
-
const _pN = "projectName";
|
|
417
|
-
const _pS = "persistentStorage";
|
|
418
|
-
const _pSST = "pendingSubscriptionStartTime";
|
|
419
|
-
const _pST = "pendingSubscriptionType";
|
|
420
|
-
const _r = "repositories";
|
|
421
|
-
const _rI = "requestId";
|
|
422
|
-
const _rM = "runMode";
|
|
423
|
-
const _rN = "repositoryName";
|
|
424
|
-
const _rNe = "regionName";
|
|
425
|
-
const _rP = "requestPayload";
|
|
426
|
-
const _rPe = "responsePayload";
|
|
427
|
-
const _re = "ref";
|
|
428
|
-
const _ru = "runtime";
|
|
429
|
-
const _s = "secret";
|
|
430
|
-
const _sB = "sortBy";
|
|
431
|
-
const _sBN = "sourceBranchName";
|
|
432
|
-
const _sC = "sessionConfiguration";
|
|
433
|
-
const _sI = "sessionId";
|
|
434
|
-
const _sIA = "sourceIpAddress";
|
|
435
|
-
const _sIGB = "sizeInGiB";
|
|
436
|
-
const _sN = "spaceName";
|
|
437
|
-
const _sR = "statusReason";
|
|
438
|
-
const _sRN = "sourceRepositoryName";
|
|
439
|
-
const _sRt = "statusReasons";
|
|
440
|
-
const _sT = "sessionType";
|
|
441
|
-
const _sTt = "startedTime";
|
|
442
|
-
const _sTta = "startTime";
|
|
443
|
-
const _sTu = "subscriptionType";
|
|
444
|
-
const _sU = "streamUrl";
|
|
445
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.codecatalyst";
|
|
446
|
-
const _st = "status";
|
|
447
|
-
const _tV = "tokenValue";
|
|
448
|
-
const _uA = "userAgent";
|
|
449
|
-
const _uI = "userIdentity";
|
|
450
|
-
const _uIs = "userId";
|
|
451
|
-
const _uN = "userName";
|
|
452
|
-
const _uT = "userType";
|
|
453
|
-
const _v = "verified";
|
|
454
|
-
const _vCN = "vpcConnectionName";
|
|
455
|
-
const _va = "values";
|
|
456
|
-
const _ve = "version";
|
|
457
|
-
const _wI = "workflowId";
|
|
458
|
-
const _wN = "workflowName";
|
|
459
|
-
const n0 = "com.amazonaws.codecatalyst";
|
|
460
|
-
var AccessTokenSecret = [0, n0, _ATS, 8, 0];
|
|
461
|
-
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
462
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
463
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
464
|
-
[_m],
|
|
465
|
-
[0], 1
|
|
466
|
-
];
|
|
467
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
468
|
-
var AccessTokenSummary$ = [3, n0, _ATSc,
|
|
469
|
-
0,
|
|
470
|
-
[_i, _n, _eT],
|
|
471
|
-
[0, 0, 5], 2
|
|
472
|
-
];
|
|
473
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
474
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
475
|
-
[_m],
|
|
476
|
-
[0], 1
|
|
477
|
-
];
|
|
478
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
479
|
-
var CreateAccessTokenRequest$ = [3, n0, _CATR,
|
|
480
|
-
0,
|
|
481
|
-
[_n, _eT],
|
|
482
|
-
[0, 5], 1
|
|
483
|
-
];
|
|
484
|
-
var CreateAccessTokenResponse$ = [3, n0, _CATRr,
|
|
485
|
-
0,
|
|
486
|
-
[_s, _n, _eT, _aTI],
|
|
487
|
-
[[() => AccessTokenSecret, 0], 0, 5, 0], 4
|
|
488
|
-
];
|
|
489
|
-
var CreateDevEnvironmentRequest$ = [3, n0, _CDER,
|
|
490
|
-
0,
|
|
491
|
-
[_sN, _pN, _iT, _pS, _r, _cT, _a, _id, _iTM, _vCN],
|
|
492
|
-
[[0, 1], [0, 1], 0, () => PersistentStorageConfiguration$, () => RepositoriesInput, 0, 0, () => IdeConfigurationList, 1, 0], 4
|
|
493
|
-
];
|
|
494
|
-
var CreateDevEnvironmentResponse$ = [3, n0, _CDERr,
|
|
495
|
-
0,
|
|
496
|
-
[_sN, _pN, _i, _vCN],
|
|
497
|
-
[0, 0, 0, 0], 3
|
|
498
|
-
];
|
|
499
|
-
var CreateProjectRequest$ = [3, n0, _CPR,
|
|
500
|
-
0,
|
|
501
|
-
[_sN, _dN, _d],
|
|
502
|
-
[[0, 1], 0, 0], 2
|
|
503
|
-
];
|
|
504
|
-
var CreateProjectResponse$ = [3, n0, _CPRr,
|
|
505
|
-
0,
|
|
506
|
-
[_n, _sN, _dN, _d],
|
|
507
|
-
[0, 0, 0, 0], 1
|
|
508
|
-
];
|
|
509
|
-
var CreateSourceRepositoryBranchRequest$ = [3, n0, _CSRBR,
|
|
510
|
-
0,
|
|
511
|
-
[_sN, _pN, _sRN, _n, _hCI],
|
|
512
|
-
[[0, 1], [0, 1], [0, 1], [0, 1], 0], 4
|
|
513
|
-
];
|
|
514
|
-
var CreateSourceRepositoryBranchResponse$ = [3, n0, _CSRBRr,
|
|
515
|
-
0,
|
|
516
|
-
[_re, _n, _lUT, _hCI],
|
|
517
|
-
[0, 0, 5, 0]
|
|
518
|
-
];
|
|
519
|
-
var CreateSourceRepositoryRequest$ = [3, n0, _CSRR,
|
|
520
|
-
0,
|
|
521
|
-
[_sN, _pN, _n, _d],
|
|
522
|
-
[[0, 1], [0, 1], [0, 1], 0], 3
|
|
523
|
-
];
|
|
524
|
-
var CreateSourceRepositoryResponse$ = [3, n0, _CSRRr,
|
|
525
|
-
0,
|
|
526
|
-
[_sN, _pN, _n, _d],
|
|
527
|
-
[0, 0, 0, 0], 3
|
|
528
|
-
];
|
|
529
|
-
var DeleteAccessTokenRequest$ = [3, n0, _DATR,
|
|
530
|
-
0,
|
|
531
|
-
[_i],
|
|
532
|
-
[[0, 1]], 1
|
|
533
|
-
];
|
|
534
|
-
var DeleteAccessTokenResponse$ = [3, n0, _DATRe,
|
|
535
|
-
0,
|
|
536
|
-
[],
|
|
537
|
-
[]
|
|
538
|
-
];
|
|
539
|
-
var DeleteDevEnvironmentRequest$ = [3, n0, _DDER,
|
|
540
|
-
0,
|
|
541
|
-
[_sN, _pN, _i],
|
|
542
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
543
|
-
];
|
|
544
|
-
var DeleteDevEnvironmentResponse$ = [3, n0, _DDERe,
|
|
545
|
-
0,
|
|
546
|
-
[_sN, _pN, _i],
|
|
547
|
-
[0, 0, 0], 3
|
|
548
|
-
];
|
|
549
|
-
var DeleteProjectRequest$ = [3, n0, _DPR,
|
|
550
|
-
0,
|
|
551
|
-
[_sN, _n],
|
|
552
|
-
[[0, 1], [0, 1]], 2
|
|
553
|
-
];
|
|
554
|
-
var DeleteProjectResponse$ = [3, n0, _DPRe,
|
|
555
|
-
0,
|
|
556
|
-
[_sN, _n, _dN],
|
|
557
|
-
[0, 0, 0], 2
|
|
558
|
-
];
|
|
559
|
-
var DeleteSourceRepositoryRequest$ = [3, n0, _DSRR,
|
|
560
|
-
0,
|
|
561
|
-
[_sN, _pN, _n],
|
|
562
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
563
|
-
];
|
|
564
|
-
var DeleteSourceRepositoryResponse$ = [3, n0, _DSRRe,
|
|
565
|
-
0,
|
|
566
|
-
[_sN, _pN, _n],
|
|
567
|
-
[0, 0, 0], 3
|
|
568
|
-
];
|
|
569
|
-
var DeleteSpaceRequest$ = [3, n0, _DSR,
|
|
570
|
-
0,
|
|
571
|
-
[_n],
|
|
572
|
-
[[0, 1]], 1
|
|
573
|
-
];
|
|
574
|
-
var DeleteSpaceResponse$ = [3, n0, _DSRe,
|
|
575
|
-
0,
|
|
576
|
-
[_n, _dN],
|
|
577
|
-
[0, 0], 1
|
|
578
|
-
];
|
|
579
|
-
var DevEnvironmentAccessDetails$ = [3, n0, _DEAD,
|
|
580
|
-
8,
|
|
581
|
-
[_sU, _tV],
|
|
582
|
-
[[() => SensitiveString, 0], [() => SensitiveString, 0]], 2
|
|
583
|
-
];
|
|
584
|
-
var DevEnvironmentRepositorySummary$ = [3, n0, _DERS,
|
|
585
|
-
0,
|
|
586
|
-
[_rN, _bN],
|
|
587
|
-
[0, 0], 1
|
|
588
|
-
];
|
|
589
|
-
var DevEnvironmentSessionConfiguration$ = [3, n0, _DESC,
|
|
590
|
-
0,
|
|
591
|
-
[_sT, _eCSC],
|
|
592
|
-
[0, () => ExecuteCommandSessionConfiguration$], 1
|
|
593
|
-
];
|
|
594
|
-
var DevEnvironmentSessionSummary$ = [3, n0, _DESS,
|
|
595
|
-
0,
|
|
596
|
-
[_sN, _pN, _dEI, _sTt, _i],
|
|
597
|
-
[0, 0, 0, 5, 0], 5
|
|
598
|
-
];
|
|
599
|
-
var DevEnvironmentSummary$ = [3, n0, _DES,
|
|
600
|
-
0,
|
|
601
|
-
[_i, _lUT, _cI, _st, _r, _iT, _iTM, _pS, _sN, _pN, _sR, _a, _id, _vCN],
|
|
602
|
-
[0, 5, 0, 0, () => DevEnvironmentRepositorySummaries, 0, 1, () => PersistentStorage$, 0, 0, 0, 0, () => Ides, 0], 8
|
|
603
|
-
];
|
|
604
|
-
var EmailAddress$ = [3, n0, _EA,
|
|
605
|
-
0,
|
|
606
|
-
[_em, _v],
|
|
607
|
-
[0, 2]
|
|
608
|
-
];
|
|
609
|
-
var EventLogEntry$ = [3, n0, _ELE,
|
|
610
|
-
0,
|
|
611
|
-
[_i, _eN, _eTv, _eC, _eS, _eTve, _oT, _uI, _pI, _rI, _rP, _rPe, _eCr, _sIA, _uA],
|
|
612
|
-
[0, 0, 0, 0, 0, 5, 0, () => UserIdentity$, () => ProjectInformation$, 0, () => EventPayload$, () => EventPayload$, 0, 0, 0], 8
|
|
613
|
-
];
|
|
614
|
-
var EventPayload$ = [3, n0, _EP,
|
|
615
|
-
0,
|
|
616
|
-
[_cTo, _da],
|
|
617
|
-
[0, 0]
|
|
618
|
-
];
|
|
619
|
-
var ExecuteCommandSessionConfiguration$ = [3, n0, _ECSC,
|
|
620
|
-
0,
|
|
621
|
-
[_co, _ar],
|
|
622
|
-
[0, 64 | 0], 1
|
|
623
|
-
];
|
|
624
|
-
var Filter$ = [3, n0, _F,
|
|
625
|
-
0,
|
|
626
|
-
[_k, _va, _cO],
|
|
627
|
-
[0, 64 | 0, 0], 2
|
|
628
|
-
];
|
|
629
|
-
var GetDevEnvironmentRequest$ = [3, n0, _GDER,
|
|
630
|
-
0,
|
|
631
|
-
[_sN, _pN, _i],
|
|
632
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
633
|
-
];
|
|
634
|
-
var GetDevEnvironmentResponse$ = [3, n0, _GDERe,
|
|
635
|
-
0,
|
|
636
|
-
[_sN, _pN, _i, _lUT, _cI, _st, _r, _iT, _iTM, _pS, _sR, _a, _id, _vCN],
|
|
637
|
-
[0, 0, 0, 5, 0, 0, () => DevEnvironmentRepositorySummaries, 0, 1, () => PersistentStorage$, 0, 0, () => Ides, 0], 10
|
|
638
|
-
];
|
|
639
|
-
var GetProjectRequest$ = [3, n0, _GPR,
|
|
640
|
-
0,
|
|
641
|
-
[_sN, _n],
|
|
642
|
-
[[0, 1], [0, 1]], 2
|
|
643
|
-
];
|
|
644
|
-
var GetProjectResponse$ = [3, n0, _GPRe,
|
|
645
|
-
0,
|
|
646
|
-
[_n, _sN, _dN, _d],
|
|
647
|
-
[0, 0, 0, 0], 1
|
|
648
|
-
];
|
|
649
|
-
var GetSourceRepositoryCloneUrlsRequest$ = [3, n0, _GSRCUR,
|
|
650
|
-
0,
|
|
651
|
-
[_sN, _pN, _sRN],
|
|
652
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
653
|
-
];
|
|
654
|
-
var GetSourceRepositoryCloneUrlsResponse$ = [3, n0, _GSRCURe,
|
|
655
|
-
0,
|
|
656
|
-
[_h],
|
|
657
|
-
[0], 1
|
|
658
|
-
];
|
|
659
|
-
var GetSourceRepositoryRequest$ = [3, n0, _GSRR,
|
|
660
|
-
0,
|
|
661
|
-
[_sN, _pN, _n],
|
|
662
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
663
|
-
];
|
|
664
|
-
var GetSourceRepositoryResponse$ = [3, n0, _GSRRe,
|
|
665
|
-
0,
|
|
666
|
-
[_sN, _pN, _n, _lUT, _cTr, _d],
|
|
667
|
-
[0, 0, 0, 5, 5, 0], 5
|
|
668
|
-
];
|
|
669
|
-
var GetSpaceRequest$ = [3, n0, _GSR,
|
|
670
|
-
0,
|
|
671
|
-
[_n],
|
|
672
|
-
[[0, 1]], 1
|
|
673
|
-
];
|
|
674
|
-
var GetSpaceResponse$ = [3, n0, _GSRe,
|
|
675
|
-
0,
|
|
676
|
-
[_n, _rNe, _dN, _d],
|
|
677
|
-
[0, 0, 0, 0], 2
|
|
678
|
-
];
|
|
679
|
-
var GetSubscriptionRequest$ = [3, n0, _GSRet,
|
|
680
|
-
0,
|
|
681
|
-
[_sN],
|
|
682
|
-
[[0, 1]], 1
|
|
683
|
-
];
|
|
684
|
-
var GetSubscriptionResponse$ = [3, n0, _GSRetu,
|
|
685
|
-
0,
|
|
686
|
-
[_sTu, _aAN, _pST, _pSST],
|
|
687
|
-
[0, 0, 0, 5]
|
|
688
|
-
];
|
|
689
|
-
var GetUserDetailsRequest$ = [3, n0, _GUDR,
|
|
690
|
-
0,
|
|
691
|
-
[_i, _uN],
|
|
692
|
-
[[0, { [_hQ]: _i }], [0, { [_hQ]: _uN }]]
|
|
693
|
-
];
|
|
694
|
-
var GetUserDetailsResponse$ = [3, n0, _GUDRe,
|
|
695
|
-
0,
|
|
696
|
-
[_uIs, _uN, _dN, _pE, _ve],
|
|
697
|
-
[0, 0, 0, () => EmailAddress$, 0]
|
|
698
|
-
];
|
|
699
|
-
var GetWorkflowRequest$ = [3, n0, _GWR,
|
|
700
|
-
0,
|
|
701
|
-
[_sN, _i, _pN],
|
|
702
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
703
|
-
];
|
|
704
|
-
var GetWorkflowResponse$ = [3, n0, _GWRe,
|
|
705
|
-
0,
|
|
706
|
-
[_sN, _pN, _i, _n, _de, _cTr, _lUT, _rM, _st, _sRN, _sBN],
|
|
707
|
-
[0, 0, 0, 0, () => WorkflowDefinition$, 5, 5, 0, 0, 0, 0], 9
|
|
708
|
-
];
|
|
709
|
-
var GetWorkflowRunRequest$ = [3, n0, _GWRR,
|
|
710
|
-
0,
|
|
711
|
-
[_sN, _i, _pN],
|
|
712
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
713
|
-
];
|
|
714
|
-
var GetWorkflowRunResponse$ = [3, n0, _GWRRe,
|
|
715
|
-
0,
|
|
716
|
-
[_sN, _pN, _i, _wI, _st, _sTta, _lUT, _sRt, _eTn],
|
|
717
|
-
[0, 0, 0, 0, 0, 5, 5, () => WorkflowRunStatusReasons, 5], 7
|
|
718
|
-
];
|
|
719
|
-
var Ide$ = [3, n0, _I,
|
|
720
|
-
0,
|
|
721
|
-
[_ru, _n],
|
|
722
|
-
[0, 0]
|
|
723
|
-
];
|
|
724
|
-
var IdeConfiguration$ = [3, n0, _IC,
|
|
725
|
-
0,
|
|
726
|
-
[_ru, _n],
|
|
727
|
-
[0, 0]
|
|
728
|
-
];
|
|
729
|
-
var ListAccessTokensRequest$ = [3, n0, _LATR,
|
|
730
|
-
0,
|
|
731
|
-
[_mR, _nT],
|
|
732
|
-
[1, 0]
|
|
733
|
-
];
|
|
734
|
-
var ListAccessTokensResponse$ = [3, n0, _LATRi,
|
|
735
|
-
0,
|
|
736
|
-
[_it, _nT],
|
|
737
|
-
[() => AccessTokenSummaries, 0], 1
|
|
738
|
-
];
|
|
739
|
-
var ListDevEnvironmentSessionsRequest$ = [3, n0, _LDESR,
|
|
740
|
-
0,
|
|
741
|
-
[_sN, _pN, _dEI, _nT, _mR],
|
|
742
|
-
[[0, 1], [0, 1], [0, 1], 0, 1], 3
|
|
743
|
-
];
|
|
744
|
-
var ListDevEnvironmentSessionsResponse$ = [3, n0, _LDESRi,
|
|
745
|
-
0,
|
|
746
|
-
[_it, _nT],
|
|
747
|
-
[() => DevEnvironmentSessionsSummaryList, 0], 1
|
|
748
|
-
];
|
|
749
|
-
var ListDevEnvironmentsRequest$ = [3, n0, _LDER,
|
|
750
|
-
0,
|
|
751
|
-
[_sN, _pN, _f, _nT, _mR],
|
|
752
|
-
[[0, 1], 0, () => Filters, 0, 1], 1
|
|
753
|
-
];
|
|
754
|
-
var ListDevEnvironmentsResponse$ = [3, n0, _LDERi,
|
|
755
|
-
0,
|
|
756
|
-
[_it, _nT],
|
|
757
|
-
[() => DevEnvironmentSummaryList, 0], 1
|
|
758
|
-
];
|
|
759
|
-
var ListEventLogsRequest$ = [3, n0, _LELR,
|
|
760
|
-
0,
|
|
761
|
-
[_sN, _sTta, _eTn, _eN, _nT, _mR],
|
|
762
|
-
[[0, 1], 5, 5, 0, 0, 1], 3
|
|
763
|
-
];
|
|
764
|
-
var ListEventLogsResponse$ = [3, n0, _LELRi,
|
|
765
|
-
0,
|
|
766
|
-
[_it, _nT],
|
|
767
|
-
[() => EventLogEntries, 0], 1
|
|
768
|
-
];
|
|
769
|
-
var ListProjectsRequest$ = [3, n0, _LPR,
|
|
770
|
-
0,
|
|
771
|
-
[_sN, _nT, _mR, _f],
|
|
772
|
-
[[0, 1], 0, 1, () => ProjectListFilters], 1
|
|
773
|
-
];
|
|
774
|
-
var ListProjectsResponse$ = [3, n0, _LPRi,
|
|
775
|
-
0,
|
|
776
|
-
[_nT, _it],
|
|
777
|
-
[0, () => ProjectSummaries]
|
|
778
|
-
];
|
|
779
|
-
var ListSourceRepositoriesItem$ = [3, n0, _LSRI,
|
|
780
|
-
0,
|
|
781
|
-
[_i, _n, _lUT, _cTr, _d],
|
|
782
|
-
[0, 0, 5, 5, 0], 4
|
|
783
|
-
];
|
|
784
|
-
var ListSourceRepositoriesRequest$ = [3, n0, _LSRR,
|
|
785
|
-
0,
|
|
786
|
-
[_sN, _pN, _nT, _mR],
|
|
787
|
-
[[0, 1], [0, 1], 0, 1], 2
|
|
788
|
-
];
|
|
789
|
-
var ListSourceRepositoriesResponse$ = [3, n0, _LSRRi,
|
|
790
|
-
0,
|
|
791
|
-
[_it, _nT],
|
|
792
|
-
[() => ListSourceRepositoriesItems, 0]
|
|
793
|
-
];
|
|
794
|
-
var ListSourceRepositoryBranchesItem$ = [3, n0, _LSRBI,
|
|
795
|
-
0,
|
|
796
|
-
[_re, _n, _lUT, _hCI],
|
|
797
|
-
[0, 0, 5, 0]
|
|
798
|
-
];
|
|
799
|
-
var ListSourceRepositoryBranchesRequest$ = [3, n0, _LSRBR,
|
|
800
|
-
0,
|
|
801
|
-
[_sN, _pN, _sRN, _nT, _mR],
|
|
802
|
-
[[0, 1], [0, 1], [0, 1], 0, 1], 3
|
|
803
|
-
];
|
|
804
|
-
var ListSourceRepositoryBranchesResponse$ = [3, n0, _LSRBRi,
|
|
805
|
-
0,
|
|
806
|
-
[_it, _nT],
|
|
807
|
-
[() => ListSourceRepositoryBranchesItems, 0], 1
|
|
808
|
-
];
|
|
809
|
-
var ListSpacesRequest$ = [3, n0, _LSR,
|
|
810
|
-
0,
|
|
811
|
-
[_nT],
|
|
812
|
-
[0]
|
|
813
|
-
];
|
|
814
|
-
var ListSpacesResponse$ = [3, n0, _LSRi,
|
|
815
|
-
0,
|
|
816
|
-
[_nT, _it],
|
|
817
|
-
[0, () => SpaceSummaries]
|
|
818
|
-
];
|
|
819
|
-
var ListWorkflowRunsRequest$ = [3, n0, _LWRR,
|
|
820
|
-
0,
|
|
821
|
-
[_sN, _pN, _wI, _nT, _mR, _sB],
|
|
822
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _wI }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], () => WorkflowRunSortCriteriaList], 2
|
|
823
|
-
];
|
|
824
|
-
var ListWorkflowRunsResponse$ = [3, n0, _LWRRi,
|
|
825
|
-
0,
|
|
826
|
-
[_nT, _it],
|
|
827
|
-
[0, () => WorkflowRunSummaries]
|
|
828
|
-
];
|
|
829
|
-
var ListWorkflowsRequest$ = [3, n0, _LWR,
|
|
830
|
-
0,
|
|
831
|
-
[_sN, _pN, _nT, _mR, _sB],
|
|
832
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], () => WorkflowSortCriteriaList], 2
|
|
833
|
-
];
|
|
834
|
-
var ListWorkflowsResponse$ = [3, n0, _LWRi,
|
|
835
|
-
0,
|
|
836
|
-
[_nT, _it],
|
|
837
|
-
[0, () => WorkflowSummaries]
|
|
838
|
-
];
|
|
839
|
-
var PersistentStorage$ = [3, n0, _PS,
|
|
840
|
-
0,
|
|
841
|
-
[_sIGB],
|
|
842
|
-
[1], 1
|
|
843
|
-
];
|
|
844
|
-
var PersistentStorageConfiguration$ = [3, n0, _PSC,
|
|
845
|
-
0,
|
|
846
|
-
[_sIGB],
|
|
847
|
-
[1], 1
|
|
848
|
-
];
|
|
849
|
-
var ProjectInformation$ = [3, n0, _PI,
|
|
850
|
-
0,
|
|
851
|
-
[_n, _pIr],
|
|
852
|
-
[0, 0]
|
|
853
|
-
];
|
|
854
|
-
var ProjectListFilter$ = [3, n0, _PLF,
|
|
855
|
-
0,
|
|
856
|
-
[_k, _va, _cO],
|
|
857
|
-
[0, 64 | 0, 0], 2
|
|
858
|
-
];
|
|
859
|
-
var ProjectSummary$ = [3, n0, _PSr,
|
|
860
|
-
0,
|
|
861
|
-
[_n, _dN, _d],
|
|
862
|
-
[0, 0, 0], 1
|
|
863
|
-
];
|
|
864
|
-
var RepositoryInput$ = [3, n0, _RI,
|
|
865
|
-
0,
|
|
866
|
-
[_rN, _bN],
|
|
867
|
-
[0, 0], 1
|
|
868
|
-
];
|
|
869
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
870
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
871
|
-
[_m],
|
|
872
|
-
[0], 1
|
|
873
|
-
];
|
|
874
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
875
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
876
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
877
|
-
[_m],
|
|
878
|
-
[0], 1
|
|
879
|
-
];
|
|
880
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
881
|
-
var SpaceSummary$ = [3, n0, _SSp,
|
|
882
|
-
0,
|
|
883
|
-
[_n, _rNe, _dN, _d],
|
|
884
|
-
[0, 0, 0, 0], 2
|
|
885
|
-
];
|
|
886
|
-
var StartDevEnvironmentRequest$ = [3, n0, _SDER,
|
|
887
|
-
0,
|
|
888
|
-
[_sN, _pN, _i, _id, _iT, _iTM],
|
|
889
|
-
[[0, 1], [0, 1], [0, 1], () => IdeConfigurationList, 0, 1], 3
|
|
890
|
-
];
|
|
891
|
-
var StartDevEnvironmentResponse$ = [3, n0, _SDERt,
|
|
892
|
-
0,
|
|
893
|
-
[_sN, _pN, _i, _st],
|
|
894
|
-
[0, 0, 0, 0], 4
|
|
895
|
-
];
|
|
896
|
-
var StartDevEnvironmentSessionRequest$ = [3, n0, _SDESR,
|
|
897
|
-
0,
|
|
898
|
-
[_sN, _pN, _i, _sC],
|
|
899
|
-
[[0, 1], [0, 1], [0, 1], () => DevEnvironmentSessionConfiguration$], 4
|
|
900
|
-
];
|
|
901
|
-
var StartDevEnvironmentSessionResponse$ = [3, n0, _SDESRt,
|
|
902
|
-
0,
|
|
903
|
-
[_aD, _sN, _pN, _i, _sI],
|
|
904
|
-
[[() => DevEnvironmentAccessDetails$, 0], 0, 0, 0, 0], 4
|
|
905
|
-
];
|
|
906
|
-
var StartWorkflowRunRequest$ = [3, n0, _SWRR,
|
|
907
|
-
0,
|
|
908
|
-
[_sN, _pN, _wI, _cT],
|
|
909
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _wI }], [0, 4]], 3
|
|
910
|
-
];
|
|
911
|
-
var StartWorkflowRunResponse$ = [3, n0, _SWRRt,
|
|
912
|
-
0,
|
|
913
|
-
[_sN, _pN, _i, _wI],
|
|
914
|
-
[0, 0, 0, 0], 4
|
|
915
|
-
];
|
|
916
|
-
var StopDevEnvironmentRequest$ = [3, n0, _SDERto,
|
|
917
|
-
0,
|
|
918
|
-
[_sN, _pN, _i],
|
|
919
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
920
|
-
];
|
|
921
|
-
var StopDevEnvironmentResponse$ = [3, n0, _SDERtop,
|
|
922
|
-
0,
|
|
923
|
-
[_sN, _pN, _i, _st],
|
|
924
|
-
[0, 0, 0, 0], 4
|
|
925
|
-
];
|
|
926
|
-
var StopDevEnvironmentSessionRequest$ = [3, n0, _SDESRto,
|
|
927
|
-
0,
|
|
928
|
-
[_sN, _pN, _i, _sI],
|
|
929
|
-
[[0, 1], [0, 1], [0, 1], [0, 1]], 4
|
|
930
|
-
];
|
|
931
|
-
var StopDevEnvironmentSessionResponse$ = [3, n0, _SDESRtop,
|
|
932
|
-
0,
|
|
933
|
-
[_sN, _pN, _i, _sI],
|
|
934
|
-
[0, 0, 0, 0], 4
|
|
935
|
-
];
|
|
936
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
937
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
938
|
-
[_m],
|
|
939
|
-
[0], 1
|
|
940
|
-
];
|
|
941
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
942
|
-
var UpdateDevEnvironmentRequest$ = [3, n0, _UDER,
|
|
943
|
-
0,
|
|
944
|
-
[_sN, _pN, _i, _a, _id, _iT, _iTM, _cT],
|
|
945
|
-
[[0, 1], [0, 1], [0, 1], 0, () => IdeConfigurationList, 0, 1, 0], 3
|
|
946
|
-
];
|
|
947
|
-
var UpdateDevEnvironmentResponse$ = [3, n0, _UDERp,
|
|
948
|
-
0,
|
|
949
|
-
[_i, _sN, _pN, _a, _id, _iT, _iTM, _cT],
|
|
950
|
-
[0, 0, 0, 0, () => IdeConfigurationList, 0, 1, 0], 3
|
|
951
|
-
];
|
|
952
|
-
var UpdateProjectRequest$ = [3, n0, _UPR,
|
|
953
|
-
0,
|
|
954
|
-
[_sN, _n, _d],
|
|
955
|
-
[[0, 1], [0, 1], 0], 2
|
|
956
|
-
];
|
|
957
|
-
var UpdateProjectResponse$ = [3, n0, _UPRp,
|
|
958
|
-
0,
|
|
959
|
-
[_sN, _n, _dN, _d],
|
|
960
|
-
[0, 0, 0, 0]
|
|
961
|
-
];
|
|
962
|
-
var UpdateSpaceRequest$ = [3, n0, _USR,
|
|
963
|
-
0,
|
|
964
|
-
[_n, _d],
|
|
965
|
-
[[0, 1], 0], 1
|
|
966
|
-
];
|
|
967
|
-
var UpdateSpaceResponse$ = [3, n0, _USRp,
|
|
968
|
-
0,
|
|
969
|
-
[_n, _dN, _d],
|
|
970
|
-
[0, 0, 0]
|
|
971
|
-
];
|
|
972
|
-
var UserIdentity$ = [3, n0, _UI,
|
|
973
|
-
0,
|
|
974
|
-
[_uT, _pIri, _uN, _aAI],
|
|
975
|
-
[0, 0, 0, 0], 2
|
|
976
|
-
];
|
|
977
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
978
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
979
|
-
[_m],
|
|
980
|
-
[0], 1
|
|
981
|
-
];
|
|
982
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
983
|
-
var VerifySessionResponse$ = [3, n0, _VSR,
|
|
984
|
-
0,
|
|
985
|
-
[_ide],
|
|
986
|
-
[0]
|
|
987
|
-
];
|
|
988
|
-
var WorkflowDefinition$ = [3, n0, _WD,
|
|
989
|
-
0,
|
|
990
|
-
[_p],
|
|
991
|
-
[0], 1
|
|
992
|
-
];
|
|
993
|
-
var WorkflowDefinitionSummary$ = [3, n0, _WDS,
|
|
994
|
-
0,
|
|
995
|
-
[_p],
|
|
996
|
-
[0], 1
|
|
997
|
-
];
|
|
998
|
-
var WorkflowRunSortCriteria$ = [3, n0, _WRSC,
|
|
999
|
-
0,
|
|
1000
|
-
[],
|
|
1001
|
-
[]
|
|
1002
|
-
];
|
|
1003
|
-
var WorkflowRunStatusReason$ = [3, n0, _WRSR,
|
|
1004
|
-
0,
|
|
1005
|
-
[],
|
|
1006
|
-
[]
|
|
1007
|
-
];
|
|
1008
|
-
var WorkflowRunSummary$ = [3, n0, _WRS,
|
|
1009
|
-
0,
|
|
1010
|
-
[_i, _wI, _wN, _st, _sTta, _lUT, _sRt, _eTn],
|
|
1011
|
-
[0, 0, 0, 0, 5, 5, () => WorkflowRunStatusReasons, 5], 6
|
|
1012
|
-
];
|
|
1013
|
-
var WorkflowSortCriteria$ = [3, n0, _WSC,
|
|
1014
|
-
0,
|
|
1015
|
-
[],
|
|
1016
|
-
[]
|
|
1017
|
-
];
|
|
1018
|
-
var WorkflowSummary$ = [3, n0, _WS,
|
|
1019
|
-
0,
|
|
1020
|
-
[_i, _n, _sRN, _sBN, _de, _cTr, _lUT, _rM, _st],
|
|
1021
|
-
[0, 0, 0, 0, () => WorkflowDefinitionSummary$, 5, 5, 0, 0], 9
|
|
1022
|
-
];
|
|
1023
|
-
var __Unit = "unit";
|
|
1024
|
-
var CodeCatalystServiceException$ = [-3, _sm, "CodeCatalystServiceException", 0, [], []];
|
|
1025
|
-
schema.TypeRegistry.for(_sm).registerError(CodeCatalystServiceException$, CodeCatalystServiceException);
|
|
1026
|
-
var AccessTokenSummaries = [1, n0, _ATScc,
|
|
1027
|
-
0, () => AccessTokenSummary$
|
|
1028
|
-
];
|
|
1029
|
-
var DevEnvironmentRepositorySummaries = [1, n0, _DERSe,
|
|
1030
|
-
0, () => DevEnvironmentRepositorySummary$
|
|
1031
|
-
];
|
|
1032
|
-
var DevEnvironmentSessionsSummaryList = [1, n0, _DESSL,
|
|
1033
|
-
0, () => DevEnvironmentSessionSummary$
|
|
1034
|
-
];
|
|
1035
|
-
var DevEnvironmentSummaryList = [1, n0, _DESL,
|
|
1036
|
-
0, () => DevEnvironmentSummary$
|
|
1037
|
-
];
|
|
1038
|
-
var EventLogEntries = [1, n0, _ELEv,
|
|
1039
|
-
0, () => EventLogEntry$
|
|
1040
|
-
];
|
|
1041
|
-
var Filters = [1, n0, _Fi,
|
|
1042
|
-
0, () => Filter$
|
|
1043
|
-
];
|
|
1044
|
-
var IdeConfigurationList = [1, n0, _ICL,
|
|
1045
|
-
0, () => IdeConfiguration$
|
|
1046
|
-
];
|
|
1047
|
-
var Ides = [1, n0, _Id,
|
|
1048
|
-
0, () => Ide$
|
|
1049
|
-
];
|
|
1050
|
-
var ListSourceRepositoriesItems = [1, n0, _LSRIi,
|
|
1051
|
-
0, () => ListSourceRepositoriesItem$
|
|
1052
|
-
];
|
|
1053
|
-
var ListSourceRepositoryBranchesItems = [1, n0, _LSRBIi,
|
|
1054
|
-
0, () => ListSourceRepositoryBranchesItem$
|
|
1055
|
-
];
|
|
1056
|
-
var ProjectListFilters = [1, n0, _PLFr,
|
|
1057
|
-
0, () => ProjectListFilter$
|
|
1058
|
-
];
|
|
1059
|
-
var ProjectSummaries = [1, n0, _PSro,
|
|
1060
|
-
0, () => ProjectSummary$
|
|
1061
|
-
];
|
|
1062
|
-
var RepositoriesInput = [1, n0, _RIe,
|
|
1063
|
-
0, () => RepositoryInput$
|
|
1064
|
-
];
|
|
1065
|
-
var SpaceSummaries = [1, n0, _SSpa,
|
|
1066
|
-
0, () => SpaceSummary$
|
|
1067
|
-
];
|
|
1068
|
-
var WorkflowRunSortCriteriaList = [1, n0, _WRSCL,
|
|
1069
|
-
0, () => WorkflowRunSortCriteria$
|
|
1070
|
-
];
|
|
1071
|
-
var WorkflowRunStatusReasons = [1, n0, _WRSRo,
|
|
1072
|
-
0, () => WorkflowRunStatusReason$
|
|
1073
|
-
];
|
|
1074
|
-
var WorkflowRunSummaries = [1, n0, _WRSo,
|
|
1075
|
-
0, () => WorkflowRunSummary$
|
|
1076
|
-
];
|
|
1077
|
-
var WorkflowSortCriteriaList = [1, n0, _WSCL,
|
|
1078
|
-
0, () => WorkflowSortCriteria$
|
|
1079
|
-
];
|
|
1080
|
-
var WorkflowSummaries = [1, n0, _WSo,
|
|
1081
|
-
0, () => WorkflowSummary$
|
|
1082
|
-
];
|
|
1083
|
-
var CreateAccessToken$ = [9, n0, _CAT,
|
|
1084
|
-
{ [_ht]: ["PUT", "/v1/accessTokens", 201] }, () => CreateAccessTokenRequest$, () => CreateAccessTokenResponse$
|
|
1085
|
-
];
|
|
1086
|
-
var CreateDevEnvironment$ = [9, n0, _CDE,
|
|
1087
|
-
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments", 201] }, () => CreateDevEnvironmentRequest$, () => CreateDevEnvironmentResponse$
|
|
1088
|
-
];
|
|
1089
|
-
var CreateProject$ = [9, n0, _CP,
|
|
1090
|
-
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects", 201] }, () => CreateProjectRequest$, () => CreateProjectResponse$
|
|
1091
|
-
];
|
|
1092
|
-
var CreateSourceRepository$ = [9, n0, _CSR,
|
|
1093
|
-
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}", 201] }, () => CreateSourceRepositoryRequest$, () => CreateSourceRepositoryResponse$
|
|
1094
|
-
];
|
|
1095
|
-
var CreateSourceRepositoryBranch$ = [9, n0, _CSRB,
|
|
1096
|
-
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{sourceRepositoryName}/branches/{name}", 201] }, () => CreateSourceRepositoryBranchRequest$, () => CreateSourceRepositoryBranchResponse$
|
|
1097
|
-
];
|
|
1098
|
-
var DeleteAccessToken$ = [9, n0, _DAT,
|
|
1099
|
-
{ [_ht]: ["DELETE", "/v1/accessTokens/{id}", 200] }, () => DeleteAccessTokenRequest$, () => DeleteAccessTokenResponse$
|
|
1100
|
-
];
|
|
1101
|
-
var DeleteDevEnvironment$ = [9, n0, _DDE,
|
|
1102
|
-
{ [_ht]: ["DELETE", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}", 200] }, () => DeleteDevEnvironmentRequest$, () => DeleteDevEnvironmentResponse$
|
|
1103
|
-
];
|
|
1104
|
-
var DeleteProject$ = [9, n0, _DP,
|
|
1105
|
-
{ [_ht]: ["DELETE", "/v1/spaces/{spaceName}/projects/{name}", 200] }, () => DeleteProjectRequest$, () => DeleteProjectResponse$
|
|
1106
|
-
];
|
|
1107
|
-
var DeleteSourceRepository$ = [9, n0, _DSRel,
|
|
1108
|
-
{ [_ht]: ["DELETE", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}", 200] }, () => DeleteSourceRepositoryRequest$, () => DeleteSourceRepositoryResponse$
|
|
1109
|
-
];
|
|
1110
|
-
var DeleteSpace$ = [9, n0, _DS,
|
|
1111
|
-
{ [_ht]: ["DELETE", "/v1/spaces/{name}", 200] }, () => DeleteSpaceRequest$, () => DeleteSpaceResponse$
|
|
1112
|
-
];
|
|
1113
|
-
var GetDevEnvironment$ = [9, n0, _GDE,
|
|
1114
|
-
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}", 200] }, () => GetDevEnvironmentRequest$, () => GetDevEnvironmentResponse$
|
|
1115
|
-
];
|
|
1116
|
-
var GetProject$ = [9, n0, _GP,
|
|
1117
|
-
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{name}", 200] }, () => GetProjectRequest$, () => GetProjectResponse$
|
|
1118
|
-
];
|
|
1119
|
-
var GetSourceRepository$ = [9, n0, _GSReto,
|
|
1120
|
-
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{name}", 200] }, () => GetSourceRepositoryRequest$, () => GetSourceRepositoryResponse$
|
|
1121
|
-
];
|
|
1122
|
-
var GetSourceRepositoryCloneUrls$ = [9, n0, _GSRCU,
|
|
1123
|
-
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{sourceRepositoryName}/cloneUrls", 200] }, () => GetSourceRepositoryCloneUrlsRequest$, () => GetSourceRepositoryCloneUrlsResponse$
|
|
1124
|
-
];
|
|
1125
|
-
var GetSpace$ = [9, n0, _GS,
|
|
1126
|
-
{ [_ht]: ["GET", "/v1/spaces/{name}", 200] }, () => GetSpaceRequest$, () => GetSpaceResponse$
|
|
1127
|
-
];
|
|
1128
|
-
var GetSubscription$ = [9, n0, _GSe,
|
|
1129
|
-
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/subscription", 200] }, () => GetSubscriptionRequest$, () => GetSubscriptionResponse$
|
|
1130
|
-
];
|
|
1131
|
-
var GetUserDetails$ = [9, n0, _GUD,
|
|
1132
|
-
{ [_ht]: ["GET", "/userDetails", 200] }, () => GetUserDetailsRequest$, () => GetUserDetailsResponse$
|
|
1133
|
-
];
|
|
1134
|
-
var GetWorkflow$ = [9, n0, _GW,
|
|
1135
|
-
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/workflows/{id}", 200] }, () => GetWorkflowRequest$, () => GetWorkflowResponse$
|
|
1136
|
-
];
|
|
1137
|
-
var GetWorkflowRun$ = [9, n0, _GWRet,
|
|
1138
|
-
{ [_ht]: ["GET", "/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns/{id}", 200] }, () => GetWorkflowRunRequest$, () => GetWorkflowRunResponse$
|
|
1139
|
-
];
|
|
1140
|
-
var ListAccessTokens$ = [9, n0, _LAT,
|
|
1141
|
-
{ [_ht]: ["POST", "/v1/accessTokens", 200] }, () => ListAccessTokensRequest$, () => ListAccessTokensResponse$
|
|
1142
|
-
];
|
|
1143
|
-
var ListDevEnvironments$ = [9, n0, _LDE,
|
|
1144
|
-
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/devEnvironments", 200] }, () => ListDevEnvironmentsRequest$, () => ListDevEnvironmentsResponse$
|
|
1145
|
-
];
|
|
1146
|
-
var ListDevEnvironmentSessions$ = [9, n0, _LDES,
|
|
1147
|
-
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{devEnvironmentId}/sessions", 200] }, () => ListDevEnvironmentSessionsRequest$, () => ListDevEnvironmentSessionsResponse$
|
|
1148
|
-
];
|
|
1149
|
-
var ListEventLogs$ = [9, n0, _LEL,
|
|
1150
|
-
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/eventLogs", 200] }, () => ListEventLogsRequest$, () => ListEventLogsResponse$
|
|
1151
|
-
];
|
|
1152
|
-
var ListProjects$ = [9, n0, _LP,
|
|
1153
|
-
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/projects", 200] }, () => ListProjectsRequest$, () => ListProjectsResponse$
|
|
1154
|
-
];
|
|
1155
|
-
var ListSourceRepositories$ = [9, n0, _LSRis,
|
|
1156
|
-
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories", 200] }, () => ListSourceRepositoriesRequest$, () => ListSourceRepositoriesResponse$
|
|
1157
|
-
];
|
|
1158
|
-
var ListSourceRepositoryBranches$ = [9, n0, _LSRB,
|
|
1159
|
-
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/sourceRepositories/{sourceRepositoryName}/branches", 200] }, () => ListSourceRepositoryBranchesRequest$, () => ListSourceRepositoryBranchesResponse$
|
|
1160
|
-
];
|
|
1161
|
-
var ListSpaces$ = [9, n0, _LS,
|
|
1162
|
-
{ [_ht]: ["POST", "/v1/spaces", 200] }, () => ListSpacesRequest$, () => ListSpacesResponse$
|
|
1163
|
-
];
|
|
1164
|
-
var ListWorkflowRuns$ = [9, n0, _LWRis,
|
|
1165
|
-
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns", 200] }, () => ListWorkflowRunsRequest$, () => ListWorkflowRunsResponse$
|
|
1166
|
-
];
|
|
1167
|
-
var ListWorkflows$ = [9, n0, _LW,
|
|
1168
|
-
{ [_ht]: ["POST", "/v1/spaces/{spaceName}/projects/{projectName}/workflows", 200] }, () => ListWorkflowsRequest$, () => ListWorkflowsResponse$
|
|
1169
|
-
];
|
|
1170
|
-
var StartDevEnvironment$ = [9, n0, _SDE,
|
|
1171
|
-
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/start", 200] }, () => StartDevEnvironmentRequest$, () => StartDevEnvironmentResponse$
|
|
1172
|
-
];
|
|
1173
|
-
var StartDevEnvironmentSession$ = [9, n0, _SDES,
|
|
1174
|
-
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/session", 200] }, () => StartDevEnvironmentSessionRequest$, () => StartDevEnvironmentSessionResponse$
|
|
1175
|
-
];
|
|
1176
|
-
var StartWorkflowRun$ = [9, n0, _SWR,
|
|
1177
|
-
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/workflowRuns", 200] }, () => StartWorkflowRunRequest$, () => StartWorkflowRunResponse$
|
|
1178
|
-
];
|
|
1179
|
-
var StopDevEnvironment$ = [9, n0, _SDEt,
|
|
1180
|
-
{ [_ht]: ["PUT", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/stop", 200] }, () => StopDevEnvironmentRequest$, () => StopDevEnvironmentResponse$
|
|
1181
|
-
];
|
|
1182
|
-
var StopDevEnvironmentSession$ = [9, n0, _SDESt,
|
|
1183
|
-
{ [_ht]: ["DELETE", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}/session/{sessionId}", 200] }, () => StopDevEnvironmentSessionRequest$, () => StopDevEnvironmentSessionResponse$
|
|
1184
|
-
];
|
|
1185
|
-
var UpdateDevEnvironment$ = [9, n0, _UDE,
|
|
1186
|
-
{ [_ht]: ["PATCH", "/v1/spaces/{spaceName}/projects/{projectName}/devEnvironments/{id}", 200] }, () => UpdateDevEnvironmentRequest$, () => UpdateDevEnvironmentResponse$
|
|
1187
|
-
];
|
|
1188
|
-
var UpdateProject$ = [9, n0, _UP,
|
|
1189
|
-
{ [_ht]: ["PATCH", "/v1/spaces/{spaceName}/projects/{name}", 200] }, () => UpdateProjectRequest$, () => UpdateProjectResponse$
|
|
1190
|
-
];
|
|
1191
|
-
var UpdateSpace$ = [9, n0, _US,
|
|
1192
|
-
{ [_ht]: ["PATCH", "/v1/spaces/{name}", 200] }, () => UpdateSpaceRequest$, () => UpdateSpaceResponse$
|
|
1193
|
-
];
|
|
1194
|
-
var VerifySession$ = [9, n0, _VS,
|
|
1195
|
-
{ [_ht]: ["GET", "/session", 200] }, () => __Unit, () => VerifySessionResponse$
|
|
1196
|
-
];
|
|
1197
|
-
|
|
1198
114
|
class CreateAccessTokenCommand extends smithyClient.Command
|
|
1199
115
|
.classBuilder()
|
|
1200
116
|
.ep(commonParams)
|
|
@@ -1203,7 +119,7 @@ class CreateAccessTokenCommand extends smithyClient.Command
|
|
|
1203
119
|
})
|
|
1204
120
|
.s("CodeCatalyst", "CreateAccessToken", {})
|
|
1205
121
|
.n("CodeCatalystClient", "CreateAccessTokenCommand")
|
|
1206
|
-
.sc(CreateAccessToken$)
|
|
122
|
+
.sc(schemas_0.CreateAccessToken$)
|
|
1207
123
|
.build() {
|
|
1208
124
|
}
|
|
1209
125
|
|
|
@@ -1215,7 +131,7 @@ class CreateDevEnvironmentCommand extends smithyClient.Command
|
|
|
1215
131
|
})
|
|
1216
132
|
.s("CodeCatalyst", "CreateDevEnvironment", {})
|
|
1217
133
|
.n("CodeCatalystClient", "CreateDevEnvironmentCommand")
|
|
1218
|
-
.sc(CreateDevEnvironment$)
|
|
134
|
+
.sc(schemas_0.CreateDevEnvironment$)
|
|
1219
135
|
.build() {
|
|
1220
136
|
}
|
|
1221
137
|
|
|
@@ -1227,7 +143,7 @@ class CreateProjectCommand extends smithyClient.Command
|
|
|
1227
143
|
})
|
|
1228
144
|
.s("CodeCatalyst", "CreateProject", {})
|
|
1229
145
|
.n("CodeCatalystClient", "CreateProjectCommand")
|
|
1230
|
-
.sc(CreateProject$)
|
|
146
|
+
.sc(schemas_0.CreateProject$)
|
|
1231
147
|
.build() {
|
|
1232
148
|
}
|
|
1233
149
|
|
|
@@ -1239,7 +155,7 @@ class CreateSourceRepositoryBranchCommand extends smithyClient.Command
|
|
|
1239
155
|
})
|
|
1240
156
|
.s("CodeCatalyst", "CreateSourceRepositoryBranch", {})
|
|
1241
157
|
.n("CodeCatalystClient", "CreateSourceRepositoryBranchCommand")
|
|
1242
|
-
.sc(CreateSourceRepositoryBranch$)
|
|
158
|
+
.sc(schemas_0.CreateSourceRepositoryBranch$)
|
|
1243
159
|
.build() {
|
|
1244
160
|
}
|
|
1245
161
|
|
|
@@ -1251,7 +167,7 @@ class CreateSourceRepositoryCommand extends smithyClient.Command
|
|
|
1251
167
|
})
|
|
1252
168
|
.s("CodeCatalyst", "CreateSourceRepository", {})
|
|
1253
169
|
.n("CodeCatalystClient", "CreateSourceRepositoryCommand")
|
|
1254
|
-
.sc(CreateSourceRepository$)
|
|
170
|
+
.sc(schemas_0.CreateSourceRepository$)
|
|
1255
171
|
.build() {
|
|
1256
172
|
}
|
|
1257
173
|
|
|
@@ -1263,7 +179,7 @@ class DeleteAccessTokenCommand extends smithyClient.Command
|
|
|
1263
179
|
})
|
|
1264
180
|
.s("CodeCatalyst", "DeleteAccessToken", {})
|
|
1265
181
|
.n("CodeCatalystClient", "DeleteAccessTokenCommand")
|
|
1266
|
-
.sc(DeleteAccessToken$)
|
|
182
|
+
.sc(schemas_0.DeleteAccessToken$)
|
|
1267
183
|
.build() {
|
|
1268
184
|
}
|
|
1269
185
|
|
|
@@ -1275,7 +191,7 @@ class DeleteDevEnvironmentCommand extends smithyClient.Command
|
|
|
1275
191
|
})
|
|
1276
192
|
.s("CodeCatalyst", "DeleteDevEnvironment", {})
|
|
1277
193
|
.n("CodeCatalystClient", "DeleteDevEnvironmentCommand")
|
|
1278
|
-
.sc(DeleteDevEnvironment$)
|
|
194
|
+
.sc(schemas_0.DeleteDevEnvironment$)
|
|
1279
195
|
.build() {
|
|
1280
196
|
}
|
|
1281
197
|
|
|
@@ -1287,7 +203,7 @@ class DeleteProjectCommand extends smithyClient.Command
|
|
|
1287
203
|
})
|
|
1288
204
|
.s("CodeCatalyst", "DeleteProject", {})
|
|
1289
205
|
.n("CodeCatalystClient", "DeleteProjectCommand")
|
|
1290
|
-
.sc(DeleteProject$)
|
|
206
|
+
.sc(schemas_0.DeleteProject$)
|
|
1291
207
|
.build() {
|
|
1292
208
|
}
|
|
1293
209
|
|
|
@@ -1299,7 +215,7 @@ class DeleteSourceRepositoryCommand extends smithyClient.Command
|
|
|
1299
215
|
})
|
|
1300
216
|
.s("CodeCatalyst", "DeleteSourceRepository", {})
|
|
1301
217
|
.n("CodeCatalystClient", "DeleteSourceRepositoryCommand")
|
|
1302
|
-
.sc(DeleteSourceRepository$)
|
|
218
|
+
.sc(schemas_0.DeleteSourceRepository$)
|
|
1303
219
|
.build() {
|
|
1304
220
|
}
|
|
1305
221
|
|
|
@@ -1311,7 +227,7 @@ class DeleteSpaceCommand extends smithyClient.Command
|
|
|
1311
227
|
})
|
|
1312
228
|
.s("CodeCatalyst", "DeleteSpace", {})
|
|
1313
229
|
.n("CodeCatalystClient", "DeleteSpaceCommand")
|
|
1314
|
-
.sc(DeleteSpace$)
|
|
230
|
+
.sc(schemas_0.DeleteSpace$)
|
|
1315
231
|
.build() {
|
|
1316
232
|
}
|
|
1317
233
|
|
|
@@ -1323,7 +239,7 @@ class GetDevEnvironmentCommand extends smithyClient.Command
|
|
|
1323
239
|
})
|
|
1324
240
|
.s("CodeCatalyst", "GetDevEnvironment", {})
|
|
1325
241
|
.n("CodeCatalystClient", "GetDevEnvironmentCommand")
|
|
1326
|
-
.sc(GetDevEnvironment$)
|
|
242
|
+
.sc(schemas_0.GetDevEnvironment$)
|
|
1327
243
|
.build() {
|
|
1328
244
|
}
|
|
1329
245
|
|
|
@@ -1335,7 +251,7 @@ class GetProjectCommand extends smithyClient.Command
|
|
|
1335
251
|
})
|
|
1336
252
|
.s("CodeCatalyst", "GetProject", {})
|
|
1337
253
|
.n("CodeCatalystClient", "GetProjectCommand")
|
|
1338
|
-
.sc(GetProject$)
|
|
254
|
+
.sc(schemas_0.GetProject$)
|
|
1339
255
|
.build() {
|
|
1340
256
|
}
|
|
1341
257
|
|
|
@@ -1347,7 +263,7 @@ class GetSourceRepositoryCloneUrlsCommand extends smithyClient.Command
|
|
|
1347
263
|
})
|
|
1348
264
|
.s("CodeCatalyst", "GetSourceRepositoryCloneUrls", {})
|
|
1349
265
|
.n("CodeCatalystClient", "GetSourceRepositoryCloneUrlsCommand")
|
|
1350
|
-
.sc(GetSourceRepositoryCloneUrls$)
|
|
266
|
+
.sc(schemas_0.GetSourceRepositoryCloneUrls$)
|
|
1351
267
|
.build() {
|
|
1352
268
|
}
|
|
1353
269
|
|
|
@@ -1359,7 +275,7 @@ class GetSourceRepositoryCommand extends smithyClient.Command
|
|
|
1359
275
|
})
|
|
1360
276
|
.s("CodeCatalyst", "GetSourceRepository", {})
|
|
1361
277
|
.n("CodeCatalystClient", "GetSourceRepositoryCommand")
|
|
1362
|
-
.sc(GetSourceRepository$)
|
|
278
|
+
.sc(schemas_0.GetSourceRepository$)
|
|
1363
279
|
.build() {
|
|
1364
280
|
}
|
|
1365
281
|
|
|
@@ -1371,7 +287,7 @@ class GetSpaceCommand extends smithyClient.Command
|
|
|
1371
287
|
})
|
|
1372
288
|
.s("CodeCatalyst", "GetSpace", {})
|
|
1373
289
|
.n("CodeCatalystClient", "GetSpaceCommand")
|
|
1374
|
-
.sc(GetSpace$)
|
|
290
|
+
.sc(schemas_0.GetSpace$)
|
|
1375
291
|
.build() {
|
|
1376
292
|
}
|
|
1377
293
|
|
|
@@ -1383,7 +299,7 @@ class GetSubscriptionCommand extends smithyClient.Command
|
|
|
1383
299
|
})
|
|
1384
300
|
.s("CodeCatalyst", "GetSubscription", {})
|
|
1385
301
|
.n("CodeCatalystClient", "GetSubscriptionCommand")
|
|
1386
|
-
.sc(GetSubscription$)
|
|
302
|
+
.sc(schemas_0.GetSubscription$)
|
|
1387
303
|
.build() {
|
|
1388
304
|
}
|
|
1389
305
|
|
|
@@ -1395,7 +311,7 @@ class GetUserDetailsCommand extends smithyClient.Command
|
|
|
1395
311
|
})
|
|
1396
312
|
.s("CodeCatalyst", "GetUserDetails", {})
|
|
1397
313
|
.n("CodeCatalystClient", "GetUserDetailsCommand")
|
|
1398
|
-
.sc(GetUserDetails$)
|
|
314
|
+
.sc(schemas_0.GetUserDetails$)
|
|
1399
315
|
.build() {
|
|
1400
316
|
}
|
|
1401
317
|
|
|
@@ -1407,7 +323,7 @@ class GetWorkflowCommand extends smithyClient.Command
|
|
|
1407
323
|
})
|
|
1408
324
|
.s("CodeCatalyst", "GetWorkflow", {})
|
|
1409
325
|
.n("CodeCatalystClient", "GetWorkflowCommand")
|
|
1410
|
-
.sc(GetWorkflow$)
|
|
326
|
+
.sc(schemas_0.GetWorkflow$)
|
|
1411
327
|
.build() {
|
|
1412
328
|
}
|
|
1413
329
|
|
|
@@ -1419,7 +335,7 @@ class GetWorkflowRunCommand extends smithyClient.Command
|
|
|
1419
335
|
})
|
|
1420
336
|
.s("CodeCatalyst", "GetWorkflowRun", {})
|
|
1421
337
|
.n("CodeCatalystClient", "GetWorkflowRunCommand")
|
|
1422
|
-
.sc(GetWorkflowRun$)
|
|
338
|
+
.sc(schemas_0.GetWorkflowRun$)
|
|
1423
339
|
.build() {
|
|
1424
340
|
}
|
|
1425
341
|
|
|
@@ -1431,7 +347,7 @@ class ListAccessTokensCommand extends smithyClient.Command
|
|
|
1431
347
|
})
|
|
1432
348
|
.s("CodeCatalyst", "ListAccessTokens", {})
|
|
1433
349
|
.n("CodeCatalystClient", "ListAccessTokensCommand")
|
|
1434
|
-
.sc(ListAccessTokens$)
|
|
350
|
+
.sc(schemas_0.ListAccessTokens$)
|
|
1435
351
|
.build() {
|
|
1436
352
|
}
|
|
1437
353
|
|
|
@@ -1443,7 +359,7 @@ class ListDevEnvironmentsCommand extends smithyClient.Command
|
|
|
1443
359
|
})
|
|
1444
360
|
.s("CodeCatalyst", "ListDevEnvironments", {})
|
|
1445
361
|
.n("CodeCatalystClient", "ListDevEnvironmentsCommand")
|
|
1446
|
-
.sc(ListDevEnvironments$)
|
|
362
|
+
.sc(schemas_0.ListDevEnvironments$)
|
|
1447
363
|
.build() {
|
|
1448
364
|
}
|
|
1449
365
|
|
|
@@ -1455,7 +371,7 @@ class ListDevEnvironmentSessionsCommand extends smithyClient.Command
|
|
|
1455
371
|
})
|
|
1456
372
|
.s("CodeCatalyst", "ListDevEnvironmentSessions", {})
|
|
1457
373
|
.n("CodeCatalystClient", "ListDevEnvironmentSessionsCommand")
|
|
1458
|
-
.sc(ListDevEnvironmentSessions$)
|
|
374
|
+
.sc(schemas_0.ListDevEnvironmentSessions$)
|
|
1459
375
|
.build() {
|
|
1460
376
|
}
|
|
1461
377
|
|
|
@@ -1467,7 +383,7 @@ class ListEventLogsCommand extends smithyClient.Command
|
|
|
1467
383
|
})
|
|
1468
384
|
.s("CodeCatalyst", "ListEventLogs", {})
|
|
1469
385
|
.n("CodeCatalystClient", "ListEventLogsCommand")
|
|
1470
|
-
.sc(ListEventLogs$)
|
|
386
|
+
.sc(schemas_0.ListEventLogs$)
|
|
1471
387
|
.build() {
|
|
1472
388
|
}
|
|
1473
389
|
|
|
@@ -1479,7 +395,7 @@ class ListProjectsCommand extends smithyClient.Command
|
|
|
1479
395
|
})
|
|
1480
396
|
.s("CodeCatalyst", "ListProjects", {})
|
|
1481
397
|
.n("CodeCatalystClient", "ListProjectsCommand")
|
|
1482
|
-
.sc(ListProjects$)
|
|
398
|
+
.sc(schemas_0.ListProjects$)
|
|
1483
399
|
.build() {
|
|
1484
400
|
}
|
|
1485
401
|
|
|
@@ -1491,7 +407,7 @@ class ListSourceRepositoriesCommand extends smithyClient.Command
|
|
|
1491
407
|
})
|
|
1492
408
|
.s("CodeCatalyst", "ListSourceRepositories", {})
|
|
1493
409
|
.n("CodeCatalystClient", "ListSourceRepositoriesCommand")
|
|
1494
|
-
.sc(ListSourceRepositories$)
|
|
410
|
+
.sc(schemas_0.ListSourceRepositories$)
|
|
1495
411
|
.build() {
|
|
1496
412
|
}
|
|
1497
413
|
|
|
@@ -1503,7 +419,7 @@ class ListSourceRepositoryBranchesCommand extends smithyClient.Command
|
|
|
1503
419
|
})
|
|
1504
420
|
.s("CodeCatalyst", "ListSourceRepositoryBranches", {})
|
|
1505
421
|
.n("CodeCatalystClient", "ListSourceRepositoryBranchesCommand")
|
|
1506
|
-
.sc(ListSourceRepositoryBranches$)
|
|
422
|
+
.sc(schemas_0.ListSourceRepositoryBranches$)
|
|
1507
423
|
.build() {
|
|
1508
424
|
}
|
|
1509
425
|
|
|
@@ -1515,7 +431,7 @@ class ListSpacesCommand extends smithyClient.Command
|
|
|
1515
431
|
})
|
|
1516
432
|
.s("CodeCatalyst", "ListSpaces", {})
|
|
1517
433
|
.n("CodeCatalystClient", "ListSpacesCommand")
|
|
1518
|
-
.sc(ListSpaces$)
|
|
434
|
+
.sc(schemas_0.ListSpaces$)
|
|
1519
435
|
.build() {
|
|
1520
436
|
}
|
|
1521
437
|
|
|
@@ -1527,7 +443,7 @@ class ListWorkflowRunsCommand extends smithyClient.Command
|
|
|
1527
443
|
})
|
|
1528
444
|
.s("CodeCatalyst", "ListWorkflowRuns", {})
|
|
1529
445
|
.n("CodeCatalystClient", "ListWorkflowRunsCommand")
|
|
1530
|
-
.sc(ListWorkflowRuns$)
|
|
446
|
+
.sc(schemas_0.ListWorkflowRuns$)
|
|
1531
447
|
.build() {
|
|
1532
448
|
}
|
|
1533
449
|
|
|
@@ -1539,7 +455,7 @@ class ListWorkflowsCommand extends smithyClient.Command
|
|
|
1539
455
|
})
|
|
1540
456
|
.s("CodeCatalyst", "ListWorkflows", {})
|
|
1541
457
|
.n("CodeCatalystClient", "ListWorkflowsCommand")
|
|
1542
|
-
.sc(ListWorkflows$)
|
|
458
|
+
.sc(schemas_0.ListWorkflows$)
|
|
1543
459
|
.build() {
|
|
1544
460
|
}
|
|
1545
461
|
|
|
@@ -1551,7 +467,7 @@ class StartDevEnvironmentCommand extends smithyClient.Command
|
|
|
1551
467
|
})
|
|
1552
468
|
.s("CodeCatalyst", "StartDevEnvironment", {})
|
|
1553
469
|
.n("CodeCatalystClient", "StartDevEnvironmentCommand")
|
|
1554
|
-
.sc(StartDevEnvironment$)
|
|
470
|
+
.sc(schemas_0.StartDevEnvironment$)
|
|
1555
471
|
.build() {
|
|
1556
472
|
}
|
|
1557
473
|
|
|
@@ -1563,7 +479,7 @@ class StartDevEnvironmentSessionCommand extends smithyClient.Command
|
|
|
1563
479
|
})
|
|
1564
480
|
.s("CodeCatalyst", "StartDevEnvironmentSession", {})
|
|
1565
481
|
.n("CodeCatalystClient", "StartDevEnvironmentSessionCommand")
|
|
1566
|
-
.sc(StartDevEnvironmentSession$)
|
|
482
|
+
.sc(schemas_0.StartDevEnvironmentSession$)
|
|
1567
483
|
.build() {
|
|
1568
484
|
}
|
|
1569
485
|
|
|
@@ -1575,7 +491,7 @@ class StartWorkflowRunCommand extends smithyClient.Command
|
|
|
1575
491
|
})
|
|
1576
492
|
.s("CodeCatalyst", "StartWorkflowRun", {})
|
|
1577
493
|
.n("CodeCatalystClient", "StartWorkflowRunCommand")
|
|
1578
|
-
.sc(StartWorkflowRun$)
|
|
494
|
+
.sc(schemas_0.StartWorkflowRun$)
|
|
1579
495
|
.build() {
|
|
1580
496
|
}
|
|
1581
497
|
|
|
@@ -1587,7 +503,7 @@ class StopDevEnvironmentCommand extends smithyClient.Command
|
|
|
1587
503
|
})
|
|
1588
504
|
.s("CodeCatalyst", "StopDevEnvironment", {})
|
|
1589
505
|
.n("CodeCatalystClient", "StopDevEnvironmentCommand")
|
|
1590
|
-
.sc(StopDevEnvironment$)
|
|
506
|
+
.sc(schemas_0.StopDevEnvironment$)
|
|
1591
507
|
.build() {
|
|
1592
508
|
}
|
|
1593
509
|
|
|
@@ -1599,7 +515,7 @@ class StopDevEnvironmentSessionCommand extends smithyClient.Command
|
|
|
1599
515
|
})
|
|
1600
516
|
.s("CodeCatalyst", "StopDevEnvironmentSession", {})
|
|
1601
517
|
.n("CodeCatalystClient", "StopDevEnvironmentSessionCommand")
|
|
1602
|
-
.sc(StopDevEnvironmentSession$)
|
|
518
|
+
.sc(schemas_0.StopDevEnvironmentSession$)
|
|
1603
519
|
.build() {
|
|
1604
520
|
}
|
|
1605
521
|
|
|
@@ -1611,7 +527,7 @@ class UpdateDevEnvironmentCommand extends smithyClient.Command
|
|
|
1611
527
|
})
|
|
1612
528
|
.s("CodeCatalyst", "UpdateDevEnvironment", {})
|
|
1613
529
|
.n("CodeCatalystClient", "UpdateDevEnvironmentCommand")
|
|
1614
|
-
.sc(UpdateDevEnvironment$)
|
|
530
|
+
.sc(schemas_0.UpdateDevEnvironment$)
|
|
1615
531
|
.build() {
|
|
1616
532
|
}
|
|
1617
533
|
|
|
@@ -1623,7 +539,7 @@ class UpdateProjectCommand extends smithyClient.Command
|
|
|
1623
539
|
})
|
|
1624
540
|
.s("CodeCatalyst", "UpdateProject", {})
|
|
1625
541
|
.n("CodeCatalystClient", "UpdateProjectCommand")
|
|
1626
|
-
.sc(UpdateProject$)
|
|
542
|
+
.sc(schemas_0.UpdateProject$)
|
|
1627
543
|
.build() {
|
|
1628
544
|
}
|
|
1629
545
|
|
|
@@ -1635,7 +551,7 @@ class UpdateSpaceCommand extends smithyClient.Command
|
|
|
1635
551
|
})
|
|
1636
552
|
.s("CodeCatalyst", "UpdateSpace", {})
|
|
1637
553
|
.n("CodeCatalystClient", "UpdateSpaceCommand")
|
|
1638
|
-
.sc(UpdateSpace$)
|
|
554
|
+
.sc(schemas_0.UpdateSpace$)
|
|
1639
555
|
.build() {
|
|
1640
556
|
}
|
|
1641
557
|
|
|
@@ -1647,7 +563,7 @@ class VerifySessionCommand extends smithyClient.Command
|
|
|
1647
563
|
})
|
|
1648
564
|
.s("CodeCatalyst", "VerifySession", {})
|
|
1649
565
|
.n("CodeCatalystClient", "VerifySessionCommand")
|
|
1650
|
-
.sc(VerifySession$)
|
|
566
|
+
.sc(schemas_0.VerifySession$)
|
|
1651
567
|
.build() {
|
|
1652
568
|
}
|
|
1653
569
|
|
|
@@ -1799,212 +715,59 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1799
715
|
enumerable: true,
|
|
1800
716
|
get: function () { return smithyClient.Client; }
|
|
1801
717
|
});
|
|
1802
|
-
exports
|
|
1803
|
-
|
|
1804
|
-
|
|
718
|
+
Object.defineProperty(exports, "CodeCatalystServiceException", {
|
|
719
|
+
enumerable: true,
|
|
720
|
+
get: function () { return CodeCatalystServiceException.CodeCatalystServiceException; }
|
|
721
|
+
});
|
|
1805
722
|
exports.CodeCatalyst = CodeCatalyst;
|
|
1806
723
|
exports.CodeCatalystClient = CodeCatalystClient;
|
|
1807
|
-
exports.CodeCatalystServiceException = CodeCatalystServiceException;
|
|
1808
|
-
exports.CodeCatalystServiceException$ = CodeCatalystServiceException$;
|
|
1809
724
|
exports.ComparisonOperator = ComparisonOperator;
|
|
1810
|
-
exports.ConflictException = ConflictException;
|
|
1811
|
-
exports.ConflictException$ = ConflictException$;
|
|
1812
|
-
exports.CreateAccessToken$ = CreateAccessToken$;
|
|
1813
725
|
exports.CreateAccessTokenCommand = CreateAccessTokenCommand;
|
|
1814
|
-
exports.CreateAccessTokenRequest$ = CreateAccessTokenRequest$;
|
|
1815
|
-
exports.CreateAccessTokenResponse$ = CreateAccessTokenResponse$;
|
|
1816
|
-
exports.CreateDevEnvironment$ = CreateDevEnvironment$;
|
|
1817
726
|
exports.CreateDevEnvironmentCommand = CreateDevEnvironmentCommand;
|
|
1818
|
-
exports.CreateDevEnvironmentRequest$ = CreateDevEnvironmentRequest$;
|
|
1819
|
-
exports.CreateDevEnvironmentResponse$ = CreateDevEnvironmentResponse$;
|
|
1820
|
-
exports.CreateProject$ = CreateProject$;
|
|
1821
727
|
exports.CreateProjectCommand = CreateProjectCommand;
|
|
1822
|
-
exports.CreateProjectRequest$ = CreateProjectRequest$;
|
|
1823
|
-
exports.CreateProjectResponse$ = CreateProjectResponse$;
|
|
1824
|
-
exports.CreateSourceRepository$ = CreateSourceRepository$;
|
|
1825
|
-
exports.CreateSourceRepositoryBranch$ = CreateSourceRepositoryBranch$;
|
|
1826
728
|
exports.CreateSourceRepositoryBranchCommand = CreateSourceRepositoryBranchCommand;
|
|
1827
|
-
exports.CreateSourceRepositoryBranchRequest$ = CreateSourceRepositoryBranchRequest$;
|
|
1828
|
-
exports.CreateSourceRepositoryBranchResponse$ = CreateSourceRepositoryBranchResponse$;
|
|
1829
729
|
exports.CreateSourceRepositoryCommand = CreateSourceRepositoryCommand;
|
|
1830
|
-
exports.CreateSourceRepositoryRequest$ = CreateSourceRepositoryRequest$;
|
|
1831
|
-
exports.CreateSourceRepositoryResponse$ = CreateSourceRepositoryResponse$;
|
|
1832
|
-
exports.DeleteAccessToken$ = DeleteAccessToken$;
|
|
1833
730
|
exports.DeleteAccessTokenCommand = DeleteAccessTokenCommand;
|
|
1834
|
-
exports.DeleteAccessTokenRequest$ = DeleteAccessTokenRequest$;
|
|
1835
|
-
exports.DeleteAccessTokenResponse$ = DeleteAccessTokenResponse$;
|
|
1836
|
-
exports.DeleteDevEnvironment$ = DeleteDevEnvironment$;
|
|
1837
731
|
exports.DeleteDevEnvironmentCommand = DeleteDevEnvironmentCommand;
|
|
1838
|
-
exports.DeleteDevEnvironmentRequest$ = DeleteDevEnvironmentRequest$;
|
|
1839
|
-
exports.DeleteDevEnvironmentResponse$ = DeleteDevEnvironmentResponse$;
|
|
1840
|
-
exports.DeleteProject$ = DeleteProject$;
|
|
1841
732
|
exports.DeleteProjectCommand = DeleteProjectCommand;
|
|
1842
|
-
exports.DeleteProjectRequest$ = DeleteProjectRequest$;
|
|
1843
|
-
exports.DeleteProjectResponse$ = DeleteProjectResponse$;
|
|
1844
|
-
exports.DeleteSourceRepository$ = DeleteSourceRepository$;
|
|
1845
733
|
exports.DeleteSourceRepositoryCommand = DeleteSourceRepositoryCommand;
|
|
1846
|
-
exports.DeleteSourceRepositoryRequest$ = DeleteSourceRepositoryRequest$;
|
|
1847
|
-
exports.DeleteSourceRepositoryResponse$ = DeleteSourceRepositoryResponse$;
|
|
1848
|
-
exports.DeleteSpace$ = DeleteSpace$;
|
|
1849
734
|
exports.DeleteSpaceCommand = DeleteSpaceCommand;
|
|
1850
|
-
exports.DeleteSpaceRequest$ = DeleteSpaceRequest$;
|
|
1851
|
-
exports.DeleteSpaceResponse$ = DeleteSpaceResponse$;
|
|
1852
|
-
exports.DevEnvironmentAccessDetails$ = DevEnvironmentAccessDetails$;
|
|
1853
|
-
exports.DevEnvironmentRepositorySummary$ = DevEnvironmentRepositorySummary$;
|
|
1854
|
-
exports.DevEnvironmentSessionConfiguration$ = DevEnvironmentSessionConfiguration$;
|
|
1855
|
-
exports.DevEnvironmentSessionSummary$ = DevEnvironmentSessionSummary$;
|
|
1856
735
|
exports.DevEnvironmentSessionType = DevEnvironmentSessionType;
|
|
1857
736
|
exports.DevEnvironmentStatus = DevEnvironmentStatus;
|
|
1858
|
-
exports.DevEnvironmentSummary$ = DevEnvironmentSummary$;
|
|
1859
|
-
exports.EmailAddress$ = EmailAddress$;
|
|
1860
|
-
exports.EventLogEntry$ = EventLogEntry$;
|
|
1861
|
-
exports.EventPayload$ = EventPayload$;
|
|
1862
|
-
exports.ExecuteCommandSessionConfiguration$ = ExecuteCommandSessionConfiguration$;
|
|
1863
|
-
exports.Filter$ = Filter$;
|
|
1864
737
|
exports.FilterKey = FilterKey;
|
|
1865
|
-
exports.GetDevEnvironment$ = GetDevEnvironment$;
|
|
1866
738
|
exports.GetDevEnvironmentCommand = GetDevEnvironmentCommand;
|
|
1867
|
-
exports.GetDevEnvironmentRequest$ = GetDevEnvironmentRequest$;
|
|
1868
|
-
exports.GetDevEnvironmentResponse$ = GetDevEnvironmentResponse$;
|
|
1869
|
-
exports.GetProject$ = GetProject$;
|
|
1870
739
|
exports.GetProjectCommand = GetProjectCommand;
|
|
1871
|
-
exports.GetProjectRequest$ = GetProjectRequest$;
|
|
1872
|
-
exports.GetProjectResponse$ = GetProjectResponse$;
|
|
1873
|
-
exports.GetSourceRepository$ = GetSourceRepository$;
|
|
1874
|
-
exports.GetSourceRepositoryCloneUrls$ = GetSourceRepositoryCloneUrls$;
|
|
1875
740
|
exports.GetSourceRepositoryCloneUrlsCommand = GetSourceRepositoryCloneUrlsCommand;
|
|
1876
|
-
exports.GetSourceRepositoryCloneUrlsRequest$ = GetSourceRepositoryCloneUrlsRequest$;
|
|
1877
|
-
exports.GetSourceRepositoryCloneUrlsResponse$ = GetSourceRepositoryCloneUrlsResponse$;
|
|
1878
741
|
exports.GetSourceRepositoryCommand = GetSourceRepositoryCommand;
|
|
1879
|
-
exports.GetSourceRepositoryRequest$ = GetSourceRepositoryRequest$;
|
|
1880
|
-
exports.GetSourceRepositoryResponse$ = GetSourceRepositoryResponse$;
|
|
1881
|
-
exports.GetSpace$ = GetSpace$;
|
|
1882
742
|
exports.GetSpaceCommand = GetSpaceCommand;
|
|
1883
|
-
exports.GetSpaceRequest$ = GetSpaceRequest$;
|
|
1884
|
-
exports.GetSpaceResponse$ = GetSpaceResponse$;
|
|
1885
|
-
exports.GetSubscription$ = GetSubscription$;
|
|
1886
743
|
exports.GetSubscriptionCommand = GetSubscriptionCommand;
|
|
1887
|
-
exports.GetSubscriptionRequest$ = GetSubscriptionRequest$;
|
|
1888
|
-
exports.GetSubscriptionResponse$ = GetSubscriptionResponse$;
|
|
1889
|
-
exports.GetUserDetails$ = GetUserDetails$;
|
|
1890
744
|
exports.GetUserDetailsCommand = GetUserDetailsCommand;
|
|
1891
|
-
exports.GetUserDetailsRequest$ = GetUserDetailsRequest$;
|
|
1892
|
-
exports.GetUserDetailsResponse$ = GetUserDetailsResponse$;
|
|
1893
|
-
exports.GetWorkflow$ = GetWorkflow$;
|
|
1894
745
|
exports.GetWorkflowCommand = GetWorkflowCommand;
|
|
1895
|
-
exports.GetWorkflowRequest$ = GetWorkflowRequest$;
|
|
1896
|
-
exports.GetWorkflowResponse$ = GetWorkflowResponse$;
|
|
1897
|
-
exports.GetWorkflowRun$ = GetWorkflowRun$;
|
|
1898
746
|
exports.GetWorkflowRunCommand = GetWorkflowRunCommand;
|
|
1899
|
-
exports.GetWorkflowRunRequest$ = GetWorkflowRunRequest$;
|
|
1900
|
-
exports.GetWorkflowRunResponse$ = GetWorkflowRunResponse$;
|
|
1901
|
-
exports.Ide$ = Ide$;
|
|
1902
|
-
exports.IdeConfiguration$ = IdeConfiguration$;
|
|
1903
|
-
exports.ListAccessTokens$ = ListAccessTokens$;
|
|
1904
747
|
exports.ListAccessTokensCommand = ListAccessTokensCommand;
|
|
1905
|
-
exports.ListAccessTokensRequest$ = ListAccessTokensRequest$;
|
|
1906
|
-
exports.ListAccessTokensResponse$ = ListAccessTokensResponse$;
|
|
1907
|
-
exports.ListDevEnvironmentSessions$ = ListDevEnvironmentSessions$;
|
|
1908
748
|
exports.ListDevEnvironmentSessionsCommand = ListDevEnvironmentSessionsCommand;
|
|
1909
|
-
exports.ListDevEnvironmentSessionsRequest$ = ListDevEnvironmentSessionsRequest$;
|
|
1910
|
-
exports.ListDevEnvironmentSessionsResponse$ = ListDevEnvironmentSessionsResponse$;
|
|
1911
|
-
exports.ListDevEnvironments$ = ListDevEnvironments$;
|
|
1912
749
|
exports.ListDevEnvironmentsCommand = ListDevEnvironmentsCommand;
|
|
1913
|
-
exports.ListDevEnvironmentsRequest$ = ListDevEnvironmentsRequest$;
|
|
1914
|
-
exports.ListDevEnvironmentsResponse$ = ListDevEnvironmentsResponse$;
|
|
1915
|
-
exports.ListEventLogs$ = ListEventLogs$;
|
|
1916
750
|
exports.ListEventLogsCommand = ListEventLogsCommand;
|
|
1917
|
-
exports.ListEventLogsRequest$ = ListEventLogsRequest$;
|
|
1918
|
-
exports.ListEventLogsResponse$ = ListEventLogsResponse$;
|
|
1919
|
-
exports.ListProjects$ = ListProjects$;
|
|
1920
751
|
exports.ListProjectsCommand = ListProjectsCommand;
|
|
1921
|
-
exports.ListProjectsRequest$ = ListProjectsRequest$;
|
|
1922
|
-
exports.ListProjectsResponse$ = ListProjectsResponse$;
|
|
1923
|
-
exports.ListSourceRepositories$ = ListSourceRepositories$;
|
|
1924
752
|
exports.ListSourceRepositoriesCommand = ListSourceRepositoriesCommand;
|
|
1925
|
-
exports.ListSourceRepositoriesItem$ = ListSourceRepositoriesItem$;
|
|
1926
|
-
exports.ListSourceRepositoriesRequest$ = ListSourceRepositoriesRequest$;
|
|
1927
|
-
exports.ListSourceRepositoriesResponse$ = ListSourceRepositoriesResponse$;
|
|
1928
|
-
exports.ListSourceRepositoryBranches$ = ListSourceRepositoryBranches$;
|
|
1929
753
|
exports.ListSourceRepositoryBranchesCommand = ListSourceRepositoryBranchesCommand;
|
|
1930
|
-
exports.ListSourceRepositoryBranchesItem$ = ListSourceRepositoryBranchesItem$;
|
|
1931
|
-
exports.ListSourceRepositoryBranchesRequest$ = ListSourceRepositoryBranchesRequest$;
|
|
1932
|
-
exports.ListSourceRepositoryBranchesResponse$ = ListSourceRepositoryBranchesResponse$;
|
|
1933
|
-
exports.ListSpaces$ = ListSpaces$;
|
|
1934
754
|
exports.ListSpacesCommand = ListSpacesCommand;
|
|
1935
|
-
exports.ListSpacesRequest$ = ListSpacesRequest$;
|
|
1936
|
-
exports.ListSpacesResponse$ = ListSpacesResponse$;
|
|
1937
|
-
exports.ListWorkflowRuns$ = ListWorkflowRuns$;
|
|
1938
755
|
exports.ListWorkflowRunsCommand = ListWorkflowRunsCommand;
|
|
1939
|
-
exports.ListWorkflowRunsRequest$ = ListWorkflowRunsRequest$;
|
|
1940
|
-
exports.ListWorkflowRunsResponse$ = ListWorkflowRunsResponse$;
|
|
1941
|
-
exports.ListWorkflows$ = ListWorkflows$;
|
|
1942
756
|
exports.ListWorkflowsCommand = ListWorkflowsCommand;
|
|
1943
|
-
exports.ListWorkflowsRequest$ = ListWorkflowsRequest$;
|
|
1944
|
-
exports.ListWorkflowsResponse$ = ListWorkflowsResponse$;
|
|
1945
757
|
exports.OperationType = OperationType;
|
|
1946
|
-
exports.PersistentStorage$ = PersistentStorage$;
|
|
1947
|
-
exports.PersistentStorageConfiguration$ = PersistentStorageConfiguration$;
|
|
1948
|
-
exports.ProjectInformation$ = ProjectInformation$;
|
|
1949
|
-
exports.ProjectListFilter$ = ProjectListFilter$;
|
|
1950
|
-
exports.ProjectSummary$ = ProjectSummary$;
|
|
1951
|
-
exports.RepositoryInput$ = RepositoryInput$;
|
|
1952
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1953
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1954
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1955
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1956
|
-
exports.SpaceSummary$ = SpaceSummary$;
|
|
1957
|
-
exports.StartDevEnvironment$ = StartDevEnvironment$;
|
|
1958
758
|
exports.StartDevEnvironmentCommand = StartDevEnvironmentCommand;
|
|
1959
|
-
exports.StartDevEnvironmentRequest$ = StartDevEnvironmentRequest$;
|
|
1960
|
-
exports.StartDevEnvironmentResponse$ = StartDevEnvironmentResponse$;
|
|
1961
|
-
exports.StartDevEnvironmentSession$ = StartDevEnvironmentSession$;
|
|
1962
759
|
exports.StartDevEnvironmentSessionCommand = StartDevEnvironmentSessionCommand;
|
|
1963
|
-
exports.StartDevEnvironmentSessionRequest$ = StartDevEnvironmentSessionRequest$;
|
|
1964
|
-
exports.StartDevEnvironmentSessionResponse$ = StartDevEnvironmentSessionResponse$;
|
|
1965
|
-
exports.StartWorkflowRun$ = StartWorkflowRun$;
|
|
1966
760
|
exports.StartWorkflowRunCommand = StartWorkflowRunCommand;
|
|
1967
|
-
exports.StartWorkflowRunRequest$ = StartWorkflowRunRequest$;
|
|
1968
|
-
exports.StartWorkflowRunResponse$ = StartWorkflowRunResponse$;
|
|
1969
|
-
exports.StopDevEnvironment$ = StopDevEnvironment$;
|
|
1970
761
|
exports.StopDevEnvironmentCommand = StopDevEnvironmentCommand;
|
|
1971
|
-
exports.StopDevEnvironmentRequest$ = StopDevEnvironmentRequest$;
|
|
1972
|
-
exports.StopDevEnvironmentResponse$ = StopDevEnvironmentResponse$;
|
|
1973
|
-
exports.StopDevEnvironmentSession$ = StopDevEnvironmentSession$;
|
|
1974
762
|
exports.StopDevEnvironmentSessionCommand = StopDevEnvironmentSessionCommand;
|
|
1975
|
-
exports.StopDevEnvironmentSessionRequest$ = StopDevEnvironmentSessionRequest$;
|
|
1976
|
-
exports.StopDevEnvironmentSessionResponse$ = StopDevEnvironmentSessionResponse$;
|
|
1977
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1978
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1979
|
-
exports.UpdateDevEnvironment$ = UpdateDevEnvironment$;
|
|
1980
763
|
exports.UpdateDevEnvironmentCommand = UpdateDevEnvironmentCommand;
|
|
1981
|
-
exports.UpdateDevEnvironmentRequest$ = UpdateDevEnvironmentRequest$;
|
|
1982
|
-
exports.UpdateDevEnvironmentResponse$ = UpdateDevEnvironmentResponse$;
|
|
1983
|
-
exports.UpdateProject$ = UpdateProject$;
|
|
1984
764
|
exports.UpdateProjectCommand = UpdateProjectCommand;
|
|
1985
|
-
exports.UpdateProjectRequest$ = UpdateProjectRequest$;
|
|
1986
|
-
exports.UpdateProjectResponse$ = UpdateProjectResponse$;
|
|
1987
|
-
exports.UpdateSpace$ = UpdateSpace$;
|
|
1988
765
|
exports.UpdateSpaceCommand = UpdateSpaceCommand;
|
|
1989
|
-
exports.UpdateSpaceRequest$ = UpdateSpaceRequest$;
|
|
1990
|
-
exports.UpdateSpaceResponse$ = UpdateSpaceResponse$;
|
|
1991
|
-
exports.UserIdentity$ = UserIdentity$;
|
|
1992
766
|
exports.UserType = UserType;
|
|
1993
|
-
exports.ValidationException = ValidationException;
|
|
1994
|
-
exports.ValidationException$ = ValidationException$;
|
|
1995
|
-
exports.VerifySession$ = VerifySession$;
|
|
1996
767
|
exports.VerifySessionCommand = VerifySessionCommand;
|
|
1997
|
-
exports.VerifySessionResponse$ = VerifySessionResponse$;
|
|
1998
|
-
exports.WorkflowDefinition$ = WorkflowDefinition$;
|
|
1999
|
-
exports.WorkflowDefinitionSummary$ = WorkflowDefinitionSummary$;
|
|
2000
768
|
exports.WorkflowRunMode = WorkflowRunMode;
|
|
2001
|
-
exports.WorkflowRunSortCriteria$ = WorkflowRunSortCriteria$;
|
|
2002
769
|
exports.WorkflowRunStatus = WorkflowRunStatus;
|
|
2003
|
-
exports.WorkflowRunStatusReason$ = WorkflowRunStatusReason$;
|
|
2004
|
-
exports.WorkflowRunSummary$ = WorkflowRunSummary$;
|
|
2005
|
-
exports.WorkflowSortCriteria$ = WorkflowSortCriteria$;
|
|
2006
770
|
exports.WorkflowStatus = WorkflowStatus;
|
|
2007
|
-
exports.WorkflowSummary$ = WorkflowSummary$;
|
|
2008
771
|
exports._InstanceType = _InstanceType;
|
|
2009
772
|
exports.paginateListAccessTokens = paginateListAccessTokens;
|
|
2010
773
|
exports.paginateListDevEnvironmentSessions = paginateListDevEnvironmentSessions;
|
|
@@ -2016,3 +779,15 @@ exports.paginateListSourceRepositoryBranches = paginateListSourceRepositoryBranc
|
|
|
2016
779
|
exports.paginateListSpaces = paginateListSpaces;
|
|
2017
780
|
exports.paginateListWorkflowRuns = paginateListWorkflowRuns;
|
|
2018
781
|
exports.paginateListWorkflows = paginateListWorkflows;
|
|
782
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
783
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
784
|
+
enumerable: true,
|
|
785
|
+
get: function () { return schemas_0[k]; }
|
|
786
|
+
});
|
|
787
|
+
});
|
|
788
|
+
Object.keys(errors).forEach(function (k) {
|
|
789
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
790
|
+
enumerable: true,
|
|
791
|
+
get: function () { return errors[k]; }
|
|
792
|
+
});
|
|
793
|
+
});
|