@aws-sdk/client-codecatalyst 3.687.0 → 3.692.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-types/models/models_0.d.ts +155 -155
- package/dist-types/ts3.4/models/models_0.d.ts +157 -155
- package/package.json +33 -33
|
@@ -14,7 +14,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
14
14
|
}
|
|
15
15
|
export interface CreateAccessTokenRequest {
|
|
16
16
|
name: string | undefined;
|
|
17
|
-
expiresTime?: Date;
|
|
17
|
+
expiresTime?: Date | undefined;
|
|
18
18
|
}
|
|
19
19
|
export interface CreateAccessTokenResponse {
|
|
20
20
|
secret: string | undefined;
|
|
@@ -56,47 +56,47 @@ export interface DeleteAccessTokenRequest {
|
|
|
56
56
|
}
|
|
57
57
|
export interface DeleteAccessTokenResponse {}
|
|
58
58
|
export interface ListAccessTokensRequest {
|
|
59
|
-
maxResults?: number;
|
|
60
|
-
nextToken?: string;
|
|
59
|
+
maxResults?: number | undefined;
|
|
60
|
+
nextToken?: string | undefined;
|
|
61
61
|
}
|
|
62
62
|
export interface AccessTokenSummary {
|
|
63
63
|
id: string | undefined;
|
|
64
64
|
name: string | undefined;
|
|
65
|
-
expiresTime?: Date;
|
|
65
|
+
expiresTime?: Date | undefined;
|
|
66
66
|
}
|
|
67
67
|
export interface ListAccessTokensResponse {
|
|
68
68
|
items: AccessTokenSummary[] | undefined;
|
|
69
|
-
nextToken?: string;
|
|
69
|
+
nextToken?: string | undefined;
|
|
70
70
|
}
|
|
71
71
|
export interface GetUserDetailsRequest {
|
|
72
|
-
id?: string;
|
|
73
|
-
userName?: string;
|
|
72
|
+
id?: string | undefined;
|
|
73
|
+
userName?: string | undefined;
|
|
74
74
|
}
|
|
75
75
|
export interface EmailAddress {
|
|
76
|
-
email?: string;
|
|
77
|
-
verified?: boolean;
|
|
76
|
+
email?: string | undefined;
|
|
77
|
+
verified?: boolean | undefined;
|
|
78
78
|
}
|
|
79
79
|
export interface GetUserDetailsResponse {
|
|
80
|
-
userId?: string;
|
|
81
|
-
userName?: string;
|
|
82
|
-
displayName?: string;
|
|
83
|
-
primaryEmail?: EmailAddress;
|
|
84
|
-
version?: string;
|
|
80
|
+
userId?: string | undefined;
|
|
81
|
+
userName?: string | undefined;
|
|
82
|
+
displayName?: string | undefined;
|
|
83
|
+
primaryEmail?: EmailAddress | undefined;
|
|
84
|
+
version?: string | undefined;
|
|
85
85
|
}
|
|
86
86
|
export interface DeleteSpaceRequest {
|
|
87
87
|
name: string | undefined;
|
|
88
88
|
}
|
|
89
89
|
export interface DeleteSpaceResponse {
|
|
90
90
|
name: string | undefined;
|
|
91
|
-
displayName?: string;
|
|
91
|
+
displayName?: string | undefined;
|
|
92
92
|
}
|
|
93
93
|
export interface ListEventLogsRequest {
|
|
94
94
|
spaceName: string | undefined;
|
|
95
95
|
startTime: Date | undefined;
|
|
96
96
|
endTime: Date | undefined;
|
|
97
|
-
eventName?: string;
|
|
98
|
-
nextToken?: string;
|
|
99
|
-
maxResults?: number;
|
|
97
|
+
eventName?: string | undefined;
|
|
98
|
+
nextToken?: string | undefined;
|
|
99
|
+
maxResults?: number | undefined;
|
|
100
100
|
}
|
|
101
101
|
export declare const OperationType: {
|
|
102
102
|
readonly MUTATION: "MUTATION";
|
|
@@ -104,12 +104,12 @@ export declare const OperationType: {
|
|
|
104
104
|
};
|
|
105
105
|
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
106
106
|
export interface ProjectInformation {
|
|
107
|
-
name?: string;
|
|
108
|
-
projectId?: string;
|
|
107
|
+
name?: string | undefined;
|
|
108
|
+
projectId?: string | undefined;
|
|
109
109
|
}
|
|
110
110
|
export interface EventPayload {
|
|
111
|
-
contentType?: string;
|
|
112
|
-
data?: string;
|
|
111
|
+
contentType?: string | undefined;
|
|
112
|
+
data?: string | undefined;
|
|
113
113
|
}
|
|
114
114
|
export declare const UserType: {
|
|
115
115
|
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
@@ -120,8 +120,8 @@ export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
|
120
120
|
export interface UserIdentity {
|
|
121
121
|
userType: UserType | undefined;
|
|
122
122
|
principalId: string | undefined;
|
|
123
|
-
userName?: string;
|
|
124
|
-
awsAccountId?: string;
|
|
123
|
+
userName?: string | undefined;
|
|
124
|
+
awsAccountId?: string | undefined;
|
|
125
125
|
}
|
|
126
126
|
export interface EventLogEntry {
|
|
127
127
|
id: string | undefined;
|
|
@@ -132,16 +132,16 @@ export interface EventLogEntry {
|
|
|
132
132
|
eventTime: Date | undefined;
|
|
133
133
|
operationType: OperationType | undefined;
|
|
134
134
|
userIdentity: UserIdentity | undefined;
|
|
135
|
-
projectInformation?: ProjectInformation;
|
|
136
|
-
requestId?: string;
|
|
137
|
-
requestPayload?: EventPayload;
|
|
138
|
-
responsePayload?: EventPayload;
|
|
139
|
-
errorCode?: string;
|
|
140
|
-
sourceIpAddress?: string;
|
|
141
|
-
userAgent?: string;
|
|
135
|
+
projectInformation?: ProjectInformation | undefined;
|
|
136
|
+
requestId?: string | undefined;
|
|
137
|
+
requestPayload?: EventPayload | undefined;
|
|
138
|
+
responsePayload?: EventPayload | undefined;
|
|
139
|
+
errorCode?: string | undefined;
|
|
140
|
+
sourceIpAddress?: string | undefined;
|
|
141
|
+
userAgent?: string | undefined;
|
|
142
142
|
}
|
|
143
143
|
export interface ListEventLogsResponse {
|
|
144
|
-
nextToken?: string;
|
|
144
|
+
nextToken?: string | undefined;
|
|
145
145
|
items: EventLogEntry[] | undefined;
|
|
146
146
|
}
|
|
147
147
|
export interface GetSpaceRequest {
|
|
@@ -150,24 +150,24 @@ export interface GetSpaceRequest {
|
|
|
150
150
|
export interface GetSpaceResponse {
|
|
151
151
|
name: string | undefined;
|
|
152
152
|
regionName: string | undefined;
|
|
153
|
-
displayName?: string;
|
|
154
|
-
description?: string;
|
|
153
|
+
displayName?: string | undefined;
|
|
154
|
+
description?: string | undefined;
|
|
155
155
|
}
|
|
156
156
|
export interface Filter {
|
|
157
157
|
key: string | undefined;
|
|
158
158
|
values: string[] | undefined;
|
|
159
|
-
comparisonOperator?: string;
|
|
159
|
+
comparisonOperator?: string | undefined;
|
|
160
160
|
}
|
|
161
161
|
export interface ListDevEnvironmentsRequest {
|
|
162
162
|
spaceName: string | undefined;
|
|
163
|
-
projectName?: string;
|
|
164
|
-
filters?: Filter[];
|
|
165
|
-
nextToken?: string;
|
|
166
|
-
maxResults?: number;
|
|
163
|
+
projectName?: string | undefined;
|
|
164
|
+
filters?: Filter[] | undefined;
|
|
165
|
+
nextToken?: string | undefined;
|
|
166
|
+
maxResults?: number | undefined;
|
|
167
167
|
}
|
|
168
168
|
export interface Ide {
|
|
169
|
-
runtime?: string;
|
|
170
|
-
name?: string;
|
|
169
|
+
runtime?: string | undefined;
|
|
170
|
+
name?: string | undefined;
|
|
171
171
|
}
|
|
172
172
|
export declare const _InstanceType: {
|
|
173
173
|
readonly DEV_STANDARD1_LARGE: "dev.standard1.large";
|
|
@@ -181,7 +181,7 @@ export interface PersistentStorage {
|
|
|
181
181
|
}
|
|
182
182
|
export interface DevEnvironmentRepositorySummary {
|
|
183
183
|
repositoryName: string | undefined;
|
|
184
|
-
branchName?: string;
|
|
184
|
+
branchName?: string | undefined;
|
|
185
185
|
}
|
|
186
186
|
export declare const DevEnvironmentStatus: {
|
|
187
187
|
readonly DELETED: "DELETED";
|
|
@@ -196,48 +196,48 @@ export declare const DevEnvironmentStatus: {
|
|
|
196
196
|
export type DevEnvironmentStatus =
|
|
197
197
|
(typeof DevEnvironmentStatus)[keyof typeof DevEnvironmentStatus];
|
|
198
198
|
export interface DevEnvironmentSummary {
|
|
199
|
-
spaceName?: string;
|
|
200
|
-
projectName?: string;
|
|
199
|
+
spaceName?: string | undefined;
|
|
200
|
+
projectName?: string | undefined;
|
|
201
201
|
id: string | undefined;
|
|
202
202
|
lastUpdatedTime: Date | undefined;
|
|
203
203
|
creatorId: string | undefined;
|
|
204
204
|
status: DevEnvironmentStatus | undefined;
|
|
205
|
-
statusReason?: string;
|
|
205
|
+
statusReason?: string | undefined;
|
|
206
206
|
repositories: DevEnvironmentRepositorySummary[] | undefined;
|
|
207
|
-
alias?: string;
|
|
208
|
-
ides?: Ide[];
|
|
207
|
+
alias?: string | undefined;
|
|
208
|
+
ides?: Ide[] | undefined;
|
|
209
209
|
instanceType: _InstanceType | undefined;
|
|
210
210
|
inactivityTimeoutMinutes: number | undefined;
|
|
211
211
|
persistentStorage: PersistentStorage | undefined;
|
|
212
|
-
vpcConnectionName?: string;
|
|
212
|
+
vpcConnectionName?: string | undefined;
|
|
213
213
|
}
|
|
214
214
|
export interface ListDevEnvironmentsResponse {
|
|
215
215
|
items: DevEnvironmentSummary[] | undefined;
|
|
216
|
-
nextToken?: string;
|
|
216
|
+
nextToken?: string | undefined;
|
|
217
217
|
}
|
|
218
218
|
export interface ListSpacesRequest {
|
|
219
|
-
nextToken?: string;
|
|
219
|
+
nextToken?: string | undefined;
|
|
220
220
|
}
|
|
221
221
|
export interface SpaceSummary {
|
|
222
222
|
name: string | undefined;
|
|
223
223
|
regionName: string | undefined;
|
|
224
|
-
displayName?: string;
|
|
225
|
-
description?: string;
|
|
224
|
+
displayName?: string | undefined;
|
|
225
|
+
description?: string | undefined;
|
|
226
226
|
}
|
|
227
227
|
export interface ListSpacesResponse {
|
|
228
|
-
nextToken?: string;
|
|
229
|
-
items?: SpaceSummary[];
|
|
228
|
+
nextToken?: string | undefined;
|
|
229
|
+
items?: SpaceSummary[] | undefined;
|
|
230
230
|
}
|
|
231
231
|
export interface CreateProjectRequest {
|
|
232
232
|
spaceName: string | undefined;
|
|
233
233
|
displayName: string | undefined;
|
|
234
|
-
description?: string;
|
|
234
|
+
description?: string | undefined;
|
|
235
235
|
}
|
|
236
236
|
export interface CreateProjectResponse {
|
|
237
|
-
spaceName?: string;
|
|
237
|
+
spaceName?: string | undefined;
|
|
238
238
|
name: string | undefined;
|
|
239
|
-
displayName?: string;
|
|
240
|
-
description?: string;
|
|
239
|
+
displayName?: string | undefined;
|
|
240
|
+
description?: string | undefined;
|
|
241
241
|
}
|
|
242
242
|
export interface DeleteProjectRequest {
|
|
243
243
|
spaceName: string | undefined;
|
|
@@ -246,36 +246,36 @@ export interface DeleteProjectRequest {
|
|
|
246
246
|
export interface DeleteProjectResponse {
|
|
247
247
|
spaceName: string | undefined;
|
|
248
248
|
name: string | undefined;
|
|
249
|
-
displayName?: string;
|
|
249
|
+
displayName?: string | undefined;
|
|
250
250
|
}
|
|
251
251
|
export interface IdeConfiguration {
|
|
252
|
-
runtime?: string;
|
|
253
|
-
name?: string;
|
|
252
|
+
runtime?: string | undefined;
|
|
253
|
+
name?: string | undefined;
|
|
254
254
|
}
|
|
255
255
|
export interface PersistentStorageConfiguration {
|
|
256
256
|
sizeInGiB: number | undefined;
|
|
257
257
|
}
|
|
258
258
|
export interface RepositoryInput {
|
|
259
259
|
repositoryName: string | undefined;
|
|
260
|
-
branchName?: string;
|
|
260
|
+
branchName?: string | undefined;
|
|
261
261
|
}
|
|
262
262
|
export interface CreateDevEnvironmentRequest {
|
|
263
263
|
spaceName: string | undefined;
|
|
264
264
|
projectName: string | undefined;
|
|
265
|
-
repositories?: RepositoryInput[];
|
|
266
|
-
clientToken?: string;
|
|
267
|
-
alias?: string;
|
|
268
|
-
ides?: IdeConfiguration[];
|
|
265
|
+
repositories?: RepositoryInput[] | undefined;
|
|
266
|
+
clientToken?: string | undefined;
|
|
267
|
+
alias?: string | undefined;
|
|
268
|
+
ides?: IdeConfiguration[] | undefined;
|
|
269
269
|
instanceType: _InstanceType | undefined;
|
|
270
|
-
inactivityTimeoutMinutes?: number;
|
|
270
|
+
inactivityTimeoutMinutes?: number | undefined;
|
|
271
271
|
persistentStorage: PersistentStorageConfiguration | undefined;
|
|
272
|
-
vpcConnectionName?: string;
|
|
272
|
+
vpcConnectionName?: string | undefined;
|
|
273
273
|
}
|
|
274
274
|
export interface CreateDevEnvironmentResponse {
|
|
275
275
|
spaceName: string | undefined;
|
|
276
276
|
projectName: string | undefined;
|
|
277
277
|
id: string | undefined;
|
|
278
|
-
vpcConnectionName?: string;
|
|
278
|
+
vpcConnectionName?: string | undefined;
|
|
279
279
|
}
|
|
280
280
|
export interface DeleteDevEnvironmentRequest {
|
|
281
281
|
spaceName: string | undefined;
|
|
@@ -299,21 +299,21 @@ export interface GetDevEnvironmentResponse {
|
|
|
299
299
|
lastUpdatedTime: Date | undefined;
|
|
300
300
|
creatorId: string | undefined;
|
|
301
301
|
status: DevEnvironmentStatus | undefined;
|
|
302
|
-
statusReason?: string;
|
|
302
|
+
statusReason?: string | undefined;
|
|
303
303
|
repositories: DevEnvironmentRepositorySummary[] | undefined;
|
|
304
|
-
alias?: string;
|
|
305
|
-
ides?: Ide[];
|
|
304
|
+
alias?: string | undefined;
|
|
305
|
+
ides?: Ide[] | undefined;
|
|
306
306
|
instanceType: _InstanceType | undefined;
|
|
307
307
|
inactivityTimeoutMinutes: number | undefined;
|
|
308
308
|
persistentStorage: PersistentStorage | undefined;
|
|
309
|
-
vpcConnectionName?: string;
|
|
309
|
+
vpcConnectionName?: string | undefined;
|
|
310
310
|
}
|
|
311
311
|
export interface ListDevEnvironmentSessionsRequest {
|
|
312
312
|
spaceName: string | undefined;
|
|
313
313
|
projectName: string | undefined;
|
|
314
314
|
devEnvironmentId: string | undefined;
|
|
315
|
-
nextToken?: string;
|
|
316
|
-
maxResults?: number;
|
|
315
|
+
nextToken?: string | undefined;
|
|
316
|
+
maxResults?: number | undefined;
|
|
317
317
|
}
|
|
318
318
|
export interface DevEnvironmentSessionSummary {
|
|
319
319
|
spaceName: string | undefined;
|
|
@@ -324,15 +324,15 @@ export interface DevEnvironmentSessionSummary {
|
|
|
324
324
|
}
|
|
325
325
|
export interface ListDevEnvironmentSessionsResponse {
|
|
326
326
|
items: DevEnvironmentSessionSummary[] | undefined;
|
|
327
|
-
nextToken?: string;
|
|
327
|
+
nextToken?: string | undefined;
|
|
328
328
|
}
|
|
329
329
|
export interface StartDevEnvironmentRequest {
|
|
330
330
|
spaceName: string | undefined;
|
|
331
331
|
projectName: string | undefined;
|
|
332
332
|
id: string | undefined;
|
|
333
|
-
ides?: IdeConfiguration[];
|
|
334
|
-
instanceType?: _InstanceType;
|
|
335
|
-
inactivityTimeoutMinutes?: number;
|
|
333
|
+
ides?: IdeConfiguration[] | undefined;
|
|
334
|
+
instanceType?: _InstanceType | undefined;
|
|
335
|
+
inactivityTimeoutMinutes?: number | undefined;
|
|
336
336
|
}
|
|
337
337
|
export interface StartDevEnvironmentResponse {
|
|
338
338
|
spaceName: string | undefined;
|
|
@@ -342,7 +342,7 @@ export interface StartDevEnvironmentResponse {
|
|
|
342
342
|
}
|
|
343
343
|
export interface ExecuteCommandSessionConfiguration {
|
|
344
344
|
command: string | undefined;
|
|
345
|
-
arguments?: string[];
|
|
345
|
+
arguments?: string[] | undefined;
|
|
346
346
|
}
|
|
347
347
|
export declare const DevEnvironmentSessionType: {
|
|
348
348
|
readonly SSH: "SSH";
|
|
@@ -352,7 +352,9 @@ export type DevEnvironmentSessionType =
|
|
|
352
352
|
(typeof DevEnvironmentSessionType)[keyof typeof DevEnvironmentSessionType];
|
|
353
353
|
export interface DevEnvironmentSessionConfiguration {
|
|
354
354
|
sessionType: DevEnvironmentSessionType | undefined;
|
|
355
|
-
executeCommandSessionConfiguration?:
|
|
355
|
+
executeCommandSessionConfiguration?:
|
|
356
|
+
| ExecuteCommandSessionConfiguration
|
|
357
|
+
| undefined;
|
|
356
358
|
}
|
|
357
359
|
export interface StartDevEnvironmentSessionRequest {
|
|
358
360
|
spaceName: string | undefined;
|
|
@@ -366,7 +368,7 @@ export interface DevEnvironmentAccessDetails {
|
|
|
366
368
|
}
|
|
367
369
|
export interface StartDevEnvironmentSessionResponse {
|
|
368
370
|
accessDetails: DevEnvironmentAccessDetails | undefined;
|
|
369
|
-
sessionId?: string;
|
|
371
|
+
sessionId?: string | undefined;
|
|
370
372
|
spaceName: string | undefined;
|
|
371
373
|
projectName: string | undefined;
|
|
372
374
|
id: string | undefined;
|
|
@@ -398,31 +400,31 @@ export interface UpdateDevEnvironmentRequest {
|
|
|
398
400
|
spaceName: string | undefined;
|
|
399
401
|
projectName: string | undefined;
|
|
400
402
|
id: string | undefined;
|
|
401
|
-
alias?: string;
|
|
402
|
-
ides?: IdeConfiguration[];
|
|
403
|
-
instanceType?: _InstanceType;
|
|
404
|
-
inactivityTimeoutMinutes?: number;
|
|
405
|
-
clientToken?: string;
|
|
403
|
+
alias?: string | undefined;
|
|
404
|
+
ides?: IdeConfiguration[] | undefined;
|
|
405
|
+
instanceType?: _InstanceType | undefined;
|
|
406
|
+
inactivityTimeoutMinutes?: number | undefined;
|
|
407
|
+
clientToken?: string | undefined;
|
|
406
408
|
}
|
|
407
409
|
export interface UpdateDevEnvironmentResponse {
|
|
408
410
|
id: string | undefined;
|
|
409
411
|
spaceName: string | undefined;
|
|
410
412
|
projectName: string | undefined;
|
|
411
|
-
alias?: string;
|
|
412
|
-
ides?: IdeConfiguration[];
|
|
413
|
-
instanceType?: _InstanceType;
|
|
414
|
-
inactivityTimeoutMinutes?: number;
|
|
415
|
-
clientToken?: string;
|
|
413
|
+
alias?: string | undefined;
|
|
414
|
+
ides?: IdeConfiguration[] | undefined;
|
|
415
|
+
instanceType?: _InstanceType | undefined;
|
|
416
|
+
inactivityTimeoutMinutes?: number | undefined;
|
|
417
|
+
clientToken?: string | undefined;
|
|
416
418
|
}
|
|
417
419
|
export interface GetProjectRequest {
|
|
418
420
|
spaceName: string | undefined;
|
|
419
421
|
name: string | undefined;
|
|
420
422
|
}
|
|
421
423
|
export interface GetProjectResponse {
|
|
422
|
-
spaceName?: string;
|
|
424
|
+
spaceName?: string | undefined;
|
|
423
425
|
name: string | undefined;
|
|
424
|
-
displayName?: string;
|
|
425
|
-
description?: string;
|
|
426
|
+
displayName?: string | undefined;
|
|
427
|
+
description?: string | undefined;
|
|
426
428
|
}
|
|
427
429
|
export declare const ComparisonOperator: {
|
|
428
430
|
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
@@ -442,34 +444,34 @@ export type FilterKey = (typeof FilterKey)[keyof typeof FilterKey];
|
|
|
442
444
|
export interface ProjectListFilter {
|
|
443
445
|
key: FilterKey | undefined;
|
|
444
446
|
values: string[] | undefined;
|
|
445
|
-
comparisonOperator?: ComparisonOperator;
|
|
447
|
+
comparisonOperator?: ComparisonOperator | undefined;
|
|
446
448
|
}
|
|
447
449
|
export interface ListProjectsRequest {
|
|
448
450
|
spaceName: string | undefined;
|
|
449
|
-
nextToken?: string;
|
|
450
|
-
maxResults?: number;
|
|
451
|
-
filters?: ProjectListFilter[];
|
|
451
|
+
nextToken?: string | undefined;
|
|
452
|
+
maxResults?: number | undefined;
|
|
453
|
+
filters?: ProjectListFilter[] | undefined;
|
|
452
454
|
}
|
|
453
455
|
export interface ProjectSummary {
|
|
454
456
|
name: string | undefined;
|
|
455
|
-
displayName?: string;
|
|
456
|
-
description?: string;
|
|
457
|
+
displayName?: string | undefined;
|
|
458
|
+
description?: string | undefined;
|
|
457
459
|
}
|
|
458
460
|
export interface ListProjectsResponse {
|
|
459
|
-
nextToken?: string;
|
|
460
|
-
items?: ProjectSummary[];
|
|
461
|
+
nextToken?: string | undefined;
|
|
462
|
+
items?: ProjectSummary[] | undefined;
|
|
461
463
|
}
|
|
462
464
|
export interface CreateSourceRepositoryRequest {
|
|
463
465
|
spaceName: string | undefined;
|
|
464
466
|
projectName: string | undefined;
|
|
465
467
|
name: string | undefined;
|
|
466
|
-
description?: string;
|
|
468
|
+
description?: string | undefined;
|
|
467
469
|
}
|
|
468
470
|
export interface CreateSourceRepositoryResponse {
|
|
469
471
|
spaceName: string | undefined;
|
|
470
472
|
projectName: string | undefined;
|
|
471
473
|
name: string | undefined;
|
|
472
|
-
description?: string;
|
|
474
|
+
description?: string | undefined;
|
|
473
475
|
}
|
|
474
476
|
export interface DeleteSourceRepositoryRequest {
|
|
475
477
|
spaceName: string | undefined;
|
|
@@ -490,7 +492,7 @@ export interface GetSourceRepositoryResponse {
|
|
|
490
492
|
spaceName: string | undefined;
|
|
491
493
|
projectName: string | undefined;
|
|
492
494
|
name: string | undefined;
|
|
493
|
-
description?: string;
|
|
495
|
+
description?: string | undefined;
|
|
494
496
|
lastUpdatedTime: Date | undefined;
|
|
495
497
|
createdTime: Date | undefined;
|
|
496
498
|
}
|
|
@@ -505,60 +507,60 @@ export interface GetSourceRepositoryCloneUrlsResponse {
|
|
|
505
507
|
export interface ListSourceRepositoriesRequest {
|
|
506
508
|
spaceName: string | undefined;
|
|
507
509
|
projectName: string | undefined;
|
|
508
|
-
nextToken?: string;
|
|
509
|
-
maxResults?: number;
|
|
510
|
+
nextToken?: string | undefined;
|
|
511
|
+
maxResults?: number | undefined;
|
|
510
512
|
}
|
|
511
513
|
export interface ListSourceRepositoriesItem {
|
|
512
514
|
id: string | undefined;
|
|
513
515
|
name: string | undefined;
|
|
514
|
-
description?: string;
|
|
516
|
+
description?: string | undefined;
|
|
515
517
|
lastUpdatedTime: Date | undefined;
|
|
516
518
|
createdTime: Date | undefined;
|
|
517
519
|
}
|
|
518
520
|
export interface ListSourceRepositoriesResponse {
|
|
519
|
-
items?: ListSourceRepositoriesItem[];
|
|
520
|
-
nextToken?: string;
|
|
521
|
+
items?: ListSourceRepositoriesItem[] | undefined;
|
|
522
|
+
nextToken?: string | undefined;
|
|
521
523
|
}
|
|
522
524
|
export interface CreateSourceRepositoryBranchRequest {
|
|
523
525
|
spaceName: string | undefined;
|
|
524
526
|
projectName: string | undefined;
|
|
525
527
|
sourceRepositoryName: string | undefined;
|
|
526
528
|
name: string | undefined;
|
|
527
|
-
headCommitId?: string;
|
|
529
|
+
headCommitId?: string | undefined;
|
|
528
530
|
}
|
|
529
531
|
export interface CreateSourceRepositoryBranchResponse {
|
|
530
|
-
ref?: string;
|
|
531
|
-
name?: string;
|
|
532
|
-
lastUpdatedTime?: Date;
|
|
533
|
-
headCommitId?: string;
|
|
532
|
+
ref?: string | undefined;
|
|
533
|
+
name?: string | undefined;
|
|
534
|
+
lastUpdatedTime?: Date | undefined;
|
|
535
|
+
headCommitId?: string | undefined;
|
|
534
536
|
}
|
|
535
537
|
export interface ListSourceRepositoryBranchesRequest {
|
|
536
538
|
spaceName: string | undefined;
|
|
537
539
|
projectName: string | undefined;
|
|
538
540
|
sourceRepositoryName: string | undefined;
|
|
539
|
-
nextToken?: string;
|
|
540
|
-
maxResults?: number;
|
|
541
|
+
nextToken?: string | undefined;
|
|
542
|
+
maxResults?: number | undefined;
|
|
541
543
|
}
|
|
542
544
|
export interface ListSourceRepositoryBranchesItem {
|
|
543
|
-
ref?: string;
|
|
544
|
-
name?: string;
|
|
545
|
-
lastUpdatedTime?: Date;
|
|
546
|
-
headCommitId?: string;
|
|
545
|
+
ref?: string | undefined;
|
|
546
|
+
name?: string | undefined;
|
|
547
|
+
lastUpdatedTime?: Date | undefined;
|
|
548
|
+
headCommitId?: string | undefined;
|
|
547
549
|
}
|
|
548
550
|
export interface ListSourceRepositoryBranchesResponse {
|
|
549
|
-
nextToken?: string;
|
|
551
|
+
nextToken?: string | undefined;
|
|
550
552
|
items: ListSourceRepositoryBranchesItem[] | undefined;
|
|
551
553
|
}
|
|
552
554
|
export interface UpdateProjectRequest {
|
|
553
555
|
spaceName: string | undefined;
|
|
554
556
|
name: string | undefined;
|
|
555
|
-
description?: string;
|
|
557
|
+
description?: string | undefined;
|
|
556
558
|
}
|
|
557
559
|
export interface UpdateProjectResponse {
|
|
558
|
-
spaceName?: string;
|
|
559
|
-
name?: string;
|
|
560
|
-
displayName?: string;
|
|
561
|
-
description?: string;
|
|
560
|
+
spaceName?: string | undefined;
|
|
561
|
+
name?: string | undefined;
|
|
562
|
+
displayName?: string | undefined;
|
|
563
|
+
description?: string | undefined;
|
|
562
564
|
}
|
|
563
565
|
export interface GetWorkflowRequest {
|
|
564
566
|
spaceName: string | undefined;
|
|
@@ -586,8 +588,8 @@ export interface GetWorkflowResponse {
|
|
|
586
588
|
projectName: string | undefined;
|
|
587
589
|
id: string | undefined;
|
|
588
590
|
name: string | undefined;
|
|
589
|
-
sourceRepositoryName?: string;
|
|
590
|
-
sourceBranchName?: string;
|
|
591
|
+
sourceRepositoryName?: string | undefined;
|
|
592
|
+
sourceBranchName?: string | undefined;
|
|
591
593
|
definition: WorkflowDefinition | undefined;
|
|
592
594
|
createdTime: Date | undefined;
|
|
593
595
|
lastUpdatedTime: Date | undefined;
|
|
@@ -598,9 +600,9 @@ export interface WorkflowSortCriteria {}
|
|
|
598
600
|
export interface ListWorkflowsRequest {
|
|
599
601
|
spaceName: string | undefined;
|
|
600
602
|
projectName: string | undefined;
|
|
601
|
-
nextToken?: string;
|
|
602
|
-
maxResults?: number;
|
|
603
|
-
sortBy?: WorkflowSortCriteria[];
|
|
603
|
+
nextToken?: string | undefined;
|
|
604
|
+
maxResults?: number | undefined;
|
|
605
|
+
sortBy?: WorkflowSortCriteria[] | undefined;
|
|
604
606
|
}
|
|
605
607
|
export interface WorkflowDefinitionSummary {
|
|
606
608
|
path: string | undefined;
|
|
@@ -617,8 +619,8 @@ export interface WorkflowSummary {
|
|
|
617
619
|
status: WorkflowStatus | undefined;
|
|
618
620
|
}
|
|
619
621
|
export interface ListWorkflowsResponse {
|
|
620
|
-
nextToken?: string;
|
|
621
|
-
items?: WorkflowSummary[];
|
|
622
|
+
nextToken?: string | undefined;
|
|
623
|
+
items?: WorkflowSummary[] | undefined;
|
|
622
624
|
}
|
|
623
625
|
export interface GetWorkflowRunRequest {
|
|
624
626
|
spaceName: string | undefined;
|
|
@@ -647,39 +649,39 @@ export interface GetWorkflowRunResponse {
|
|
|
647
649
|
id: string | undefined;
|
|
648
650
|
workflowId: string | undefined;
|
|
649
651
|
status: WorkflowRunStatus | undefined;
|
|
650
|
-
statusReasons?: WorkflowRunStatusReason[];
|
|
652
|
+
statusReasons?: WorkflowRunStatusReason[] | undefined;
|
|
651
653
|
startTime: Date | undefined;
|
|
652
|
-
endTime?: Date;
|
|
654
|
+
endTime?: Date | undefined;
|
|
653
655
|
lastUpdatedTime: Date | undefined;
|
|
654
656
|
}
|
|
655
657
|
export interface WorkflowRunSortCriteria {}
|
|
656
658
|
export interface ListWorkflowRunsRequest {
|
|
657
659
|
spaceName: string | undefined;
|
|
658
|
-
workflowId?: string;
|
|
660
|
+
workflowId?: string | undefined;
|
|
659
661
|
projectName: string | undefined;
|
|
660
|
-
nextToken?: string;
|
|
661
|
-
maxResults?: number;
|
|
662
|
-
sortBy?: WorkflowRunSortCriteria[];
|
|
662
|
+
nextToken?: string | undefined;
|
|
663
|
+
maxResults?: number | undefined;
|
|
664
|
+
sortBy?: WorkflowRunSortCriteria[] | undefined;
|
|
663
665
|
}
|
|
664
666
|
export interface WorkflowRunSummary {
|
|
665
667
|
id: string | undefined;
|
|
666
668
|
workflowId: string | undefined;
|
|
667
669
|
workflowName: string | undefined;
|
|
668
670
|
status: WorkflowRunStatus | undefined;
|
|
669
|
-
statusReasons?: WorkflowRunStatusReason[];
|
|
671
|
+
statusReasons?: WorkflowRunStatusReason[] | undefined;
|
|
670
672
|
startTime: Date | undefined;
|
|
671
|
-
endTime?: Date;
|
|
673
|
+
endTime?: Date | undefined;
|
|
672
674
|
lastUpdatedTime: Date | undefined;
|
|
673
675
|
}
|
|
674
676
|
export interface ListWorkflowRunsResponse {
|
|
675
|
-
nextToken?: string;
|
|
676
|
-
items?: WorkflowRunSummary[];
|
|
677
|
+
nextToken?: string | undefined;
|
|
678
|
+
items?: WorkflowRunSummary[] | undefined;
|
|
677
679
|
}
|
|
678
680
|
export interface StartWorkflowRunRequest {
|
|
679
681
|
spaceName: string | undefined;
|
|
680
682
|
projectName: string | undefined;
|
|
681
683
|
workflowId: string | undefined;
|
|
682
|
-
clientToken?: string;
|
|
684
|
+
clientToken?: string | undefined;
|
|
683
685
|
}
|
|
684
686
|
export interface StartWorkflowRunResponse {
|
|
685
687
|
spaceName: string | undefined;
|
|
@@ -691,22 +693,22 @@ export interface GetSubscriptionRequest {
|
|
|
691
693
|
spaceName: string | undefined;
|
|
692
694
|
}
|
|
693
695
|
export interface GetSubscriptionResponse {
|
|
694
|
-
subscriptionType?: string;
|
|
695
|
-
awsAccountName?: string;
|
|
696
|
-
pendingSubscriptionType?: string;
|
|
697
|
-
pendingSubscriptionStartTime?: Date;
|
|
696
|
+
subscriptionType?: string | undefined;
|
|
697
|
+
awsAccountName?: string | undefined;
|
|
698
|
+
pendingSubscriptionType?: string | undefined;
|
|
699
|
+
pendingSubscriptionStartTime?: Date | undefined;
|
|
698
700
|
}
|
|
699
701
|
export interface UpdateSpaceRequest {
|
|
700
702
|
name: string | undefined;
|
|
701
|
-
description?: string;
|
|
703
|
+
description?: string | undefined;
|
|
702
704
|
}
|
|
703
705
|
export interface UpdateSpaceResponse {
|
|
704
|
-
name?: string;
|
|
705
|
-
displayName?: string;
|
|
706
|
-
description?: string;
|
|
706
|
+
name?: string | undefined;
|
|
707
|
+
displayName?: string | undefined;
|
|
708
|
+
description?: string | undefined;
|
|
707
709
|
}
|
|
708
710
|
export interface VerifySessionResponse {
|
|
709
|
-
identity?: string;
|
|
711
|
+
identity?: string | undefined;
|
|
710
712
|
}
|
|
711
713
|
export declare const CreateAccessTokenResponseFilterSensitiveLog: (
|
|
712
714
|
obj: CreateAccessTokenResponse
|