@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
|
@@ -38,7 +38,7 @@ export interface CreateAccessTokenRequest {
|
|
|
38
38
|
* <p>The date and time the personal access token expires, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>.</p>
|
|
39
39
|
* @public
|
|
40
40
|
*/
|
|
41
|
-
expiresTime?: Date;
|
|
41
|
+
expiresTime?: Date | undefined;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
44
|
* @public
|
|
@@ -138,12 +138,12 @@ export interface ListAccessTokensRequest {
|
|
|
138
138
|
* <p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>
|
|
139
139
|
* @public
|
|
140
140
|
*/
|
|
141
|
-
maxResults?: number;
|
|
141
|
+
maxResults?: number | undefined;
|
|
142
142
|
/**
|
|
143
143
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
144
144
|
* @public
|
|
145
145
|
*/
|
|
146
|
-
nextToken?: string;
|
|
146
|
+
nextToken?: string | undefined;
|
|
147
147
|
}
|
|
148
148
|
/**
|
|
149
149
|
* <p>Information about a specified personal access token (PAT).</p>
|
|
@@ -164,7 +164,7 @@ export interface AccessTokenSummary {
|
|
|
164
164
|
* <p>The date and time when the personal access token will expire, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>.</p>
|
|
165
165
|
* @public
|
|
166
166
|
*/
|
|
167
|
-
expiresTime?: Date;
|
|
167
|
+
expiresTime?: Date | undefined;
|
|
168
168
|
}
|
|
169
169
|
/**
|
|
170
170
|
* @public
|
|
@@ -179,7 +179,7 @@ export interface ListAccessTokensResponse {
|
|
|
179
179
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
180
180
|
* @public
|
|
181
181
|
*/
|
|
182
|
-
nextToken?: string;
|
|
182
|
+
nextToken?: string | undefined;
|
|
183
183
|
}
|
|
184
184
|
/**
|
|
185
185
|
* @public
|
|
@@ -189,12 +189,12 @@ export interface GetUserDetailsRequest {
|
|
|
189
189
|
* <p>The system-generated unique ID of the user. </p>
|
|
190
190
|
* @public
|
|
191
191
|
*/
|
|
192
|
-
id?: string;
|
|
192
|
+
id?: string | undefined;
|
|
193
193
|
/**
|
|
194
194
|
* <p>The name of the user as displayed in Amazon CodeCatalyst.</p>
|
|
195
195
|
* @public
|
|
196
196
|
*/
|
|
197
|
-
userName?: string;
|
|
197
|
+
userName?: string | undefined;
|
|
198
198
|
}
|
|
199
199
|
/**
|
|
200
200
|
* <p>Information about an email address.</p>
|
|
@@ -205,12 +205,12 @@ export interface EmailAddress {
|
|
|
205
205
|
* <p>The email address.</p>
|
|
206
206
|
* @public
|
|
207
207
|
*/
|
|
208
|
-
email?: string;
|
|
208
|
+
email?: string | undefined;
|
|
209
209
|
/**
|
|
210
210
|
* <p>Whether the email address has been verified.</p>
|
|
211
211
|
* @public
|
|
212
212
|
*/
|
|
213
|
-
verified?: boolean;
|
|
213
|
+
verified?: boolean | undefined;
|
|
214
214
|
}
|
|
215
215
|
/**
|
|
216
216
|
* @public
|
|
@@ -220,27 +220,27 @@ export interface GetUserDetailsResponse {
|
|
|
220
220
|
* <p>The system-generated unique ID of the user.</p>
|
|
221
221
|
* @public
|
|
222
222
|
*/
|
|
223
|
-
userId?: string;
|
|
223
|
+
userId?: string | undefined;
|
|
224
224
|
/**
|
|
225
225
|
* <p>The name of the user as displayed in Amazon CodeCatalyst.</p>
|
|
226
226
|
* @public
|
|
227
227
|
*/
|
|
228
|
-
userName?: string;
|
|
228
|
+
userName?: string | undefined;
|
|
229
229
|
/**
|
|
230
230
|
* <p>The friendly name displayed for the user in Amazon CodeCatalyst.</p>
|
|
231
231
|
* @public
|
|
232
232
|
*/
|
|
233
|
-
displayName?: string;
|
|
233
|
+
displayName?: string | undefined;
|
|
234
234
|
/**
|
|
235
235
|
* <p>The email address provided by the user when they signed up.</p>
|
|
236
236
|
* @public
|
|
237
237
|
*/
|
|
238
|
-
primaryEmail?: EmailAddress;
|
|
238
|
+
primaryEmail?: EmailAddress | undefined;
|
|
239
239
|
/**
|
|
240
240
|
* <p/>
|
|
241
241
|
* @public
|
|
242
242
|
*/
|
|
243
|
-
version?: string;
|
|
243
|
+
version?: string | undefined;
|
|
244
244
|
}
|
|
245
245
|
/**
|
|
246
246
|
* @public
|
|
@@ -265,7 +265,7 @@ export interface DeleteSpaceResponse {
|
|
|
265
265
|
* <p>The friendly name of the space displayed to users of the space in Amazon CodeCatalyst.</p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
displayName?: string;
|
|
268
|
+
displayName?: string | undefined;
|
|
269
269
|
}
|
|
270
270
|
/**
|
|
271
271
|
* @public
|
|
@@ -290,17 +290,17 @@ export interface ListEventLogsRequest {
|
|
|
290
290
|
* <p>The name of the event.</p>
|
|
291
291
|
* @public
|
|
292
292
|
*/
|
|
293
|
-
eventName?: string;
|
|
293
|
+
eventName?: string | undefined;
|
|
294
294
|
/**
|
|
295
295
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
296
296
|
* @public
|
|
297
297
|
*/
|
|
298
|
-
nextToken?: string;
|
|
298
|
+
nextToken?: string | undefined;
|
|
299
299
|
/**
|
|
300
300
|
* <p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>
|
|
301
301
|
* @public
|
|
302
302
|
*/
|
|
303
|
-
maxResults?: number;
|
|
303
|
+
maxResults?: number | undefined;
|
|
304
304
|
}
|
|
305
305
|
/**
|
|
306
306
|
* @public
|
|
@@ -323,12 +323,12 @@ export interface ProjectInformation {
|
|
|
323
323
|
* <p>The name of the project in the space.</p>
|
|
324
324
|
* @public
|
|
325
325
|
*/
|
|
326
|
-
name?: string;
|
|
326
|
+
name?: string | undefined;
|
|
327
327
|
/**
|
|
328
328
|
* <p>The system-generated unique ID of the project.</p>
|
|
329
329
|
* @public
|
|
330
330
|
*/
|
|
331
|
-
projectId?: string;
|
|
331
|
+
projectId?: string | undefined;
|
|
332
332
|
}
|
|
333
333
|
/**
|
|
334
334
|
* <p>Information about the payload of an event recording Amazon CodeCatalyst activity.</p>
|
|
@@ -339,12 +339,12 @@ export interface EventPayload {
|
|
|
339
339
|
* <p>The type of content in the event payload.</p>
|
|
340
340
|
* @public
|
|
341
341
|
*/
|
|
342
|
-
contentType?: string;
|
|
342
|
+
contentType?: string | undefined;
|
|
343
343
|
/**
|
|
344
344
|
* <p>The data included in the event payload.</p>
|
|
345
345
|
* @public
|
|
346
346
|
*/
|
|
347
|
-
data?: string;
|
|
347
|
+
data?: string | undefined;
|
|
348
348
|
}
|
|
349
349
|
/**
|
|
350
350
|
* @public
|
|
@@ -378,12 +378,12 @@ export interface UserIdentity {
|
|
|
378
378
|
* <p>The display name of the user in Amazon CodeCatalyst.</p>
|
|
379
379
|
* @public
|
|
380
380
|
*/
|
|
381
|
-
userName?: string;
|
|
381
|
+
userName?: string | undefined;
|
|
382
382
|
/**
|
|
383
383
|
* <p>The Amazon Web Services account number of the user in Amazon Web Services, if any.</p>
|
|
384
384
|
* @public
|
|
385
385
|
*/
|
|
386
|
-
awsAccountId?: string;
|
|
386
|
+
awsAccountId?: string | undefined;
|
|
387
387
|
}
|
|
388
388
|
/**
|
|
389
389
|
* <p>Information about an entry in an event log of Amazon CodeCatalyst activity.</p>
|
|
@@ -434,37 +434,37 @@ export interface EventLogEntry {
|
|
|
434
434
|
* <p>Information about the project where the event occurred.</p>
|
|
435
435
|
* @public
|
|
436
436
|
*/
|
|
437
|
-
projectInformation?: ProjectInformation;
|
|
437
|
+
projectInformation?: ProjectInformation | undefined;
|
|
438
438
|
/**
|
|
439
439
|
* <p>The system-generated unique ID of the request.</p>
|
|
440
440
|
* @public
|
|
441
441
|
*/
|
|
442
|
-
requestId?: string;
|
|
442
|
+
requestId?: string | undefined;
|
|
443
443
|
/**
|
|
444
444
|
* <p>Information about the payload of the request.</p>
|
|
445
445
|
* @public
|
|
446
446
|
*/
|
|
447
|
-
requestPayload?: EventPayload;
|
|
447
|
+
requestPayload?: EventPayload | undefined;
|
|
448
448
|
/**
|
|
449
449
|
* <p>Information about the payload of the response, if any.</p>
|
|
450
450
|
* @public
|
|
451
451
|
*/
|
|
452
|
-
responsePayload?: EventPayload;
|
|
452
|
+
responsePayload?: EventPayload | undefined;
|
|
453
453
|
/**
|
|
454
454
|
* <p>The code of the error, if any.</p>
|
|
455
455
|
* @public
|
|
456
456
|
*/
|
|
457
|
-
errorCode?: string;
|
|
457
|
+
errorCode?: string | undefined;
|
|
458
458
|
/**
|
|
459
459
|
* <p>The IP address of the user whose actions are recorded in the event.</p>
|
|
460
460
|
* @public
|
|
461
461
|
*/
|
|
462
|
-
sourceIpAddress?: string;
|
|
462
|
+
sourceIpAddress?: string | undefined;
|
|
463
463
|
/**
|
|
464
464
|
* <p>The user agent whose actions are recorded in the event.</p>
|
|
465
465
|
* @public
|
|
466
466
|
*/
|
|
467
|
-
userAgent?: string;
|
|
467
|
+
userAgent?: string | undefined;
|
|
468
468
|
}
|
|
469
469
|
/**
|
|
470
470
|
* @public
|
|
@@ -474,7 +474,7 @@ export interface ListEventLogsResponse {
|
|
|
474
474
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
475
475
|
* @public
|
|
476
476
|
*/
|
|
477
|
-
nextToken?: string;
|
|
477
|
+
nextToken?: string | undefined;
|
|
478
478
|
/**
|
|
479
479
|
* <p>Information about each event retrieved in the list.</p>
|
|
480
480
|
* @public
|
|
@@ -509,12 +509,12 @@ export interface GetSpaceResponse {
|
|
|
509
509
|
* <p>The friendly name of the space displayed to users.</p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
displayName?: string;
|
|
512
|
+
displayName?: string | undefined;
|
|
513
513
|
/**
|
|
514
514
|
* <p>The description of the space.</p>
|
|
515
515
|
* @public
|
|
516
516
|
*/
|
|
517
|
-
description?: string;
|
|
517
|
+
description?: string | undefined;
|
|
518
518
|
}
|
|
519
519
|
/**
|
|
520
520
|
* <p>Information about a filter used to limit results of a query.</p>
|
|
@@ -535,7 +535,7 @@ export interface Filter {
|
|
|
535
535
|
* <p>The operator used to compare the fields.</p>
|
|
536
536
|
* @public
|
|
537
537
|
*/
|
|
538
|
-
comparisonOperator?: string;
|
|
538
|
+
comparisonOperator?: string | undefined;
|
|
539
539
|
}
|
|
540
540
|
/**
|
|
541
541
|
* @public
|
|
@@ -550,22 +550,22 @@ export interface ListDevEnvironmentsRequest {
|
|
|
550
550
|
* <p>The name of the project in the space.</p>
|
|
551
551
|
* @public
|
|
552
552
|
*/
|
|
553
|
-
projectName?: string;
|
|
553
|
+
projectName?: string | undefined;
|
|
554
554
|
/**
|
|
555
555
|
* <p>Information about filters to apply to narrow the results returned in the list.</p>
|
|
556
556
|
* @public
|
|
557
557
|
*/
|
|
558
|
-
filters?: Filter[];
|
|
558
|
+
filters?: Filter[] | undefined;
|
|
559
559
|
/**
|
|
560
560
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
561
561
|
* @public
|
|
562
562
|
*/
|
|
563
|
-
nextToken?: string;
|
|
563
|
+
nextToken?: string | undefined;
|
|
564
564
|
/**
|
|
565
565
|
* <p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>
|
|
566
566
|
* @public
|
|
567
567
|
*/
|
|
568
|
-
maxResults?: number;
|
|
568
|
+
maxResults?: number | undefined;
|
|
569
569
|
}
|
|
570
570
|
/**
|
|
571
571
|
* <p>Information about an integrated development environment (IDE) used in a Dev Environment.</p>
|
|
@@ -576,12 +576,12 @@ export interface Ide {
|
|
|
576
576
|
* <p>A link to the IDE runtime image.</p>
|
|
577
577
|
* @public
|
|
578
578
|
*/
|
|
579
|
-
runtime?: string;
|
|
579
|
+
runtime?: string | undefined;
|
|
580
580
|
/**
|
|
581
581
|
* <p>The name of the IDE.</p>
|
|
582
582
|
* @public
|
|
583
583
|
*/
|
|
584
|
-
name?: string;
|
|
584
|
+
name?: string | undefined;
|
|
585
585
|
}
|
|
586
586
|
/**
|
|
587
587
|
* @public
|
|
@@ -626,7 +626,7 @@ export interface DevEnvironmentRepositorySummary {
|
|
|
626
626
|
* <p>The name of the branch in a source repository cloned into the Dev Environment. </p>
|
|
627
627
|
* @public
|
|
628
628
|
*/
|
|
629
|
-
branchName?: string;
|
|
629
|
+
branchName?: string | undefined;
|
|
630
630
|
}
|
|
631
631
|
/**
|
|
632
632
|
* @public
|
|
@@ -655,12 +655,12 @@ export interface DevEnvironmentSummary {
|
|
|
655
655
|
* <p>The name of the space.</p>
|
|
656
656
|
* @public
|
|
657
657
|
*/
|
|
658
|
-
spaceName?: string;
|
|
658
|
+
spaceName?: string | undefined;
|
|
659
659
|
/**
|
|
660
660
|
* <p>The name of the project in the space.</p>
|
|
661
661
|
* @public
|
|
662
662
|
*/
|
|
663
|
-
projectName?: string;
|
|
663
|
+
projectName?: string | undefined;
|
|
664
664
|
/**
|
|
665
665
|
* <p>The system-generated unique ID for the Dev Environment. </p>
|
|
666
666
|
* @public
|
|
@@ -685,7 +685,7 @@ export interface DevEnvironmentSummary {
|
|
|
685
685
|
* <p>The reason for the status.</p>
|
|
686
686
|
* @public
|
|
687
687
|
*/
|
|
688
|
-
statusReason?: string;
|
|
688
|
+
statusReason?: string | undefined;
|
|
689
689
|
/**
|
|
690
690
|
* <p>Information about the repositories that will be cloned into the Dev Environment. If no rvalue is specified, no repository is cloned.</p>
|
|
691
691
|
* @public
|
|
@@ -695,12 +695,12 @@ export interface DevEnvironmentSummary {
|
|
|
695
695
|
* <p>The user-specified alias for the Dev Environment.</p>
|
|
696
696
|
* @public
|
|
697
697
|
*/
|
|
698
|
-
alias?: string;
|
|
698
|
+
alias?: string | undefined;
|
|
699
699
|
/**
|
|
700
700
|
* <p>Information about the integrated development environment (IDE) configured for a Dev Environment.</p>
|
|
701
701
|
* @public
|
|
702
702
|
*/
|
|
703
|
-
ides?: Ide[];
|
|
703
|
+
ides?: Ide[] | undefined;
|
|
704
704
|
/**
|
|
705
705
|
* <p>The Amazon EC2 instace type used for the Dev Environment. </p>
|
|
706
706
|
* @public
|
|
@@ -720,7 +720,7 @@ export interface DevEnvironmentSummary {
|
|
|
720
720
|
* <p>The name of the connection used to connect to Amazon VPC used when the Dev Environment was created, if any.</p>
|
|
721
721
|
* @public
|
|
722
722
|
*/
|
|
723
|
-
vpcConnectionName?: string;
|
|
723
|
+
vpcConnectionName?: string | undefined;
|
|
724
724
|
}
|
|
725
725
|
/**
|
|
726
726
|
* @public
|
|
@@ -735,7 +735,7 @@ export interface ListDevEnvironmentsResponse {
|
|
|
735
735
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
736
736
|
* @public
|
|
737
737
|
*/
|
|
738
|
-
nextToken?: string;
|
|
738
|
+
nextToken?: string | undefined;
|
|
739
739
|
}
|
|
740
740
|
/**
|
|
741
741
|
* @public
|
|
@@ -745,7 +745,7 @@ export interface ListSpacesRequest {
|
|
|
745
745
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
746
746
|
* @public
|
|
747
747
|
*/
|
|
748
|
-
nextToken?: string;
|
|
748
|
+
nextToken?: string | undefined;
|
|
749
749
|
}
|
|
750
750
|
/**
|
|
751
751
|
* <p>Information about an space.</p>
|
|
@@ -767,12 +767,12 @@ export interface SpaceSummary {
|
|
|
767
767
|
* <p>The friendly name of the space displayed to users.</p>
|
|
768
768
|
* @public
|
|
769
769
|
*/
|
|
770
|
-
displayName?: string;
|
|
770
|
+
displayName?: string | undefined;
|
|
771
771
|
/**
|
|
772
772
|
* <p>The description of the space.</p>
|
|
773
773
|
* @public
|
|
774
774
|
*/
|
|
775
|
-
description?: string;
|
|
775
|
+
description?: string | undefined;
|
|
776
776
|
}
|
|
777
777
|
/**
|
|
778
778
|
* @public
|
|
@@ -782,12 +782,12 @@ export interface ListSpacesResponse {
|
|
|
782
782
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
783
783
|
* @public
|
|
784
784
|
*/
|
|
785
|
-
nextToken?: string;
|
|
785
|
+
nextToken?: string | undefined;
|
|
786
786
|
/**
|
|
787
787
|
* <p>Information about the spaces. </p>
|
|
788
788
|
* @public
|
|
789
789
|
*/
|
|
790
|
-
items?: SpaceSummary[];
|
|
790
|
+
items?: SpaceSummary[] | undefined;
|
|
791
791
|
}
|
|
792
792
|
/**
|
|
793
793
|
* @public
|
|
@@ -807,7 +807,7 @@ export interface CreateProjectRequest {
|
|
|
807
807
|
* <p>The description of the project. This description will be displayed to all users of the project. We recommend providing a brief description of the project and its intended purpose.</p>
|
|
808
808
|
* @public
|
|
809
809
|
*/
|
|
810
|
-
description?: string;
|
|
810
|
+
description?: string | undefined;
|
|
811
811
|
}
|
|
812
812
|
/**
|
|
813
813
|
* @public
|
|
@@ -817,7 +817,7 @@ export interface CreateProjectResponse {
|
|
|
817
817
|
* <p>The name of the space.</p>
|
|
818
818
|
* @public
|
|
819
819
|
*/
|
|
820
|
-
spaceName?: string;
|
|
820
|
+
spaceName?: string | undefined;
|
|
821
821
|
/**
|
|
822
822
|
* <p>The name of the project in the space.</p>
|
|
823
823
|
* @public
|
|
@@ -827,12 +827,12 @@ export interface CreateProjectResponse {
|
|
|
827
827
|
* <p>The friendly name of the project.</p>
|
|
828
828
|
* @public
|
|
829
829
|
*/
|
|
830
|
-
displayName?: string;
|
|
830
|
+
displayName?: string | undefined;
|
|
831
831
|
/**
|
|
832
832
|
* <p>The description of the project.</p>
|
|
833
833
|
* @public
|
|
834
834
|
*/
|
|
835
|
-
description?: string;
|
|
835
|
+
description?: string | undefined;
|
|
836
836
|
}
|
|
837
837
|
/**
|
|
838
838
|
* @public
|
|
@@ -867,7 +867,7 @@ export interface DeleteProjectResponse {
|
|
|
867
867
|
* <p>The friendly name displayed to users of the project in Amazon CodeCatalyst.</p>
|
|
868
868
|
* @public
|
|
869
869
|
*/
|
|
870
|
-
displayName?: string;
|
|
870
|
+
displayName?: string | undefined;
|
|
871
871
|
}
|
|
872
872
|
/**
|
|
873
873
|
* <p>Information about the configuration of an integrated development environment (IDE) for a Dev Environment.</p>
|
|
@@ -881,12 +881,12 @@ export interface IdeConfiguration {
|
|
|
881
881
|
* </note>
|
|
882
882
|
* @public
|
|
883
883
|
*/
|
|
884
|
-
runtime?: string;
|
|
884
|
+
runtime?: string | undefined;
|
|
885
885
|
/**
|
|
886
886
|
* <p>The name of the IDE. Valid values include <code>Cloud9</code>, <code>IntelliJ</code>, <code>PyCharm</code>, <code>GoLand</code>, and <code>VSCode</code>.</p>
|
|
887
887
|
* @public
|
|
888
888
|
*/
|
|
889
|
-
name?: string;
|
|
889
|
+
name?: string | undefined;
|
|
890
890
|
}
|
|
891
891
|
/**
|
|
892
892
|
* <p>Information about the configuration of persistent storage for a Dev Environment. </p>
|
|
@@ -917,7 +917,7 @@ export interface RepositoryInput {
|
|
|
917
917
|
* <p>The name of the branch in a source repository.</p>
|
|
918
918
|
* @public
|
|
919
919
|
*/
|
|
920
|
-
branchName?: string;
|
|
920
|
+
branchName?: string | undefined;
|
|
921
921
|
}
|
|
922
922
|
/**
|
|
923
923
|
* @public
|
|
@@ -937,18 +937,18 @@ export interface CreateDevEnvironmentRequest {
|
|
|
937
937
|
* <p>The source repository that contains the branch to clone into the Dev Environment. </p>
|
|
938
938
|
* @public
|
|
939
939
|
*/
|
|
940
|
-
repositories?: RepositoryInput[];
|
|
940
|
+
repositories?: RepositoryInput[] | undefined;
|
|
941
941
|
/**
|
|
942
942
|
* <p>A user-specified idempotency token. Idempotency ensures that an API request completes only once.
|
|
943
943
|
* With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.</p>
|
|
944
944
|
* @public
|
|
945
945
|
*/
|
|
946
|
-
clientToken?: string;
|
|
946
|
+
clientToken?: string | undefined;
|
|
947
947
|
/**
|
|
948
948
|
* <p>The user-defined alias for a Dev Environment.</p>
|
|
949
949
|
* @public
|
|
950
950
|
*/
|
|
951
|
-
alias?: string;
|
|
951
|
+
alias?: string | undefined;
|
|
952
952
|
/**
|
|
953
953
|
* <p>Information about the integrated development environment (IDE) configured for a
|
|
954
954
|
* Dev Environment.</p>
|
|
@@ -958,7 +958,7 @@ export interface CreateDevEnvironmentRequest {
|
|
|
958
958
|
* </note>
|
|
959
959
|
* @public
|
|
960
960
|
*/
|
|
961
|
-
ides?: IdeConfiguration[];
|
|
961
|
+
ides?: IdeConfiguration[] | undefined;
|
|
962
962
|
/**
|
|
963
963
|
* <p>The Amazon EC2 instace type to use for the Dev Environment. </p>
|
|
964
964
|
* @public
|
|
@@ -968,7 +968,7 @@ export interface CreateDevEnvironmentRequest {
|
|
|
968
968
|
* <p>The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.</p>
|
|
969
969
|
* @public
|
|
970
970
|
*/
|
|
971
|
-
inactivityTimeoutMinutes?: number;
|
|
971
|
+
inactivityTimeoutMinutes?: number | undefined;
|
|
972
972
|
/**
|
|
973
973
|
* <p>Information about the amount of storage allocated to the Dev Environment. </p>
|
|
974
974
|
* <note>
|
|
@@ -984,7 +984,7 @@ export interface CreateDevEnvironmentRequest {
|
|
|
984
984
|
* <p>The name of the connection that will be used to connect to Amazon VPC, if any.</p>
|
|
985
985
|
* @public
|
|
986
986
|
*/
|
|
987
|
-
vpcConnectionName?: string;
|
|
987
|
+
vpcConnectionName?: string | undefined;
|
|
988
988
|
}
|
|
989
989
|
/**
|
|
990
990
|
* @public
|
|
@@ -1009,7 +1009,7 @@ export interface CreateDevEnvironmentResponse {
|
|
|
1009
1009
|
* <p>The name of the connection used to connect to Amazon VPC used when the Dev Environment was created, if any.</p>
|
|
1010
1010
|
* @public
|
|
1011
1011
|
*/
|
|
1012
|
-
vpcConnectionName?: string;
|
|
1012
|
+
vpcConnectionName?: string | undefined;
|
|
1013
1013
|
}
|
|
1014
1014
|
/**
|
|
1015
1015
|
* @public
|
|
@@ -1109,7 +1109,7 @@ export interface GetDevEnvironmentResponse {
|
|
|
1109
1109
|
* <p>The reason for the status.</p>
|
|
1110
1110
|
* @public
|
|
1111
1111
|
*/
|
|
1112
|
-
statusReason?: string;
|
|
1112
|
+
statusReason?: string | undefined;
|
|
1113
1113
|
/**
|
|
1114
1114
|
* <p>The source repository that contains the branch cloned into the Dev Environment. </p>
|
|
1115
1115
|
* @public
|
|
@@ -1119,12 +1119,12 @@ export interface GetDevEnvironmentResponse {
|
|
|
1119
1119
|
* <p>The user-specified alias for the Dev Environment. </p>
|
|
1120
1120
|
* @public
|
|
1121
1121
|
*/
|
|
1122
|
-
alias?: string;
|
|
1122
|
+
alias?: string | undefined;
|
|
1123
1123
|
/**
|
|
1124
1124
|
* <p>Information about the integrated development environment (IDE) configured for the Dev Environment. </p>
|
|
1125
1125
|
* @public
|
|
1126
1126
|
*/
|
|
1127
|
-
ides?: Ide[];
|
|
1127
|
+
ides?: Ide[] | undefined;
|
|
1128
1128
|
/**
|
|
1129
1129
|
* <p>The Amazon EC2 instace type to use for the Dev Environment. </p>
|
|
1130
1130
|
* @public
|
|
@@ -1144,7 +1144,7 @@ export interface GetDevEnvironmentResponse {
|
|
|
1144
1144
|
* <p>The name of the connection used to connect to Amazon VPC used when the Dev Environment was created, if any.</p>
|
|
1145
1145
|
* @public
|
|
1146
1146
|
*/
|
|
1147
|
-
vpcConnectionName?: string;
|
|
1147
|
+
vpcConnectionName?: string | undefined;
|
|
1148
1148
|
}
|
|
1149
1149
|
/**
|
|
1150
1150
|
* @public
|
|
@@ -1169,12 +1169,12 @@ export interface ListDevEnvironmentSessionsRequest {
|
|
|
1169
1169
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
1170
1170
|
* @public
|
|
1171
1171
|
*/
|
|
1172
|
-
nextToken?: string;
|
|
1172
|
+
nextToken?: string | undefined;
|
|
1173
1173
|
/**
|
|
1174
1174
|
* <p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>
|
|
1175
1175
|
* @public
|
|
1176
1176
|
*/
|
|
1177
|
-
maxResults?: number;
|
|
1177
|
+
maxResults?: number | undefined;
|
|
1178
1178
|
}
|
|
1179
1179
|
/**
|
|
1180
1180
|
* <p>Information about active sessions for a Dev Environment.</p>
|
|
@@ -1221,7 +1221,7 @@ export interface ListDevEnvironmentSessionsResponse {
|
|
|
1221
1221
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
1222
1222
|
* @public
|
|
1223
1223
|
*/
|
|
1224
|
-
nextToken?: string;
|
|
1224
|
+
nextToken?: string | undefined;
|
|
1225
1225
|
}
|
|
1226
1226
|
/**
|
|
1227
1227
|
* @public
|
|
@@ -1246,17 +1246,17 @@ export interface StartDevEnvironmentRequest {
|
|
|
1246
1246
|
* <p>Information about the integrated development environment (IDE) configured for a Dev Environment. </p>
|
|
1247
1247
|
* @public
|
|
1248
1248
|
*/
|
|
1249
|
-
ides?: IdeConfiguration[];
|
|
1249
|
+
ides?: IdeConfiguration[] | undefined;
|
|
1250
1250
|
/**
|
|
1251
1251
|
* <p>The Amazon EC2 instace type to use for the Dev Environment. </p>
|
|
1252
1252
|
* @public
|
|
1253
1253
|
*/
|
|
1254
|
-
instanceType?: _InstanceType;
|
|
1254
|
+
instanceType?: _InstanceType | undefined;
|
|
1255
1255
|
/**
|
|
1256
1256
|
* <p>The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.</p>
|
|
1257
1257
|
* @public
|
|
1258
1258
|
*/
|
|
1259
|
-
inactivityTimeoutMinutes?: number;
|
|
1259
|
+
inactivityTimeoutMinutes?: number | undefined;
|
|
1260
1260
|
}
|
|
1261
1261
|
/**
|
|
1262
1262
|
* @public
|
|
@@ -1297,7 +1297,7 @@ export interface ExecuteCommandSessionConfiguration {
|
|
|
1297
1297
|
* <p>An array of arguments containing arguments and members.</p>
|
|
1298
1298
|
* @public
|
|
1299
1299
|
*/
|
|
1300
|
-
arguments?: string[];
|
|
1300
|
+
arguments?: string[] | undefined;
|
|
1301
1301
|
}
|
|
1302
1302
|
/**
|
|
1303
1303
|
* @public
|
|
@@ -1325,7 +1325,7 @@ export interface DevEnvironmentSessionConfiguration {
|
|
|
1325
1325
|
* <p>Information about optional commands that will be run on the Dev Environment when the SSH session begins.</p>
|
|
1326
1326
|
* @public
|
|
1327
1327
|
*/
|
|
1328
|
-
executeCommandSessionConfiguration?: ExecuteCommandSessionConfiguration;
|
|
1328
|
+
executeCommandSessionConfiguration?: ExecuteCommandSessionConfiguration | undefined;
|
|
1329
1329
|
}
|
|
1330
1330
|
/**
|
|
1331
1331
|
* @public
|
|
@@ -1381,7 +1381,7 @@ export interface StartDevEnvironmentSessionResponse {
|
|
|
1381
1381
|
* <p>The system-generated unique ID of the Dev Environment session.</p>
|
|
1382
1382
|
* @public
|
|
1383
1383
|
*/
|
|
1384
|
-
sessionId?: string;
|
|
1384
|
+
sessionId?: string | undefined;
|
|
1385
1385
|
/**
|
|
1386
1386
|
* <p>The name of the space.</p>
|
|
1387
1387
|
* @public
|
|
@@ -1516,12 +1516,12 @@ export interface UpdateDevEnvironmentRequest {
|
|
|
1516
1516
|
* <p>The user-specified alias for the Dev Environment. Changing this value will not cause a restart.</p>
|
|
1517
1517
|
* @public
|
|
1518
1518
|
*/
|
|
1519
|
-
alias?: string;
|
|
1519
|
+
alias?: string | undefined;
|
|
1520
1520
|
/**
|
|
1521
1521
|
* <p>Information about the integrated development environment (IDE) configured for a Dev Environment.</p>
|
|
1522
1522
|
* @public
|
|
1523
1523
|
*/
|
|
1524
|
-
ides?: IdeConfiguration[];
|
|
1524
|
+
ides?: IdeConfiguration[] | undefined;
|
|
1525
1525
|
/**
|
|
1526
1526
|
* <p>The Amazon EC2 instace type to use for the Dev Environment. </p>
|
|
1527
1527
|
* <note>
|
|
@@ -1529,7 +1529,7 @@ export interface UpdateDevEnvironmentRequest {
|
|
|
1529
1529
|
* </note>
|
|
1530
1530
|
* @public
|
|
1531
1531
|
*/
|
|
1532
|
-
instanceType?: _InstanceType;
|
|
1532
|
+
instanceType?: _InstanceType | undefined;
|
|
1533
1533
|
/**
|
|
1534
1534
|
* <p>The amount of time the Dev Environment will run without any activity detected before stopping, in minutes.
|
|
1535
1535
|
* Only whole integers are allowed. Dev Environments consume compute minutes when running.</p>
|
|
@@ -1538,13 +1538,13 @@ export interface UpdateDevEnvironmentRequest {
|
|
|
1538
1538
|
* </note>
|
|
1539
1539
|
* @public
|
|
1540
1540
|
*/
|
|
1541
|
-
inactivityTimeoutMinutes?: number;
|
|
1541
|
+
inactivityTimeoutMinutes?: number | undefined;
|
|
1542
1542
|
/**
|
|
1543
1543
|
* <p>A user-specified idempotency token. Idempotency ensures that an API request completes only once.
|
|
1544
1544
|
* With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.</p>
|
|
1545
1545
|
* @public
|
|
1546
1546
|
*/
|
|
1547
|
-
clientToken?: string;
|
|
1547
|
+
clientToken?: string | undefined;
|
|
1548
1548
|
}
|
|
1549
1549
|
/**
|
|
1550
1550
|
* @public
|
|
@@ -1569,28 +1569,28 @@ export interface UpdateDevEnvironmentResponse {
|
|
|
1569
1569
|
* <p>The user-specified alias for the Dev Environment.</p>
|
|
1570
1570
|
* @public
|
|
1571
1571
|
*/
|
|
1572
|
-
alias?: string;
|
|
1572
|
+
alias?: string | undefined;
|
|
1573
1573
|
/**
|
|
1574
1574
|
* <p>Information about the integrated development environment (IDE) configured for the Dev Environment.</p>
|
|
1575
1575
|
* @public
|
|
1576
1576
|
*/
|
|
1577
|
-
ides?: IdeConfiguration[];
|
|
1577
|
+
ides?: IdeConfiguration[] | undefined;
|
|
1578
1578
|
/**
|
|
1579
1579
|
* <p>The Amazon EC2 instace type to use for the Dev Environment. </p>
|
|
1580
1580
|
* @public
|
|
1581
1581
|
*/
|
|
1582
|
-
instanceType?: _InstanceType;
|
|
1582
|
+
instanceType?: _InstanceType | undefined;
|
|
1583
1583
|
/**
|
|
1584
1584
|
* <p>The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. </p>
|
|
1585
1585
|
* @public
|
|
1586
1586
|
*/
|
|
1587
|
-
inactivityTimeoutMinutes?: number;
|
|
1587
|
+
inactivityTimeoutMinutes?: number | undefined;
|
|
1588
1588
|
/**
|
|
1589
1589
|
* <p>A user-specified idempotency token. Idempotency ensures that an API request completes only once.
|
|
1590
1590
|
* With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.</p>
|
|
1591
1591
|
* @public
|
|
1592
1592
|
*/
|
|
1593
|
-
clientToken?: string;
|
|
1593
|
+
clientToken?: string | undefined;
|
|
1594
1594
|
}
|
|
1595
1595
|
/**
|
|
1596
1596
|
* @public
|
|
@@ -1615,7 +1615,7 @@ export interface GetProjectResponse {
|
|
|
1615
1615
|
* <p>The name of the space.</p>
|
|
1616
1616
|
* @public
|
|
1617
1617
|
*/
|
|
1618
|
-
spaceName?: string;
|
|
1618
|
+
spaceName?: string | undefined;
|
|
1619
1619
|
/**
|
|
1620
1620
|
* <p>The name of the project in the space.</p>
|
|
1621
1621
|
* @public
|
|
@@ -1625,12 +1625,12 @@ export interface GetProjectResponse {
|
|
|
1625
1625
|
* <p>The friendly name of the project displayed to users in Amazon CodeCatalyst.</p>
|
|
1626
1626
|
* @public
|
|
1627
1627
|
*/
|
|
1628
|
-
displayName?: string;
|
|
1628
|
+
displayName?: string | undefined;
|
|
1629
1629
|
/**
|
|
1630
1630
|
* <p>The description of the project.</p>
|
|
1631
1631
|
* @public
|
|
1632
1632
|
*/
|
|
1633
|
-
description?: string;
|
|
1633
|
+
description?: string | undefined;
|
|
1634
1634
|
}
|
|
1635
1635
|
/**
|
|
1636
1636
|
* @public
|
|
@@ -1679,7 +1679,7 @@ export interface ProjectListFilter {
|
|
|
1679
1679
|
* <p>The operator used to compare the fields.</p>
|
|
1680
1680
|
* @public
|
|
1681
1681
|
*/
|
|
1682
|
-
comparisonOperator?: ComparisonOperator;
|
|
1682
|
+
comparisonOperator?: ComparisonOperator | undefined;
|
|
1683
1683
|
}
|
|
1684
1684
|
/**
|
|
1685
1685
|
* @public
|
|
@@ -1694,17 +1694,17 @@ export interface ListProjectsRequest {
|
|
|
1694
1694
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
1695
1695
|
* @public
|
|
1696
1696
|
*/
|
|
1697
|
-
nextToken?: string;
|
|
1697
|
+
nextToken?: string | undefined;
|
|
1698
1698
|
/**
|
|
1699
1699
|
* <p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>
|
|
1700
1700
|
* @public
|
|
1701
1701
|
*/
|
|
1702
|
-
maxResults?: number;
|
|
1702
|
+
maxResults?: number | undefined;
|
|
1703
1703
|
/**
|
|
1704
1704
|
* <p>Information about filters to apply to narrow the results returned in the list.</p>
|
|
1705
1705
|
* @public
|
|
1706
1706
|
*/
|
|
1707
|
-
filters?: ProjectListFilter[];
|
|
1707
|
+
filters?: ProjectListFilter[] | undefined;
|
|
1708
1708
|
}
|
|
1709
1709
|
/**
|
|
1710
1710
|
* <p>Information about a project.</p>
|
|
@@ -1720,12 +1720,12 @@ export interface ProjectSummary {
|
|
|
1720
1720
|
* <p>The friendly name displayed to users of the project in Amazon CodeCatalyst.</p>
|
|
1721
1721
|
* @public
|
|
1722
1722
|
*/
|
|
1723
|
-
displayName?: string;
|
|
1723
|
+
displayName?: string | undefined;
|
|
1724
1724
|
/**
|
|
1725
1725
|
* <p>The description of the project.</p>
|
|
1726
1726
|
* @public
|
|
1727
1727
|
*/
|
|
1728
|
-
description?: string;
|
|
1728
|
+
description?: string | undefined;
|
|
1729
1729
|
}
|
|
1730
1730
|
/**
|
|
1731
1731
|
* @public
|
|
@@ -1735,12 +1735,12 @@ export interface ListProjectsResponse {
|
|
|
1735
1735
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
1736
1736
|
* @public
|
|
1737
1737
|
*/
|
|
1738
|
-
nextToken?: string;
|
|
1738
|
+
nextToken?: string | undefined;
|
|
1739
1739
|
/**
|
|
1740
1740
|
* <p>Information about the projects.</p>
|
|
1741
1741
|
* @public
|
|
1742
1742
|
*/
|
|
1743
|
-
items?: ProjectSummary[];
|
|
1743
|
+
items?: ProjectSummary[] | undefined;
|
|
1744
1744
|
}
|
|
1745
1745
|
/**
|
|
1746
1746
|
* @public
|
|
@@ -1765,7 +1765,7 @@ export interface CreateSourceRepositoryRequest {
|
|
|
1765
1765
|
* <p>The description of the source repository.</p>
|
|
1766
1766
|
* @public
|
|
1767
1767
|
*/
|
|
1768
|
-
description?: string;
|
|
1768
|
+
description?: string | undefined;
|
|
1769
1769
|
}
|
|
1770
1770
|
/**
|
|
1771
1771
|
* @public
|
|
@@ -1790,7 +1790,7 @@ export interface CreateSourceRepositoryResponse {
|
|
|
1790
1790
|
* <p>The description of the source repository.</p>
|
|
1791
1791
|
* @public
|
|
1792
1792
|
*/
|
|
1793
|
-
description?: string;
|
|
1793
|
+
description?: string | undefined;
|
|
1794
1794
|
}
|
|
1795
1795
|
/**
|
|
1796
1796
|
* @public
|
|
@@ -1875,7 +1875,7 @@ export interface GetSourceRepositoryResponse {
|
|
|
1875
1875
|
* <p>The description of the source repository.</p>
|
|
1876
1876
|
* @public
|
|
1877
1877
|
*/
|
|
1878
|
-
description?: string;
|
|
1878
|
+
description?: string | undefined;
|
|
1879
1879
|
/**
|
|
1880
1880
|
* <p>The time the source repository was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>.</p>
|
|
1881
1881
|
* @public
|
|
@@ -1935,12 +1935,12 @@ export interface ListSourceRepositoriesRequest {
|
|
|
1935
1935
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
1936
1936
|
* @public
|
|
1937
1937
|
*/
|
|
1938
|
-
nextToken?: string;
|
|
1938
|
+
nextToken?: string | undefined;
|
|
1939
1939
|
/**
|
|
1940
1940
|
* <p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>
|
|
1941
1941
|
* @public
|
|
1942
1942
|
*/
|
|
1943
|
-
maxResults?: number;
|
|
1943
|
+
maxResults?: number | undefined;
|
|
1944
1944
|
}
|
|
1945
1945
|
/**
|
|
1946
1946
|
* <p>Information about a source repository returned in a list of source repositories.</p>
|
|
@@ -1961,7 +1961,7 @@ export interface ListSourceRepositoriesItem {
|
|
|
1961
1961
|
* <p>The description of the repository, if any.</p>
|
|
1962
1962
|
* @public
|
|
1963
1963
|
*/
|
|
1964
|
-
description?: string;
|
|
1964
|
+
description?: string | undefined;
|
|
1965
1965
|
/**
|
|
1966
1966
|
* <p>The time the source repository was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>.</p>
|
|
1967
1967
|
* @public
|
|
@@ -1981,12 +1981,12 @@ export interface ListSourceRepositoriesResponse {
|
|
|
1981
1981
|
* <p>Information about the source repositories.</p>
|
|
1982
1982
|
* @public
|
|
1983
1983
|
*/
|
|
1984
|
-
items?: ListSourceRepositoriesItem[];
|
|
1984
|
+
items?: ListSourceRepositoriesItem[] | undefined;
|
|
1985
1985
|
/**
|
|
1986
1986
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
1987
1987
|
* @public
|
|
1988
1988
|
*/
|
|
1989
|
-
nextToken?: string;
|
|
1989
|
+
nextToken?: string | undefined;
|
|
1990
1990
|
}
|
|
1991
1991
|
/**
|
|
1992
1992
|
* @public
|
|
@@ -2016,7 +2016,7 @@ export interface CreateSourceRepositoryBranchRequest {
|
|
|
2016
2016
|
* <p>The commit ID in an existing branch from which you want to create the new branch.</p>
|
|
2017
2017
|
* @public
|
|
2018
2018
|
*/
|
|
2019
|
-
headCommitId?: string;
|
|
2019
|
+
headCommitId?: string | undefined;
|
|
2020
2020
|
}
|
|
2021
2021
|
/**
|
|
2022
2022
|
* @public
|
|
@@ -2026,22 +2026,22 @@ export interface CreateSourceRepositoryBranchResponse {
|
|
|
2026
2026
|
* <p>The Git reference name of the branch.</p>
|
|
2027
2027
|
* @public
|
|
2028
2028
|
*/
|
|
2029
|
-
ref?: string;
|
|
2029
|
+
ref?: string | undefined;
|
|
2030
2030
|
/**
|
|
2031
2031
|
* <p>The name of the newly created branch.</p>
|
|
2032
2032
|
* @public
|
|
2033
2033
|
*/
|
|
2034
|
-
name?: string;
|
|
2034
|
+
name?: string | undefined;
|
|
2035
2035
|
/**
|
|
2036
2036
|
* <p>The time the branch was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>.</p>
|
|
2037
2037
|
* @public
|
|
2038
2038
|
*/
|
|
2039
|
-
lastUpdatedTime?: Date;
|
|
2039
|
+
lastUpdatedTime?: Date | undefined;
|
|
2040
2040
|
/**
|
|
2041
2041
|
* <p>The commit ID of the tip of the newly created branch.</p>
|
|
2042
2042
|
* @public
|
|
2043
2043
|
*/
|
|
2044
|
-
headCommitId?: string;
|
|
2044
|
+
headCommitId?: string | undefined;
|
|
2045
2045
|
}
|
|
2046
2046
|
/**
|
|
2047
2047
|
* @public
|
|
@@ -2066,12 +2066,12 @@ export interface ListSourceRepositoryBranchesRequest {
|
|
|
2066
2066
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
2067
2067
|
* @public
|
|
2068
2068
|
*/
|
|
2069
|
-
nextToken?: string;
|
|
2069
|
+
nextToken?: string | undefined;
|
|
2070
2070
|
/**
|
|
2071
2071
|
* <p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>
|
|
2072
2072
|
* @public
|
|
2073
2073
|
*/
|
|
2074
|
-
maxResults?: number;
|
|
2074
|
+
maxResults?: number | undefined;
|
|
2075
2075
|
}
|
|
2076
2076
|
/**
|
|
2077
2077
|
* <p>Information about a branch of a source repository returned in a list of branches.</p>
|
|
@@ -2082,22 +2082,22 @@ export interface ListSourceRepositoryBranchesItem {
|
|
|
2082
2082
|
* <p>The Git reference name of the branch.</p>
|
|
2083
2083
|
* @public
|
|
2084
2084
|
*/
|
|
2085
|
-
ref?: string;
|
|
2085
|
+
ref?: string | undefined;
|
|
2086
2086
|
/**
|
|
2087
2087
|
* <p>The name of the branch.</p>
|
|
2088
2088
|
* @public
|
|
2089
2089
|
*/
|
|
2090
|
-
name?: string;
|
|
2090
|
+
name?: string | undefined;
|
|
2091
2091
|
/**
|
|
2092
2092
|
* <p>The time the branch was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>.</p>
|
|
2093
2093
|
* @public
|
|
2094
2094
|
*/
|
|
2095
|
-
lastUpdatedTime?: Date;
|
|
2095
|
+
lastUpdatedTime?: Date | undefined;
|
|
2096
2096
|
/**
|
|
2097
2097
|
* <p>The commit ID of the tip of the branch at the time of the request, also known as the head commit.</p>
|
|
2098
2098
|
* @public
|
|
2099
2099
|
*/
|
|
2100
|
-
headCommitId?: string;
|
|
2100
|
+
headCommitId?: string | undefined;
|
|
2101
2101
|
}
|
|
2102
2102
|
/**
|
|
2103
2103
|
* @public
|
|
@@ -2107,7 +2107,7 @@ export interface ListSourceRepositoryBranchesResponse {
|
|
|
2107
2107
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
2108
2108
|
* @public
|
|
2109
2109
|
*/
|
|
2110
|
-
nextToken?: string;
|
|
2110
|
+
nextToken?: string | undefined;
|
|
2111
2111
|
/**
|
|
2112
2112
|
* <p>Information about the source branches.</p>
|
|
2113
2113
|
* @public
|
|
@@ -2132,7 +2132,7 @@ export interface UpdateProjectRequest {
|
|
|
2132
2132
|
* <p>The description of the project.</p>
|
|
2133
2133
|
* @public
|
|
2134
2134
|
*/
|
|
2135
|
-
description?: string;
|
|
2135
|
+
description?: string | undefined;
|
|
2136
2136
|
}
|
|
2137
2137
|
/**
|
|
2138
2138
|
* @public
|
|
@@ -2142,22 +2142,22 @@ export interface UpdateProjectResponse {
|
|
|
2142
2142
|
* <p>The name of the space.</p>
|
|
2143
2143
|
* @public
|
|
2144
2144
|
*/
|
|
2145
|
-
spaceName?: string;
|
|
2145
|
+
spaceName?: string | undefined;
|
|
2146
2146
|
/**
|
|
2147
2147
|
* <p>The name of the project.</p>
|
|
2148
2148
|
* @public
|
|
2149
2149
|
*/
|
|
2150
|
-
name?: string;
|
|
2150
|
+
name?: string | undefined;
|
|
2151
2151
|
/**
|
|
2152
2152
|
* <p>The friendly name of the project displayed to users in Amazon CodeCatalyst.</p>
|
|
2153
2153
|
* @public
|
|
2154
2154
|
*/
|
|
2155
|
-
displayName?: string;
|
|
2155
|
+
displayName?: string | undefined;
|
|
2156
2156
|
/**
|
|
2157
2157
|
* <p>The description of the project.</p>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
description?: string;
|
|
2160
|
+
description?: string | undefined;
|
|
2161
2161
|
}
|
|
2162
2162
|
/**
|
|
2163
2163
|
* @public
|
|
@@ -2243,12 +2243,12 @@ export interface GetWorkflowResponse {
|
|
|
2243
2243
|
* <p>The name of the source repository where the workflow YAML is stored.</p>
|
|
2244
2244
|
* @public
|
|
2245
2245
|
*/
|
|
2246
|
-
sourceRepositoryName?: string;
|
|
2246
|
+
sourceRepositoryName?: string | undefined;
|
|
2247
2247
|
/**
|
|
2248
2248
|
* <p>The name of the branch that contains the workflow YAML.</p>
|
|
2249
2249
|
* @public
|
|
2250
2250
|
*/
|
|
2251
|
-
sourceBranchName?: string;
|
|
2251
|
+
sourceBranchName?: string | undefined;
|
|
2252
2252
|
/**
|
|
2253
2253
|
* <p>Information about the workflow definition file for the workflow.</p>
|
|
2254
2254
|
* @public
|
|
@@ -2302,17 +2302,17 @@ export interface ListWorkflowsRequest {
|
|
|
2302
2302
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
2303
2303
|
* @public
|
|
2304
2304
|
*/
|
|
2305
|
-
nextToken?: string;
|
|
2305
|
+
nextToken?: string | undefined;
|
|
2306
2306
|
/**
|
|
2307
2307
|
* <p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>
|
|
2308
2308
|
* @public
|
|
2309
2309
|
*/
|
|
2310
|
-
maxResults?: number;
|
|
2310
|
+
maxResults?: number | undefined;
|
|
2311
2311
|
/**
|
|
2312
2312
|
* <p>Information used to sort the items in the returned list.</p>
|
|
2313
2313
|
* @public
|
|
2314
2314
|
*/
|
|
2315
|
-
sortBy?: WorkflowSortCriteria[];
|
|
2315
|
+
sortBy?: WorkflowSortCriteria[] | undefined;
|
|
2316
2316
|
}
|
|
2317
2317
|
/**
|
|
2318
2318
|
* <p>Information about a workflow definition.</p>
|
|
@@ -2386,12 +2386,12 @@ export interface ListWorkflowsResponse {
|
|
|
2386
2386
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
2387
2387
|
* @public
|
|
2388
2388
|
*/
|
|
2389
|
-
nextToken?: string;
|
|
2389
|
+
nextToken?: string | undefined;
|
|
2390
2390
|
/**
|
|
2391
2391
|
* <p>Information about the workflows in a project.</p>
|
|
2392
2392
|
* @public
|
|
2393
2393
|
*/
|
|
2394
|
-
items?: WorkflowSummary[];
|
|
2394
|
+
items?: WorkflowSummary[] | undefined;
|
|
2395
2395
|
}
|
|
2396
2396
|
/**
|
|
2397
2397
|
* @public
|
|
@@ -2473,7 +2473,7 @@ export interface GetWorkflowRunResponse {
|
|
|
2473
2473
|
* <p>Information about the reasons for the status of the workflow run.</p>
|
|
2474
2474
|
* @public
|
|
2475
2475
|
*/
|
|
2476
|
-
statusReasons?: WorkflowRunStatusReason[];
|
|
2476
|
+
statusReasons?: WorkflowRunStatusReason[] | undefined;
|
|
2477
2477
|
/**
|
|
2478
2478
|
* <p>The date and time the workflow run began, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>
|
|
2479
2479
|
* </p>
|
|
@@ -2484,7 +2484,7 @@ export interface GetWorkflowRunResponse {
|
|
|
2484
2484
|
* <p>The date and time the workflow run ended, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>.</p>
|
|
2485
2485
|
* @public
|
|
2486
2486
|
*/
|
|
2487
|
-
endTime?: Date;
|
|
2487
|
+
endTime?: Date | undefined;
|
|
2488
2488
|
/**
|
|
2489
2489
|
* <p>The date and time the workflow run status was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>
|
|
2490
2490
|
* </p>
|
|
@@ -2511,7 +2511,7 @@ export interface ListWorkflowRunsRequest {
|
|
|
2511
2511
|
* <p>The ID of the workflow. To retrieve a list of workflow IDs, use <a>ListWorkflows</a>.</p>
|
|
2512
2512
|
* @public
|
|
2513
2513
|
*/
|
|
2514
|
-
workflowId?: string;
|
|
2514
|
+
workflowId?: string | undefined;
|
|
2515
2515
|
/**
|
|
2516
2516
|
* <p>The name of the project in the space.</p>
|
|
2517
2517
|
* @public
|
|
@@ -2521,17 +2521,17 @@ export interface ListWorkflowRunsRequest {
|
|
|
2521
2521
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
2522
2522
|
* @public
|
|
2523
2523
|
*/
|
|
2524
|
-
nextToken?: string;
|
|
2524
|
+
nextToken?: string | undefined;
|
|
2525
2525
|
/**
|
|
2526
2526
|
* <p>The maximum number of results to show in a single call to this API. If the number of results is larger than the number you specified, the response will include a <code>NextToken</code> element, which you can use to obtain additional results.</p>
|
|
2527
2527
|
* @public
|
|
2528
2528
|
*/
|
|
2529
|
-
maxResults?: number;
|
|
2529
|
+
maxResults?: number | undefined;
|
|
2530
2530
|
/**
|
|
2531
2531
|
* <p>Information used to sort the items in the returned list.</p>
|
|
2532
2532
|
* @public
|
|
2533
2533
|
*/
|
|
2534
|
-
sortBy?: WorkflowRunSortCriteria[];
|
|
2534
|
+
sortBy?: WorkflowRunSortCriteria[] | undefined;
|
|
2535
2535
|
}
|
|
2536
2536
|
/**
|
|
2537
2537
|
* <p>Information about a workflow run.</p>
|
|
@@ -2562,7 +2562,7 @@ export interface WorkflowRunSummary {
|
|
|
2562
2562
|
* <p>The reasons for the workflow run status.</p>
|
|
2563
2563
|
* @public
|
|
2564
2564
|
*/
|
|
2565
|
-
statusReasons?: WorkflowRunStatusReason[];
|
|
2565
|
+
statusReasons?: WorkflowRunStatusReason[] | undefined;
|
|
2566
2566
|
/**
|
|
2567
2567
|
* <p>The date and time the workflow run began, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>.</p>
|
|
2568
2568
|
* @public
|
|
@@ -2573,7 +2573,7 @@ export interface WorkflowRunSummary {
|
|
|
2573
2573
|
* </p>
|
|
2574
2574
|
* @public
|
|
2575
2575
|
*/
|
|
2576
|
-
endTime?: Date;
|
|
2576
|
+
endTime?: Date | undefined;
|
|
2577
2577
|
/**
|
|
2578
2578
|
* <p>The date and time the workflow was last updated, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>
|
|
2579
2579
|
* </p>
|
|
@@ -2589,12 +2589,12 @@ export interface ListWorkflowRunsResponse {
|
|
|
2589
2589
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
2590
2590
|
* @public
|
|
2591
2591
|
*/
|
|
2592
|
-
nextToken?: string;
|
|
2592
|
+
nextToken?: string | undefined;
|
|
2593
2593
|
/**
|
|
2594
2594
|
* <p>Information about the runs of a workflow.</p>
|
|
2595
2595
|
* @public
|
|
2596
2596
|
*/
|
|
2597
|
-
items?: WorkflowRunSummary[];
|
|
2597
|
+
items?: WorkflowRunSummary[] | undefined;
|
|
2598
2598
|
}
|
|
2599
2599
|
/**
|
|
2600
2600
|
* @public
|
|
@@ -2620,7 +2620,7 @@ export interface StartWorkflowRunRequest {
|
|
|
2620
2620
|
* With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.</p>
|
|
2621
2621
|
* @public
|
|
2622
2622
|
*/
|
|
2623
|
-
clientToken?: string;
|
|
2623
|
+
clientToken?: string | undefined;
|
|
2624
2624
|
}
|
|
2625
2625
|
/**
|
|
2626
2626
|
* @public
|
|
@@ -2665,24 +2665,24 @@ export interface GetSubscriptionResponse {
|
|
|
2665
2665
|
* <p>The type of the billing plan for the space.</p>
|
|
2666
2666
|
* @public
|
|
2667
2667
|
*/
|
|
2668
|
-
subscriptionType?: string;
|
|
2668
|
+
subscriptionType?: string | undefined;
|
|
2669
2669
|
/**
|
|
2670
2670
|
* <p>The display name of the Amazon Web Services account used for billing for the space.</p>
|
|
2671
2671
|
* @public
|
|
2672
2672
|
*/
|
|
2673
|
-
awsAccountName?: string;
|
|
2673
|
+
awsAccountName?: string | undefined;
|
|
2674
2674
|
/**
|
|
2675
2675
|
* <p>The type of the billing plan that the space will be changed to at the start of the next billing cycle. This applies
|
|
2676
2676
|
* only to changes that reduce the functionality available for the space. Billing plan changes that increase functionality
|
|
2677
2677
|
* are applied immediately. For more information, see <a href="https://codecatalyst.aws/explore/pricing">Pricing</a>.</p>
|
|
2678
2678
|
* @public
|
|
2679
2679
|
*/
|
|
2680
|
-
pendingSubscriptionType?: string;
|
|
2680
|
+
pendingSubscriptionType?: string | undefined;
|
|
2681
2681
|
/**
|
|
2682
2682
|
* <p>The day and time the pending change will be applied to the space, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>.</p>
|
|
2683
2683
|
* @public
|
|
2684
2684
|
*/
|
|
2685
|
-
pendingSubscriptionStartTime?: Date;
|
|
2685
|
+
pendingSubscriptionStartTime?: Date | undefined;
|
|
2686
2686
|
}
|
|
2687
2687
|
/**
|
|
2688
2688
|
* @public
|
|
@@ -2697,7 +2697,7 @@ export interface UpdateSpaceRequest {
|
|
|
2697
2697
|
* <p>The description of the space.</p>
|
|
2698
2698
|
* @public
|
|
2699
2699
|
*/
|
|
2700
|
-
description?: string;
|
|
2700
|
+
description?: string | undefined;
|
|
2701
2701
|
}
|
|
2702
2702
|
/**
|
|
2703
2703
|
* @public
|
|
@@ -2707,17 +2707,17 @@ export interface UpdateSpaceResponse {
|
|
|
2707
2707
|
* <p>The name of the space.</p>
|
|
2708
2708
|
* @public
|
|
2709
2709
|
*/
|
|
2710
|
-
name?: string;
|
|
2710
|
+
name?: string | undefined;
|
|
2711
2711
|
/**
|
|
2712
2712
|
* <p>The friendly name of the space displayed to users in Amazon CodeCatalyst.</p>
|
|
2713
2713
|
* @public
|
|
2714
2714
|
*/
|
|
2715
|
-
displayName?: string;
|
|
2715
|
+
displayName?: string | undefined;
|
|
2716
2716
|
/**
|
|
2717
2717
|
* <p>The description of the space.</p>
|
|
2718
2718
|
* @public
|
|
2719
2719
|
*/
|
|
2720
|
-
description?: string;
|
|
2720
|
+
description?: string | undefined;
|
|
2721
2721
|
}
|
|
2722
2722
|
/**
|
|
2723
2723
|
* @public
|
|
@@ -2727,7 +2727,7 @@ export interface VerifySessionResponse {
|
|
|
2727
2727
|
* <p>The system-generated unique ID of the user in Amazon CodeCatalyst.</p>
|
|
2728
2728
|
* @public
|
|
2729
2729
|
*/
|
|
2730
|
-
identity?: string;
|
|
2730
|
+
identity?: string | undefined;
|
|
2731
2731
|
}
|
|
2732
2732
|
/**
|
|
2733
2733
|
* @internal
|