@aws-sdk/client-codecatalyst 3.370.0 → 3.378.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 +33 -33
|
@@ -16,6 +16,10 @@ import {
|
|
|
16
16
|
CreateSourceRepositoryBranchCommandInput,
|
|
17
17
|
CreateSourceRepositoryBranchCommandOutput,
|
|
18
18
|
} from "./commands/CreateSourceRepositoryBranchCommand";
|
|
19
|
+
import {
|
|
20
|
+
CreateSourceRepositoryCommandInput,
|
|
21
|
+
CreateSourceRepositoryCommandOutput,
|
|
22
|
+
} from "./commands/CreateSourceRepositoryCommand";
|
|
19
23
|
import {
|
|
20
24
|
DeleteAccessTokenCommandInput,
|
|
21
25
|
DeleteAccessTokenCommandOutput,
|
|
@@ -24,6 +28,18 @@ import {
|
|
|
24
28
|
DeleteDevEnvironmentCommandInput,
|
|
25
29
|
DeleteDevEnvironmentCommandOutput,
|
|
26
30
|
} from "./commands/DeleteDevEnvironmentCommand";
|
|
31
|
+
import {
|
|
32
|
+
DeleteProjectCommandInput,
|
|
33
|
+
DeleteProjectCommandOutput,
|
|
34
|
+
} from "./commands/DeleteProjectCommand";
|
|
35
|
+
import {
|
|
36
|
+
DeleteSourceRepositoryCommandInput,
|
|
37
|
+
DeleteSourceRepositoryCommandOutput,
|
|
38
|
+
} from "./commands/DeleteSourceRepositoryCommand";
|
|
39
|
+
import {
|
|
40
|
+
DeleteSpaceCommandInput,
|
|
41
|
+
DeleteSpaceCommandOutput,
|
|
42
|
+
} from "./commands/DeleteSpaceCommand";
|
|
27
43
|
import {
|
|
28
44
|
GetDevEnvironmentCommandInput,
|
|
29
45
|
GetDevEnvironmentCommandOutput,
|
|
@@ -36,6 +52,10 @@ import {
|
|
|
36
52
|
GetSourceRepositoryCloneUrlsCommandInput,
|
|
37
53
|
GetSourceRepositoryCloneUrlsCommandOutput,
|
|
38
54
|
} from "./commands/GetSourceRepositoryCloneUrlsCommand";
|
|
55
|
+
import {
|
|
56
|
+
GetSourceRepositoryCommandInput,
|
|
57
|
+
GetSourceRepositoryCommandOutput,
|
|
58
|
+
} from "./commands/GetSourceRepositoryCommand";
|
|
39
59
|
import {
|
|
40
60
|
GetSpaceCommandInput,
|
|
41
61
|
GetSpaceCommandOutput,
|
|
@@ -100,6 +120,14 @@ import {
|
|
|
100
120
|
UpdateDevEnvironmentCommandInput,
|
|
101
121
|
UpdateDevEnvironmentCommandOutput,
|
|
102
122
|
} from "./commands/UpdateDevEnvironmentCommand";
|
|
123
|
+
import {
|
|
124
|
+
UpdateProjectCommandInput,
|
|
125
|
+
UpdateProjectCommandOutput,
|
|
126
|
+
} from "./commands/UpdateProjectCommand";
|
|
127
|
+
import {
|
|
128
|
+
UpdateSpaceCommandInput,
|
|
129
|
+
UpdateSpaceCommandOutput,
|
|
130
|
+
} from "./commands/UpdateSpaceCommand";
|
|
103
131
|
import {
|
|
104
132
|
VerifySessionCommandInput,
|
|
105
133
|
VerifySessionCommandOutput,
|
|
@@ -144,6 +172,19 @@ export interface CodeCatalyst {
|
|
|
144
172
|
options: __HttpHandlerOptions,
|
|
145
173
|
cb: (err: any, data?: CreateProjectCommandOutput) => void
|
|
146
174
|
): void;
|
|
175
|
+
createSourceRepository(
|
|
176
|
+
args: CreateSourceRepositoryCommandInput,
|
|
177
|
+
options?: __HttpHandlerOptions
|
|
178
|
+
): Promise<CreateSourceRepositoryCommandOutput>;
|
|
179
|
+
createSourceRepository(
|
|
180
|
+
args: CreateSourceRepositoryCommandInput,
|
|
181
|
+
cb: (err: any, data?: CreateSourceRepositoryCommandOutput) => void
|
|
182
|
+
): void;
|
|
183
|
+
createSourceRepository(
|
|
184
|
+
args: CreateSourceRepositoryCommandInput,
|
|
185
|
+
options: __HttpHandlerOptions,
|
|
186
|
+
cb: (err: any, data?: CreateSourceRepositoryCommandOutput) => void
|
|
187
|
+
): void;
|
|
147
188
|
createSourceRepositoryBranch(
|
|
148
189
|
args: CreateSourceRepositoryBranchCommandInput,
|
|
149
190
|
options?: __HttpHandlerOptions
|
|
@@ -183,6 +224,45 @@ export interface CodeCatalyst {
|
|
|
183
224
|
options: __HttpHandlerOptions,
|
|
184
225
|
cb: (err: any, data?: DeleteDevEnvironmentCommandOutput) => void
|
|
185
226
|
): void;
|
|
227
|
+
deleteProject(
|
|
228
|
+
args: DeleteProjectCommandInput,
|
|
229
|
+
options?: __HttpHandlerOptions
|
|
230
|
+
): Promise<DeleteProjectCommandOutput>;
|
|
231
|
+
deleteProject(
|
|
232
|
+
args: DeleteProjectCommandInput,
|
|
233
|
+
cb: (err: any, data?: DeleteProjectCommandOutput) => void
|
|
234
|
+
): void;
|
|
235
|
+
deleteProject(
|
|
236
|
+
args: DeleteProjectCommandInput,
|
|
237
|
+
options: __HttpHandlerOptions,
|
|
238
|
+
cb: (err: any, data?: DeleteProjectCommandOutput) => void
|
|
239
|
+
): void;
|
|
240
|
+
deleteSourceRepository(
|
|
241
|
+
args: DeleteSourceRepositoryCommandInput,
|
|
242
|
+
options?: __HttpHandlerOptions
|
|
243
|
+
): Promise<DeleteSourceRepositoryCommandOutput>;
|
|
244
|
+
deleteSourceRepository(
|
|
245
|
+
args: DeleteSourceRepositoryCommandInput,
|
|
246
|
+
cb: (err: any, data?: DeleteSourceRepositoryCommandOutput) => void
|
|
247
|
+
): void;
|
|
248
|
+
deleteSourceRepository(
|
|
249
|
+
args: DeleteSourceRepositoryCommandInput,
|
|
250
|
+
options: __HttpHandlerOptions,
|
|
251
|
+
cb: (err: any, data?: DeleteSourceRepositoryCommandOutput) => void
|
|
252
|
+
): void;
|
|
253
|
+
deleteSpace(
|
|
254
|
+
args: DeleteSpaceCommandInput,
|
|
255
|
+
options?: __HttpHandlerOptions
|
|
256
|
+
): Promise<DeleteSpaceCommandOutput>;
|
|
257
|
+
deleteSpace(
|
|
258
|
+
args: DeleteSpaceCommandInput,
|
|
259
|
+
cb: (err: any, data?: DeleteSpaceCommandOutput) => void
|
|
260
|
+
): void;
|
|
261
|
+
deleteSpace(
|
|
262
|
+
args: DeleteSpaceCommandInput,
|
|
263
|
+
options: __HttpHandlerOptions,
|
|
264
|
+
cb: (err: any, data?: DeleteSpaceCommandOutput) => void
|
|
265
|
+
): void;
|
|
186
266
|
getDevEnvironment(
|
|
187
267
|
args: GetDevEnvironmentCommandInput,
|
|
188
268
|
options?: __HttpHandlerOptions
|
|
@@ -209,6 +289,19 @@ export interface CodeCatalyst {
|
|
|
209
289
|
options: __HttpHandlerOptions,
|
|
210
290
|
cb: (err: any, data?: GetProjectCommandOutput) => void
|
|
211
291
|
): void;
|
|
292
|
+
getSourceRepository(
|
|
293
|
+
args: GetSourceRepositoryCommandInput,
|
|
294
|
+
options?: __HttpHandlerOptions
|
|
295
|
+
): Promise<GetSourceRepositoryCommandOutput>;
|
|
296
|
+
getSourceRepository(
|
|
297
|
+
args: GetSourceRepositoryCommandInput,
|
|
298
|
+
cb: (err: any, data?: GetSourceRepositoryCommandOutput) => void
|
|
299
|
+
): void;
|
|
300
|
+
getSourceRepository(
|
|
301
|
+
args: GetSourceRepositoryCommandInput,
|
|
302
|
+
options: __HttpHandlerOptions,
|
|
303
|
+
cb: (err: any, data?: GetSourceRepositoryCommandOutput) => void
|
|
304
|
+
): void;
|
|
212
305
|
getSourceRepositoryCloneUrls(
|
|
213
306
|
args: GetSourceRepositoryCloneUrlsCommandInput,
|
|
214
307
|
options?: __HttpHandlerOptions
|
|
@@ -430,6 +523,32 @@ export interface CodeCatalyst {
|
|
|
430
523
|
options: __HttpHandlerOptions,
|
|
431
524
|
cb: (err: any, data?: UpdateDevEnvironmentCommandOutput) => void
|
|
432
525
|
): void;
|
|
526
|
+
updateProject(
|
|
527
|
+
args: UpdateProjectCommandInput,
|
|
528
|
+
options?: __HttpHandlerOptions
|
|
529
|
+
): Promise<UpdateProjectCommandOutput>;
|
|
530
|
+
updateProject(
|
|
531
|
+
args: UpdateProjectCommandInput,
|
|
532
|
+
cb: (err: any, data?: UpdateProjectCommandOutput) => void
|
|
533
|
+
): void;
|
|
534
|
+
updateProject(
|
|
535
|
+
args: UpdateProjectCommandInput,
|
|
536
|
+
options: __HttpHandlerOptions,
|
|
537
|
+
cb: (err: any, data?: UpdateProjectCommandOutput) => void
|
|
538
|
+
): void;
|
|
539
|
+
updateSpace(
|
|
540
|
+
args: UpdateSpaceCommandInput,
|
|
541
|
+
options?: __HttpHandlerOptions
|
|
542
|
+
): Promise<UpdateSpaceCommandOutput>;
|
|
543
|
+
updateSpace(
|
|
544
|
+
args: UpdateSpaceCommandInput,
|
|
545
|
+
cb: (err: any, data?: UpdateSpaceCommandOutput) => void
|
|
546
|
+
): void;
|
|
547
|
+
updateSpace(
|
|
548
|
+
args: UpdateSpaceCommandInput,
|
|
549
|
+
options: __HttpHandlerOptions,
|
|
550
|
+
cb: (err: any, data?: UpdateSpaceCommandOutput) => void
|
|
551
|
+
): void;
|
|
433
552
|
verifySession(
|
|
434
553
|
args: VerifySessionCommandInput,
|
|
435
554
|
options?: __HttpHandlerOptions
|
|
@@ -59,6 +59,10 @@ import {
|
|
|
59
59
|
CreateSourceRepositoryBranchCommandInput,
|
|
60
60
|
CreateSourceRepositoryBranchCommandOutput,
|
|
61
61
|
} from "./commands/CreateSourceRepositoryBranchCommand";
|
|
62
|
+
import {
|
|
63
|
+
CreateSourceRepositoryCommandInput,
|
|
64
|
+
CreateSourceRepositoryCommandOutput,
|
|
65
|
+
} from "./commands/CreateSourceRepositoryCommand";
|
|
62
66
|
import {
|
|
63
67
|
DeleteAccessTokenCommandInput,
|
|
64
68
|
DeleteAccessTokenCommandOutput,
|
|
@@ -67,6 +71,18 @@ import {
|
|
|
67
71
|
DeleteDevEnvironmentCommandInput,
|
|
68
72
|
DeleteDevEnvironmentCommandOutput,
|
|
69
73
|
} from "./commands/DeleteDevEnvironmentCommand";
|
|
74
|
+
import {
|
|
75
|
+
DeleteProjectCommandInput,
|
|
76
|
+
DeleteProjectCommandOutput,
|
|
77
|
+
} from "./commands/DeleteProjectCommand";
|
|
78
|
+
import {
|
|
79
|
+
DeleteSourceRepositoryCommandInput,
|
|
80
|
+
DeleteSourceRepositoryCommandOutput,
|
|
81
|
+
} from "./commands/DeleteSourceRepositoryCommand";
|
|
82
|
+
import {
|
|
83
|
+
DeleteSpaceCommandInput,
|
|
84
|
+
DeleteSpaceCommandOutput,
|
|
85
|
+
} from "./commands/DeleteSpaceCommand";
|
|
70
86
|
import {
|
|
71
87
|
GetDevEnvironmentCommandInput,
|
|
72
88
|
GetDevEnvironmentCommandOutput,
|
|
@@ -79,6 +95,10 @@ import {
|
|
|
79
95
|
GetSourceRepositoryCloneUrlsCommandInput,
|
|
80
96
|
GetSourceRepositoryCloneUrlsCommandOutput,
|
|
81
97
|
} from "./commands/GetSourceRepositoryCloneUrlsCommand";
|
|
98
|
+
import {
|
|
99
|
+
GetSourceRepositoryCommandInput,
|
|
100
|
+
GetSourceRepositoryCommandOutput,
|
|
101
|
+
} from "./commands/GetSourceRepositoryCommand";
|
|
82
102
|
import {
|
|
83
103
|
GetSpaceCommandInput,
|
|
84
104
|
GetSpaceCommandOutput,
|
|
@@ -143,6 +163,14 @@ import {
|
|
|
143
163
|
UpdateDevEnvironmentCommandInput,
|
|
144
164
|
UpdateDevEnvironmentCommandOutput,
|
|
145
165
|
} from "./commands/UpdateDevEnvironmentCommand";
|
|
166
|
+
import {
|
|
167
|
+
UpdateProjectCommandInput,
|
|
168
|
+
UpdateProjectCommandOutput,
|
|
169
|
+
} from "./commands/UpdateProjectCommand";
|
|
170
|
+
import {
|
|
171
|
+
UpdateSpaceCommandInput,
|
|
172
|
+
UpdateSpaceCommandOutput,
|
|
173
|
+
} from "./commands/UpdateSpaceCommand";
|
|
146
174
|
import {
|
|
147
175
|
VerifySessionCommandInput,
|
|
148
176
|
VerifySessionCommandOutput,
|
|
@@ -158,11 +186,16 @@ export type ServiceInputTypes =
|
|
|
158
186
|
| CreateDevEnvironmentCommandInput
|
|
159
187
|
| CreateProjectCommandInput
|
|
160
188
|
| CreateSourceRepositoryBranchCommandInput
|
|
189
|
+
| CreateSourceRepositoryCommandInput
|
|
161
190
|
| DeleteAccessTokenCommandInput
|
|
162
191
|
| DeleteDevEnvironmentCommandInput
|
|
192
|
+
| DeleteProjectCommandInput
|
|
193
|
+
| DeleteSourceRepositoryCommandInput
|
|
194
|
+
| DeleteSpaceCommandInput
|
|
163
195
|
| GetDevEnvironmentCommandInput
|
|
164
196
|
| GetProjectCommandInput
|
|
165
197
|
| GetSourceRepositoryCloneUrlsCommandInput
|
|
198
|
+
| GetSourceRepositoryCommandInput
|
|
166
199
|
| GetSpaceCommandInput
|
|
167
200
|
| GetSubscriptionCommandInput
|
|
168
201
|
| GetUserDetailsCommandInput
|
|
@@ -179,17 +212,24 @@ export type ServiceInputTypes =
|
|
|
179
212
|
| StopDevEnvironmentCommandInput
|
|
180
213
|
| StopDevEnvironmentSessionCommandInput
|
|
181
214
|
| UpdateDevEnvironmentCommandInput
|
|
215
|
+
| UpdateProjectCommandInput
|
|
216
|
+
| UpdateSpaceCommandInput
|
|
182
217
|
| VerifySessionCommandInput;
|
|
183
218
|
export type ServiceOutputTypes =
|
|
184
219
|
| CreateAccessTokenCommandOutput
|
|
185
220
|
| CreateDevEnvironmentCommandOutput
|
|
186
221
|
| CreateProjectCommandOutput
|
|
187
222
|
| CreateSourceRepositoryBranchCommandOutput
|
|
223
|
+
| CreateSourceRepositoryCommandOutput
|
|
188
224
|
| DeleteAccessTokenCommandOutput
|
|
189
225
|
| DeleteDevEnvironmentCommandOutput
|
|
226
|
+
| DeleteProjectCommandOutput
|
|
227
|
+
| DeleteSourceRepositoryCommandOutput
|
|
228
|
+
| DeleteSpaceCommandOutput
|
|
190
229
|
| GetDevEnvironmentCommandOutput
|
|
191
230
|
| GetProjectCommandOutput
|
|
192
231
|
| GetSourceRepositoryCloneUrlsCommandOutput
|
|
232
|
+
| GetSourceRepositoryCommandOutput
|
|
193
233
|
| GetSpaceCommandOutput
|
|
194
234
|
| GetSubscriptionCommandOutput
|
|
195
235
|
| GetUserDetailsCommandOutput
|
|
@@ -206,6 +246,8 @@ export type ServiceOutputTypes =
|
|
|
206
246
|
| StopDevEnvironmentCommandOutput
|
|
207
247
|
| StopDevEnvironmentSessionCommandOutput
|
|
208
248
|
| UpdateDevEnvironmentCommandOutput
|
|
249
|
+
| UpdateProjectCommandOutput
|
|
250
|
+
| UpdateSpaceCommandOutput
|
|
209
251
|
| VerifySessionCommandOutput;
|
|
210
252
|
export interface ClientDefaults
|
|
211
253
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeCatalystClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeCatalystClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateSourceRepositoryRequest,
|
|
16
|
+
CreateSourceRepositoryResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateSourceRepositoryCommandInput
|
|
20
|
+
extends CreateSourceRepositoryRequest {}
|
|
21
|
+
export interface CreateSourceRepositoryCommandOutput
|
|
22
|
+
extends CreateSourceRepositoryResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateSourceRepositoryCommand extends $Command<
|
|
25
|
+
CreateSourceRepositoryCommandInput,
|
|
26
|
+
CreateSourceRepositoryCommandOutput,
|
|
27
|
+
CodeCatalystClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateSourceRepositoryCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateSourceRepositoryCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: CodeCatalystClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CreateSourceRepositoryCommandInput,
|
|
38
|
+
CreateSourceRepositoryCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeCatalystClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeCatalystClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteProjectRequest,
|
|
16
|
+
DeleteProjectResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteProjectCommandInput extends DeleteProjectRequest {}
|
|
20
|
+
export interface DeleteProjectCommandOutput
|
|
21
|
+
extends DeleteProjectResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteProjectCommand extends $Command<
|
|
24
|
+
DeleteProjectCommandInput,
|
|
25
|
+
DeleteProjectCommandOutput,
|
|
26
|
+
CodeCatalystClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteProjectCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteProjectCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CodeCatalystClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteProjectCommandInput, DeleteProjectCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeCatalystClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeCatalystClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteSourceRepositoryRequest,
|
|
16
|
+
DeleteSourceRepositoryResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteSourceRepositoryCommandInput
|
|
20
|
+
extends DeleteSourceRepositoryRequest {}
|
|
21
|
+
export interface DeleteSourceRepositoryCommandOutput
|
|
22
|
+
extends DeleteSourceRepositoryResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeleteSourceRepositoryCommand extends $Command<
|
|
25
|
+
DeleteSourceRepositoryCommandInput,
|
|
26
|
+
DeleteSourceRepositoryCommandOutput,
|
|
27
|
+
CodeCatalystClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeleteSourceRepositoryCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeleteSourceRepositoryCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: CodeCatalystClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DeleteSourceRepositoryCommandInput,
|
|
38
|
+
DeleteSourceRepositoryCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeCatalystClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeCatalystClient";
|
|
14
|
+
import { DeleteSpaceRequest, DeleteSpaceResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeleteSpaceCommandInput extends DeleteSpaceRequest {}
|
|
17
|
+
export interface DeleteSpaceCommandOutput
|
|
18
|
+
extends DeleteSpaceResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class DeleteSpaceCommand extends $Command<
|
|
21
|
+
DeleteSpaceCommandInput,
|
|
22
|
+
DeleteSpaceCommandOutput,
|
|
23
|
+
CodeCatalystClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: DeleteSpaceCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: DeleteSpaceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodeCatalystClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteSpaceCommandInput, DeleteSpaceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeCatalystClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeCatalystClient";
|
|
14
|
+
import {
|
|
15
|
+
GetSourceRepositoryRequest,
|
|
16
|
+
GetSourceRepositoryResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetSourceRepositoryCommandInput
|
|
20
|
+
extends GetSourceRepositoryRequest {}
|
|
21
|
+
export interface GetSourceRepositoryCommandOutput
|
|
22
|
+
extends GetSourceRepositoryResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetSourceRepositoryCommand extends $Command<
|
|
25
|
+
GetSourceRepositoryCommandInput,
|
|
26
|
+
GetSourceRepositoryCommandOutput,
|
|
27
|
+
CodeCatalystClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetSourceRepositoryCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetSourceRepositoryCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: CodeCatalystClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<GetSourceRepositoryCommandInput, GetSourceRepositoryCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeCatalystClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeCatalystClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdateProjectRequest,
|
|
16
|
+
UpdateProjectResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateProjectCommandInput extends UpdateProjectRequest {}
|
|
20
|
+
export interface UpdateProjectCommandOutput
|
|
21
|
+
extends UpdateProjectResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UpdateProjectCommand extends $Command<
|
|
24
|
+
UpdateProjectCommandInput,
|
|
25
|
+
UpdateProjectCommandOutput,
|
|
26
|
+
CodeCatalystClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateProjectCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UpdateProjectCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CodeCatalystClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateProjectCommandInput, UpdateProjectCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CodeCatalystClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CodeCatalystClient";
|
|
14
|
+
import { UpdateSpaceRequest, UpdateSpaceResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface UpdateSpaceCommandInput extends UpdateSpaceRequest {}
|
|
17
|
+
export interface UpdateSpaceCommandOutput
|
|
18
|
+
extends UpdateSpaceResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class UpdateSpaceCommand extends $Command<
|
|
21
|
+
UpdateSpaceCommandInput,
|
|
22
|
+
UpdateSpaceCommandOutput,
|
|
23
|
+
CodeCatalystClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: UpdateSpaceCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: UpdateSpaceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodeCatalystClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<UpdateSpaceCommandInput, UpdateSpaceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -2,11 +2,16 @@ export * from "./CreateAccessTokenCommand";
|
|
|
2
2
|
export * from "./CreateDevEnvironmentCommand";
|
|
3
3
|
export * from "./CreateProjectCommand";
|
|
4
4
|
export * from "./CreateSourceRepositoryBranchCommand";
|
|
5
|
+
export * from "./CreateSourceRepositoryCommand";
|
|
5
6
|
export * from "./DeleteAccessTokenCommand";
|
|
6
7
|
export * from "./DeleteDevEnvironmentCommand";
|
|
8
|
+
export * from "./DeleteProjectCommand";
|
|
9
|
+
export * from "./DeleteSourceRepositoryCommand";
|
|
10
|
+
export * from "./DeleteSpaceCommand";
|
|
7
11
|
export * from "./GetDevEnvironmentCommand";
|
|
8
12
|
export * from "./GetProjectCommand";
|
|
9
13
|
export * from "./GetSourceRepositoryCloneUrlsCommand";
|
|
14
|
+
export * from "./GetSourceRepositoryCommand";
|
|
10
15
|
export * from "./GetSpaceCommand";
|
|
11
16
|
export * from "./GetSubscriptionCommand";
|
|
12
17
|
export * from "./GetUserDetailsCommand";
|
|
@@ -23,4 +28,6 @@ export * from "./StartDevEnvironmentSessionCommand";
|
|
|
23
28
|
export * from "./StopDevEnvironmentCommand";
|
|
24
29
|
export * from "./StopDevEnvironmentSessionCommand";
|
|
25
30
|
export * from "./UpdateDevEnvironmentCommand";
|
|
31
|
+
export * from "./UpdateProjectCommand";
|
|
32
|
+
export * from "./UpdateSpaceCommand";
|
|
26
33
|
export * from "./VerifySessionCommand";
|
|
@@ -83,6 +83,13 @@ export interface GetUserDetailsResponse {
|
|
|
83
83
|
primaryEmail?: EmailAddress;
|
|
84
84
|
version?: string;
|
|
85
85
|
}
|
|
86
|
+
export interface DeleteSpaceRequest {
|
|
87
|
+
name: string | undefined;
|
|
88
|
+
}
|
|
89
|
+
export interface DeleteSpaceResponse {
|
|
90
|
+
name: string | undefined;
|
|
91
|
+
displayName?: string;
|
|
92
|
+
}
|
|
86
93
|
export interface ListEventLogsRequest {
|
|
87
94
|
spaceName: string | undefined;
|
|
88
95
|
startTime: Date | undefined;
|
|
@@ -170,6 +177,15 @@ export interface CreateProjectResponse {
|
|
|
170
177
|
displayName?: string;
|
|
171
178
|
description?: string;
|
|
172
179
|
}
|
|
180
|
+
export interface DeleteProjectRequest {
|
|
181
|
+
spaceName: string | undefined;
|
|
182
|
+
name: string | undefined;
|
|
183
|
+
}
|
|
184
|
+
export interface DeleteProjectResponse {
|
|
185
|
+
spaceName: string | undefined;
|
|
186
|
+
name: string | undefined;
|
|
187
|
+
displayName?: string;
|
|
188
|
+
}
|
|
173
189
|
export interface IdeConfiguration {
|
|
174
190
|
runtime?: string;
|
|
175
191
|
name?: string;
|
|
@@ -437,6 +453,41 @@ export interface ListProjectsResponse {
|
|
|
437
453
|
nextToken?: string;
|
|
438
454
|
items?: ProjectSummary[];
|
|
439
455
|
}
|
|
456
|
+
export interface CreateSourceRepositoryRequest {
|
|
457
|
+
spaceName: string | undefined;
|
|
458
|
+
projectName: string | undefined;
|
|
459
|
+
name: string | undefined;
|
|
460
|
+
description?: string;
|
|
461
|
+
}
|
|
462
|
+
export interface CreateSourceRepositoryResponse {
|
|
463
|
+
spaceName: string | undefined;
|
|
464
|
+
projectName: string | undefined;
|
|
465
|
+
name: string | undefined;
|
|
466
|
+
description?: string;
|
|
467
|
+
}
|
|
468
|
+
export interface DeleteSourceRepositoryRequest {
|
|
469
|
+
spaceName: string | undefined;
|
|
470
|
+
projectName: string | undefined;
|
|
471
|
+
name: string | undefined;
|
|
472
|
+
}
|
|
473
|
+
export interface DeleteSourceRepositoryResponse {
|
|
474
|
+
spaceName: string | undefined;
|
|
475
|
+
projectName: string | undefined;
|
|
476
|
+
name: string | undefined;
|
|
477
|
+
}
|
|
478
|
+
export interface GetSourceRepositoryRequest {
|
|
479
|
+
spaceName: string | undefined;
|
|
480
|
+
projectName: string | undefined;
|
|
481
|
+
name: string | undefined;
|
|
482
|
+
}
|
|
483
|
+
export interface GetSourceRepositoryResponse {
|
|
484
|
+
spaceName: string | undefined;
|
|
485
|
+
projectName: string | undefined;
|
|
486
|
+
name: string | undefined;
|
|
487
|
+
description?: string;
|
|
488
|
+
lastUpdatedTime: Date | undefined;
|
|
489
|
+
createdTime: Date | undefined;
|
|
490
|
+
}
|
|
440
491
|
export interface GetSourceRepositoryCloneUrlsRequest {
|
|
441
492
|
spaceName: string | undefined;
|
|
442
493
|
projectName: string | undefined;
|
|
@@ -492,6 +543,17 @@ export interface ListSourceRepositoryBranchesResponse {
|
|
|
492
543
|
nextToken?: string;
|
|
493
544
|
items: ListSourceRepositoryBranchesItem[] | undefined;
|
|
494
545
|
}
|
|
546
|
+
export interface UpdateProjectRequest {
|
|
547
|
+
spaceName: string | undefined;
|
|
548
|
+
name: string | undefined;
|
|
549
|
+
description?: string;
|
|
550
|
+
}
|
|
551
|
+
export interface UpdateProjectResponse {
|
|
552
|
+
spaceName?: string;
|
|
553
|
+
name?: string;
|
|
554
|
+
displayName?: string;
|
|
555
|
+
description?: string;
|
|
556
|
+
}
|
|
495
557
|
export interface GetSubscriptionRequest {
|
|
496
558
|
spaceName: string | undefined;
|
|
497
559
|
}
|
|
@@ -499,6 +561,15 @@ export interface GetSubscriptionResponse {
|
|
|
499
561
|
subscriptionType?: string;
|
|
500
562
|
awsAccountName?: string;
|
|
501
563
|
}
|
|
564
|
+
export interface UpdateSpaceRequest {
|
|
565
|
+
name: string | undefined;
|
|
566
|
+
description?: string;
|
|
567
|
+
}
|
|
568
|
+
export interface UpdateSpaceResponse {
|
|
569
|
+
name?: string;
|
|
570
|
+
displayName?: string;
|
|
571
|
+
description?: string;
|
|
572
|
+
}
|
|
502
573
|
export interface VerifySessionResponse {
|
|
503
574
|
identity?: string;
|
|
504
575
|
}
|