@aws-sdk/client-codecatalyst 3.295.0 → 3.297.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/CodeCatalyst.d.ts +26 -0
- package/dist-types/CodeCatalystClient.d.ts +24 -4
- package/dist-types/commands/CreateAccessTokenCommand.d.ts +16 -0
- package/dist-types/commands/CreateDevEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +16 -0
- package/dist-types/commands/CreateSourceRepositoryBranchCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAccessTokenCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDevEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/GetDevEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/GetProjectCommand.d.ts +16 -0
- package/dist-types/commands/GetSourceRepositoryCloneUrlsCommand.d.ts +16 -0
- package/dist-types/commands/GetSpaceCommand.d.ts +16 -0
- package/dist-types/commands/GetSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/GetUserDetailsCommand.d.ts +16 -0
- package/dist-types/commands/ListAccessTokensCommand.d.ts +16 -0
- package/dist-types/commands/ListDevEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/ListEventLogsCommand.d.ts +16 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +16 -0
- package/dist-types/commands/ListSourceRepositoriesCommand.d.ts +16 -0
- package/dist-types/commands/ListSourceRepositoryBranchesCommand.d.ts +16 -0
- package/dist-types/commands/ListSpacesCommand.d.ts +16 -0
- package/dist-types/commands/StartDevEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/StartDevEnvironmentSessionCommand.d.ts +16 -0
- package/dist-types/commands/StopDevEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/StopDevEnvironmentSessionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDevEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/VerifySessionCommand.d.ts +16 -0
- package/dist-types/models/CodeCatalystServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +199 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAccessTokensPaginator.d.ts +3 -0
- package/dist-types/pagination/ListDevEnvironmentsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEventLogsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProjectsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSourceRepositoriesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSourceRepositoryBranchesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSpacesPaginator.d.ts +3 -0
- package/package.json +27 -27
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CodeCatalystServiceException as __BaseException } from "./CodeCatalystServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>The request was denied because you don't have sufficient access to perform this action. Verify that you are a member of a role that allows this action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -12,6 +13,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
13
14
|
}
|
|
14
15
|
/**
|
|
16
|
+
* @public
|
|
15
17
|
* <p>The request was denied because the requested operation would cause a conflict with the current state of a service resource associated with the request.
|
|
16
18
|
* Another user might have updated the resource. Reload, make sure you have the latest data, and then try again.</p>
|
|
17
19
|
*/
|
|
@@ -23,6 +25,9 @@ export declare class ConflictException extends __BaseException {
|
|
|
23
25
|
*/
|
|
24
26
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
25
27
|
}
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
26
31
|
export interface CreateAccessTokenRequest {
|
|
27
32
|
/**
|
|
28
33
|
* <p>The friendly name of the personal access token.</p>
|
|
@@ -33,6 +38,9 @@ export interface CreateAccessTokenRequest {
|
|
|
33
38
|
*/
|
|
34
39
|
expiresTime?: Date;
|
|
35
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
36
44
|
export interface CreateAccessTokenResponse {
|
|
37
45
|
/**
|
|
38
46
|
* <p>The secret value of the personal access token.</p>
|
|
@@ -52,6 +60,7 @@ export interface CreateAccessTokenResponse {
|
|
|
52
60
|
accessTokenId: string | undefined;
|
|
53
61
|
}
|
|
54
62
|
/**
|
|
63
|
+
* @public
|
|
55
64
|
* <p>The request was denied because the specified resource was not found. Verify that the spelling is correct and that you have access to the resource.</p>
|
|
56
65
|
*/
|
|
57
66
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -63,6 +72,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
63
72
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
64
73
|
}
|
|
65
74
|
/**
|
|
75
|
+
* @public
|
|
66
76
|
* <p>The request was denied because one or more resources has reached its limits for the tier the space belongs to. Either reduce
|
|
67
77
|
* the number of resources, or change the tier if applicable.</p>
|
|
68
78
|
*/
|
|
@@ -75,6 +85,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
75
85
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
76
86
|
}
|
|
77
87
|
/**
|
|
88
|
+
* @public
|
|
78
89
|
* <p>The request was denied due to request throttling.</p>
|
|
79
90
|
*/
|
|
80
91
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -87,6 +98,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
87
98
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
88
99
|
}
|
|
89
100
|
/**
|
|
101
|
+
* @public
|
|
90
102
|
* <p>The request was denied because an input failed to satisfy the constraints specified by the service. Check the spelling and input requirements, and then try again.</p>
|
|
91
103
|
*/
|
|
92
104
|
export declare class ValidationException extends __BaseException {
|
|
@@ -97,14 +109,23 @@ export declare class ValidationException extends __BaseException {
|
|
|
97
109
|
*/
|
|
98
110
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
99
111
|
}
|
|
112
|
+
/**
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
100
115
|
export interface DeleteAccessTokenRequest {
|
|
101
116
|
/**
|
|
102
117
|
* <p>The ID of the personal access token to delete. You can find the IDs of all PATs associated with your user account by calling <a>ListAccessTokens</a>.</p>
|
|
103
118
|
*/
|
|
104
119
|
id: string | undefined;
|
|
105
120
|
}
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
106
124
|
export interface DeleteAccessTokenResponse {
|
|
107
125
|
}
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
108
129
|
export interface ListAccessTokensRequest {
|
|
109
130
|
/**
|
|
110
131
|
* <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>
|
|
@@ -116,6 +137,7 @@ export interface ListAccessTokensRequest {
|
|
|
116
137
|
nextToken?: string;
|
|
117
138
|
}
|
|
118
139
|
/**
|
|
140
|
+
* @public
|
|
119
141
|
* <p>Information about a specified personal access token (PAT).</p>
|
|
120
142
|
*/
|
|
121
143
|
export interface AccessTokenSummary {
|
|
@@ -132,6 +154,9 @@ export interface AccessTokenSummary {
|
|
|
132
154
|
*/
|
|
133
155
|
expiresTime?: Date;
|
|
134
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
135
160
|
export interface ListAccessTokensResponse {
|
|
136
161
|
/**
|
|
137
162
|
* <p>A list of personal access tokens (PATs) associated with the calling user.</p>
|
|
@@ -142,10 +167,16 @@ export interface ListAccessTokensResponse {
|
|
|
142
167
|
*/
|
|
143
168
|
nextToken?: string;
|
|
144
169
|
}
|
|
170
|
+
/**
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
145
173
|
export declare enum CatalogActionVersionFileRecordType {
|
|
146
174
|
LICENSE = "LICENSE",
|
|
147
175
|
README = "README"
|
|
148
176
|
}
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
149
180
|
export interface GetUserDetailsRequest {
|
|
150
181
|
/**
|
|
151
182
|
* <p>The system-generated unique ID of the user. </p>
|
|
@@ -157,6 +188,7 @@ export interface GetUserDetailsRequest {
|
|
|
157
188
|
userName?: string;
|
|
158
189
|
}
|
|
159
190
|
/**
|
|
191
|
+
* @public
|
|
160
192
|
* <p>Information about an email address.</p>
|
|
161
193
|
*/
|
|
162
194
|
export interface EmailAddress {
|
|
@@ -169,6 +201,9 @@ export interface EmailAddress {
|
|
|
169
201
|
*/
|
|
170
202
|
verified?: boolean;
|
|
171
203
|
}
|
|
204
|
+
/**
|
|
205
|
+
* @public
|
|
206
|
+
*/
|
|
172
207
|
export interface GetUserDetailsResponse {
|
|
173
208
|
/**
|
|
174
209
|
* <p>The system-generated unique ID of the user.</p>
|
|
@@ -191,6 +226,9 @@ export interface GetUserDetailsResponse {
|
|
|
191
226
|
*/
|
|
192
227
|
version?: string;
|
|
193
228
|
}
|
|
229
|
+
/**
|
|
230
|
+
* @public
|
|
231
|
+
*/
|
|
194
232
|
export interface ListEventLogsRequest {
|
|
195
233
|
/**
|
|
196
234
|
* <p>The name of the space.</p>
|
|
@@ -217,11 +255,15 @@ export interface ListEventLogsRequest {
|
|
|
217
255
|
*/
|
|
218
256
|
maxResults?: number;
|
|
219
257
|
}
|
|
258
|
+
/**
|
|
259
|
+
* @public
|
|
260
|
+
*/
|
|
220
261
|
export declare enum OperationType {
|
|
221
262
|
MUTATION = "MUTATION",
|
|
222
263
|
READONLY = "READONLY"
|
|
223
264
|
}
|
|
224
265
|
/**
|
|
266
|
+
* @public
|
|
225
267
|
* <p>Information about a project in a space.</p>
|
|
226
268
|
*/
|
|
227
269
|
export interface ProjectInformation {
|
|
@@ -235,6 +277,7 @@ export interface ProjectInformation {
|
|
|
235
277
|
projectId?: string;
|
|
236
278
|
}
|
|
237
279
|
/**
|
|
280
|
+
* @public
|
|
238
281
|
* <p>Information about the payload of an event recording Amazon CodeCatalyst activity.</p>
|
|
239
282
|
*/
|
|
240
283
|
export interface EventPayload {
|
|
@@ -247,12 +290,16 @@ export interface EventPayload {
|
|
|
247
290
|
*/
|
|
248
291
|
data?: string;
|
|
249
292
|
}
|
|
293
|
+
/**
|
|
294
|
+
* @public
|
|
295
|
+
*/
|
|
250
296
|
export declare enum UserType {
|
|
251
297
|
AWS_ACCOUNT = "AWS_ACCOUNT",
|
|
252
298
|
UNKNOWN = "UNKNOWN",
|
|
253
299
|
USER = "USER"
|
|
254
300
|
}
|
|
255
301
|
/**
|
|
302
|
+
* @public
|
|
256
303
|
* <p>Information about a user whose activity is recorded in an event for a space.</p>
|
|
257
304
|
*/
|
|
258
305
|
export interface UserIdentity {
|
|
@@ -274,6 +321,7 @@ export interface UserIdentity {
|
|
|
274
321
|
awsAccountId?: string;
|
|
275
322
|
}
|
|
276
323
|
/**
|
|
324
|
+
* @public
|
|
277
325
|
* <p>Information about an entry in an event log of Amazon CodeCatalyst activity.</p>
|
|
278
326
|
*/
|
|
279
327
|
export interface EventLogEntry {
|
|
@@ -338,6 +386,9 @@ export interface EventLogEntry {
|
|
|
338
386
|
*/
|
|
339
387
|
userAgent?: string;
|
|
340
388
|
}
|
|
389
|
+
/**
|
|
390
|
+
* @public
|
|
391
|
+
*/
|
|
341
392
|
export interface ListEventLogsResponse {
|
|
342
393
|
/**
|
|
343
394
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
@@ -348,12 +399,18 @@ export interface ListEventLogsResponse {
|
|
|
348
399
|
*/
|
|
349
400
|
items: EventLogEntry[] | undefined;
|
|
350
401
|
}
|
|
402
|
+
/**
|
|
403
|
+
* @public
|
|
404
|
+
*/
|
|
351
405
|
export interface GetSpaceRequest {
|
|
352
406
|
/**
|
|
353
407
|
* <p>The name of the space.</p>
|
|
354
408
|
*/
|
|
355
409
|
name: string | undefined;
|
|
356
410
|
}
|
|
411
|
+
/**
|
|
412
|
+
* @public
|
|
413
|
+
*/
|
|
357
414
|
export interface GetSpaceResponse {
|
|
358
415
|
/**
|
|
359
416
|
* <p>The name of the space.</p>
|
|
@@ -372,6 +429,9 @@ export interface GetSpaceResponse {
|
|
|
372
429
|
*/
|
|
373
430
|
description?: string;
|
|
374
431
|
}
|
|
432
|
+
/**
|
|
433
|
+
* @public
|
|
434
|
+
*/
|
|
375
435
|
export interface ListSpacesRequest {
|
|
376
436
|
/**
|
|
377
437
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
@@ -379,6 +439,7 @@ export interface ListSpacesRequest {
|
|
|
379
439
|
nextToken?: string;
|
|
380
440
|
}
|
|
381
441
|
/**
|
|
442
|
+
* @public
|
|
382
443
|
* <p>Information about an space.</p>
|
|
383
444
|
*/
|
|
384
445
|
export interface SpaceSummary {
|
|
@@ -400,6 +461,9 @@ export interface SpaceSummary {
|
|
|
400
461
|
*/
|
|
401
462
|
description?: string;
|
|
402
463
|
}
|
|
464
|
+
/**
|
|
465
|
+
* @public
|
|
466
|
+
*/
|
|
403
467
|
export interface ListSpacesResponse {
|
|
404
468
|
/**
|
|
405
469
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
@@ -410,6 +474,9 @@ export interface ListSpacesResponse {
|
|
|
410
474
|
*/
|
|
411
475
|
items?: SpaceSummary[];
|
|
412
476
|
}
|
|
477
|
+
/**
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
413
480
|
export interface CreateProjectRequest {
|
|
414
481
|
/**
|
|
415
482
|
* <p>The name of the space.</p>
|
|
@@ -424,6 +491,9 @@ export interface CreateProjectRequest {
|
|
|
424
491
|
*/
|
|
425
492
|
description?: string;
|
|
426
493
|
}
|
|
494
|
+
/**
|
|
495
|
+
* @public
|
|
496
|
+
*/
|
|
427
497
|
export interface CreateProjectResponse {
|
|
428
498
|
/**
|
|
429
499
|
* <p>The name of the space.</p>
|
|
@@ -443,6 +513,7 @@ export interface CreateProjectResponse {
|
|
|
443
513
|
description?: string;
|
|
444
514
|
}
|
|
445
515
|
/**
|
|
516
|
+
* @public
|
|
446
517
|
* <p>Information about the configuration of an integrated development environment (IDE) for a Dev Environment.</p>
|
|
447
518
|
*/
|
|
448
519
|
export interface IdeConfiguration {
|
|
@@ -458,6 +529,9 @@ export interface IdeConfiguration {
|
|
|
458
529
|
*/
|
|
459
530
|
name?: string;
|
|
460
531
|
}
|
|
532
|
+
/**
|
|
533
|
+
* @public
|
|
534
|
+
*/
|
|
461
535
|
export declare enum _InstanceType {
|
|
462
536
|
DEV_STANDARD1_LARGE = "dev.standard1.large",
|
|
463
537
|
DEV_STANDARD1_MEDIUM = "dev.standard1.medium",
|
|
@@ -465,6 +539,7 @@ export declare enum _InstanceType {
|
|
|
465
539
|
DEV_STANDARD1_XLARGE = "dev.standard1.xlarge"
|
|
466
540
|
}
|
|
467
541
|
/**
|
|
542
|
+
* @public
|
|
468
543
|
* <p>Information about the configuration of persistent storage for a Dev Environment. </p>
|
|
469
544
|
*/
|
|
470
545
|
export interface PersistentStorageConfiguration {
|
|
@@ -478,6 +553,7 @@ export interface PersistentStorageConfiguration {
|
|
|
478
553
|
sizeInGiB: number | undefined;
|
|
479
554
|
}
|
|
480
555
|
/**
|
|
556
|
+
* @public
|
|
481
557
|
* <p>Information about a repository that will be cloned to a Dev Environment.</p>
|
|
482
558
|
*/
|
|
483
559
|
export interface RepositoryInput {
|
|
@@ -490,6 +566,9 @@ export interface RepositoryInput {
|
|
|
490
566
|
*/
|
|
491
567
|
branchName?: string;
|
|
492
568
|
}
|
|
569
|
+
/**
|
|
570
|
+
* @public
|
|
571
|
+
*/
|
|
493
572
|
export interface CreateDevEnvironmentRequest {
|
|
494
573
|
/**
|
|
495
574
|
* <p>The name of the space.</p>
|
|
@@ -540,6 +619,9 @@ export interface CreateDevEnvironmentRequest {
|
|
|
540
619
|
*/
|
|
541
620
|
persistentStorage: PersistentStorageConfiguration | undefined;
|
|
542
621
|
}
|
|
622
|
+
/**
|
|
623
|
+
* @public
|
|
624
|
+
*/
|
|
543
625
|
export interface CreateDevEnvironmentResponse {
|
|
544
626
|
/**
|
|
545
627
|
* <p>The name of the space.</p>
|
|
@@ -554,6 +636,9 @@ export interface CreateDevEnvironmentResponse {
|
|
|
554
636
|
*/
|
|
555
637
|
id: string | undefined;
|
|
556
638
|
}
|
|
639
|
+
/**
|
|
640
|
+
* @public
|
|
641
|
+
*/
|
|
557
642
|
export interface DeleteDevEnvironmentRequest {
|
|
558
643
|
/**
|
|
559
644
|
* <p>The name of the space.</p>
|
|
@@ -568,6 +653,9 @@ export interface DeleteDevEnvironmentRequest {
|
|
|
568
653
|
*/
|
|
569
654
|
id: string | undefined;
|
|
570
655
|
}
|
|
656
|
+
/**
|
|
657
|
+
* @public
|
|
658
|
+
*/
|
|
571
659
|
export interface DeleteDevEnvironmentResponse {
|
|
572
660
|
/**
|
|
573
661
|
* <p>The name of the space.</p>
|
|
@@ -582,6 +670,9 @@ export interface DeleteDevEnvironmentResponse {
|
|
|
582
670
|
*/
|
|
583
671
|
id: string | undefined;
|
|
584
672
|
}
|
|
673
|
+
/**
|
|
674
|
+
* @public
|
|
675
|
+
*/
|
|
585
676
|
export interface GetDevEnvironmentRequest {
|
|
586
677
|
/**
|
|
587
678
|
* <p>The name of the space.</p>
|
|
@@ -597,6 +688,7 @@ export interface GetDevEnvironmentRequest {
|
|
|
597
688
|
id: string | undefined;
|
|
598
689
|
}
|
|
599
690
|
/**
|
|
691
|
+
* @public
|
|
600
692
|
* <p>Information about an integrated development environment (IDE) used in a Dev Environment.</p>
|
|
601
693
|
*/
|
|
602
694
|
export interface Ide {
|
|
@@ -610,6 +702,7 @@ export interface Ide {
|
|
|
610
702
|
name?: string;
|
|
611
703
|
}
|
|
612
704
|
/**
|
|
705
|
+
* @public
|
|
613
706
|
* <p>Information about the persistent storage for a Dev Environment.</p>
|
|
614
707
|
*/
|
|
615
708
|
export interface PersistentStorage {
|
|
@@ -623,6 +716,7 @@ export interface PersistentStorage {
|
|
|
623
716
|
sizeInGiB: number | undefined;
|
|
624
717
|
}
|
|
625
718
|
/**
|
|
719
|
+
* @public
|
|
626
720
|
* <p>Information about the source repsitory for a Dev Environment. </p>
|
|
627
721
|
*/
|
|
628
722
|
export interface DevEnvironmentRepositorySummary {
|
|
@@ -635,6 +729,9 @@ export interface DevEnvironmentRepositorySummary {
|
|
|
635
729
|
*/
|
|
636
730
|
branchName?: string;
|
|
637
731
|
}
|
|
732
|
+
/**
|
|
733
|
+
* @public
|
|
734
|
+
*/
|
|
638
735
|
export declare enum DevEnvironmentStatus {
|
|
639
736
|
DELETED = "DELETED",
|
|
640
737
|
DELETING = "DELETING",
|
|
@@ -645,6 +742,9 @@ export declare enum DevEnvironmentStatus {
|
|
|
645
742
|
STOPPED = "STOPPED",
|
|
646
743
|
STOPPING = "STOPPING"
|
|
647
744
|
}
|
|
745
|
+
/**
|
|
746
|
+
* @public
|
|
747
|
+
*/
|
|
648
748
|
export interface GetDevEnvironmentResponse {
|
|
649
749
|
/**
|
|
650
750
|
* <p>The name of the space.</p>
|
|
@@ -700,6 +800,7 @@ export interface GetDevEnvironmentResponse {
|
|
|
700
800
|
persistentStorage: PersistentStorage | undefined;
|
|
701
801
|
}
|
|
702
802
|
/**
|
|
803
|
+
* @public
|
|
703
804
|
* <p/>
|
|
704
805
|
*/
|
|
705
806
|
export interface Filter {
|
|
@@ -716,6 +817,9 @@ export interface Filter {
|
|
|
716
817
|
*/
|
|
717
818
|
comparisonOperator?: string;
|
|
718
819
|
}
|
|
820
|
+
/**
|
|
821
|
+
* @public
|
|
822
|
+
*/
|
|
719
823
|
export interface ListDevEnvironmentsRequest {
|
|
720
824
|
/**
|
|
721
825
|
* <p>The name of the space.</p>
|
|
@@ -739,6 +843,7 @@ export interface ListDevEnvironmentsRequest {
|
|
|
739
843
|
maxResults?: number;
|
|
740
844
|
}
|
|
741
845
|
/**
|
|
846
|
+
* @public
|
|
742
847
|
* <p>Information about a Dev Environment. </p>
|
|
743
848
|
*/
|
|
744
849
|
export interface DevEnvironmentSummary {
|
|
@@ -795,6 +900,9 @@ export interface DevEnvironmentSummary {
|
|
|
795
900
|
*/
|
|
796
901
|
persistentStorage: PersistentStorage | undefined;
|
|
797
902
|
}
|
|
903
|
+
/**
|
|
904
|
+
* @public
|
|
905
|
+
*/
|
|
798
906
|
export interface ListDevEnvironmentsResponse {
|
|
799
907
|
/**
|
|
800
908
|
* <p>Information about the Dev Environments in a project.</p>
|
|
@@ -805,6 +913,9 @@ export interface ListDevEnvironmentsResponse {
|
|
|
805
913
|
*/
|
|
806
914
|
nextToken?: string;
|
|
807
915
|
}
|
|
916
|
+
/**
|
|
917
|
+
* @public
|
|
918
|
+
*/
|
|
808
919
|
export interface StartDevEnvironmentRequest {
|
|
809
920
|
/**
|
|
810
921
|
* <p>The name of the space.</p>
|
|
@@ -831,6 +942,9 @@ export interface StartDevEnvironmentRequest {
|
|
|
831
942
|
*/
|
|
832
943
|
inactivityTimeoutMinutes?: number;
|
|
833
944
|
}
|
|
945
|
+
/**
|
|
946
|
+
* @public
|
|
947
|
+
*/
|
|
834
948
|
export interface StartDevEnvironmentResponse {
|
|
835
949
|
/**
|
|
836
950
|
* <p>The name of the space.</p>
|
|
@@ -850,6 +964,7 @@ export interface StartDevEnvironmentResponse {
|
|
|
850
964
|
status: DevEnvironmentStatus | string | undefined;
|
|
851
965
|
}
|
|
852
966
|
/**
|
|
967
|
+
* @public
|
|
853
968
|
* <p>Information about the commands that will be run on a Dev Environment when an SSH session begins.</p>
|
|
854
969
|
*/
|
|
855
970
|
export interface ExecuteCommandSessionConfiguration {
|
|
@@ -862,11 +977,15 @@ export interface ExecuteCommandSessionConfiguration {
|
|
|
862
977
|
*/
|
|
863
978
|
arguments?: string[];
|
|
864
979
|
}
|
|
980
|
+
/**
|
|
981
|
+
* @public
|
|
982
|
+
*/
|
|
865
983
|
export declare enum DevEnvironmentSessionType {
|
|
866
984
|
SSH = "SSH",
|
|
867
985
|
SSM = "SSM"
|
|
868
986
|
}
|
|
869
987
|
/**
|
|
988
|
+
* @public
|
|
870
989
|
* <p>Information about the configuration of a Dev Environment session.</p>
|
|
871
990
|
*/
|
|
872
991
|
export interface DevEnvironmentSessionConfiguration {
|
|
@@ -879,6 +998,9 @@ export interface DevEnvironmentSessionConfiguration {
|
|
|
879
998
|
*/
|
|
880
999
|
executeCommandSessionConfiguration?: ExecuteCommandSessionConfiguration;
|
|
881
1000
|
}
|
|
1001
|
+
/**
|
|
1002
|
+
* @public
|
|
1003
|
+
*/
|
|
882
1004
|
export interface StartDevEnvironmentSessionRequest {
|
|
883
1005
|
/**
|
|
884
1006
|
* <p>The name of the space.</p>
|
|
@@ -898,6 +1020,7 @@ export interface StartDevEnvironmentSessionRequest {
|
|
|
898
1020
|
sessionConfiguration: DevEnvironmentSessionConfiguration | undefined;
|
|
899
1021
|
}
|
|
900
1022
|
/**
|
|
1023
|
+
* @public
|
|
901
1024
|
* <p>Information about connection details for a Dev Environment.</p>
|
|
902
1025
|
*/
|
|
903
1026
|
export interface DevEnvironmentAccessDetails {
|
|
@@ -910,6 +1033,9 @@ export interface DevEnvironmentAccessDetails {
|
|
|
910
1033
|
*/
|
|
911
1034
|
tokenValue: string | undefined;
|
|
912
1035
|
}
|
|
1036
|
+
/**
|
|
1037
|
+
* @public
|
|
1038
|
+
*/
|
|
913
1039
|
export interface StartDevEnvironmentSessionResponse {
|
|
914
1040
|
/**
|
|
915
1041
|
* <p>Information about connection details for a Dev Environment.</p>
|
|
@@ -932,6 +1058,9 @@ export interface StartDevEnvironmentSessionResponse {
|
|
|
932
1058
|
*/
|
|
933
1059
|
id: string | undefined;
|
|
934
1060
|
}
|
|
1061
|
+
/**
|
|
1062
|
+
* @public
|
|
1063
|
+
*/
|
|
935
1064
|
export interface StopDevEnvironmentRequest {
|
|
936
1065
|
/**
|
|
937
1066
|
* <p>The name of the space.</p>
|
|
@@ -946,6 +1075,9 @@ export interface StopDevEnvironmentRequest {
|
|
|
946
1075
|
*/
|
|
947
1076
|
id: string | undefined;
|
|
948
1077
|
}
|
|
1078
|
+
/**
|
|
1079
|
+
* @public
|
|
1080
|
+
*/
|
|
949
1081
|
export interface StopDevEnvironmentResponse {
|
|
950
1082
|
/**
|
|
951
1083
|
* <p>The name of the space.</p>
|
|
@@ -964,6 +1096,9 @@ export interface StopDevEnvironmentResponse {
|
|
|
964
1096
|
*/
|
|
965
1097
|
status: DevEnvironmentStatus | string | undefined;
|
|
966
1098
|
}
|
|
1099
|
+
/**
|
|
1100
|
+
* @public
|
|
1101
|
+
*/
|
|
967
1102
|
export interface StopDevEnvironmentSessionRequest {
|
|
968
1103
|
/**
|
|
969
1104
|
* <p>The name of the space.</p>
|
|
@@ -982,6 +1117,9 @@ export interface StopDevEnvironmentSessionRequest {
|
|
|
982
1117
|
*/
|
|
983
1118
|
sessionId: string | undefined;
|
|
984
1119
|
}
|
|
1120
|
+
/**
|
|
1121
|
+
* @public
|
|
1122
|
+
*/
|
|
985
1123
|
export interface StopDevEnvironmentSessionResponse {
|
|
986
1124
|
/**
|
|
987
1125
|
* <p>The name of the space.</p>
|
|
@@ -1000,6 +1138,9 @@ export interface StopDevEnvironmentSessionResponse {
|
|
|
1000
1138
|
*/
|
|
1001
1139
|
sessionId: string | undefined;
|
|
1002
1140
|
}
|
|
1141
|
+
/**
|
|
1142
|
+
* @public
|
|
1143
|
+
*/
|
|
1003
1144
|
export interface UpdateDevEnvironmentRequest {
|
|
1004
1145
|
/**
|
|
1005
1146
|
* <p>The name of the space.</p>
|
|
@@ -1042,6 +1183,9 @@ export interface UpdateDevEnvironmentRequest {
|
|
|
1042
1183
|
*/
|
|
1043
1184
|
clientToken?: string;
|
|
1044
1185
|
}
|
|
1186
|
+
/**
|
|
1187
|
+
* @public
|
|
1188
|
+
*/
|
|
1045
1189
|
export interface UpdateDevEnvironmentResponse {
|
|
1046
1190
|
/**
|
|
1047
1191
|
* <p>The system-generated unique ID of the Dev Environment. </p>
|
|
@@ -1077,6 +1221,9 @@ export interface UpdateDevEnvironmentResponse {
|
|
|
1077
1221
|
*/
|
|
1078
1222
|
clientToken?: string;
|
|
1079
1223
|
}
|
|
1224
|
+
/**
|
|
1225
|
+
* @public
|
|
1226
|
+
*/
|
|
1080
1227
|
export interface GetProjectRequest {
|
|
1081
1228
|
/**
|
|
1082
1229
|
* <p>The name of the space.</p>
|
|
@@ -1087,6 +1234,9 @@ export interface GetProjectRequest {
|
|
|
1087
1234
|
*/
|
|
1088
1235
|
name: string | undefined;
|
|
1089
1236
|
}
|
|
1237
|
+
/**
|
|
1238
|
+
* @public
|
|
1239
|
+
*/
|
|
1090
1240
|
export interface GetProjectResponse {
|
|
1091
1241
|
/**
|
|
1092
1242
|
* <p>The name of the space.</p>
|
|
@@ -1105,6 +1255,9 @@ export interface GetProjectResponse {
|
|
|
1105
1255
|
*/
|
|
1106
1256
|
description?: string;
|
|
1107
1257
|
}
|
|
1258
|
+
/**
|
|
1259
|
+
* @public
|
|
1260
|
+
*/
|
|
1108
1261
|
export declare enum ComparisonOperator {
|
|
1109
1262
|
EQUALS = "EQ",
|
|
1110
1263
|
GREATER_THAN = "GT",
|
|
@@ -1112,10 +1265,14 @@ export declare enum ComparisonOperator {
|
|
|
1112
1265
|
LESS_THAN = "LT",
|
|
1113
1266
|
LESS_THAN_OR_EQUALS = "LE"
|
|
1114
1267
|
}
|
|
1268
|
+
/**
|
|
1269
|
+
* @public
|
|
1270
|
+
*/
|
|
1115
1271
|
export declare enum FilterKey {
|
|
1116
1272
|
HAS_ACCESS_TO = "hasAccessTo"
|
|
1117
1273
|
}
|
|
1118
1274
|
/**
|
|
1275
|
+
* @public
|
|
1119
1276
|
* <p>nformation about the filter used to narrow the results returned in a list of projects.</p>
|
|
1120
1277
|
*/
|
|
1121
1278
|
export interface ProjectListFilter {
|
|
@@ -1132,6 +1289,9 @@ export interface ProjectListFilter {
|
|
|
1132
1289
|
*/
|
|
1133
1290
|
comparisonOperator?: ComparisonOperator | string;
|
|
1134
1291
|
}
|
|
1292
|
+
/**
|
|
1293
|
+
* @public
|
|
1294
|
+
*/
|
|
1135
1295
|
export interface ListProjectsRequest {
|
|
1136
1296
|
/**
|
|
1137
1297
|
* <p>The name of the space.</p>
|
|
@@ -1151,6 +1311,7 @@ export interface ListProjectsRequest {
|
|
|
1151
1311
|
filters?: ProjectListFilter[];
|
|
1152
1312
|
}
|
|
1153
1313
|
/**
|
|
1314
|
+
* @public
|
|
1154
1315
|
* <p>Information about a project.</p>
|
|
1155
1316
|
*/
|
|
1156
1317
|
export interface ProjectSummary {
|
|
@@ -1167,6 +1328,9 @@ export interface ProjectSummary {
|
|
|
1167
1328
|
*/
|
|
1168
1329
|
description?: string;
|
|
1169
1330
|
}
|
|
1331
|
+
/**
|
|
1332
|
+
* @public
|
|
1333
|
+
*/
|
|
1170
1334
|
export interface ListProjectsResponse {
|
|
1171
1335
|
/**
|
|
1172
1336
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
@@ -1177,6 +1341,9 @@ export interface ListProjectsResponse {
|
|
|
1177
1341
|
*/
|
|
1178
1342
|
items?: ProjectSummary[];
|
|
1179
1343
|
}
|
|
1344
|
+
/**
|
|
1345
|
+
* @public
|
|
1346
|
+
*/
|
|
1180
1347
|
export interface GetSourceRepositoryCloneUrlsRequest {
|
|
1181
1348
|
/**
|
|
1182
1349
|
* <p>The name of the space.</p>
|
|
@@ -1191,12 +1358,18 @@ export interface GetSourceRepositoryCloneUrlsRequest {
|
|
|
1191
1358
|
*/
|
|
1192
1359
|
sourceRepositoryName: string | undefined;
|
|
1193
1360
|
}
|
|
1361
|
+
/**
|
|
1362
|
+
* @public
|
|
1363
|
+
*/
|
|
1194
1364
|
export interface GetSourceRepositoryCloneUrlsResponse {
|
|
1195
1365
|
/**
|
|
1196
1366
|
* <p>The HTTPS URL to use when cloning the source repository.</p>
|
|
1197
1367
|
*/
|
|
1198
1368
|
https: string | undefined;
|
|
1199
1369
|
}
|
|
1370
|
+
/**
|
|
1371
|
+
* @public
|
|
1372
|
+
*/
|
|
1200
1373
|
export interface ListSourceRepositoriesRequest {
|
|
1201
1374
|
/**
|
|
1202
1375
|
* <p>The name of the space.</p>
|
|
@@ -1216,6 +1389,7 @@ export interface ListSourceRepositoriesRequest {
|
|
|
1216
1389
|
maxResults?: number;
|
|
1217
1390
|
}
|
|
1218
1391
|
/**
|
|
1392
|
+
* @public
|
|
1219
1393
|
* <p>Information about a source repository returned in a list of source repositories.</p>
|
|
1220
1394
|
*/
|
|
1221
1395
|
export interface ListSourceRepositoriesItem {
|
|
@@ -1240,6 +1414,9 @@ export interface ListSourceRepositoriesItem {
|
|
|
1240
1414
|
*/
|
|
1241
1415
|
createdTime: Date | undefined;
|
|
1242
1416
|
}
|
|
1417
|
+
/**
|
|
1418
|
+
* @public
|
|
1419
|
+
*/
|
|
1243
1420
|
export interface ListSourceRepositoriesResponse {
|
|
1244
1421
|
/**
|
|
1245
1422
|
* <p>Information about the source repositories.</p>
|
|
@@ -1250,6 +1427,9 @@ export interface ListSourceRepositoriesResponse {
|
|
|
1250
1427
|
*/
|
|
1251
1428
|
nextToken?: string;
|
|
1252
1429
|
}
|
|
1430
|
+
/**
|
|
1431
|
+
* @public
|
|
1432
|
+
*/
|
|
1253
1433
|
export interface CreateSourceRepositoryBranchRequest {
|
|
1254
1434
|
/**
|
|
1255
1435
|
* <p>The name of the space.</p>
|
|
@@ -1272,6 +1452,9 @@ export interface CreateSourceRepositoryBranchRequest {
|
|
|
1272
1452
|
*/
|
|
1273
1453
|
headCommitId?: string;
|
|
1274
1454
|
}
|
|
1455
|
+
/**
|
|
1456
|
+
* @public
|
|
1457
|
+
*/
|
|
1275
1458
|
export interface CreateSourceRepositoryBranchResponse {
|
|
1276
1459
|
/**
|
|
1277
1460
|
* <p>The Git reference name of the branch.</p>
|
|
@@ -1290,6 +1473,9 @@ export interface CreateSourceRepositoryBranchResponse {
|
|
|
1290
1473
|
*/
|
|
1291
1474
|
headCommitId?: string;
|
|
1292
1475
|
}
|
|
1476
|
+
/**
|
|
1477
|
+
* @public
|
|
1478
|
+
*/
|
|
1293
1479
|
export interface ListSourceRepositoryBranchesRequest {
|
|
1294
1480
|
/**
|
|
1295
1481
|
* <p>The name of the space.</p>
|
|
@@ -1313,6 +1499,7 @@ export interface ListSourceRepositoryBranchesRequest {
|
|
|
1313
1499
|
maxResults?: number;
|
|
1314
1500
|
}
|
|
1315
1501
|
/**
|
|
1502
|
+
* @public
|
|
1316
1503
|
* <p>Information about a branch of a source repository returned in a list of branches.</p>
|
|
1317
1504
|
*/
|
|
1318
1505
|
export interface ListSourceRepositoryBranchesItem {
|
|
@@ -1333,6 +1520,9 @@ export interface ListSourceRepositoryBranchesItem {
|
|
|
1333
1520
|
*/
|
|
1334
1521
|
headCommitId?: string;
|
|
1335
1522
|
}
|
|
1523
|
+
/**
|
|
1524
|
+
* @public
|
|
1525
|
+
*/
|
|
1336
1526
|
export interface ListSourceRepositoryBranchesResponse {
|
|
1337
1527
|
/**
|
|
1338
1528
|
* <p>A token returned from a call to this API to indicate the next batch of results to return, if any.</p>
|
|
@@ -1343,12 +1533,18 @@ export interface ListSourceRepositoryBranchesResponse {
|
|
|
1343
1533
|
*/
|
|
1344
1534
|
items: ListSourceRepositoryBranchesItem[] | undefined;
|
|
1345
1535
|
}
|
|
1536
|
+
/**
|
|
1537
|
+
* @public
|
|
1538
|
+
*/
|
|
1346
1539
|
export interface GetSubscriptionRequest {
|
|
1347
1540
|
/**
|
|
1348
1541
|
* <p>The name of the space.</p>
|
|
1349
1542
|
*/
|
|
1350
1543
|
spaceName: string | undefined;
|
|
1351
1544
|
}
|
|
1545
|
+
/**
|
|
1546
|
+
* @public
|
|
1547
|
+
*/
|
|
1352
1548
|
export interface GetSubscriptionResponse {
|
|
1353
1549
|
/**
|
|
1354
1550
|
* <p>The type of the billing plan for the space.</p>
|
|
@@ -1359,6 +1555,9 @@ export interface GetSubscriptionResponse {
|
|
|
1359
1555
|
*/
|
|
1360
1556
|
awsAccountName?: string;
|
|
1361
1557
|
}
|
|
1558
|
+
/**
|
|
1559
|
+
* @public
|
|
1560
|
+
*/
|
|
1362
1561
|
export interface VerifySessionResponse {
|
|
1363
1562
|
/**
|
|
1364
1563
|
* <p>The system-generated unique ID of the user in Amazon CodeCatalyst.</p>
|