@aws-sdk/client-codecatalyst 3.369.0 → 3.374.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/README.md +110 -22
- package/dist-cjs/CodeCatalyst.js +14 -0
- package/dist-cjs/commands/CreateSourceRepositoryCommand.js +45 -0
- package/dist-cjs/commands/DeleteProjectCommand.js +45 -0
- package/dist-cjs/commands/DeleteSourceRepositoryCommand.js +45 -0
- package/dist-cjs/commands/DeleteSpaceCommand.js +45 -0
- package/dist-cjs/commands/GetSourceRepositoryCommand.js +45 -0
- package/dist-cjs/commands/UpdateProjectCommand.js +45 -0
- package/dist-cjs/commands/UpdateSpaceCommand.js +45 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +508 -2
- package/dist-es/CodeCatalyst.js +14 -0
- package/dist-es/commands/CreateSourceRepositoryCommand.js +41 -0
- package/dist-es/commands/DeleteProjectCommand.js +41 -0
- package/dist-es/commands/DeleteSourceRepositoryCommand.js +41 -0
- package/dist-es/commands/DeleteSpaceCommand.js +41 -0
- package/dist-es/commands/GetSourceRepositoryCommand.js +41 -0
- package/dist-es/commands/UpdateProjectCommand.js +41 -0
- package/dist-es/commands/UpdateSpaceCommand.js +41 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/protocols/Aws_restJson1.js +492 -0
- package/dist-types/CodeCatalyst.d.ts +103 -22
- package/dist-types/CodeCatalystClient.d.ts +63 -24
- package/dist-types/commands/CreateSourceRepositoryCommand.d.ts +100 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +96 -0
- package/dist-types/commands/DeleteSourceRepositoryCommand.d.ts +97 -0
- package/dist-types/commands/DeleteSpaceCommand.d.ts +97 -0
- package/dist-types/commands/GetSourceRepositoryCommand.d.ts +100 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +98 -0
- package/dist-types/commands/UpdateSpaceCommand.d.ts +96 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/index.d.ts +54 -22
- package/dist-types/models/models_0.d.ts +250 -8
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/CodeCatalyst.d.ts +119 -0
- package/dist-types/ts3.4/CodeCatalystClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateSourceRepositoryCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteProjectCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteSourceRepositoryCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteSpaceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetSourceRepositoryCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateSpaceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +71 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +14 -15
package/dist-types/index.d.ts
CHANGED
|
@@ -1,32 +1,35 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* <p>Welcome to the Amazon CodeCatalyst API reference. This reference provides descriptions of operations and data types for Amazon CodeCatalyst. You can use the Amazon CodeCatalyst
|
|
3
3
|
* API to work with the following objects. </p>
|
|
4
|
-
* <p>
|
|
4
|
+
* <p>Spaces, by calling the following:</p>
|
|
5
5
|
* <ul>
|
|
6
6
|
* <li>
|
|
7
7
|
* <p>
|
|
8
|
-
* <a>
|
|
8
|
+
* <a>DeleteSpace</a>, which deletes a space.</p>
|
|
9
9
|
* </li>
|
|
10
10
|
* <li>
|
|
11
11
|
* <p>
|
|
12
|
-
* <a>
|
|
13
|
-
* where you can quickly work on the code stored in the source repositories of your project.</p>
|
|
12
|
+
* <a>GetSpace</a>, which returns information about a space.</p>
|
|
14
13
|
* </li>
|
|
15
14
|
* <li>
|
|
16
15
|
* <p>
|
|
17
|
-
* <a>
|
|
16
|
+
* <a>GetSubscription</a>, which returns information about the Amazon Web Services account used for billing purposes
|
|
17
|
+
* and the billing plan for the space.</p>
|
|
18
18
|
* </li>
|
|
19
19
|
* <li>
|
|
20
20
|
* <p>
|
|
21
|
-
* <a>
|
|
21
|
+
* <a>ListSpaces</a>, which retrieves a list of spaces.</p>
|
|
22
22
|
* </li>
|
|
23
23
|
* <li>
|
|
24
24
|
* <p>
|
|
25
|
-
* <a>
|
|
25
|
+
* <a>UpdateSpace</a>, which hanges one or more values for a space.</p>
|
|
26
26
|
* </li>
|
|
27
|
+
* </ul>
|
|
28
|
+
* <p>Projects, by calling the following:</p>
|
|
29
|
+
* <ul>
|
|
27
30
|
* <li>
|
|
28
31
|
* <p>
|
|
29
|
-
* <a>
|
|
32
|
+
* <a>CreateProject</a> which creates a project in a specified space.</p>
|
|
30
33
|
* </li>
|
|
31
34
|
* <li>
|
|
32
35
|
* <p>
|
|
@@ -34,33 +37,38 @@
|
|
|
34
37
|
* </li>
|
|
35
38
|
* <li>
|
|
36
39
|
* <p>
|
|
37
|
-
* <a>
|
|
38
|
-
* repository.</p>
|
|
40
|
+
* <a>ListProjects</a>, which retrieves a list of projects in a space.</p>
|
|
39
41
|
* </li>
|
|
42
|
+
* </ul>
|
|
43
|
+
* <p>Users, by calling the following:</p>
|
|
44
|
+
* <ul>
|
|
40
45
|
* <li>
|
|
41
46
|
* <p>
|
|
42
|
-
* <a>
|
|
47
|
+
* <a>GetUserDetails</a>, which returns information about a user in Amazon CodeCatalyst.</p>
|
|
43
48
|
* </li>
|
|
49
|
+
* </ul>
|
|
50
|
+
* <p>Source repositories, by calling the following:</p>
|
|
51
|
+
* <ul>
|
|
44
52
|
* <li>
|
|
45
53
|
* <p>
|
|
46
|
-
* <a>
|
|
47
|
-
* and the billing plan for the space.</p>
|
|
54
|
+
* <a>CreateSourceRepository</a>, which creates an empty Git-based source repository in a specified project.</p>
|
|
48
55
|
* </li>
|
|
49
56
|
* <li>
|
|
50
57
|
* <p>
|
|
51
|
-
* <a>
|
|
58
|
+
* <a>CreateSourceRepositoryBranch</a>, which creates a branch in a specified repository where you can work on code.</p>
|
|
52
59
|
* </li>
|
|
53
60
|
* <li>
|
|
54
61
|
* <p>
|
|
55
|
-
* <a>
|
|
62
|
+
* <a>DeleteSourceRepository</a>, which deletes a source repository.</p>
|
|
56
63
|
* </li>
|
|
57
64
|
* <li>
|
|
58
65
|
* <p>
|
|
59
|
-
* <a>
|
|
66
|
+
* <a>GetSourceRepository</a>, which returns information about a source repository.</p>
|
|
60
67
|
* </li>
|
|
61
68
|
* <li>
|
|
62
69
|
* <p>
|
|
63
|
-
* <a>
|
|
70
|
+
* <a>GetSourceRepositoryCloneUrls</a>, which returns information about the URLs that can be used with a Git client to clone a source
|
|
71
|
+
* repository.</p>
|
|
64
72
|
* </li>
|
|
65
73
|
* <li>
|
|
66
74
|
* <p>
|
|
@@ -70,9 +78,29 @@
|
|
|
70
78
|
* <p>
|
|
71
79
|
* <a>ListSourceRepositoryBranches</a>, which retrieves a list of branches in a source repository.</p>
|
|
72
80
|
* </li>
|
|
81
|
+
* </ul>
|
|
82
|
+
* <p>Dev Environments and the Amazon Web Services Toolkits, by calling the following:</p>
|
|
83
|
+
* <ul>
|
|
73
84
|
* <li>
|
|
74
85
|
* <p>
|
|
75
|
-
* <a>
|
|
86
|
+
* <a>CreateDevEnvironment</a>, which creates a Dev Environment,
|
|
87
|
+
* where you can quickly work on the code stored in the source repositories of your project.</p>
|
|
88
|
+
* </li>
|
|
89
|
+
* <li>
|
|
90
|
+
* <p>
|
|
91
|
+
* <a>DeleteDevEnvironment</a>, which deletes a Dev Environment.</p>
|
|
92
|
+
* </li>
|
|
93
|
+
* <li>
|
|
94
|
+
* <p>
|
|
95
|
+
* <a>GetDevEnvironment</a>, which returns information about a Dev Environment.</p>
|
|
96
|
+
* </li>
|
|
97
|
+
* <li>
|
|
98
|
+
* <p>
|
|
99
|
+
* <a>ListDevEnvironments</a>, which retrieves a list of Dev Environments in a project.</p>
|
|
100
|
+
* </li>
|
|
101
|
+
* <li>
|
|
102
|
+
* <p>
|
|
103
|
+
* <a>ListDevEnvironmentSessions</a>, which retrieves a list of active Dev Environment sessions in a project.</p>
|
|
76
104
|
* </li>
|
|
77
105
|
* <li>
|
|
78
106
|
* <p>
|
|
@@ -94,15 +122,15 @@
|
|
|
94
122
|
* <p>
|
|
95
123
|
* <a>UpdateDevEnvironment</a>, which changes one or more values for a Dev Environment.</p>
|
|
96
124
|
* </li>
|
|
97
|
-
* <li>
|
|
98
|
-
* <p>
|
|
99
|
-
* <a>VerifySession</a>, which verifies whether the calling user has a valid Amazon CodeCatalyst login and session.</p>
|
|
100
|
-
* </li>
|
|
101
125
|
* </ul>
|
|
102
126
|
* <p>Security, activity, and resource management in Amazon CodeCatalyst, by calling the following:</p>
|
|
103
127
|
* <ul>
|
|
104
128
|
* <li>
|
|
105
129
|
* <p>
|
|
130
|
+
* <a>CreateAccessToken</a>, which creates a personal access token (PAT) for the current user.</p>
|
|
131
|
+
* </li>
|
|
132
|
+
* <li>
|
|
133
|
+
* <p>
|
|
106
134
|
* <a>DeleteAccessToken</a>, which deletes a specified personal access token (PAT).</p>
|
|
107
135
|
* </li>
|
|
108
136
|
* <li>
|
|
@@ -113,6 +141,10 @@
|
|
|
113
141
|
* <p>
|
|
114
142
|
* <a>ListEventLogs</a>, which retrieves a list of events that occurred during a specified time period in a space.</p>
|
|
115
143
|
* </li>
|
|
144
|
+
* <li>
|
|
145
|
+
* <p>
|
|
146
|
+
* <a>VerifySession</a>, which verifies whether the calling user has a valid Amazon CodeCatalyst login and session.</p>
|
|
147
|
+
* </li>
|
|
116
148
|
* </ul>
|
|
117
149
|
* <note>
|
|
118
150
|
* <p>If you are using the Amazon CodeCatalyst APIs with an SDK or the CLI, you must configure your computer to work with Amazon CodeCatalyst and single sign-on (SSO).
|
|
@@ -219,6 +219,28 @@ export interface GetUserDetailsResponse {
|
|
|
219
219
|
*/
|
|
220
220
|
version?: string;
|
|
221
221
|
}
|
|
222
|
+
/**
|
|
223
|
+
* @public
|
|
224
|
+
*/
|
|
225
|
+
export interface DeleteSpaceRequest {
|
|
226
|
+
/**
|
|
227
|
+
* <p>The name of the space. To retrieve a list of space names, use <a>ListSpaces</a>.</p>
|
|
228
|
+
*/
|
|
229
|
+
name: string | undefined;
|
|
230
|
+
}
|
|
231
|
+
/**
|
|
232
|
+
* @public
|
|
233
|
+
*/
|
|
234
|
+
export interface DeleteSpaceResponse {
|
|
235
|
+
/**
|
|
236
|
+
* <p>The name of the space.</p>
|
|
237
|
+
*/
|
|
238
|
+
name: string | undefined;
|
|
239
|
+
/**
|
|
240
|
+
* <p>The friendly name of the space displayed to users of the space in Amazon CodeCatalyst.</p>
|
|
241
|
+
*/
|
|
242
|
+
displayName?: string;
|
|
243
|
+
}
|
|
222
244
|
/**
|
|
223
245
|
* @public
|
|
224
246
|
*/
|
|
@@ -311,7 +333,7 @@ export interface UserIdentity {
|
|
|
311
333
|
*/
|
|
312
334
|
userType: UserType | string | undefined;
|
|
313
335
|
/**
|
|
314
|
-
* <p
|
|
336
|
+
* <p>The ID of the Amazon CodeCatalyst service principal.</p>
|
|
315
337
|
*/
|
|
316
338
|
principalId: string | undefined;
|
|
317
339
|
/**
|
|
@@ -385,7 +407,7 @@ export interface EventLogEntry {
|
|
|
385
407
|
*/
|
|
386
408
|
sourceIpAddress?: string;
|
|
387
409
|
/**
|
|
388
|
-
* <p
|
|
410
|
+
* <p>The user agent whose actions are recorded in the event.</p>
|
|
389
411
|
*/
|
|
390
412
|
userAgent?: string;
|
|
391
413
|
}
|
|
@@ -515,6 +537,36 @@ export interface CreateProjectResponse {
|
|
|
515
537
|
*/
|
|
516
538
|
description?: string;
|
|
517
539
|
}
|
|
540
|
+
/**
|
|
541
|
+
* @public
|
|
542
|
+
*/
|
|
543
|
+
export interface DeleteProjectRequest {
|
|
544
|
+
/**
|
|
545
|
+
* <p>The name of the space.</p>
|
|
546
|
+
*/
|
|
547
|
+
spaceName: string | undefined;
|
|
548
|
+
/**
|
|
549
|
+
* <p>The name of the project in the space. To retrieve a list of project names, use <a>ListProjects</a>.</p>
|
|
550
|
+
*/
|
|
551
|
+
name: string | undefined;
|
|
552
|
+
}
|
|
553
|
+
/**
|
|
554
|
+
* @public
|
|
555
|
+
*/
|
|
556
|
+
export interface DeleteProjectResponse {
|
|
557
|
+
/**
|
|
558
|
+
* <p>The name of the space.</p>
|
|
559
|
+
*/
|
|
560
|
+
spaceName: string | undefined;
|
|
561
|
+
/**
|
|
562
|
+
* <p>The name of the project in the space.</p>
|
|
563
|
+
*/
|
|
564
|
+
name: string | undefined;
|
|
565
|
+
/**
|
|
566
|
+
* <p>The friendly name displayed to users of the project in Amazon CodeCatalyst.</p>
|
|
567
|
+
*/
|
|
568
|
+
displayName?: string;
|
|
569
|
+
}
|
|
518
570
|
/**
|
|
519
571
|
* @public
|
|
520
572
|
* <p>Information about the configuration of an integrated development environment (IDE) for a Dev Environment.</p>
|
|
@@ -604,7 +656,7 @@ export interface CreateDevEnvironmentRequest {
|
|
|
604
656
|
* Dev Environment.</p>
|
|
605
657
|
* <note>
|
|
606
658
|
* <p>An IDE is required to create a Dev Environment. For Dev Environment creation, this field
|
|
607
|
-
* contains configuration information and must be provided
|
|
659
|
+
* contains configuration information and must be provided. </p>
|
|
608
660
|
* </note>
|
|
609
661
|
*/
|
|
610
662
|
ides?: IdeConfiguration[];
|
|
@@ -814,19 +866,19 @@ export interface GetDevEnvironmentResponse {
|
|
|
814
866
|
}
|
|
815
867
|
/**
|
|
816
868
|
* @public
|
|
817
|
-
* <p
|
|
869
|
+
* <p>Information about a filter used to limit results of a query.</p>
|
|
818
870
|
*/
|
|
819
871
|
export interface Filter {
|
|
820
872
|
/**
|
|
821
|
-
* <p
|
|
873
|
+
* <p>A key that can be used to sort results.</p>
|
|
822
874
|
*/
|
|
823
875
|
key: string | undefined;
|
|
824
876
|
/**
|
|
825
|
-
* <p
|
|
877
|
+
* <p>The values of the key.</p>
|
|
826
878
|
*/
|
|
827
879
|
values: string[] | undefined;
|
|
828
880
|
/**
|
|
829
|
-
* <p
|
|
881
|
+
* <p>The operator used to compare the fields.</p>
|
|
830
882
|
*/
|
|
831
883
|
comparisonOperator?: string;
|
|
832
884
|
}
|
|
@@ -1374,7 +1426,7 @@ export interface ProjectListFilter {
|
|
|
1374
1426
|
*/
|
|
1375
1427
|
key: FilterKey | string | undefined;
|
|
1376
1428
|
/**
|
|
1377
|
-
* <p>The
|
|
1429
|
+
* <p>The values of the key.</p>
|
|
1378
1430
|
*/
|
|
1379
1431
|
values: string[] | undefined;
|
|
1380
1432
|
/**
|
|
@@ -1434,6 +1486,128 @@ export interface ListProjectsResponse {
|
|
|
1434
1486
|
*/
|
|
1435
1487
|
items?: ProjectSummary[];
|
|
1436
1488
|
}
|
|
1489
|
+
/**
|
|
1490
|
+
* @public
|
|
1491
|
+
*/
|
|
1492
|
+
export interface CreateSourceRepositoryRequest {
|
|
1493
|
+
/**
|
|
1494
|
+
* <p>The name of the space.</p>
|
|
1495
|
+
*/
|
|
1496
|
+
spaceName: string | undefined;
|
|
1497
|
+
/**
|
|
1498
|
+
* <p>The name of the project in the space.</p>
|
|
1499
|
+
*/
|
|
1500
|
+
projectName: string | undefined;
|
|
1501
|
+
/**
|
|
1502
|
+
* <p>The name of the source repository. For more information about name requirements, see <a href="https://docs.aws.amazon.com/codecatalyst/latest/userguide/source-quotas.html">Quotas for source repositories</a>.</p>
|
|
1503
|
+
*/
|
|
1504
|
+
name: string | undefined;
|
|
1505
|
+
/**
|
|
1506
|
+
* <p>The description of the source repository.</p>
|
|
1507
|
+
*/
|
|
1508
|
+
description?: string;
|
|
1509
|
+
}
|
|
1510
|
+
/**
|
|
1511
|
+
* @public
|
|
1512
|
+
*/
|
|
1513
|
+
export interface CreateSourceRepositoryResponse {
|
|
1514
|
+
/**
|
|
1515
|
+
* <p>The name of the space.</p>
|
|
1516
|
+
*/
|
|
1517
|
+
spaceName: string | undefined;
|
|
1518
|
+
/**
|
|
1519
|
+
* <p>The name of the project in the space.</p>
|
|
1520
|
+
*/
|
|
1521
|
+
projectName: string | undefined;
|
|
1522
|
+
/**
|
|
1523
|
+
* <p>The name of the source repository.</p>
|
|
1524
|
+
*/
|
|
1525
|
+
name: string | undefined;
|
|
1526
|
+
/**
|
|
1527
|
+
* <p>The description of the source repository.</p>
|
|
1528
|
+
*/
|
|
1529
|
+
description?: string;
|
|
1530
|
+
}
|
|
1531
|
+
/**
|
|
1532
|
+
* @public
|
|
1533
|
+
*/
|
|
1534
|
+
export interface DeleteSourceRepositoryRequest {
|
|
1535
|
+
/**
|
|
1536
|
+
* <p>The name of the space.</p>
|
|
1537
|
+
*/
|
|
1538
|
+
spaceName: string | undefined;
|
|
1539
|
+
/**
|
|
1540
|
+
* <p>The name of the project in the space.</p>
|
|
1541
|
+
*/
|
|
1542
|
+
projectName: string | undefined;
|
|
1543
|
+
/**
|
|
1544
|
+
* <p>The name of the source repository.</p>
|
|
1545
|
+
*/
|
|
1546
|
+
name: string | undefined;
|
|
1547
|
+
}
|
|
1548
|
+
/**
|
|
1549
|
+
* @public
|
|
1550
|
+
*/
|
|
1551
|
+
export interface DeleteSourceRepositoryResponse {
|
|
1552
|
+
/**
|
|
1553
|
+
* <p>The name of the space.</p>
|
|
1554
|
+
*/
|
|
1555
|
+
spaceName: string | undefined;
|
|
1556
|
+
/**
|
|
1557
|
+
* <p>The name of the project in the space.</p>
|
|
1558
|
+
*/
|
|
1559
|
+
projectName: string | undefined;
|
|
1560
|
+
/**
|
|
1561
|
+
* <p>The name of the repository.</p>
|
|
1562
|
+
*/
|
|
1563
|
+
name: string | undefined;
|
|
1564
|
+
}
|
|
1565
|
+
/**
|
|
1566
|
+
* @public
|
|
1567
|
+
*/
|
|
1568
|
+
export interface GetSourceRepositoryRequest {
|
|
1569
|
+
/**
|
|
1570
|
+
* <p>The name of the space.</p>
|
|
1571
|
+
*/
|
|
1572
|
+
spaceName: string | undefined;
|
|
1573
|
+
/**
|
|
1574
|
+
* <p>The name of the project in the space.</p>
|
|
1575
|
+
*/
|
|
1576
|
+
projectName: string | undefined;
|
|
1577
|
+
/**
|
|
1578
|
+
* <p>The name of the source repository.</p>
|
|
1579
|
+
*/
|
|
1580
|
+
name: string | undefined;
|
|
1581
|
+
}
|
|
1582
|
+
/**
|
|
1583
|
+
* @public
|
|
1584
|
+
*/
|
|
1585
|
+
export interface GetSourceRepositoryResponse {
|
|
1586
|
+
/**
|
|
1587
|
+
* <p>The name of the space.</p>
|
|
1588
|
+
*/
|
|
1589
|
+
spaceName: string | undefined;
|
|
1590
|
+
/**
|
|
1591
|
+
* <p>The name of the project in the space.</p>
|
|
1592
|
+
*/
|
|
1593
|
+
projectName: string | undefined;
|
|
1594
|
+
/**
|
|
1595
|
+
* <p>The name of the source repository.</p>
|
|
1596
|
+
*/
|
|
1597
|
+
name: string | undefined;
|
|
1598
|
+
/**
|
|
1599
|
+
* <p>The description of the source repository.</p>
|
|
1600
|
+
*/
|
|
1601
|
+
description?: string;
|
|
1602
|
+
/**
|
|
1603
|
+
* <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>
|
|
1604
|
+
*/
|
|
1605
|
+
lastUpdatedTime: Date | undefined;
|
|
1606
|
+
/**
|
|
1607
|
+
* <p>The time the source repository was created, 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>
|
|
1608
|
+
*/
|
|
1609
|
+
createdTime: Date | undefined;
|
|
1610
|
+
}
|
|
1437
1611
|
/**
|
|
1438
1612
|
* @public
|
|
1439
1613
|
*/
|
|
@@ -1626,6 +1800,44 @@ export interface ListSourceRepositoryBranchesResponse {
|
|
|
1626
1800
|
*/
|
|
1627
1801
|
items: ListSourceRepositoryBranchesItem[] | undefined;
|
|
1628
1802
|
}
|
|
1803
|
+
/**
|
|
1804
|
+
* @public
|
|
1805
|
+
*/
|
|
1806
|
+
export interface UpdateProjectRequest {
|
|
1807
|
+
/**
|
|
1808
|
+
* <p>The name of the space.</p>
|
|
1809
|
+
*/
|
|
1810
|
+
spaceName: string | undefined;
|
|
1811
|
+
/**
|
|
1812
|
+
* <p>The name of the project.</p>
|
|
1813
|
+
*/
|
|
1814
|
+
name: string | undefined;
|
|
1815
|
+
/**
|
|
1816
|
+
* <p>The description of the project.</p>
|
|
1817
|
+
*/
|
|
1818
|
+
description?: string;
|
|
1819
|
+
}
|
|
1820
|
+
/**
|
|
1821
|
+
* @public
|
|
1822
|
+
*/
|
|
1823
|
+
export interface UpdateProjectResponse {
|
|
1824
|
+
/**
|
|
1825
|
+
* <p>The name of the space.</p>
|
|
1826
|
+
*/
|
|
1827
|
+
spaceName?: string;
|
|
1828
|
+
/**
|
|
1829
|
+
* <p>The name of the project.</p>
|
|
1830
|
+
*/
|
|
1831
|
+
name?: string;
|
|
1832
|
+
/**
|
|
1833
|
+
* <p>The friendly name of the project displayed to users in Amazon CodeCatalyst.</p>
|
|
1834
|
+
*/
|
|
1835
|
+
displayName?: string;
|
|
1836
|
+
/**
|
|
1837
|
+
* <p>The description of the project.</p>
|
|
1838
|
+
*/
|
|
1839
|
+
description?: string;
|
|
1840
|
+
}
|
|
1629
1841
|
/**
|
|
1630
1842
|
* @public
|
|
1631
1843
|
*/
|
|
@@ -1648,6 +1860,36 @@ export interface GetSubscriptionResponse {
|
|
|
1648
1860
|
*/
|
|
1649
1861
|
awsAccountName?: string;
|
|
1650
1862
|
}
|
|
1863
|
+
/**
|
|
1864
|
+
* @public
|
|
1865
|
+
*/
|
|
1866
|
+
export interface UpdateSpaceRequest {
|
|
1867
|
+
/**
|
|
1868
|
+
* <p>The name of the space.</p>
|
|
1869
|
+
*/
|
|
1870
|
+
name: string | undefined;
|
|
1871
|
+
/**
|
|
1872
|
+
* <p>The description of the space.</p>
|
|
1873
|
+
*/
|
|
1874
|
+
description?: string;
|
|
1875
|
+
}
|
|
1876
|
+
/**
|
|
1877
|
+
* @public
|
|
1878
|
+
*/
|
|
1879
|
+
export interface UpdateSpaceResponse {
|
|
1880
|
+
/**
|
|
1881
|
+
* <p>The name of the space.</p>
|
|
1882
|
+
*/
|
|
1883
|
+
name?: string;
|
|
1884
|
+
/**
|
|
1885
|
+
* <p>The friendly name of the space displayed to users in Amazon CodeCatalyst.</p>
|
|
1886
|
+
*/
|
|
1887
|
+
displayName?: string;
|
|
1888
|
+
/**
|
|
1889
|
+
* <p>The description of the space.</p>
|
|
1890
|
+
*/
|
|
1891
|
+
description?: string;
|
|
1892
|
+
}
|
|
1651
1893
|
/**
|
|
1652
1894
|
* @public
|
|
1653
1895
|
*/
|
|
@@ -4,11 +4,16 @@ import { CreateAccessTokenCommandInput, CreateAccessTokenCommandOutput } from ".
|
|
|
4
4
|
import { CreateDevEnvironmentCommandInput, CreateDevEnvironmentCommandOutput } from "../commands/CreateDevEnvironmentCommand";
|
|
5
5
|
import { CreateProjectCommandInput, CreateProjectCommandOutput } from "../commands/CreateProjectCommand";
|
|
6
6
|
import { CreateSourceRepositoryBranchCommandInput, CreateSourceRepositoryBranchCommandOutput } from "../commands/CreateSourceRepositoryBranchCommand";
|
|
7
|
+
import { CreateSourceRepositoryCommandInput, CreateSourceRepositoryCommandOutput } from "../commands/CreateSourceRepositoryCommand";
|
|
7
8
|
import { DeleteAccessTokenCommandInput, DeleteAccessTokenCommandOutput } from "../commands/DeleteAccessTokenCommand";
|
|
8
9
|
import { DeleteDevEnvironmentCommandInput, DeleteDevEnvironmentCommandOutput } from "../commands/DeleteDevEnvironmentCommand";
|
|
10
|
+
import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "../commands/DeleteProjectCommand";
|
|
11
|
+
import { DeleteSourceRepositoryCommandInput, DeleteSourceRepositoryCommandOutput } from "../commands/DeleteSourceRepositoryCommand";
|
|
12
|
+
import { DeleteSpaceCommandInput, DeleteSpaceCommandOutput } from "../commands/DeleteSpaceCommand";
|
|
9
13
|
import { GetDevEnvironmentCommandInput, GetDevEnvironmentCommandOutput } from "../commands/GetDevEnvironmentCommand";
|
|
10
14
|
import { GetProjectCommandInput, GetProjectCommandOutput } from "../commands/GetProjectCommand";
|
|
11
15
|
import { GetSourceRepositoryCloneUrlsCommandInput, GetSourceRepositoryCloneUrlsCommandOutput } from "../commands/GetSourceRepositoryCloneUrlsCommand";
|
|
16
|
+
import { GetSourceRepositoryCommandInput, GetSourceRepositoryCommandOutput } from "../commands/GetSourceRepositoryCommand";
|
|
12
17
|
import { GetSpaceCommandInput, GetSpaceCommandOutput } from "../commands/GetSpaceCommand";
|
|
13
18
|
import { GetSubscriptionCommandInput, GetSubscriptionCommandOutput } from "../commands/GetSubscriptionCommand";
|
|
14
19
|
import { GetUserDetailsCommandInput, GetUserDetailsCommandOutput } from "../commands/GetUserDetailsCommand";
|
|
@@ -25,6 +30,8 @@ import { StartDevEnvironmentSessionCommandInput, StartDevEnvironmentSessionComma
|
|
|
25
30
|
import { StopDevEnvironmentCommandInput, StopDevEnvironmentCommandOutput } from "../commands/StopDevEnvironmentCommand";
|
|
26
31
|
import { StopDevEnvironmentSessionCommandInput, StopDevEnvironmentSessionCommandOutput } from "../commands/StopDevEnvironmentSessionCommand";
|
|
27
32
|
import { UpdateDevEnvironmentCommandInput, UpdateDevEnvironmentCommandOutput } from "../commands/UpdateDevEnvironmentCommand";
|
|
33
|
+
import { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "../commands/UpdateProjectCommand";
|
|
34
|
+
import { UpdateSpaceCommandInput, UpdateSpaceCommandOutput } from "../commands/UpdateSpaceCommand";
|
|
28
35
|
import { VerifySessionCommandInput, VerifySessionCommandOutput } from "../commands/VerifySessionCommand";
|
|
29
36
|
/**
|
|
30
37
|
* serializeAws_restJson1CreateAccessTokenCommand
|
|
@@ -38,6 +45,10 @@ export declare const se_CreateDevEnvironmentCommand: (input: CreateDevEnvironmen
|
|
|
38
45
|
* serializeAws_restJson1CreateProjectCommand
|
|
39
46
|
*/
|
|
40
47
|
export declare const se_CreateProjectCommand: (input: CreateProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
+
/**
|
|
49
|
+
* serializeAws_restJson1CreateSourceRepositoryCommand
|
|
50
|
+
*/
|
|
51
|
+
export declare const se_CreateSourceRepositoryCommand: (input: CreateSourceRepositoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
52
|
/**
|
|
42
53
|
* serializeAws_restJson1CreateSourceRepositoryBranchCommand
|
|
43
54
|
*/
|
|
@@ -50,6 +61,18 @@ export declare const se_DeleteAccessTokenCommand: (input: DeleteAccessTokenComma
|
|
|
50
61
|
* serializeAws_restJson1DeleteDevEnvironmentCommand
|
|
51
62
|
*/
|
|
52
63
|
export declare const se_DeleteDevEnvironmentCommand: (input: DeleteDevEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
+
/**
|
|
65
|
+
* serializeAws_restJson1DeleteProjectCommand
|
|
66
|
+
*/
|
|
67
|
+
export declare const se_DeleteProjectCommand: (input: DeleteProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
/**
|
|
69
|
+
* serializeAws_restJson1DeleteSourceRepositoryCommand
|
|
70
|
+
*/
|
|
71
|
+
export declare const se_DeleteSourceRepositoryCommand: (input: DeleteSourceRepositoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
+
/**
|
|
73
|
+
* serializeAws_restJson1DeleteSpaceCommand
|
|
74
|
+
*/
|
|
75
|
+
export declare const se_DeleteSpaceCommand: (input: DeleteSpaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
76
|
/**
|
|
54
77
|
* serializeAws_restJson1GetDevEnvironmentCommand
|
|
55
78
|
*/
|
|
@@ -58,6 +81,10 @@ export declare const se_GetDevEnvironmentCommand: (input: GetDevEnvironmentComma
|
|
|
58
81
|
* serializeAws_restJson1GetProjectCommand
|
|
59
82
|
*/
|
|
60
83
|
export declare const se_GetProjectCommand: (input: GetProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
+
/**
|
|
85
|
+
* serializeAws_restJson1GetSourceRepositoryCommand
|
|
86
|
+
*/
|
|
87
|
+
export declare const se_GetSourceRepositoryCommand: (input: GetSourceRepositoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
61
88
|
/**
|
|
62
89
|
* serializeAws_restJson1GetSourceRepositoryCloneUrlsCommand
|
|
63
90
|
*/
|
|
@@ -126,6 +153,14 @@ export declare const se_StopDevEnvironmentSessionCommand: (input: StopDevEnviron
|
|
|
126
153
|
* serializeAws_restJson1UpdateDevEnvironmentCommand
|
|
127
154
|
*/
|
|
128
155
|
export declare const se_UpdateDevEnvironmentCommand: (input: UpdateDevEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
156
|
+
/**
|
|
157
|
+
* serializeAws_restJson1UpdateProjectCommand
|
|
158
|
+
*/
|
|
159
|
+
export declare const se_UpdateProjectCommand: (input: UpdateProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
160
|
+
/**
|
|
161
|
+
* serializeAws_restJson1UpdateSpaceCommand
|
|
162
|
+
*/
|
|
163
|
+
export declare const se_UpdateSpaceCommand: (input: UpdateSpaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
164
|
/**
|
|
130
165
|
* serializeAws_restJson1VerifySessionCommand
|
|
131
166
|
*/
|
|
@@ -142,6 +177,10 @@ export declare const de_CreateDevEnvironmentCommand: (output: __HttpResponse, co
|
|
|
142
177
|
* deserializeAws_restJson1CreateProjectCommand
|
|
143
178
|
*/
|
|
144
179
|
export declare const de_CreateProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectCommandOutput>;
|
|
180
|
+
/**
|
|
181
|
+
* deserializeAws_restJson1CreateSourceRepositoryCommand
|
|
182
|
+
*/
|
|
183
|
+
export declare const de_CreateSourceRepositoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSourceRepositoryCommandOutput>;
|
|
145
184
|
/**
|
|
146
185
|
* deserializeAws_restJson1CreateSourceRepositoryBranchCommand
|
|
147
186
|
*/
|
|
@@ -154,6 +193,18 @@ export declare const de_DeleteAccessTokenCommand: (output: __HttpResponse, conte
|
|
|
154
193
|
* deserializeAws_restJson1DeleteDevEnvironmentCommand
|
|
155
194
|
*/
|
|
156
195
|
export declare const de_DeleteDevEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDevEnvironmentCommandOutput>;
|
|
196
|
+
/**
|
|
197
|
+
* deserializeAws_restJson1DeleteProjectCommand
|
|
198
|
+
*/
|
|
199
|
+
export declare const de_DeleteProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectCommandOutput>;
|
|
200
|
+
/**
|
|
201
|
+
* deserializeAws_restJson1DeleteSourceRepositoryCommand
|
|
202
|
+
*/
|
|
203
|
+
export declare const de_DeleteSourceRepositoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSourceRepositoryCommandOutput>;
|
|
204
|
+
/**
|
|
205
|
+
* deserializeAws_restJson1DeleteSpaceCommand
|
|
206
|
+
*/
|
|
207
|
+
export declare const de_DeleteSpaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSpaceCommandOutput>;
|
|
157
208
|
/**
|
|
158
209
|
* deserializeAws_restJson1GetDevEnvironmentCommand
|
|
159
210
|
*/
|
|
@@ -162,6 +213,10 @@ export declare const de_GetDevEnvironmentCommand: (output: __HttpResponse, conte
|
|
|
162
213
|
* deserializeAws_restJson1GetProjectCommand
|
|
163
214
|
*/
|
|
164
215
|
export declare const de_GetProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetProjectCommandOutput>;
|
|
216
|
+
/**
|
|
217
|
+
* deserializeAws_restJson1GetSourceRepositoryCommand
|
|
218
|
+
*/
|
|
219
|
+
export declare const de_GetSourceRepositoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSourceRepositoryCommandOutput>;
|
|
165
220
|
/**
|
|
166
221
|
* deserializeAws_restJson1GetSourceRepositoryCloneUrlsCommand
|
|
167
222
|
*/
|
|
@@ -230,6 +285,14 @@ export declare const de_StopDevEnvironmentSessionCommand: (output: __HttpRespons
|
|
|
230
285
|
* deserializeAws_restJson1UpdateDevEnvironmentCommand
|
|
231
286
|
*/
|
|
232
287
|
export declare const de_UpdateDevEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDevEnvironmentCommandOutput>;
|
|
288
|
+
/**
|
|
289
|
+
* deserializeAws_restJson1UpdateProjectCommand
|
|
290
|
+
*/
|
|
291
|
+
export declare const de_UpdateProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProjectCommandOutput>;
|
|
292
|
+
/**
|
|
293
|
+
* deserializeAws_restJson1UpdateSpaceCommand
|
|
294
|
+
*/
|
|
295
|
+
export declare const de_UpdateSpaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSpaceCommandOutput>;
|
|
233
296
|
/**
|
|
234
297
|
* deserializeAws_restJson1VerifySessionCommand
|
|
235
298
|
*/
|