@aws-sdk/client-codecatalyst 3.451.0 → 3.453.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 +64 -1
- package/dist-cjs/CodeCatalyst.js +10 -0
- package/dist-cjs/commands/GetWorkflowCommand.js +50 -0
- package/dist-cjs/commands/GetWorkflowRunCommand.js +50 -0
- package/dist-cjs/commands/ListWorkflowRunsCommand.js +50 -0
- package/dist-cjs/commands/ListWorkflowsCommand.js +50 -0
- package/dist-cjs/commands/StartWorkflowRunCommand.js +50 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +25 -1
- package/dist-cjs/pagination/ListWorkflowRunsPaginator.js +29 -0
- package/dist-cjs/pagination/ListWorkflowsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +445 -5
- package/dist-es/CodeCatalyst.js +10 -0
- package/dist-es/commands/GetWorkflowCommand.js +46 -0
- package/dist-es/commands/GetWorkflowRunCommand.js +46 -0
- package/dist-es/commands/ListWorkflowRunsCommand.js +46 -0
- package/dist-es/commands/ListWorkflowsCommand.js +46 -0
- package/dist-es/commands/StartWorkflowRunCommand.js +46 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +24 -0
- package/dist-es/pagination/ListWorkflowRunsPaginator.js +25 -0
- package/dist-es/pagination/ListWorkflowsPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +433 -3
- package/dist-types/CodeCatalyst.d.ts +59 -1
- package/dist-types/CodeCatalystClient.d.ts +31 -3
- package/dist-types/commands/CreateDevEnvironmentCommand.d.ts +2 -0
- package/dist-types/commands/GetDevEnvironmentCommand.d.ts +1 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +107 -0
- package/dist-types/commands/GetWorkflowRunCommand.d.ts +105 -0
- package/dist-types/commands/ListDevEnvironmentsCommand.d.ts +2 -1
- package/dist-types/commands/ListEventLogsCommand.d.ts +10 -1
- package/dist-types/commands/ListWorkflowRunsCommand.d.ts +114 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +114 -0
- package/dist-types/commands/StartWorkflowRunCommand.d.ts +99 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +24 -1
- package/dist-types/models/models_0.d.ts +728 -218
- package/dist-types/pagination/ListWorkflowRunsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkflowsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/CodeCatalyst.d.ts +85 -0
- package/dist-types/ts3.4/CodeCatalystClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListWorkflowRunsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartWorkflowRunCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +194 -61
- package/dist-types/ts3.4/pagination/ListWorkflowRunsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkflowsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +4 -2
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListWorkflowRunsCommandInput, ListWorkflowRunsCommandOutput } from "../commands/ListWorkflowRunsCommand";
|
|
3
|
+
import { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListWorkflowRuns(config: CodeCatalystPaginationConfiguration, input: ListWorkflowRunsCommandInput, ...additionalArguments: any): Paginator<ListWorkflowRunsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "../commands/ListWorkflowsCommand";
|
|
3
|
+
import { CodeCatalystPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListWorkflows(config: CodeCatalystPaginationConfiguration, input: ListWorkflowsCommandInput, ...additionalArguments: any): Paginator<ListWorkflowsCommandOutput>;
|
|
@@ -7,3 +7,5 @@ export * from "./ListProjectsPaginator";
|
|
|
7
7
|
export * from "./ListSourceRepositoriesPaginator";
|
|
8
8
|
export * from "./ListSourceRepositoryBranchesPaginator";
|
|
9
9
|
export * from "./ListSpacesPaginator";
|
|
10
|
+
export * from "./ListWorkflowRunsPaginator";
|
|
11
|
+
export * from "./ListWorkflowsPaginator";
|
|
@@ -17,6 +17,8 @@ import { GetSourceRepositoryCommandInput, GetSourceRepositoryCommandOutput } fro
|
|
|
17
17
|
import { GetSpaceCommandInput, GetSpaceCommandOutput } from "../commands/GetSpaceCommand";
|
|
18
18
|
import { GetSubscriptionCommandInput, GetSubscriptionCommandOutput } from "../commands/GetSubscriptionCommand";
|
|
19
19
|
import { GetUserDetailsCommandInput, GetUserDetailsCommandOutput } from "../commands/GetUserDetailsCommand";
|
|
20
|
+
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "../commands/GetWorkflowCommand";
|
|
21
|
+
import { GetWorkflowRunCommandInput, GetWorkflowRunCommandOutput } from "../commands/GetWorkflowRunCommand";
|
|
20
22
|
import { ListAccessTokensCommandInput, ListAccessTokensCommandOutput } from "../commands/ListAccessTokensCommand";
|
|
21
23
|
import { ListDevEnvironmentsCommandInput, ListDevEnvironmentsCommandOutput } from "../commands/ListDevEnvironmentsCommand";
|
|
22
24
|
import { ListDevEnvironmentSessionsCommandInput, ListDevEnvironmentSessionsCommandOutput } from "../commands/ListDevEnvironmentSessionsCommand";
|
|
@@ -25,8 +27,11 @@ import { ListProjectsCommandInput, ListProjectsCommandOutput } from "../commands
|
|
|
25
27
|
import { ListSourceRepositoriesCommandInput, ListSourceRepositoriesCommandOutput } from "../commands/ListSourceRepositoriesCommand";
|
|
26
28
|
import { ListSourceRepositoryBranchesCommandInput, ListSourceRepositoryBranchesCommandOutput } from "../commands/ListSourceRepositoryBranchesCommand";
|
|
27
29
|
import { ListSpacesCommandInput, ListSpacesCommandOutput } from "../commands/ListSpacesCommand";
|
|
30
|
+
import { ListWorkflowRunsCommandInput, ListWorkflowRunsCommandOutput } from "../commands/ListWorkflowRunsCommand";
|
|
31
|
+
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "../commands/ListWorkflowsCommand";
|
|
28
32
|
import { StartDevEnvironmentCommandInput, StartDevEnvironmentCommandOutput } from "../commands/StartDevEnvironmentCommand";
|
|
29
33
|
import { StartDevEnvironmentSessionCommandInput, StartDevEnvironmentSessionCommandOutput } from "../commands/StartDevEnvironmentSessionCommand";
|
|
34
|
+
import { StartWorkflowRunCommandInput, StartWorkflowRunCommandOutput } from "../commands/StartWorkflowRunCommand";
|
|
30
35
|
import { StopDevEnvironmentCommandInput, StopDevEnvironmentCommandOutput } from "../commands/StopDevEnvironmentCommand";
|
|
31
36
|
import { StopDevEnvironmentSessionCommandInput, StopDevEnvironmentSessionCommandOutput } from "../commands/StopDevEnvironmentSessionCommand";
|
|
32
37
|
import { UpdateDevEnvironmentCommandInput, UpdateDevEnvironmentCommandOutput } from "../commands/UpdateDevEnvironmentCommand";
|
|
@@ -101,6 +106,14 @@ export declare const se_GetSubscriptionCommand: (input: GetSubscriptionCommandIn
|
|
|
101
106
|
* serializeAws_restJson1GetUserDetailsCommand
|
|
102
107
|
*/
|
|
103
108
|
export declare const se_GetUserDetailsCommand: (input: GetUserDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
|
+
/**
|
|
110
|
+
* serializeAws_restJson1GetWorkflowCommand
|
|
111
|
+
*/
|
|
112
|
+
export declare const se_GetWorkflowCommand: (input: GetWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
113
|
+
/**
|
|
114
|
+
* serializeAws_restJson1GetWorkflowRunCommand
|
|
115
|
+
*/
|
|
116
|
+
export declare const se_GetWorkflowRunCommand: (input: GetWorkflowRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
117
|
/**
|
|
105
118
|
* serializeAws_restJson1ListAccessTokensCommand
|
|
106
119
|
*/
|
|
@@ -133,6 +146,14 @@ export declare const se_ListSourceRepositoryBranchesCommand: (input: ListSourceR
|
|
|
133
146
|
* serializeAws_restJson1ListSpacesCommand
|
|
134
147
|
*/
|
|
135
148
|
export declare const se_ListSpacesCommand: (input: ListSpacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
149
|
+
/**
|
|
150
|
+
* serializeAws_restJson1ListWorkflowRunsCommand
|
|
151
|
+
*/
|
|
152
|
+
export declare const se_ListWorkflowRunsCommand: (input: ListWorkflowRunsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
153
|
+
/**
|
|
154
|
+
* serializeAws_restJson1ListWorkflowsCommand
|
|
155
|
+
*/
|
|
156
|
+
export declare const se_ListWorkflowsCommand: (input: ListWorkflowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
136
157
|
/**
|
|
137
158
|
* serializeAws_restJson1StartDevEnvironmentCommand
|
|
138
159
|
*/
|
|
@@ -141,6 +162,10 @@ export declare const se_StartDevEnvironmentCommand: (input: StartDevEnvironmentC
|
|
|
141
162
|
* serializeAws_restJson1StartDevEnvironmentSessionCommand
|
|
142
163
|
*/
|
|
143
164
|
export declare const se_StartDevEnvironmentSessionCommand: (input: StartDevEnvironmentSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
165
|
+
/**
|
|
166
|
+
* serializeAws_restJson1StartWorkflowRunCommand
|
|
167
|
+
*/
|
|
168
|
+
export declare const se_StartWorkflowRunCommand: (input: StartWorkflowRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
144
169
|
/**
|
|
145
170
|
* serializeAws_restJson1StopDevEnvironmentCommand
|
|
146
171
|
*/
|
|
@@ -233,6 +258,14 @@ export declare const de_GetSubscriptionCommand: (output: __HttpResponse, context
|
|
|
233
258
|
* deserializeAws_restJson1GetUserDetailsCommand
|
|
234
259
|
*/
|
|
235
260
|
export declare const de_GetUserDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetUserDetailsCommandOutput>;
|
|
261
|
+
/**
|
|
262
|
+
* deserializeAws_restJson1GetWorkflowCommand
|
|
263
|
+
*/
|
|
264
|
+
export declare const de_GetWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkflowCommandOutput>;
|
|
265
|
+
/**
|
|
266
|
+
* deserializeAws_restJson1GetWorkflowRunCommand
|
|
267
|
+
*/
|
|
268
|
+
export declare const de_GetWorkflowRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkflowRunCommandOutput>;
|
|
236
269
|
/**
|
|
237
270
|
* deserializeAws_restJson1ListAccessTokensCommand
|
|
238
271
|
*/
|
|
@@ -265,6 +298,14 @@ export declare const de_ListSourceRepositoryBranchesCommand: (output: __HttpResp
|
|
|
265
298
|
* deserializeAws_restJson1ListSpacesCommand
|
|
266
299
|
*/
|
|
267
300
|
export declare const de_ListSpacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSpacesCommandOutput>;
|
|
301
|
+
/**
|
|
302
|
+
* deserializeAws_restJson1ListWorkflowRunsCommand
|
|
303
|
+
*/
|
|
304
|
+
export declare const de_ListWorkflowRunsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkflowRunsCommandOutput>;
|
|
305
|
+
/**
|
|
306
|
+
* deserializeAws_restJson1ListWorkflowsCommand
|
|
307
|
+
*/
|
|
308
|
+
export declare const de_ListWorkflowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkflowsCommandOutput>;
|
|
268
309
|
/**
|
|
269
310
|
* deserializeAws_restJson1StartDevEnvironmentCommand
|
|
270
311
|
*/
|
|
@@ -273,6 +314,10 @@ export declare const de_StartDevEnvironmentCommand: (output: __HttpResponse, con
|
|
|
273
314
|
* deserializeAws_restJson1StartDevEnvironmentSessionCommand
|
|
274
315
|
*/
|
|
275
316
|
export declare const de_StartDevEnvironmentSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDevEnvironmentSessionCommandOutput>;
|
|
317
|
+
/**
|
|
318
|
+
* deserializeAws_restJson1StartWorkflowRunCommand
|
|
319
|
+
*/
|
|
320
|
+
export declare const de_StartWorkflowRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartWorkflowRunCommandOutput>;
|
|
276
321
|
/**
|
|
277
322
|
* deserializeAws_restJson1StopDevEnvironmentCommand
|
|
278
323
|
*/
|
|
@@ -68,6 +68,14 @@ import {
|
|
|
68
68
|
GetUserDetailsCommandInput,
|
|
69
69
|
GetUserDetailsCommandOutput,
|
|
70
70
|
} from "./commands/GetUserDetailsCommand";
|
|
71
|
+
import {
|
|
72
|
+
GetWorkflowCommandInput,
|
|
73
|
+
GetWorkflowCommandOutput,
|
|
74
|
+
} from "./commands/GetWorkflowCommand";
|
|
75
|
+
import {
|
|
76
|
+
GetWorkflowRunCommandInput,
|
|
77
|
+
GetWorkflowRunCommandOutput,
|
|
78
|
+
} from "./commands/GetWorkflowRunCommand";
|
|
71
79
|
import {
|
|
72
80
|
ListAccessTokensCommandInput,
|
|
73
81
|
ListAccessTokensCommandOutput,
|
|
@@ -100,6 +108,14 @@ import {
|
|
|
100
108
|
ListSpacesCommandInput,
|
|
101
109
|
ListSpacesCommandOutput,
|
|
102
110
|
} from "./commands/ListSpacesCommand";
|
|
111
|
+
import {
|
|
112
|
+
ListWorkflowRunsCommandInput,
|
|
113
|
+
ListWorkflowRunsCommandOutput,
|
|
114
|
+
} from "./commands/ListWorkflowRunsCommand";
|
|
115
|
+
import {
|
|
116
|
+
ListWorkflowsCommandInput,
|
|
117
|
+
ListWorkflowsCommandOutput,
|
|
118
|
+
} from "./commands/ListWorkflowsCommand";
|
|
103
119
|
import {
|
|
104
120
|
StartDevEnvironmentCommandInput,
|
|
105
121
|
StartDevEnvironmentCommandOutput,
|
|
@@ -108,6 +124,10 @@ import {
|
|
|
108
124
|
StartDevEnvironmentSessionCommandInput,
|
|
109
125
|
StartDevEnvironmentSessionCommandOutput,
|
|
110
126
|
} from "./commands/StartDevEnvironmentSessionCommand";
|
|
127
|
+
import {
|
|
128
|
+
StartWorkflowRunCommandInput,
|
|
129
|
+
StartWorkflowRunCommandOutput,
|
|
130
|
+
} from "./commands/StartWorkflowRunCommand";
|
|
111
131
|
import {
|
|
112
132
|
StopDevEnvironmentCommandInput,
|
|
113
133
|
StopDevEnvironmentCommandOutput,
|
|
@@ -354,6 +374,32 @@ export interface CodeCatalyst {
|
|
|
354
374
|
options: __HttpHandlerOptions,
|
|
355
375
|
cb: (err: any, data?: GetUserDetailsCommandOutput) => void
|
|
356
376
|
): void;
|
|
377
|
+
getWorkflow(
|
|
378
|
+
args: GetWorkflowCommandInput,
|
|
379
|
+
options?: __HttpHandlerOptions
|
|
380
|
+
): Promise<GetWorkflowCommandOutput>;
|
|
381
|
+
getWorkflow(
|
|
382
|
+
args: GetWorkflowCommandInput,
|
|
383
|
+
cb: (err: any, data?: GetWorkflowCommandOutput) => void
|
|
384
|
+
): void;
|
|
385
|
+
getWorkflow(
|
|
386
|
+
args: GetWorkflowCommandInput,
|
|
387
|
+
options: __HttpHandlerOptions,
|
|
388
|
+
cb: (err: any, data?: GetWorkflowCommandOutput) => void
|
|
389
|
+
): void;
|
|
390
|
+
getWorkflowRun(
|
|
391
|
+
args: GetWorkflowRunCommandInput,
|
|
392
|
+
options?: __HttpHandlerOptions
|
|
393
|
+
): Promise<GetWorkflowRunCommandOutput>;
|
|
394
|
+
getWorkflowRun(
|
|
395
|
+
args: GetWorkflowRunCommandInput,
|
|
396
|
+
cb: (err: any, data?: GetWorkflowRunCommandOutput) => void
|
|
397
|
+
): void;
|
|
398
|
+
getWorkflowRun(
|
|
399
|
+
args: GetWorkflowRunCommandInput,
|
|
400
|
+
options: __HttpHandlerOptions,
|
|
401
|
+
cb: (err: any, data?: GetWorkflowRunCommandOutput) => void
|
|
402
|
+
): void;
|
|
357
403
|
listAccessTokens(
|
|
358
404
|
args: ListAccessTokensCommandInput,
|
|
359
405
|
options?: __HttpHandlerOptions
|
|
@@ -458,6 +504,32 @@ export interface CodeCatalyst {
|
|
|
458
504
|
options: __HttpHandlerOptions,
|
|
459
505
|
cb: (err: any, data?: ListSpacesCommandOutput) => void
|
|
460
506
|
): void;
|
|
507
|
+
listWorkflowRuns(
|
|
508
|
+
args: ListWorkflowRunsCommandInput,
|
|
509
|
+
options?: __HttpHandlerOptions
|
|
510
|
+
): Promise<ListWorkflowRunsCommandOutput>;
|
|
511
|
+
listWorkflowRuns(
|
|
512
|
+
args: ListWorkflowRunsCommandInput,
|
|
513
|
+
cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void
|
|
514
|
+
): void;
|
|
515
|
+
listWorkflowRuns(
|
|
516
|
+
args: ListWorkflowRunsCommandInput,
|
|
517
|
+
options: __HttpHandlerOptions,
|
|
518
|
+
cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void
|
|
519
|
+
): void;
|
|
520
|
+
listWorkflows(
|
|
521
|
+
args: ListWorkflowsCommandInput,
|
|
522
|
+
options?: __HttpHandlerOptions
|
|
523
|
+
): Promise<ListWorkflowsCommandOutput>;
|
|
524
|
+
listWorkflows(
|
|
525
|
+
args: ListWorkflowsCommandInput,
|
|
526
|
+
cb: (err: any, data?: ListWorkflowsCommandOutput) => void
|
|
527
|
+
): void;
|
|
528
|
+
listWorkflows(
|
|
529
|
+
args: ListWorkflowsCommandInput,
|
|
530
|
+
options: __HttpHandlerOptions,
|
|
531
|
+
cb: (err: any, data?: ListWorkflowsCommandOutput) => void
|
|
532
|
+
): void;
|
|
461
533
|
startDevEnvironment(
|
|
462
534
|
args: StartDevEnvironmentCommandInput,
|
|
463
535
|
options?: __HttpHandlerOptions
|
|
@@ -484,6 +556,19 @@ export interface CodeCatalyst {
|
|
|
484
556
|
options: __HttpHandlerOptions,
|
|
485
557
|
cb: (err: any, data?: StartDevEnvironmentSessionCommandOutput) => void
|
|
486
558
|
): void;
|
|
559
|
+
startWorkflowRun(
|
|
560
|
+
args: StartWorkflowRunCommandInput,
|
|
561
|
+
options?: __HttpHandlerOptions
|
|
562
|
+
): Promise<StartWorkflowRunCommandOutput>;
|
|
563
|
+
startWorkflowRun(
|
|
564
|
+
args: StartWorkflowRunCommandInput,
|
|
565
|
+
cb: (err: any, data?: StartWorkflowRunCommandOutput) => void
|
|
566
|
+
): void;
|
|
567
|
+
startWorkflowRun(
|
|
568
|
+
args: StartWorkflowRunCommandInput,
|
|
569
|
+
options: __HttpHandlerOptions,
|
|
570
|
+
cb: (err: any, data?: StartWorkflowRunCommandOutput) => void
|
|
571
|
+
): void;
|
|
487
572
|
stopDevEnvironment(
|
|
488
573
|
args: StopDevEnvironmentCommandInput,
|
|
489
574
|
options?: __HttpHandlerOptions
|
|
@@ -112,6 +112,14 @@ import {
|
|
|
112
112
|
GetUserDetailsCommandInput,
|
|
113
113
|
GetUserDetailsCommandOutput,
|
|
114
114
|
} from "./commands/GetUserDetailsCommand";
|
|
115
|
+
import {
|
|
116
|
+
GetWorkflowCommandInput,
|
|
117
|
+
GetWorkflowCommandOutput,
|
|
118
|
+
} from "./commands/GetWorkflowCommand";
|
|
119
|
+
import {
|
|
120
|
+
GetWorkflowRunCommandInput,
|
|
121
|
+
GetWorkflowRunCommandOutput,
|
|
122
|
+
} from "./commands/GetWorkflowRunCommand";
|
|
115
123
|
import {
|
|
116
124
|
ListAccessTokensCommandInput,
|
|
117
125
|
ListAccessTokensCommandOutput,
|
|
@@ -144,6 +152,14 @@ import {
|
|
|
144
152
|
ListSpacesCommandInput,
|
|
145
153
|
ListSpacesCommandOutput,
|
|
146
154
|
} from "./commands/ListSpacesCommand";
|
|
155
|
+
import {
|
|
156
|
+
ListWorkflowRunsCommandInput,
|
|
157
|
+
ListWorkflowRunsCommandOutput,
|
|
158
|
+
} from "./commands/ListWorkflowRunsCommand";
|
|
159
|
+
import {
|
|
160
|
+
ListWorkflowsCommandInput,
|
|
161
|
+
ListWorkflowsCommandOutput,
|
|
162
|
+
} from "./commands/ListWorkflowsCommand";
|
|
147
163
|
import {
|
|
148
164
|
StartDevEnvironmentCommandInput,
|
|
149
165
|
StartDevEnvironmentCommandOutput,
|
|
@@ -152,6 +168,10 @@ import {
|
|
|
152
168
|
StartDevEnvironmentSessionCommandInput,
|
|
153
169
|
StartDevEnvironmentSessionCommandOutput,
|
|
154
170
|
} from "./commands/StartDevEnvironmentSessionCommand";
|
|
171
|
+
import {
|
|
172
|
+
StartWorkflowRunCommandInput,
|
|
173
|
+
StartWorkflowRunCommandOutput,
|
|
174
|
+
} from "./commands/StartWorkflowRunCommand";
|
|
155
175
|
import {
|
|
156
176
|
StopDevEnvironmentCommandInput,
|
|
157
177
|
StopDevEnvironmentCommandOutput,
|
|
@@ -201,6 +221,8 @@ export type ServiceInputTypes =
|
|
|
201
221
|
| GetSpaceCommandInput
|
|
202
222
|
| GetSubscriptionCommandInput
|
|
203
223
|
| GetUserDetailsCommandInput
|
|
224
|
+
| GetWorkflowCommandInput
|
|
225
|
+
| GetWorkflowRunCommandInput
|
|
204
226
|
| ListAccessTokensCommandInput
|
|
205
227
|
| ListDevEnvironmentSessionsCommandInput
|
|
206
228
|
| ListDevEnvironmentsCommandInput
|
|
@@ -209,8 +231,11 @@ export type ServiceInputTypes =
|
|
|
209
231
|
| ListSourceRepositoriesCommandInput
|
|
210
232
|
| ListSourceRepositoryBranchesCommandInput
|
|
211
233
|
| ListSpacesCommandInput
|
|
234
|
+
| ListWorkflowRunsCommandInput
|
|
235
|
+
| ListWorkflowsCommandInput
|
|
212
236
|
| StartDevEnvironmentCommandInput
|
|
213
237
|
| StartDevEnvironmentSessionCommandInput
|
|
238
|
+
| StartWorkflowRunCommandInput
|
|
214
239
|
| StopDevEnvironmentCommandInput
|
|
215
240
|
| StopDevEnvironmentSessionCommandInput
|
|
216
241
|
| UpdateDevEnvironmentCommandInput
|
|
@@ -235,6 +260,8 @@ export type ServiceOutputTypes =
|
|
|
235
260
|
| GetSpaceCommandOutput
|
|
236
261
|
| GetSubscriptionCommandOutput
|
|
237
262
|
| GetUserDetailsCommandOutput
|
|
263
|
+
| GetWorkflowCommandOutput
|
|
264
|
+
| GetWorkflowRunCommandOutput
|
|
238
265
|
| ListAccessTokensCommandOutput
|
|
239
266
|
| ListDevEnvironmentSessionsCommandOutput
|
|
240
267
|
| ListDevEnvironmentsCommandOutput
|
|
@@ -243,8 +270,11 @@ export type ServiceOutputTypes =
|
|
|
243
270
|
| ListSourceRepositoriesCommandOutput
|
|
244
271
|
| ListSourceRepositoryBranchesCommandOutput
|
|
245
272
|
| ListSpacesCommandOutput
|
|
273
|
+
| ListWorkflowRunsCommandOutput
|
|
274
|
+
| ListWorkflowsCommandOutput
|
|
246
275
|
| StartDevEnvironmentCommandOutput
|
|
247
276
|
| StartDevEnvironmentSessionCommandOutput
|
|
277
|
+
| StartWorkflowRunCommandOutput
|
|
248
278
|
| StopDevEnvironmentCommandOutput
|
|
249
279
|
| StopDevEnvironmentSessionCommandOutput
|
|
250
280
|
| UpdateDevEnvironmentCommandOutput
|
|
@@ -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 { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetWorkflowCommandInput extends GetWorkflowRequest {}
|
|
17
|
+
export interface GetWorkflowCommandOutput
|
|
18
|
+
extends GetWorkflowResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetWorkflowCommand extends $Command<
|
|
21
|
+
GetWorkflowCommandInput,
|
|
22
|
+
GetWorkflowCommandOutput,
|
|
23
|
+
CodeCatalystClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetWorkflowCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetWorkflowCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: CodeCatalystClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetWorkflowCommandInput, GetWorkflowCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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
|
+
GetWorkflowRunRequest,
|
|
16
|
+
GetWorkflowRunResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetWorkflowRunCommandInput extends GetWorkflowRunRequest {}
|
|
20
|
+
export interface GetWorkflowRunCommandOutput
|
|
21
|
+
extends GetWorkflowRunResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetWorkflowRunCommand extends $Command<
|
|
24
|
+
GetWorkflowRunCommandInput,
|
|
25
|
+
GetWorkflowRunCommandOutput,
|
|
26
|
+
CodeCatalystClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetWorkflowRunCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetWorkflowRunCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CodeCatalystClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetWorkflowRunCommandInput, GetWorkflowRunCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
ListWorkflowRunsRequest,
|
|
16
|
+
ListWorkflowRunsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListWorkflowRunsCommandInput extends ListWorkflowRunsRequest {}
|
|
20
|
+
export interface ListWorkflowRunsCommandOutput
|
|
21
|
+
extends ListWorkflowRunsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListWorkflowRunsCommand extends $Command<
|
|
24
|
+
ListWorkflowRunsCommandInput,
|
|
25
|
+
ListWorkflowRunsCommandOutput,
|
|
26
|
+
CodeCatalystClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListWorkflowRunsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListWorkflowRunsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CodeCatalystClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListWorkflowRunsCommandInput, ListWorkflowRunsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
ListWorkflowsRequest,
|
|
16
|
+
ListWorkflowsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListWorkflowsCommandInput extends ListWorkflowsRequest {}
|
|
20
|
+
export interface ListWorkflowsCommandOutput
|
|
21
|
+
extends ListWorkflowsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListWorkflowsCommand extends $Command<
|
|
24
|
+
ListWorkflowsCommandInput,
|
|
25
|
+
ListWorkflowsCommandOutput,
|
|
26
|
+
CodeCatalystClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListWorkflowsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListWorkflowsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CodeCatalystClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListWorkflowsCommandInput, ListWorkflowsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
StartWorkflowRunRequest,
|
|
16
|
+
StartWorkflowRunResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface StartWorkflowRunCommandInput extends StartWorkflowRunRequest {}
|
|
20
|
+
export interface StartWorkflowRunCommandOutput
|
|
21
|
+
extends StartWorkflowRunResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class StartWorkflowRunCommand extends $Command<
|
|
24
|
+
StartWorkflowRunCommandInput,
|
|
25
|
+
StartWorkflowRunCommandOutput,
|
|
26
|
+
CodeCatalystClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: StartWorkflowRunCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: StartWorkflowRunCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CodeCatalystClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<StartWorkflowRunCommandInput, StartWorkflowRunCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -15,6 +15,8 @@ export * from "./GetSourceRepositoryCommand";
|
|
|
15
15
|
export * from "./GetSpaceCommand";
|
|
16
16
|
export * from "./GetSubscriptionCommand";
|
|
17
17
|
export * from "./GetUserDetailsCommand";
|
|
18
|
+
export * from "./GetWorkflowCommand";
|
|
19
|
+
export * from "./GetWorkflowRunCommand";
|
|
18
20
|
export * from "./ListAccessTokensCommand";
|
|
19
21
|
export * from "./ListDevEnvironmentSessionsCommand";
|
|
20
22
|
export * from "./ListDevEnvironmentsCommand";
|
|
@@ -23,8 +25,11 @@ export * from "./ListProjectsCommand";
|
|
|
23
25
|
export * from "./ListSourceRepositoriesCommand";
|
|
24
26
|
export * from "./ListSourceRepositoryBranchesCommand";
|
|
25
27
|
export * from "./ListSpacesCommand";
|
|
28
|
+
export * from "./ListWorkflowRunsCommand";
|
|
29
|
+
export * from "./ListWorkflowsCommand";
|
|
26
30
|
export * from "./StartDevEnvironmentCommand";
|
|
27
31
|
export * from "./StartDevEnvironmentSessionCommand";
|
|
32
|
+
export * from "./StartWorkflowRunCommand";
|
|
28
33
|
export * from "./StopDevEnvironmentCommand";
|
|
29
34
|
export * from "./StopDevEnvironmentSessionCommand";
|
|
30
35
|
export * from "./UpdateDevEnvironmentCommand";
|