@aws-sdk/client-codecatalyst 3.451.0 → 3.452.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/CodeCatalystClient.js +1 -1
- 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 +441 -5
- package/dist-es/CodeCatalyst.js +10 -0
- package/dist-es/CodeCatalystClient.js +1 -1
- 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 +429 -3
- package/dist-types/CodeCatalyst.d.ts +59 -1
- package/dist-types/CodeCatalystClient.d.ts +31 -3
- 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 +1 -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 +712 -222
- 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 +190 -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
|
@@ -153,6 +153,67 @@ 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
|
+
}
|
|
213
|
+
export interface ListDevEnvironmentsResponse {
|
|
214
|
+
items: DevEnvironmentSummary[] | undefined;
|
|
215
|
+
nextToken?: string;
|
|
216
|
+
}
|
|
156
217
|
export interface ListSpacesRequest {
|
|
157
218
|
nextToken?: string;
|
|
158
219
|
}
|
|
@@ -190,13 +251,6 @@ export interface IdeConfiguration {
|
|
|
190
251
|
runtime?: string;
|
|
191
252
|
name?: string;
|
|
192
253
|
}
|
|
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
254
|
export interface PersistentStorageConfiguration {
|
|
201
255
|
sizeInGiB: number | undefined;
|
|
202
256
|
}
|
|
@@ -235,29 +289,6 @@ export interface GetDevEnvironmentRequest {
|
|
|
235
289
|
projectName: string | undefined;
|
|
236
290
|
id: string | undefined;
|
|
237
291
|
}
|
|
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
292
|
export interface GetDevEnvironmentResponse {
|
|
262
293
|
spaceName: string | undefined;
|
|
263
294
|
projectName: string | undefined;
|
|
@@ -273,37 +304,6 @@ export interface GetDevEnvironmentResponse {
|
|
|
273
304
|
inactivityTimeoutMinutes: number | undefined;
|
|
274
305
|
persistentStorage: PersistentStorage | undefined;
|
|
275
306
|
}
|
|
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;
|
|
306
|
-
}
|
|
307
307
|
export interface ListDevEnvironmentSessionsRequest {
|
|
308
308
|
spaceName: string | undefined;
|
|
309
309
|
projectName: string | undefined;
|
|
@@ -421,6 +421,7 @@ export interface GetProjectResponse {
|
|
|
421
421
|
description?: string;
|
|
422
422
|
}
|
|
423
423
|
export declare const ComparisonOperator: {
|
|
424
|
+
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
424
425
|
readonly EQUALS: "EQ";
|
|
425
426
|
readonly GREATER_THAN: "GT";
|
|
426
427
|
readonly GREATER_THAN_OR_EQUALS: "GE";
|
|
@@ -431,6 +432,7 @@ export type ComparisonOperator =
|
|
|
431
432
|
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
432
433
|
export declare const FilterKey: {
|
|
433
434
|
readonly HAS_ACCESS_TO: "hasAccessTo";
|
|
435
|
+
readonly NAME: "name";
|
|
434
436
|
};
|
|
435
437
|
export type FilterKey = (typeof FilterKey)[keyof typeof FilterKey];
|
|
436
438
|
export interface ProjectListFilter {
|
|
@@ -554,6 +556,133 @@ export interface UpdateProjectResponse {
|
|
|
554
556
|
displayName?: string;
|
|
555
557
|
description?: string;
|
|
556
558
|
}
|
|
559
|
+
export interface GetWorkflowRequest {
|
|
560
|
+
spaceName: string | undefined;
|
|
561
|
+
id: string | undefined;
|
|
562
|
+
projectName: string | undefined;
|
|
563
|
+
}
|
|
564
|
+
export interface WorkflowDefinition {
|
|
565
|
+
path: string | undefined;
|
|
566
|
+
}
|
|
567
|
+
export declare const WorkflowRunMode: {
|
|
568
|
+
readonly PARALLEL: "PARALLEL";
|
|
569
|
+
readonly QUEUED: "QUEUED";
|
|
570
|
+
readonly SUPERSEDED: "SUPERSEDED";
|
|
571
|
+
};
|
|
572
|
+
export type WorkflowRunMode =
|
|
573
|
+
(typeof WorkflowRunMode)[keyof typeof WorkflowRunMode];
|
|
574
|
+
export declare const WorkflowStatus: {
|
|
575
|
+
readonly ACTIVE: "ACTIVE";
|
|
576
|
+
readonly INVALID: "INVALID";
|
|
577
|
+
};
|
|
578
|
+
export type WorkflowStatus =
|
|
579
|
+
(typeof WorkflowStatus)[keyof typeof WorkflowStatus];
|
|
580
|
+
export interface GetWorkflowResponse {
|
|
581
|
+
spaceName: string | undefined;
|
|
582
|
+
projectName: string | undefined;
|
|
583
|
+
id: string | undefined;
|
|
584
|
+
name: string | undefined;
|
|
585
|
+
sourceRepositoryName?: string;
|
|
586
|
+
sourceBranchName?: string;
|
|
587
|
+
definition: WorkflowDefinition | undefined;
|
|
588
|
+
createdTime: Date | undefined;
|
|
589
|
+
lastUpdatedTime: Date | undefined;
|
|
590
|
+
runMode: WorkflowRunMode | undefined;
|
|
591
|
+
status: WorkflowStatus | undefined;
|
|
592
|
+
}
|
|
593
|
+
export interface WorkflowSortCriteria {}
|
|
594
|
+
export interface ListWorkflowsRequest {
|
|
595
|
+
spaceName: string | undefined;
|
|
596
|
+
projectName: string | undefined;
|
|
597
|
+
nextToken?: string;
|
|
598
|
+
maxResults?: number;
|
|
599
|
+
sortBy?: WorkflowSortCriteria[];
|
|
600
|
+
}
|
|
601
|
+
export interface WorkflowDefinitionSummary {
|
|
602
|
+
path: string | undefined;
|
|
603
|
+
}
|
|
604
|
+
export interface WorkflowSummary {
|
|
605
|
+
id: string | undefined;
|
|
606
|
+
name: string | undefined;
|
|
607
|
+
sourceRepositoryName: string | undefined;
|
|
608
|
+
sourceBranchName: string | undefined;
|
|
609
|
+
definition: WorkflowDefinitionSummary | undefined;
|
|
610
|
+
createdTime: Date | undefined;
|
|
611
|
+
lastUpdatedTime: Date | undefined;
|
|
612
|
+
runMode: WorkflowRunMode | undefined;
|
|
613
|
+
status: WorkflowStatus | undefined;
|
|
614
|
+
}
|
|
615
|
+
export interface ListWorkflowsResponse {
|
|
616
|
+
nextToken?: string;
|
|
617
|
+
items?: WorkflowSummary[];
|
|
618
|
+
}
|
|
619
|
+
export interface GetWorkflowRunRequest {
|
|
620
|
+
spaceName: string | undefined;
|
|
621
|
+
id: string | undefined;
|
|
622
|
+
projectName: string | undefined;
|
|
623
|
+
}
|
|
624
|
+
export declare const WorkflowRunStatus: {
|
|
625
|
+
readonly ABANDONED: "ABANDONED";
|
|
626
|
+
readonly CANCELLED: "CANCELLED";
|
|
627
|
+
readonly FAILED: "FAILED";
|
|
628
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
629
|
+
readonly NOT_RUN: "NOT_RUN";
|
|
630
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
631
|
+
readonly STOPPED: "STOPPED";
|
|
632
|
+
readonly STOPPING: "STOPPING";
|
|
633
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
634
|
+
readonly SUPERSEDED: "SUPERSEDED";
|
|
635
|
+
readonly VALIDATING: "VALIDATING";
|
|
636
|
+
};
|
|
637
|
+
export type WorkflowRunStatus =
|
|
638
|
+
(typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];
|
|
639
|
+
export interface WorkflowRunStatusReason {}
|
|
640
|
+
export interface GetWorkflowRunResponse {
|
|
641
|
+
spaceName: string | undefined;
|
|
642
|
+
projectName: string | undefined;
|
|
643
|
+
id: string | undefined;
|
|
644
|
+
workflowId: string | undefined;
|
|
645
|
+
status: WorkflowRunStatus | undefined;
|
|
646
|
+
statusReasons?: WorkflowRunStatusReason[];
|
|
647
|
+
startTime: Date | undefined;
|
|
648
|
+
endTime?: Date;
|
|
649
|
+
lastUpdatedTime: Date | undefined;
|
|
650
|
+
}
|
|
651
|
+
export interface WorkflowRunSortCriteria {}
|
|
652
|
+
export interface ListWorkflowRunsRequest {
|
|
653
|
+
spaceName: string | undefined;
|
|
654
|
+
workflowId?: string;
|
|
655
|
+
projectName: string | undefined;
|
|
656
|
+
nextToken?: string;
|
|
657
|
+
maxResults?: number;
|
|
658
|
+
sortBy?: WorkflowRunSortCriteria[];
|
|
659
|
+
}
|
|
660
|
+
export interface WorkflowRunSummary {
|
|
661
|
+
id: string | undefined;
|
|
662
|
+
workflowId: string | undefined;
|
|
663
|
+
workflowName: string | undefined;
|
|
664
|
+
status: WorkflowRunStatus | undefined;
|
|
665
|
+
statusReasons?: WorkflowRunStatusReason[];
|
|
666
|
+
startTime: Date | undefined;
|
|
667
|
+
endTime?: Date;
|
|
668
|
+
lastUpdatedTime: Date | undefined;
|
|
669
|
+
}
|
|
670
|
+
export interface ListWorkflowRunsResponse {
|
|
671
|
+
nextToken?: string;
|
|
672
|
+
items?: WorkflowRunSummary[];
|
|
673
|
+
}
|
|
674
|
+
export interface StartWorkflowRunRequest {
|
|
675
|
+
spaceName: string | undefined;
|
|
676
|
+
projectName: string | undefined;
|
|
677
|
+
workflowId: string | undefined;
|
|
678
|
+
clientToken?: string;
|
|
679
|
+
}
|
|
680
|
+
export interface StartWorkflowRunResponse {
|
|
681
|
+
spaceName: string | undefined;
|
|
682
|
+
projectName: string | undefined;
|
|
683
|
+
id: string | undefined;
|
|
684
|
+
workflowId: string | undefined;
|
|
685
|
+
}
|
|
557
686
|
export interface GetSubscriptionRequest {
|
|
558
687
|
spaceName: string | undefined;
|
|
559
688
|
}
|
|
@@ -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.
|
|
4
|
+
"version": "3.452.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",
|