@aws-sdk/client-omics 3.787.0 → 3.796.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 +41 -2
- package/dist-cjs/index.js +413 -12
- package/dist-es/Omics.js +10 -0
- package/dist-es/commands/CreateWorkflowVersionCommand.js +22 -0
- package/dist-es/commands/DeleteWorkflowVersionCommand.js +22 -0
- package/dist-es/commands/GetWorkflowVersionCommand.js +22 -0
- package/dist-es/commands/ListWorkflowVersionsCommand.js +22 -0
- package/dist-es/commands/UpdateWorkflowVersionCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +4 -4
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListWorkflowVersionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +241 -0
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForWorkflowVersionActive.js +58 -0
- package/dist-types/Omics.d.ts +36 -2
- package/dist-types/OmicsClient.d.ts +8 -4
- package/dist-types/commands/AbortMultipartReadSetUploadCommand.d.ts +1 -3
- package/dist-types/commands/CompleteMultipartReadSetUploadCommand.d.ts +1 -3
- package/dist-types/commands/CreateAnnotationStoreVersionCommand.d.ts +1 -3
- package/dist-types/commands/CreateMultipartReadSetUploadCommand.d.ts +1 -3
- package/dist-types/commands/CreateRunCacheCommand.d.ts +1 -5
- package/dist-types/commands/CreateShareCommand.d.ts +1 -14
- package/dist-types/commands/CreateWorkflowCommand.d.ts +3 -1
- package/dist-types/commands/CreateWorkflowVersionCommand.d.ts +123 -0
- package/dist-types/commands/DeleteAnnotationStoreVersionsCommand.d.ts +1 -3
- package/dist-types/commands/DeleteRunCacheCommand.d.ts +1 -6
- package/dist-types/commands/DeleteS3AccessPolicyCommand.d.ts +1 -3
- package/dist-types/commands/DeleteShareCommand.d.ts +1 -2
- package/dist-types/commands/DeleteWorkflowVersionCommand.d.ts +95 -0
- package/dist-types/commands/GetAnnotationStoreVersionCommand.d.ts +1 -3
- package/dist-types/commands/GetRunCacheCommand.d.ts +1 -2
- package/dist-types/commands/GetRunCommand.d.ts +3 -6
- package/dist-types/commands/GetS3AccessPolicyCommand.d.ts +1 -3
- package/dist-types/commands/GetWorkflowCommand.d.ts +3 -2
- package/dist-types/commands/GetWorkflowVersionCommand.d.ts +130 -0
- package/dist-types/commands/ListAnnotationStoreVersionsCommand.d.ts +1 -3
- package/dist-types/commands/ListMultipartReadSetUploadsCommand.d.ts +2 -5
- package/dist-types/commands/ListReadSetUploadPartsCommand.d.ts +1 -3
- package/dist-types/commands/ListRunsCommand.d.ts +2 -5
- package/dist-types/commands/ListSharesCommand.d.ts +1 -2
- package/dist-types/commands/ListWorkflowVersionsCommand.d.ts +115 -0
- package/dist-types/commands/PutS3AccessPolicyCommand.d.ts +1 -3
- package/dist-types/commands/StartReadSetActivationJobCommand.d.ts +1 -2
- package/dist-types/commands/StartRunCommand.d.ts +2 -12
- package/dist-types/commands/StartVariantImportJobCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAnnotationStoreVersionCommand.d.ts +1 -3
- package/dist-types/commands/UpdateVariantStoreCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkflowCommand.d.ts +4 -2
- package/dist-types/commands/UpdateWorkflowVersionCommand.d.ts +98 -0
- package/dist-types/commands/UploadReadSetPartCommand.d.ts +2 -5
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +1 -2
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +555 -578
- package/dist-types/models/models_1.d.ts +187 -0
- package/dist-types/pagination/ListWorkflowVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/Omics.d.ts +85 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateWorkflowVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteWorkflowVersionCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetWorkflowVersionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkflowVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartVariantImportJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateVariantStoreCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkflowCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateWorkflowVersionCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -41
- package/dist-types/ts3.4/models/models_1.d.ts +46 -0
- package/dist-types/ts3.4/pagination/ListWorkflowVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForWorkflowVersionActive.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForWorkflowVersionActive.d.ts +14 -0
- package/package.json +5 -5
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteWorkflowVersionRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
OmicsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../OmicsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteWorkflowVersionCommandInput
|
|
12
|
+
extends DeleteWorkflowVersionRequest {}
|
|
13
|
+
export interface DeleteWorkflowVersionCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const DeleteWorkflowVersionCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: DeleteWorkflowVersionCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
DeleteWorkflowVersionCommandInput,
|
|
19
|
+
DeleteWorkflowVersionCommandOutput,
|
|
20
|
+
OmicsClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DeleteWorkflowVersionCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteWorkflowVersionCommandInput,
|
|
28
|
+
DeleteWorkflowVersionCommandOutput,
|
|
29
|
+
OmicsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class DeleteWorkflowVersionCommand extends DeleteWorkflowVersionCommand_base {
|
|
36
|
+
protected static __types: {
|
|
37
|
+
api: {
|
|
38
|
+
input: DeleteWorkflowVersionRequest;
|
|
39
|
+
output: {};
|
|
40
|
+
};
|
|
41
|
+
sdk: {
|
|
42
|
+
input: DeleteWorkflowVersionCommandInput;
|
|
43
|
+
output: DeleteWorkflowVersionCommandOutput;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetWorkflowVersionRequest,
|
|
5
|
+
GetWorkflowVersionResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OmicsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OmicsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetWorkflowVersionCommandInput
|
|
15
|
+
extends GetWorkflowVersionRequest {}
|
|
16
|
+
export interface GetWorkflowVersionCommandOutput
|
|
17
|
+
extends GetWorkflowVersionResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetWorkflowVersionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetWorkflowVersionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetWorkflowVersionCommandInput,
|
|
24
|
+
GetWorkflowVersionCommandOutput,
|
|
25
|
+
OmicsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetWorkflowVersionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetWorkflowVersionCommandInput,
|
|
33
|
+
GetWorkflowVersionCommandOutput,
|
|
34
|
+
OmicsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetWorkflowVersionCommand extends GetWorkflowVersionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetWorkflowVersionRequest;
|
|
44
|
+
output: GetWorkflowVersionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetWorkflowVersionCommandInput;
|
|
48
|
+
output: GetWorkflowVersionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListWorkflowVersionsRequest,
|
|
5
|
+
ListWorkflowVersionsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OmicsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OmicsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListWorkflowVersionsCommandInput
|
|
15
|
+
extends ListWorkflowVersionsRequest {}
|
|
16
|
+
export interface ListWorkflowVersionsCommandOutput
|
|
17
|
+
extends ListWorkflowVersionsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListWorkflowVersionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListWorkflowVersionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListWorkflowVersionsCommandInput,
|
|
24
|
+
ListWorkflowVersionsCommandOutput,
|
|
25
|
+
OmicsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListWorkflowVersionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListWorkflowVersionsCommandInput,
|
|
33
|
+
ListWorkflowVersionsCommandOutput,
|
|
34
|
+
OmicsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListWorkflowVersionsCommand extends ListWorkflowVersionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListWorkflowVersionsRequest;
|
|
44
|
+
output: ListWorkflowVersionsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListWorkflowVersionsCommandInput;
|
|
48
|
+
output: ListWorkflowVersionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { UpdateWorkflowRequest } from "../models/
|
|
3
|
+
import { UpdateWorkflowRequest } from "../models/models_1";
|
|
4
4
|
import {
|
|
5
5
|
OmicsClientResolvedConfig,
|
|
6
6
|
ServiceInputTypes,
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UpdateWorkflowVersionRequest } from "../models/models_1";
|
|
4
|
+
import {
|
|
5
|
+
OmicsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../OmicsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdateWorkflowVersionCommandInput
|
|
12
|
+
extends UpdateWorkflowVersionRequest {}
|
|
13
|
+
export interface UpdateWorkflowVersionCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const UpdateWorkflowVersionCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: UpdateWorkflowVersionCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
UpdateWorkflowVersionCommandInput,
|
|
19
|
+
UpdateWorkflowVersionCommandOutput,
|
|
20
|
+
OmicsClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: UpdateWorkflowVersionCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
UpdateWorkflowVersionCommandInput,
|
|
28
|
+
UpdateWorkflowVersionCommandOutput,
|
|
29
|
+
OmicsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class UpdateWorkflowVersionCommand extends UpdateWorkflowVersionCommand_base {
|
|
36
|
+
protected static __types: {
|
|
37
|
+
api: {
|
|
38
|
+
input: UpdateWorkflowVersionRequest;
|
|
39
|
+
output: {};
|
|
40
|
+
};
|
|
41
|
+
sdk: {
|
|
42
|
+
input: UpdateWorkflowVersionCommandInput;
|
|
43
|
+
output: UpdateWorkflowVersionCommandOutput;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -15,6 +15,7 @@ export * from "./CreateSequenceStoreCommand";
|
|
|
15
15
|
export * from "./CreateShareCommand";
|
|
16
16
|
export * from "./CreateVariantStoreCommand";
|
|
17
17
|
export * from "./CreateWorkflowCommand";
|
|
18
|
+
export * from "./CreateWorkflowVersionCommand";
|
|
18
19
|
export * from "./DeleteAnnotationStoreCommand";
|
|
19
20
|
export * from "./DeleteAnnotationStoreVersionsCommand";
|
|
20
21
|
export * from "./DeleteReferenceCommand";
|
|
@@ -27,6 +28,7 @@ export * from "./DeleteSequenceStoreCommand";
|
|
|
27
28
|
export * from "./DeleteShareCommand";
|
|
28
29
|
export * from "./DeleteVariantStoreCommand";
|
|
29
30
|
export * from "./DeleteWorkflowCommand";
|
|
31
|
+
export * from "./DeleteWorkflowVersionCommand";
|
|
30
32
|
export * from "./GetAnnotationImportJobCommand";
|
|
31
33
|
export * from "./GetAnnotationStoreCommand";
|
|
32
34
|
export * from "./GetAnnotationStoreVersionCommand";
|
|
@@ -49,6 +51,7 @@ export * from "./GetShareCommand";
|
|
|
49
51
|
export * from "./GetVariantImportJobCommand";
|
|
50
52
|
export * from "./GetVariantStoreCommand";
|
|
51
53
|
export * from "./GetWorkflowCommand";
|
|
54
|
+
export * from "./GetWorkflowVersionCommand";
|
|
52
55
|
export * from "./ListAnnotationImportJobsCommand";
|
|
53
56
|
export * from "./ListAnnotationStoreVersionsCommand";
|
|
54
57
|
export * from "./ListAnnotationStoresCommand";
|
|
@@ -70,6 +73,7 @@ export * from "./ListSharesCommand";
|
|
|
70
73
|
export * from "./ListTagsForResourceCommand";
|
|
71
74
|
export * from "./ListVariantImportJobsCommand";
|
|
72
75
|
export * from "./ListVariantStoresCommand";
|
|
76
|
+
export * from "./ListWorkflowVersionsCommand";
|
|
73
77
|
export * from "./ListWorkflowsCommand";
|
|
74
78
|
export * from "./PutS3AccessPolicyCommand";
|
|
75
79
|
export * from "./StartAnnotationImportJobCommand";
|
|
@@ -88,4 +92,5 @@ export * from "./UpdateRunGroupCommand";
|
|
|
88
92
|
export * from "./UpdateSequenceStoreCommand";
|
|
89
93
|
export * from "./UpdateVariantStoreCommand";
|
|
90
94
|
export * from "./UpdateWorkflowCommand";
|
|
95
|
+
export * from "./UpdateWorkflowVersionCommand";
|
|
91
96
|
export * from "./UploadReadSetPartCommand";
|
|
@@ -766,6 +766,11 @@ export interface WorkflowParameter {
|
|
|
766
766
|
description?: string | undefined;
|
|
767
767
|
optional?: boolean | undefined;
|
|
768
768
|
}
|
|
769
|
+
export declare const StorageType: {
|
|
770
|
+
readonly DYNAMIC: "DYNAMIC";
|
|
771
|
+
readonly STATIC: "STATIC";
|
|
772
|
+
};
|
|
773
|
+
export type StorageType = (typeof StorageType)[keyof typeof StorageType];
|
|
769
774
|
export interface CreateWorkflowRequest {
|
|
770
775
|
name?: string | undefined;
|
|
771
776
|
description?: string | undefined;
|
|
@@ -778,6 +783,7 @@ export interface CreateWorkflowRequest {
|
|
|
778
783
|
tags?: Record<string, string> | undefined;
|
|
779
784
|
requestId?: string | undefined;
|
|
780
785
|
accelerators?: Accelerators | undefined;
|
|
786
|
+
storageType?: StorageType | undefined;
|
|
781
787
|
}
|
|
782
788
|
export declare const WorkflowStatus: {
|
|
783
789
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -794,6 +800,31 @@ export interface CreateWorkflowResponse {
|
|
|
794
800
|
id?: string | undefined;
|
|
795
801
|
status?: WorkflowStatus | undefined;
|
|
796
802
|
tags?: Record<string, string> | undefined;
|
|
803
|
+
uuid?: string | undefined;
|
|
804
|
+
}
|
|
805
|
+
export interface CreateWorkflowVersionRequest {
|
|
806
|
+
workflowId: string | undefined;
|
|
807
|
+
versionName: string | undefined;
|
|
808
|
+
definitionZip?: Uint8Array | undefined;
|
|
809
|
+
definitionUri?: string | undefined;
|
|
810
|
+
accelerators?: Accelerators | undefined;
|
|
811
|
+
description?: string | undefined;
|
|
812
|
+
engine?: WorkflowEngine | undefined;
|
|
813
|
+
main?: string | undefined;
|
|
814
|
+
parameterTemplate?: Record<string, WorkflowParameter> | undefined;
|
|
815
|
+
requestId?: string | undefined;
|
|
816
|
+
storageType?: StorageType | undefined;
|
|
817
|
+
storageCapacity?: number | undefined;
|
|
818
|
+
tags?: Record<string, string> | undefined;
|
|
819
|
+
workflowBucketOwnerId?: string | undefined;
|
|
820
|
+
}
|
|
821
|
+
export interface CreateWorkflowVersionResponse {
|
|
822
|
+
arn?: string | undefined;
|
|
823
|
+
workflowId?: string | undefined;
|
|
824
|
+
versionName?: string | undefined;
|
|
825
|
+
status?: WorkflowStatus | undefined;
|
|
826
|
+
tags?: Record<string, string> | undefined;
|
|
827
|
+
uuid?: string | undefined;
|
|
797
828
|
}
|
|
798
829
|
export declare const CreationType: {
|
|
799
830
|
readonly IMPORT: "IMPORT";
|
|
@@ -842,6 +873,10 @@ export interface DeleteVariantStoreResponse {
|
|
|
842
873
|
export interface DeleteWorkflowRequest {
|
|
843
874
|
id: string | undefined;
|
|
844
875
|
}
|
|
876
|
+
export interface DeleteWorkflowVersionRequest {
|
|
877
|
+
workflowId: string | undefined;
|
|
878
|
+
versionName: string | undefined;
|
|
879
|
+
}
|
|
845
880
|
export declare const ETagAlgorithm: {
|
|
846
881
|
readonly BAM_MD5UP: "BAM_MD5up";
|
|
847
882
|
readonly BAM_SHA256UP: "BAM_SHA256up";
|
|
@@ -1203,11 +1238,6 @@ export declare const RunStatus: {
|
|
|
1203
1238
|
readonly STOPPING: "STOPPING";
|
|
1204
1239
|
};
|
|
1205
1240
|
export type RunStatus = (typeof RunStatus)[keyof typeof RunStatus];
|
|
1206
|
-
export declare const StorageType: {
|
|
1207
|
-
readonly DYNAMIC: "DYNAMIC";
|
|
1208
|
-
readonly STATIC: "STATIC";
|
|
1209
|
-
};
|
|
1210
|
-
export type StorageType = (typeof StorageType)[keyof typeof StorageType];
|
|
1211
1241
|
export declare const WorkflowType: {
|
|
1212
1242
|
readonly PRIVATE: "PRIVATE";
|
|
1213
1243
|
readonly READY2RUN: "READY2RUN";
|
|
@@ -1248,6 +1278,8 @@ export interface GetRunResponse {
|
|
|
1248
1278
|
runOutputUri?: string | undefined;
|
|
1249
1279
|
storageType?: StorageType | undefined;
|
|
1250
1280
|
workflowOwnerId?: string | undefined;
|
|
1281
|
+
workflowVersionName?: string | undefined;
|
|
1282
|
+
workflowUuid?: string | undefined;
|
|
1251
1283
|
}
|
|
1252
1284
|
export interface GetRunCacheRequest {
|
|
1253
1285
|
id: string | undefined;
|
|
@@ -1427,6 +1459,37 @@ export interface GetWorkflowResponse {
|
|
|
1427
1459
|
tags?: Record<string, string> | undefined;
|
|
1428
1460
|
metadata?: Record<string, string> | undefined;
|
|
1429
1461
|
accelerators?: Accelerators | undefined;
|
|
1462
|
+
storageType?: StorageType | undefined;
|
|
1463
|
+
uuid?: string | undefined;
|
|
1464
|
+
}
|
|
1465
|
+
export interface GetWorkflowVersionRequest {
|
|
1466
|
+
workflowId: string | undefined;
|
|
1467
|
+
versionName: string | undefined;
|
|
1468
|
+
type?: WorkflowType | undefined;
|
|
1469
|
+
export?: WorkflowExport[] | undefined;
|
|
1470
|
+
workflowOwnerId?: string | undefined;
|
|
1471
|
+
}
|
|
1472
|
+
export interface GetWorkflowVersionResponse {
|
|
1473
|
+
arn?: string | undefined;
|
|
1474
|
+
workflowId?: string | undefined;
|
|
1475
|
+
versionName?: string | undefined;
|
|
1476
|
+
accelerators?: Accelerators | undefined;
|
|
1477
|
+
creationTime?: Date | undefined;
|
|
1478
|
+
description?: string | undefined;
|
|
1479
|
+
definition?: string | undefined;
|
|
1480
|
+
digest?: string | undefined;
|
|
1481
|
+
engine?: WorkflowEngine | undefined;
|
|
1482
|
+
main?: string | undefined;
|
|
1483
|
+
metadata?: Record<string, string> | undefined;
|
|
1484
|
+
parameterTemplate?: Record<string, WorkflowParameter> | undefined;
|
|
1485
|
+
status?: WorkflowStatus | undefined;
|
|
1486
|
+
statusMessage?: string | undefined;
|
|
1487
|
+
storageType?: StorageType | undefined;
|
|
1488
|
+
storageCapacity?: number | undefined;
|
|
1489
|
+
type?: WorkflowType | undefined;
|
|
1490
|
+
tags?: Record<string, string> | undefined;
|
|
1491
|
+
uuid?: string | undefined;
|
|
1492
|
+
workflowBucketOwnerId?: string | undefined;
|
|
1430
1493
|
}
|
|
1431
1494
|
export interface ImportReadSetFilter {
|
|
1432
1495
|
status?: ReadSetImportJobStatus | undefined;
|
|
@@ -1682,6 +1745,7 @@ export interface RunListItem {
|
|
|
1682
1745
|
startTime?: Date | undefined;
|
|
1683
1746
|
stopTime?: Date | undefined;
|
|
1684
1747
|
storageType?: StorageType | undefined;
|
|
1748
|
+
workflowVersionName?: string | undefined;
|
|
1685
1749
|
}
|
|
1686
1750
|
export interface ListRunsResponse {
|
|
1687
1751
|
items?: RunListItem[] | undefined;
|
|
@@ -1833,6 +1897,28 @@ export interface ListWorkflowsResponse {
|
|
|
1833
1897
|
items?: WorkflowListItem[] | undefined;
|
|
1834
1898
|
nextToken?: string | undefined;
|
|
1835
1899
|
}
|
|
1900
|
+
export interface ListWorkflowVersionsRequest {
|
|
1901
|
+
workflowId: string | undefined;
|
|
1902
|
+
type?: WorkflowType | undefined;
|
|
1903
|
+
workflowOwnerId?: string | undefined;
|
|
1904
|
+
startingToken?: string | undefined;
|
|
1905
|
+
maxResults?: number | undefined;
|
|
1906
|
+
}
|
|
1907
|
+
export interface WorkflowVersionListItem {
|
|
1908
|
+
arn?: string | undefined;
|
|
1909
|
+
workflowId?: string | undefined;
|
|
1910
|
+
versionName?: string | undefined;
|
|
1911
|
+
description?: string | undefined;
|
|
1912
|
+
status?: WorkflowStatus | undefined;
|
|
1913
|
+
type?: WorkflowType | undefined;
|
|
1914
|
+
digest?: string | undefined;
|
|
1915
|
+
creationTime?: Date | undefined;
|
|
1916
|
+
metadata?: Record<string, string> | undefined;
|
|
1917
|
+
}
|
|
1918
|
+
export interface ListWorkflowVersionsResponse {
|
|
1919
|
+
items?: WorkflowVersionListItem[] | undefined;
|
|
1920
|
+
nextToken?: string | undefined;
|
|
1921
|
+
}
|
|
1836
1922
|
export interface PutS3AccessPolicyRequest {
|
|
1837
1923
|
s3AccessPointArn: string | undefined;
|
|
1838
1924
|
s3AccessPolicy: __AutomaticJsonStringConversion | string | undefined;
|
|
@@ -1894,6 +1980,7 @@ export interface StartRunRequest {
|
|
|
1894
1980
|
retentionMode?: RunRetentionMode | undefined;
|
|
1895
1981
|
storageType?: StorageType | undefined;
|
|
1896
1982
|
workflowOwnerId?: string | undefined;
|
|
1983
|
+
workflowVersionName?: string | undefined;
|
|
1897
1984
|
}
|
|
1898
1985
|
export interface StartRunResponse {
|
|
1899
1986
|
arn?: string | undefined;
|
|
@@ -1994,42 +2081,6 @@ export interface TagResourceRequest {
|
|
|
1994
2081
|
tags: Record<string, string> | undefined;
|
|
1995
2082
|
}
|
|
1996
2083
|
export interface TagResourceResponse {}
|
|
1997
|
-
export interface UntagResourceRequest {
|
|
1998
|
-
resourceArn: string | undefined;
|
|
1999
|
-
tagKeys: string[] | undefined;
|
|
2000
|
-
}
|
|
2001
|
-
export interface UntagResourceResponse {}
|
|
2002
|
-
export interface VariantImportItemSource {
|
|
2003
|
-
source: string | undefined;
|
|
2004
|
-
}
|
|
2005
|
-
export interface StartVariantImportRequest {
|
|
2006
|
-
destinationName: string | undefined;
|
|
2007
|
-
roleArn: string | undefined;
|
|
2008
|
-
items: VariantImportItemSource[] | undefined;
|
|
2009
|
-
runLeftNormalization?: boolean | undefined;
|
|
2010
|
-
annotationFields?: Record<string, string> | undefined;
|
|
2011
|
-
}
|
|
2012
|
-
export interface StartVariantImportResponse {
|
|
2013
|
-
jobId: string | undefined;
|
|
2014
|
-
}
|
|
2015
|
-
export interface UpdateVariantStoreRequest {
|
|
2016
|
-
name: string | undefined;
|
|
2017
|
-
description?: string | undefined;
|
|
2018
|
-
}
|
|
2019
|
-
export interface UpdateVariantStoreResponse {
|
|
2020
|
-
id: string | undefined;
|
|
2021
|
-
reference: ReferenceItem | undefined;
|
|
2022
|
-
status: StoreStatus | undefined;
|
|
2023
|
-
name: string | undefined;
|
|
2024
|
-
description: string | undefined;
|
|
2025
|
-
creationTime: Date | undefined;
|
|
2026
|
-
updateTime: Date | undefined;
|
|
2027
|
-
}
|
|
2028
|
-
export interface UpdateWorkflowRequest {
|
|
2029
|
-
id: string | undefined;
|
|
2030
|
-
name?: string | undefined;
|
|
2031
|
-
description?: string | undefined;
|
|
2032
|
-
}
|
|
2033
2084
|
export declare const GetReadSetResponseFilterSensitiveLog: (
|
|
2034
2085
|
obj: GetReadSetResponse
|
|
2035
2086
|
) => any;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { ReferenceItem, StorageType, StoreStatus } from "./models_0";
|
|
2
|
+
export interface UntagResourceRequest {
|
|
3
|
+
resourceArn: string | undefined;
|
|
4
|
+
tagKeys: string[] | undefined;
|
|
5
|
+
}
|
|
6
|
+
export interface UntagResourceResponse {}
|
|
7
|
+
export interface VariantImportItemSource {
|
|
8
|
+
source: string | undefined;
|
|
9
|
+
}
|
|
10
|
+
export interface StartVariantImportRequest {
|
|
11
|
+
destinationName: string | undefined;
|
|
12
|
+
roleArn: string | undefined;
|
|
13
|
+
items: VariantImportItemSource[] | undefined;
|
|
14
|
+
runLeftNormalization?: boolean | undefined;
|
|
15
|
+
annotationFields?: Record<string, string> | undefined;
|
|
16
|
+
}
|
|
17
|
+
export interface StartVariantImportResponse {
|
|
18
|
+
jobId: string | undefined;
|
|
19
|
+
}
|
|
20
|
+
export interface UpdateVariantStoreRequest {
|
|
21
|
+
name: string | undefined;
|
|
22
|
+
description?: string | undefined;
|
|
23
|
+
}
|
|
24
|
+
export interface UpdateVariantStoreResponse {
|
|
25
|
+
id: string | undefined;
|
|
26
|
+
reference: ReferenceItem | undefined;
|
|
27
|
+
status: StoreStatus | undefined;
|
|
28
|
+
name: string | undefined;
|
|
29
|
+
description: string | undefined;
|
|
30
|
+
creationTime: Date | undefined;
|
|
31
|
+
updateTime: Date | undefined;
|
|
32
|
+
}
|
|
33
|
+
export interface UpdateWorkflowRequest {
|
|
34
|
+
id: string | undefined;
|
|
35
|
+
name?: string | undefined;
|
|
36
|
+
description?: string | undefined;
|
|
37
|
+
storageType?: StorageType | undefined;
|
|
38
|
+
storageCapacity?: number | undefined;
|
|
39
|
+
}
|
|
40
|
+
export interface UpdateWorkflowVersionRequest {
|
|
41
|
+
workflowId: string | undefined;
|
|
42
|
+
versionName: string | undefined;
|
|
43
|
+
description?: string | undefined;
|
|
44
|
+
storageType?: StorageType | undefined;
|
|
45
|
+
storageCapacity?: number | undefined;
|
|
46
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListWorkflowVersionsCommandInput,
|
|
4
|
+
ListWorkflowVersionsCommandOutput,
|
|
5
|
+
} from "../commands/ListWorkflowVersionsCommand";
|
|
6
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListWorkflowVersions: (
|
|
8
|
+
config: OmicsPaginationConfiguration,
|
|
9
|
+
input: ListWorkflowVersionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListWorkflowVersionsCommandOutput>;
|
|
@@ -19,4 +19,5 @@ export * from "./ListSequenceStoresPaginator";
|
|
|
19
19
|
export * from "./ListSharesPaginator";
|
|
20
20
|
export * from "./ListVariantImportJobsPaginator";
|
|
21
21
|
export * from "./ListVariantStoresPaginator";
|
|
22
|
+
export * from "./ListWorkflowVersionsPaginator";
|
|
22
23
|
export * from "./ListWorkflowsPaginator";
|