@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.
Files changed (57) hide show
  1. package/README.md +64 -1
  2. package/dist-cjs/CodeCatalyst.js +10 -0
  3. package/dist-cjs/commands/GetWorkflowCommand.js +50 -0
  4. package/dist-cjs/commands/GetWorkflowRunCommand.js +50 -0
  5. package/dist-cjs/commands/ListWorkflowRunsCommand.js +50 -0
  6. package/dist-cjs/commands/ListWorkflowsCommand.js +50 -0
  7. package/dist-cjs/commands/StartWorkflowRunCommand.js +50 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +25 -1
  10. package/dist-cjs/pagination/ListWorkflowRunsPaginator.js +29 -0
  11. package/dist-cjs/pagination/ListWorkflowsPaginator.js +29 -0
  12. package/dist-cjs/pagination/index.js +2 -0
  13. package/dist-cjs/protocols/Aws_restJson1.js +445 -5
  14. package/dist-es/CodeCatalyst.js +10 -0
  15. package/dist-es/commands/GetWorkflowCommand.js +46 -0
  16. package/dist-es/commands/GetWorkflowRunCommand.js +46 -0
  17. package/dist-es/commands/ListWorkflowRunsCommand.js +46 -0
  18. package/dist-es/commands/ListWorkflowsCommand.js +46 -0
  19. package/dist-es/commands/StartWorkflowRunCommand.js +46 -0
  20. package/dist-es/commands/index.js +5 -0
  21. package/dist-es/models/models_0.js +24 -0
  22. package/dist-es/pagination/ListWorkflowRunsPaginator.js +25 -0
  23. package/dist-es/pagination/ListWorkflowsPaginator.js +25 -0
  24. package/dist-es/pagination/index.js +2 -0
  25. package/dist-es/protocols/Aws_restJson1.js +433 -3
  26. package/dist-types/CodeCatalyst.d.ts +59 -1
  27. package/dist-types/CodeCatalystClient.d.ts +31 -3
  28. package/dist-types/commands/CreateDevEnvironmentCommand.d.ts +2 -0
  29. package/dist-types/commands/GetDevEnvironmentCommand.d.ts +1 -0
  30. package/dist-types/commands/GetWorkflowCommand.d.ts +107 -0
  31. package/dist-types/commands/GetWorkflowRunCommand.d.ts +105 -0
  32. package/dist-types/commands/ListDevEnvironmentsCommand.d.ts +2 -1
  33. package/dist-types/commands/ListEventLogsCommand.d.ts +10 -1
  34. package/dist-types/commands/ListWorkflowRunsCommand.d.ts +114 -0
  35. package/dist-types/commands/ListWorkflowsCommand.d.ts +114 -0
  36. package/dist-types/commands/StartWorkflowRunCommand.d.ts +99 -0
  37. package/dist-types/commands/index.d.ts +5 -0
  38. package/dist-types/index.d.ts +24 -1
  39. package/dist-types/models/models_0.d.ts +728 -218
  40. package/dist-types/pagination/ListWorkflowRunsPaginator.d.ts +7 -0
  41. package/dist-types/pagination/ListWorkflowsPaginator.d.ts +7 -0
  42. package/dist-types/pagination/index.d.ts +2 -0
  43. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  44. package/dist-types/ts3.4/CodeCatalyst.d.ts +85 -0
  45. package/dist-types/ts3.4/CodeCatalystClient.d.ts +30 -0
  46. package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +35 -0
  47. package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +38 -0
  48. package/dist-types/ts3.4/commands/ListWorkflowRunsCommand.d.ts +38 -0
  49. package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +38 -0
  50. package/dist-types/ts3.4/commands/StartWorkflowRunCommand.d.ts +38 -0
  51. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +194 -61
  53. package/dist-types/ts3.4/pagination/ListWorkflowRunsPaginator.d.ts +11 -0
  54. package/dist-types/ts3.4/pagination/ListWorkflowsPaginator.d.ts +11 -0
  55. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  56. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  57. package/package.json +4 -2
@@ -153,6 +153,68 @@ export interface GetSpaceResponse {
153
153
  displayName?: string;
154
154
  description?: string;
155
155
  }
156
+ export interface Filter {
157
+ key: string | undefined;
158
+ values: string[] | undefined;
159
+ comparisonOperator?: string;
160
+ }
161
+ export interface ListDevEnvironmentsRequest {
162
+ spaceName: string | undefined;
163
+ projectName?: string;
164
+ filters?: Filter[];
165
+ nextToken?: string;
166
+ maxResults?: number;
167
+ }
168
+ export interface Ide {
169
+ runtime?: string;
170
+ name?: string;
171
+ }
172
+ export declare const _InstanceType: {
173
+ readonly DEV_STANDARD1_LARGE: "dev.standard1.large";
174
+ readonly DEV_STANDARD1_MEDIUM: "dev.standard1.medium";
175
+ readonly DEV_STANDARD1_SMALL: "dev.standard1.small";
176
+ readonly DEV_STANDARD1_XLARGE: "dev.standard1.xlarge";
177
+ };
178
+ export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
179
+ export interface PersistentStorage {
180
+ sizeInGiB: number | undefined;
181
+ }
182
+ export interface DevEnvironmentRepositorySummary {
183
+ repositoryName: string | undefined;
184
+ branchName?: string;
185
+ }
186
+ export declare const DevEnvironmentStatus: {
187
+ readonly DELETED: "DELETED";
188
+ readonly DELETING: "DELETING";
189
+ readonly FAILED: "FAILED";
190
+ readonly PENDING: "PENDING";
191
+ readonly RUNNING: "RUNNING";
192
+ readonly STARTING: "STARTING";
193
+ readonly STOPPED: "STOPPED";
194
+ readonly STOPPING: "STOPPING";
195
+ };
196
+ export type DevEnvironmentStatus =
197
+ (typeof DevEnvironmentStatus)[keyof typeof DevEnvironmentStatus];
198
+ export interface DevEnvironmentSummary {
199
+ spaceName?: string;
200
+ projectName?: string;
201
+ id: string | undefined;
202
+ lastUpdatedTime: Date | undefined;
203
+ creatorId: string | undefined;
204
+ status: DevEnvironmentStatus | undefined;
205
+ statusReason?: string;
206
+ repositories: DevEnvironmentRepositorySummary[] | undefined;
207
+ alias?: string;
208
+ ides?: Ide[];
209
+ instanceType: _InstanceType | undefined;
210
+ inactivityTimeoutMinutes: number | undefined;
211
+ persistentStorage: PersistentStorage | undefined;
212
+ vpcConnectionName?: string;
213
+ }
214
+ export interface ListDevEnvironmentsResponse {
215
+ items: DevEnvironmentSummary[] | undefined;
216
+ nextToken?: string;
217
+ }
156
218
  export interface ListSpacesRequest {
157
219
  nextToken?: string;
158
220
  }
@@ -190,13 +252,6 @@ export interface IdeConfiguration {
190
252
  runtime?: string;
191
253
  name?: string;
192
254
  }
193
- export declare const _InstanceType: {
194
- readonly DEV_STANDARD1_LARGE: "dev.standard1.large";
195
- readonly DEV_STANDARD1_MEDIUM: "dev.standard1.medium";
196
- readonly DEV_STANDARD1_SMALL: "dev.standard1.small";
197
- readonly DEV_STANDARD1_XLARGE: "dev.standard1.xlarge";
198
- };
199
- export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
200
255
  export interface PersistentStorageConfiguration {
201
256
  sizeInGiB: number | undefined;
202
257
  }
@@ -214,11 +269,13 @@ export interface CreateDevEnvironmentRequest {
214
269
  instanceType: _InstanceType | undefined;
215
270
  inactivityTimeoutMinutes?: number;
216
271
  persistentStorage: PersistentStorageConfiguration | undefined;
272
+ vpcConnectionName?: string;
217
273
  }
218
274
  export interface CreateDevEnvironmentResponse {
219
275
  spaceName: string | undefined;
220
276
  projectName: string | undefined;
221
277
  id: string | undefined;
278
+ vpcConnectionName?: string;
222
279
  }
223
280
  export interface DeleteDevEnvironmentRequest {
224
281
  spaceName: string | undefined;
@@ -235,29 +292,6 @@ export interface GetDevEnvironmentRequest {
235
292
  projectName: string | undefined;
236
293
  id: string | undefined;
237
294
  }
238
- export interface Ide {
239
- runtime?: string;
240
- name?: string;
241
- }
242
- export interface PersistentStorage {
243
- sizeInGiB: number | undefined;
244
- }
245
- export interface DevEnvironmentRepositorySummary {
246
- repositoryName: string | undefined;
247
- branchName?: string;
248
- }
249
- export declare const DevEnvironmentStatus: {
250
- readonly DELETED: "DELETED";
251
- readonly DELETING: "DELETING";
252
- readonly FAILED: "FAILED";
253
- readonly PENDING: "PENDING";
254
- readonly RUNNING: "RUNNING";
255
- readonly STARTING: "STARTING";
256
- readonly STOPPED: "STOPPED";
257
- readonly STOPPING: "STOPPING";
258
- };
259
- export type DevEnvironmentStatus =
260
- (typeof DevEnvironmentStatus)[keyof typeof DevEnvironmentStatus];
261
295
  export interface GetDevEnvironmentResponse {
262
296
  spaceName: string | undefined;
263
297
  projectName: string | undefined;
@@ -272,37 +306,7 @@ export interface GetDevEnvironmentResponse {
272
306
  instanceType: _InstanceType | undefined;
273
307
  inactivityTimeoutMinutes: number | undefined;
274
308
  persistentStorage: PersistentStorage | undefined;
275
- }
276
- export interface Filter {
277
- key: string | undefined;
278
- values: string[] | undefined;
279
- comparisonOperator?: string;
280
- }
281
- export interface ListDevEnvironmentsRequest {
282
- spaceName: string | undefined;
283
- projectName: string | undefined;
284
- filters?: Filter[];
285
- nextToken?: string;
286
- maxResults?: number;
287
- }
288
- export interface DevEnvironmentSummary {
289
- spaceName?: string;
290
- projectName?: string;
291
- id: string | undefined;
292
- lastUpdatedTime: Date | undefined;
293
- creatorId: string | undefined;
294
- status: DevEnvironmentStatus | undefined;
295
- statusReason?: string;
296
- repositories: DevEnvironmentRepositorySummary[] | undefined;
297
- alias?: string;
298
- ides?: Ide[];
299
- instanceType: _InstanceType | undefined;
300
- inactivityTimeoutMinutes: number | undefined;
301
- persistentStorage: PersistentStorage | undefined;
302
- }
303
- export interface ListDevEnvironmentsResponse {
304
- items: DevEnvironmentSummary[] | undefined;
305
- nextToken?: string;
309
+ vpcConnectionName?: string;
306
310
  }
307
311
  export interface ListDevEnvironmentSessionsRequest {
308
312
  spaceName: string | undefined;
@@ -421,6 +425,7 @@ export interface GetProjectResponse {
421
425
  description?: string;
422
426
  }
423
427
  export declare const ComparisonOperator: {
428
+ readonly BEGINS_WITH: "BEGINS_WITH";
424
429
  readonly EQUALS: "EQ";
425
430
  readonly GREATER_THAN: "GT";
426
431
  readonly GREATER_THAN_OR_EQUALS: "GE";
@@ -431,6 +436,7 @@ export type ComparisonOperator =
431
436
  (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
432
437
  export declare const FilterKey: {
433
438
  readonly HAS_ACCESS_TO: "hasAccessTo";
439
+ readonly NAME: "name";
434
440
  };
435
441
  export type FilterKey = (typeof FilterKey)[keyof typeof FilterKey];
436
442
  export interface ProjectListFilter {
@@ -554,6 +560,133 @@ export interface UpdateProjectResponse {
554
560
  displayName?: string;
555
561
  description?: string;
556
562
  }
563
+ export interface GetWorkflowRequest {
564
+ spaceName: string | undefined;
565
+ id: string | undefined;
566
+ projectName: string | undefined;
567
+ }
568
+ export interface WorkflowDefinition {
569
+ path: string | undefined;
570
+ }
571
+ export declare const WorkflowRunMode: {
572
+ readonly PARALLEL: "PARALLEL";
573
+ readonly QUEUED: "QUEUED";
574
+ readonly SUPERSEDED: "SUPERSEDED";
575
+ };
576
+ export type WorkflowRunMode =
577
+ (typeof WorkflowRunMode)[keyof typeof WorkflowRunMode];
578
+ export declare const WorkflowStatus: {
579
+ readonly ACTIVE: "ACTIVE";
580
+ readonly INVALID: "INVALID";
581
+ };
582
+ export type WorkflowStatus =
583
+ (typeof WorkflowStatus)[keyof typeof WorkflowStatus];
584
+ export interface GetWorkflowResponse {
585
+ spaceName: string | undefined;
586
+ projectName: string | undefined;
587
+ id: string | undefined;
588
+ name: string | undefined;
589
+ sourceRepositoryName?: string;
590
+ sourceBranchName?: string;
591
+ definition: WorkflowDefinition | undefined;
592
+ createdTime: Date | undefined;
593
+ lastUpdatedTime: Date | undefined;
594
+ runMode: WorkflowRunMode | undefined;
595
+ status: WorkflowStatus | undefined;
596
+ }
597
+ export interface WorkflowSortCriteria {}
598
+ export interface ListWorkflowsRequest {
599
+ spaceName: string | undefined;
600
+ projectName: string | undefined;
601
+ nextToken?: string;
602
+ maxResults?: number;
603
+ sortBy?: WorkflowSortCriteria[];
604
+ }
605
+ export interface WorkflowDefinitionSummary {
606
+ path: string | undefined;
607
+ }
608
+ export interface WorkflowSummary {
609
+ id: string | undefined;
610
+ name: string | undefined;
611
+ sourceRepositoryName: string | undefined;
612
+ sourceBranchName: string | undefined;
613
+ definition: WorkflowDefinitionSummary | undefined;
614
+ createdTime: Date | undefined;
615
+ lastUpdatedTime: Date | undefined;
616
+ runMode: WorkflowRunMode | undefined;
617
+ status: WorkflowStatus | undefined;
618
+ }
619
+ export interface ListWorkflowsResponse {
620
+ nextToken?: string;
621
+ items?: WorkflowSummary[];
622
+ }
623
+ export interface GetWorkflowRunRequest {
624
+ spaceName: string | undefined;
625
+ id: string | undefined;
626
+ projectName: string | undefined;
627
+ }
628
+ export declare const WorkflowRunStatus: {
629
+ readonly ABANDONED: "ABANDONED";
630
+ readonly CANCELLED: "CANCELLED";
631
+ readonly FAILED: "FAILED";
632
+ readonly IN_PROGRESS: "IN_PROGRESS";
633
+ readonly NOT_RUN: "NOT_RUN";
634
+ readonly PROVISIONING: "PROVISIONING";
635
+ readonly STOPPED: "STOPPED";
636
+ readonly STOPPING: "STOPPING";
637
+ readonly SUCCEEDED: "SUCCEEDED";
638
+ readonly SUPERSEDED: "SUPERSEDED";
639
+ readonly VALIDATING: "VALIDATING";
640
+ };
641
+ export type WorkflowRunStatus =
642
+ (typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];
643
+ export interface WorkflowRunStatusReason {}
644
+ export interface GetWorkflowRunResponse {
645
+ spaceName: string | undefined;
646
+ projectName: string | undefined;
647
+ id: string | undefined;
648
+ workflowId: string | undefined;
649
+ status: WorkflowRunStatus | undefined;
650
+ statusReasons?: WorkflowRunStatusReason[];
651
+ startTime: Date | undefined;
652
+ endTime?: Date;
653
+ lastUpdatedTime: Date | undefined;
654
+ }
655
+ export interface WorkflowRunSortCriteria {}
656
+ export interface ListWorkflowRunsRequest {
657
+ spaceName: string | undefined;
658
+ workflowId?: string;
659
+ projectName: string | undefined;
660
+ nextToken?: string;
661
+ maxResults?: number;
662
+ sortBy?: WorkflowRunSortCriteria[];
663
+ }
664
+ export interface WorkflowRunSummary {
665
+ id: string | undefined;
666
+ workflowId: string | undefined;
667
+ workflowName: string | undefined;
668
+ status: WorkflowRunStatus | undefined;
669
+ statusReasons?: WorkflowRunStatusReason[];
670
+ startTime: Date | undefined;
671
+ endTime?: Date;
672
+ lastUpdatedTime: Date | undefined;
673
+ }
674
+ export interface ListWorkflowRunsResponse {
675
+ nextToken?: string;
676
+ items?: WorkflowRunSummary[];
677
+ }
678
+ export interface StartWorkflowRunRequest {
679
+ spaceName: string | undefined;
680
+ projectName: string | undefined;
681
+ workflowId: string | undefined;
682
+ clientToken?: string;
683
+ }
684
+ export interface StartWorkflowRunResponse {
685
+ spaceName: string | undefined;
686
+ projectName: string | undefined;
687
+ id: string | undefined;
688
+ workflowId: string | undefined;
689
+ }
557
690
  export interface GetSubscriptionRequest {
558
691
  spaceName: string | undefined;
559
692
  }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListWorkflowRunsCommandInput,
4
+ ListWorkflowRunsCommandOutput,
5
+ } from "../commands/ListWorkflowRunsCommand";
6
+ import { CodeCatalystPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListWorkflowRuns(
8
+ config: CodeCatalystPaginationConfiguration,
9
+ input: ListWorkflowRunsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListWorkflowRunsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListWorkflowsCommandInput,
4
+ ListWorkflowsCommandOutput,
5
+ } from "../commands/ListWorkflowsCommand";
6
+ import { CodeCatalystPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListWorkflows(
8
+ config: CodeCatalystPaginationConfiguration,
9
+ input: ListWorkflowsCommandInput,
10
+ ...additionalArguments: any
11
+ ): 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";
@@ -71,6 +71,14 @@ import {
71
71
  GetUserDetailsCommandInput,
72
72
  GetUserDetailsCommandOutput,
73
73
  } from "../commands/GetUserDetailsCommand";
74
+ import {
75
+ GetWorkflowCommandInput,
76
+ GetWorkflowCommandOutput,
77
+ } from "../commands/GetWorkflowCommand";
78
+ import {
79
+ GetWorkflowRunCommandInput,
80
+ GetWorkflowRunCommandOutput,
81
+ } from "../commands/GetWorkflowRunCommand";
74
82
  import {
75
83
  ListAccessTokensCommandInput,
76
84
  ListAccessTokensCommandOutput,
@@ -103,6 +111,14 @@ import {
103
111
  ListSpacesCommandInput,
104
112
  ListSpacesCommandOutput,
105
113
  } from "../commands/ListSpacesCommand";
114
+ import {
115
+ ListWorkflowRunsCommandInput,
116
+ ListWorkflowRunsCommandOutput,
117
+ } from "../commands/ListWorkflowRunsCommand";
118
+ import {
119
+ ListWorkflowsCommandInput,
120
+ ListWorkflowsCommandOutput,
121
+ } from "../commands/ListWorkflowsCommand";
106
122
  import {
107
123
  StartDevEnvironmentCommandInput,
108
124
  StartDevEnvironmentCommandOutput,
@@ -111,6 +127,10 @@ import {
111
127
  StartDevEnvironmentSessionCommandInput,
112
128
  StartDevEnvironmentSessionCommandOutput,
113
129
  } from "../commands/StartDevEnvironmentSessionCommand";
130
+ import {
131
+ StartWorkflowRunCommandInput,
132
+ StartWorkflowRunCommandOutput,
133
+ } from "../commands/StartWorkflowRunCommand";
114
134
  import {
115
135
  StopDevEnvironmentCommandInput,
116
136
  StopDevEnvironmentCommandOutput,
@@ -203,6 +223,14 @@ export declare const se_GetUserDetailsCommand: (
203
223
  input: GetUserDetailsCommandInput,
204
224
  context: __SerdeContext
205
225
  ) => Promise<__HttpRequest>;
226
+ export declare const se_GetWorkflowCommand: (
227
+ input: GetWorkflowCommandInput,
228
+ context: __SerdeContext
229
+ ) => Promise<__HttpRequest>;
230
+ export declare const se_GetWorkflowRunCommand: (
231
+ input: GetWorkflowRunCommandInput,
232
+ context: __SerdeContext
233
+ ) => Promise<__HttpRequest>;
206
234
  export declare const se_ListAccessTokensCommand: (
207
235
  input: ListAccessTokensCommandInput,
208
236
  context: __SerdeContext
@@ -235,6 +263,14 @@ export declare const se_ListSpacesCommand: (
235
263
  input: ListSpacesCommandInput,
236
264
  context: __SerdeContext
237
265
  ) => Promise<__HttpRequest>;
266
+ export declare const se_ListWorkflowRunsCommand: (
267
+ input: ListWorkflowRunsCommandInput,
268
+ context: __SerdeContext
269
+ ) => Promise<__HttpRequest>;
270
+ export declare const se_ListWorkflowsCommand: (
271
+ input: ListWorkflowsCommandInput,
272
+ context: __SerdeContext
273
+ ) => Promise<__HttpRequest>;
238
274
  export declare const se_StartDevEnvironmentCommand: (
239
275
  input: StartDevEnvironmentCommandInput,
240
276
  context: __SerdeContext
@@ -243,6 +279,10 @@ export declare const se_StartDevEnvironmentSessionCommand: (
243
279
  input: StartDevEnvironmentSessionCommandInput,
244
280
  context: __SerdeContext
245
281
  ) => Promise<__HttpRequest>;
282
+ export declare const se_StartWorkflowRunCommand: (
283
+ input: StartWorkflowRunCommandInput,
284
+ context: __SerdeContext
285
+ ) => Promise<__HttpRequest>;
246
286
  export declare const se_StopDevEnvironmentCommand: (
247
287
  input: StopDevEnvironmentCommandInput,
248
288
  context: __SerdeContext
@@ -335,6 +375,14 @@ export declare const de_GetUserDetailsCommand: (
335
375
  output: __HttpResponse,
336
376
  context: __SerdeContext
337
377
  ) => Promise<GetUserDetailsCommandOutput>;
378
+ export declare const de_GetWorkflowCommand: (
379
+ output: __HttpResponse,
380
+ context: __SerdeContext
381
+ ) => Promise<GetWorkflowCommandOutput>;
382
+ export declare const de_GetWorkflowRunCommand: (
383
+ output: __HttpResponse,
384
+ context: __SerdeContext
385
+ ) => Promise<GetWorkflowRunCommandOutput>;
338
386
  export declare const de_ListAccessTokensCommand: (
339
387
  output: __HttpResponse,
340
388
  context: __SerdeContext
@@ -367,6 +415,14 @@ export declare const de_ListSpacesCommand: (
367
415
  output: __HttpResponse,
368
416
  context: __SerdeContext
369
417
  ) => Promise<ListSpacesCommandOutput>;
418
+ export declare const de_ListWorkflowRunsCommand: (
419
+ output: __HttpResponse,
420
+ context: __SerdeContext
421
+ ) => Promise<ListWorkflowRunsCommandOutput>;
422
+ export declare const de_ListWorkflowsCommand: (
423
+ output: __HttpResponse,
424
+ context: __SerdeContext
425
+ ) => Promise<ListWorkflowsCommandOutput>;
370
426
  export declare const de_StartDevEnvironmentCommand: (
371
427
  output: __HttpResponse,
372
428
  context: __SerdeContext
@@ -375,6 +431,10 @@ export declare const de_StartDevEnvironmentSessionCommand: (
375
431
  output: __HttpResponse,
376
432
  context: __SerdeContext
377
433
  ) => Promise<StartDevEnvironmentSessionCommandOutput>;
434
+ export declare const de_StartWorkflowRunCommand: (
435
+ output: __HttpResponse,
436
+ context: __SerdeContext
437
+ ) => Promise<StartWorkflowRunCommandOutput>;
378
438
  export declare const de_StopDevEnvironmentCommand: (
379
439
  output: __HttpResponse,
380
440
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codecatalyst",
3
3
  "description": "AWS SDK for JavaScript Codecatalyst Client for Node.js, Browser and React Native",
4
- "version": "3.451.0",
4
+ "version": "3.453.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -57,12 +57,14 @@
57
57
  "@smithy/util-middleware": "^2.0.6",
58
58
  "@smithy/util-retry": "^2.0.6",
59
59
  "@smithy/util-utf8": "^2.0.2",
60
- "tslib": "^2.5.0"
60
+ "tslib": "^2.5.0",
61
+ "uuid": "^8.3.2"
61
62
  },
62
63
  "devDependencies": {
63
64
  "@smithy/service-client-documentation-generator": "^2.0.0",
64
65
  "@tsconfig/node14": "1.0.3",
65
66
  "@types/node": "^14.14.31",
67
+ "@types/uuid": "^8.3.0",
66
68
  "concurrently": "7.0.0",
67
69
  "downlevel-dts": "0.10.1",
68
70
  "rimraf": "3.0.2",