@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,187 @@
|
|
|
1
|
+
import { ReferenceItem, StorageType, StoreStatus } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface UntagResourceRequest {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The resource's ARN.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
resourceArn: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* <p>Keys of tags to remove.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
tagKeys: string[] | undefined;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export interface UntagResourceResponse {
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* <p>A imported variant item's source.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
export interface VariantImportItemSource {
|
|
27
|
+
/**
|
|
28
|
+
* <p>The source file's location in Amazon S3.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
source: string | undefined;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export interface StartVariantImportRequest {
|
|
37
|
+
/**
|
|
38
|
+
* <p>The destination variant store for the job.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
destinationName: string | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* <p>A service role for the job.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
roleArn: string | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* <p>Items to import.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
items: VariantImportItemSource[] | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* <p>The job's left normalization setting.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
runLeftNormalization?: boolean | undefined;
|
|
57
|
+
/**
|
|
58
|
+
* <p>The annotation schema generated by the parsed annotation data.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
annotationFields?: Record<string, string> | undefined;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
export interface StartVariantImportResponse {
|
|
67
|
+
/**
|
|
68
|
+
* <p>The job's ID.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
jobId: string | undefined;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export interface UpdateVariantStoreRequest {
|
|
77
|
+
/**
|
|
78
|
+
* <p>A name for the store.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
name: string | undefined;
|
|
82
|
+
/**
|
|
83
|
+
* <p>A description for the store.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
description?: string | undefined;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export interface UpdateVariantStoreResponse {
|
|
92
|
+
/**
|
|
93
|
+
* <p>The store's ID.</p>
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
96
|
+
id: string | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* <p>The store's genome reference.</p>
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
reference: ReferenceItem | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* <p>The store's status.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
status: StoreStatus | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* <p>The store's name.</p>
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
name: string | undefined;
|
|
112
|
+
/**
|
|
113
|
+
* <p>The store's description.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
description: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>When the store was created.</p>
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
121
|
+
creationTime: Date | undefined;
|
|
122
|
+
/**
|
|
123
|
+
* <p>When the store was updated.</p>
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
updateTime: Date | undefined;
|
|
127
|
+
}
|
|
128
|
+
/**
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
export interface UpdateWorkflowRequest {
|
|
132
|
+
/**
|
|
133
|
+
* <p>The workflow's ID.</p>
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
id: string | undefined;
|
|
137
|
+
/**
|
|
138
|
+
* <p>A name for the workflow.</p>
|
|
139
|
+
* @public
|
|
140
|
+
*/
|
|
141
|
+
name?: string | undefined;
|
|
142
|
+
/**
|
|
143
|
+
* <p>A description for the workflow.</p>
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
description?: string | undefined;
|
|
147
|
+
/**
|
|
148
|
+
* <p>The default storage type for runs that use this workflow. STATIC storage allocates a fixed amount of storage. DYNAMIC storage dynamically scales the storage up or down, based on file system utilization. For more information about static and dynamic storage, see <a href="https://docs.aws.amazon.com/omics/latest/dev/Using-workflows.html">Running workflows</a> in the <i>Amazon Web Services HealthOmics User Guide</i>. </p>
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
storageType?: StorageType | undefined;
|
|
152
|
+
/**
|
|
153
|
+
* <p>The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version. </p>
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
storageCapacity?: number | undefined;
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* @public
|
|
160
|
+
*/
|
|
161
|
+
export interface UpdateWorkflowVersionRequest {
|
|
162
|
+
/**
|
|
163
|
+
* <p>The workflow's ID.</p>
|
|
164
|
+
* @public
|
|
165
|
+
*/
|
|
166
|
+
workflowId: string | undefined;
|
|
167
|
+
/**
|
|
168
|
+
* <p>The name of the workflow version.</p>
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
versionName: string | undefined;
|
|
172
|
+
/**
|
|
173
|
+
* <p>Description of the workflow version.</p>
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
description?: string | undefined;
|
|
177
|
+
/**
|
|
178
|
+
* <p>The default storage type for runs that use this workflow. STATIC storage allocates a fixed amount of storage. DYNAMIC storage dynamically scales the storage up or down, based on file system utilization. For more information about static and dynamic storage, see <a href="https://docs.aws.amazon.com/omics/latest/dev/Using-workflows.html">Running workflows</a> in the <i>Amazon Web Services HealthOmics User Guide</i>.</p>
|
|
179
|
+
* @public
|
|
180
|
+
*/
|
|
181
|
+
storageType?: StorageType | undefined;
|
|
182
|
+
/**
|
|
183
|
+
* <p>The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.</p>
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
storageCapacity?: number | undefined;
|
|
187
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListWorkflowVersionsCommandInput, ListWorkflowVersionsCommandOutput } from "../commands/ListWorkflowVersionsCommand";
|
|
3
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListWorkflowVersions: (config: OmicsPaginationConfiguration, input: ListWorkflowVersionsCommandInput, ...rest: any[]) => 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";
|
|
@@ -17,6 +17,7 @@ import { CreateSequenceStoreCommandInput, CreateSequenceStoreCommandOutput } fro
|
|
|
17
17
|
import { CreateShareCommandInput, CreateShareCommandOutput } from "../commands/CreateShareCommand";
|
|
18
18
|
import { CreateVariantStoreCommandInput, CreateVariantStoreCommandOutput } from "../commands/CreateVariantStoreCommand";
|
|
19
19
|
import { CreateWorkflowCommandInput, CreateWorkflowCommandOutput } from "../commands/CreateWorkflowCommand";
|
|
20
|
+
import { CreateWorkflowVersionCommandInput, CreateWorkflowVersionCommandOutput } from "../commands/CreateWorkflowVersionCommand";
|
|
20
21
|
import { DeleteAnnotationStoreCommandInput, DeleteAnnotationStoreCommandOutput } from "../commands/DeleteAnnotationStoreCommand";
|
|
21
22
|
import { DeleteAnnotationStoreVersionsCommandInput, DeleteAnnotationStoreVersionsCommandOutput } from "../commands/DeleteAnnotationStoreVersionsCommand";
|
|
22
23
|
import { DeleteReferenceCommandInput, DeleteReferenceCommandOutput } from "../commands/DeleteReferenceCommand";
|
|
@@ -29,6 +30,7 @@ import { DeleteSequenceStoreCommandInput, DeleteSequenceStoreCommandOutput } fro
|
|
|
29
30
|
import { DeleteShareCommandInput, DeleteShareCommandOutput } from "../commands/DeleteShareCommand";
|
|
30
31
|
import { DeleteVariantStoreCommandInput, DeleteVariantStoreCommandOutput } from "../commands/DeleteVariantStoreCommand";
|
|
31
32
|
import { DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput } from "../commands/DeleteWorkflowCommand";
|
|
33
|
+
import { DeleteWorkflowVersionCommandInput, DeleteWorkflowVersionCommandOutput } from "../commands/DeleteWorkflowVersionCommand";
|
|
32
34
|
import { GetAnnotationImportJobCommandInput, GetAnnotationImportJobCommandOutput } from "../commands/GetAnnotationImportJobCommand";
|
|
33
35
|
import { GetAnnotationStoreCommandInput, GetAnnotationStoreCommandOutput } from "../commands/GetAnnotationStoreCommand";
|
|
34
36
|
import { GetAnnotationStoreVersionCommandInput, GetAnnotationStoreVersionCommandOutput } from "../commands/GetAnnotationStoreVersionCommand";
|
|
@@ -51,6 +53,7 @@ import { GetShareCommandInput, GetShareCommandOutput } from "../commands/GetShar
|
|
|
51
53
|
import { GetVariantImportJobCommandInput, GetVariantImportJobCommandOutput } from "../commands/GetVariantImportJobCommand";
|
|
52
54
|
import { GetVariantStoreCommandInput, GetVariantStoreCommandOutput } from "../commands/GetVariantStoreCommand";
|
|
53
55
|
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "../commands/GetWorkflowCommand";
|
|
56
|
+
import { GetWorkflowVersionCommandInput, GetWorkflowVersionCommandOutput } from "../commands/GetWorkflowVersionCommand";
|
|
54
57
|
import { ListAnnotationImportJobsCommandInput, ListAnnotationImportJobsCommandOutput } from "../commands/ListAnnotationImportJobsCommand";
|
|
55
58
|
import { ListAnnotationStoresCommandInput, ListAnnotationStoresCommandOutput } from "../commands/ListAnnotationStoresCommand";
|
|
56
59
|
import { ListAnnotationStoreVersionsCommandInput, ListAnnotationStoreVersionsCommandOutput } from "../commands/ListAnnotationStoreVersionsCommand";
|
|
@@ -73,6 +76,7 @@ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } fro
|
|
|
73
76
|
import { ListVariantImportJobsCommandInput, ListVariantImportJobsCommandOutput } from "../commands/ListVariantImportJobsCommand";
|
|
74
77
|
import { ListVariantStoresCommandInput, ListVariantStoresCommandOutput } from "../commands/ListVariantStoresCommand";
|
|
75
78
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "../commands/ListWorkflowsCommand";
|
|
79
|
+
import { ListWorkflowVersionsCommandInput, ListWorkflowVersionsCommandOutput } from "../commands/ListWorkflowVersionsCommand";
|
|
76
80
|
import { PutS3AccessPolicyCommandInput, PutS3AccessPolicyCommandOutput } from "../commands/PutS3AccessPolicyCommand";
|
|
77
81
|
import { StartAnnotationImportJobCommandInput, StartAnnotationImportJobCommandOutput } from "../commands/StartAnnotationImportJobCommand";
|
|
78
82
|
import { StartReadSetActivationJobCommandInput, StartReadSetActivationJobCommandOutput } from "../commands/StartReadSetActivationJobCommand";
|
|
@@ -90,6 +94,7 @@ import { UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput } from "../comm
|
|
|
90
94
|
import { UpdateSequenceStoreCommandInput, UpdateSequenceStoreCommandOutput } from "../commands/UpdateSequenceStoreCommand";
|
|
91
95
|
import { UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput } from "../commands/UpdateVariantStoreCommand";
|
|
92
96
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "../commands/UpdateWorkflowCommand";
|
|
97
|
+
import { UpdateWorkflowVersionCommandInput, UpdateWorkflowVersionCommandOutput } from "../commands/UpdateWorkflowVersionCommand";
|
|
93
98
|
import { UploadReadSetPartCommandInput, UploadReadSetPartCommandOutput } from "../commands/UploadReadSetPartCommand";
|
|
94
99
|
/**
|
|
95
100
|
* serializeAws_restJson1AbortMultipartReadSetUploadCommand
|
|
@@ -159,6 +164,10 @@ export declare const se_CreateVariantStoreCommand: (input: CreateVariantStoreCom
|
|
|
159
164
|
* serializeAws_restJson1CreateWorkflowCommand
|
|
160
165
|
*/
|
|
161
166
|
export declare const se_CreateWorkflowCommand: (input: CreateWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
167
|
+
/**
|
|
168
|
+
* serializeAws_restJson1CreateWorkflowVersionCommand
|
|
169
|
+
*/
|
|
170
|
+
export declare const se_CreateWorkflowVersionCommand: (input: CreateWorkflowVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
162
171
|
/**
|
|
163
172
|
* serializeAws_restJson1DeleteAnnotationStoreCommand
|
|
164
173
|
*/
|
|
@@ -207,6 +216,10 @@ export declare const se_DeleteVariantStoreCommand: (input: DeleteVariantStoreCom
|
|
|
207
216
|
* serializeAws_restJson1DeleteWorkflowCommand
|
|
208
217
|
*/
|
|
209
218
|
export declare const se_DeleteWorkflowCommand: (input: DeleteWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
219
|
+
/**
|
|
220
|
+
* serializeAws_restJson1DeleteWorkflowVersionCommand
|
|
221
|
+
*/
|
|
222
|
+
export declare const se_DeleteWorkflowVersionCommand: (input: DeleteWorkflowVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
210
223
|
/**
|
|
211
224
|
* serializeAws_restJson1GetAnnotationImportJobCommand
|
|
212
225
|
*/
|
|
@@ -295,6 +308,10 @@ export declare const se_GetVariantStoreCommand: (input: GetVariantStoreCommandIn
|
|
|
295
308
|
* serializeAws_restJson1GetWorkflowCommand
|
|
296
309
|
*/
|
|
297
310
|
export declare const se_GetWorkflowCommand: (input: GetWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
311
|
+
/**
|
|
312
|
+
* serializeAws_restJson1GetWorkflowVersionCommand
|
|
313
|
+
*/
|
|
314
|
+
export declare const se_GetWorkflowVersionCommand: (input: GetWorkflowVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
298
315
|
/**
|
|
299
316
|
* serializeAws_restJson1ListAnnotationImportJobsCommand
|
|
300
317
|
*/
|
|
@@ -383,6 +400,10 @@ export declare const se_ListVariantStoresCommand: (input: ListVariantStoresComma
|
|
|
383
400
|
* serializeAws_restJson1ListWorkflowsCommand
|
|
384
401
|
*/
|
|
385
402
|
export declare const se_ListWorkflowsCommand: (input: ListWorkflowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
403
|
+
/**
|
|
404
|
+
* serializeAws_restJson1ListWorkflowVersionsCommand
|
|
405
|
+
*/
|
|
406
|
+
export declare const se_ListWorkflowVersionsCommand: (input: ListWorkflowVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
386
407
|
/**
|
|
387
408
|
* serializeAws_restJson1PutS3AccessPolicyCommand
|
|
388
409
|
*/
|
|
@@ -451,6 +472,10 @@ export declare const se_UpdateVariantStoreCommand: (input: UpdateVariantStoreCom
|
|
|
451
472
|
* serializeAws_restJson1UpdateWorkflowCommand
|
|
452
473
|
*/
|
|
453
474
|
export declare const se_UpdateWorkflowCommand: (input: UpdateWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
475
|
+
/**
|
|
476
|
+
* serializeAws_restJson1UpdateWorkflowVersionCommand
|
|
477
|
+
*/
|
|
478
|
+
export declare const se_UpdateWorkflowVersionCommand: (input: UpdateWorkflowVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
454
479
|
/**
|
|
455
480
|
* serializeAws_restJson1UploadReadSetPartCommand
|
|
456
481
|
*/
|
|
@@ -523,6 +548,10 @@ export declare const de_CreateVariantStoreCommand: (output: __HttpResponse, cont
|
|
|
523
548
|
* deserializeAws_restJson1CreateWorkflowCommand
|
|
524
549
|
*/
|
|
525
550
|
export declare const de_CreateWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkflowCommandOutput>;
|
|
551
|
+
/**
|
|
552
|
+
* deserializeAws_restJson1CreateWorkflowVersionCommand
|
|
553
|
+
*/
|
|
554
|
+
export declare const de_CreateWorkflowVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkflowVersionCommandOutput>;
|
|
526
555
|
/**
|
|
527
556
|
* deserializeAws_restJson1DeleteAnnotationStoreCommand
|
|
528
557
|
*/
|
|
@@ -571,6 +600,10 @@ export declare const de_DeleteVariantStoreCommand: (output: __HttpResponse, cont
|
|
|
571
600
|
* deserializeAws_restJson1DeleteWorkflowCommand
|
|
572
601
|
*/
|
|
573
602
|
export declare const de_DeleteWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWorkflowCommandOutput>;
|
|
603
|
+
/**
|
|
604
|
+
* deserializeAws_restJson1DeleteWorkflowVersionCommand
|
|
605
|
+
*/
|
|
606
|
+
export declare const de_DeleteWorkflowVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWorkflowVersionCommandOutput>;
|
|
574
607
|
/**
|
|
575
608
|
* deserializeAws_restJson1GetAnnotationImportJobCommand
|
|
576
609
|
*/
|
|
@@ -659,6 +692,10 @@ export declare const de_GetVariantStoreCommand: (output: __HttpResponse, context
|
|
|
659
692
|
* deserializeAws_restJson1GetWorkflowCommand
|
|
660
693
|
*/
|
|
661
694
|
export declare const de_GetWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkflowCommandOutput>;
|
|
695
|
+
/**
|
|
696
|
+
* deserializeAws_restJson1GetWorkflowVersionCommand
|
|
697
|
+
*/
|
|
698
|
+
export declare const de_GetWorkflowVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkflowVersionCommandOutput>;
|
|
662
699
|
/**
|
|
663
700
|
* deserializeAws_restJson1ListAnnotationImportJobsCommand
|
|
664
701
|
*/
|
|
@@ -747,6 +784,10 @@ export declare const de_ListVariantStoresCommand: (output: __HttpResponse, conte
|
|
|
747
784
|
* deserializeAws_restJson1ListWorkflowsCommand
|
|
748
785
|
*/
|
|
749
786
|
export declare const de_ListWorkflowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkflowsCommandOutput>;
|
|
787
|
+
/**
|
|
788
|
+
* deserializeAws_restJson1ListWorkflowVersionsCommand
|
|
789
|
+
*/
|
|
790
|
+
export declare const de_ListWorkflowVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkflowVersionsCommandOutput>;
|
|
750
791
|
/**
|
|
751
792
|
* deserializeAws_restJson1PutS3AccessPolicyCommand
|
|
752
793
|
*/
|
|
@@ -815,6 +856,10 @@ export declare const de_UpdateVariantStoreCommand: (output: __HttpResponse, cont
|
|
|
815
856
|
* deserializeAws_restJson1UpdateWorkflowCommand
|
|
816
857
|
*/
|
|
817
858
|
export declare const de_UpdateWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWorkflowCommandOutput>;
|
|
859
|
+
/**
|
|
860
|
+
* deserializeAws_restJson1UpdateWorkflowVersionCommand
|
|
861
|
+
*/
|
|
862
|
+
export declare const de_UpdateWorkflowVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWorkflowVersionCommandOutput>;
|
|
818
863
|
/**
|
|
819
864
|
* deserializeAws_restJson1UploadReadSetPartCommand
|
|
820
865
|
*/
|
|
@@ -67,6 +67,10 @@ import {
|
|
|
67
67
|
CreateWorkflowCommandInput,
|
|
68
68
|
CreateWorkflowCommandOutput,
|
|
69
69
|
} from "./commands/CreateWorkflowCommand";
|
|
70
|
+
import {
|
|
71
|
+
CreateWorkflowVersionCommandInput,
|
|
72
|
+
CreateWorkflowVersionCommandOutput,
|
|
73
|
+
} from "./commands/CreateWorkflowVersionCommand";
|
|
70
74
|
import {
|
|
71
75
|
DeleteAnnotationStoreCommandInput,
|
|
72
76
|
DeleteAnnotationStoreCommandOutput,
|
|
@@ -115,6 +119,10 @@ import {
|
|
|
115
119
|
DeleteWorkflowCommandInput,
|
|
116
120
|
DeleteWorkflowCommandOutput,
|
|
117
121
|
} from "./commands/DeleteWorkflowCommand";
|
|
122
|
+
import {
|
|
123
|
+
DeleteWorkflowVersionCommandInput,
|
|
124
|
+
DeleteWorkflowVersionCommandOutput,
|
|
125
|
+
} from "./commands/DeleteWorkflowVersionCommand";
|
|
118
126
|
import {
|
|
119
127
|
GetAnnotationImportJobCommandInput,
|
|
120
128
|
GetAnnotationImportJobCommandOutput,
|
|
@@ -203,6 +211,10 @@ import {
|
|
|
203
211
|
GetWorkflowCommandInput,
|
|
204
212
|
GetWorkflowCommandOutput,
|
|
205
213
|
} from "./commands/GetWorkflowCommand";
|
|
214
|
+
import {
|
|
215
|
+
GetWorkflowVersionCommandInput,
|
|
216
|
+
GetWorkflowVersionCommandOutput,
|
|
217
|
+
} from "./commands/GetWorkflowVersionCommand";
|
|
206
218
|
import {
|
|
207
219
|
ListAnnotationImportJobsCommandInput,
|
|
208
220
|
ListAnnotationImportJobsCommandOutput,
|
|
@@ -291,6 +303,10 @@ import {
|
|
|
291
303
|
ListWorkflowsCommandInput,
|
|
292
304
|
ListWorkflowsCommandOutput,
|
|
293
305
|
} from "./commands/ListWorkflowsCommand";
|
|
306
|
+
import {
|
|
307
|
+
ListWorkflowVersionsCommandInput,
|
|
308
|
+
ListWorkflowVersionsCommandOutput,
|
|
309
|
+
} from "./commands/ListWorkflowVersionsCommand";
|
|
294
310
|
import {
|
|
295
311
|
PutS3AccessPolicyCommandInput,
|
|
296
312
|
PutS3AccessPolicyCommandOutput,
|
|
@@ -359,6 +375,10 @@ import {
|
|
|
359
375
|
UpdateWorkflowCommandInput,
|
|
360
376
|
UpdateWorkflowCommandOutput,
|
|
361
377
|
} from "./commands/UpdateWorkflowCommand";
|
|
378
|
+
import {
|
|
379
|
+
UpdateWorkflowVersionCommandInput,
|
|
380
|
+
UpdateWorkflowVersionCommandOutput,
|
|
381
|
+
} from "./commands/UpdateWorkflowVersionCommand";
|
|
362
382
|
import {
|
|
363
383
|
UploadReadSetPartCommandInput,
|
|
364
384
|
UploadReadSetPartCommandOutput,
|
|
@@ -586,6 +606,19 @@ export interface Omics {
|
|
|
586
606
|
options: __HttpHandlerOptions,
|
|
587
607
|
cb: (err: any, data?: CreateWorkflowCommandOutput) => void
|
|
588
608
|
): void;
|
|
609
|
+
createWorkflowVersion(
|
|
610
|
+
args: CreateWorkflowVersionCommandInput,
|
|
611
|
+
options?: __HttpHandlerOptions
|
|
612
|
+
): Promise<CreateWorkflowVersionCommandOutput>;
|
|
613
|
+
createWorkflowVersion(
|
|
614
|
+
args: CreateWorkflowVersionCommandInput,
|
|
615
|
+
cb: (err: any, data?: CreateWorkflowVersionCommandOutput) => void
|
|
616
|
+
): void;
|
|
617
|
+
createWorkflowVersion(
|
|
618
|
+
args: CreateWorkflowVersionCommandInput,
|
|
619
|
+
options: __HttpHandlerOptions,
|
|
620
|
+
cb: (err: any, data?: CreateWorkflowVersionCommandOutput) => void
|
|
621
|
+
): void;
|
|
589
622
|
deleteAnnotationStore(
|
|
590
623
|
args: DeleteAnnotationStoreCommandInput,
|
|
591
624
|
options?: __HttpHandlerOptions
|
|
@@ -742,6 +775,19 @@ export interface Omics {
|
|
|
742
775
|
options: __HttpHandlerOptions,
|
|
743
776
|
cb: (err: any, data?: DeleteWorkflowCommandOutput) => void
|
|
744
777
|
): void;
|
|
778
|
+
deleteWorkflowVersion(
|
|
779
|
+
args: DeleteWorkflowVersionCommandInput,
|
|
780
|
+
options?: __HttpHandlerOptions
|
|
781
|
+
): Promise<DeleteWorkflowVersionCommandOutput>;
|
|
782
|
+
deleteWorkflowVersion(
|
|
783
|
+
args: DeleteWorkflowVersionCommandInput,
|
|
784
|
+
cb: (err: any, data?: DeleteWorkflowVersionCommandOutput) => void
|
|
785
|
+
): void;
|
|
786
|
+
deleteWorkflowVersion(
|
|
787
|
+
args: DeleteWorkflowVersionCommandInput,
|
|
788
|
+
options: __HttpHandlerOptions,
|
|
789
|
+
cb: (err: any, data?: DeleteWorkflowVersionCommandOutput) => void
|
|
790
|
+
): void;
|
|
745
791
|
getAnnotationImportJob(
|
|
746
792
|
args: GetAnnotationImportJobCommandInput,
|
|
747
793
|
options?: __HttpHandlerOptions
|
|
@@ -1028,6 +1074,19 @@ export interface Omics {
|
|
|
1028
1074
|
options: __HttpHandlerOptions,
|
|
1029
1075
|
cb: (err: any, data?: GetWorkflowCommandOutput) => void
|
|
1030
1076
|
): void;
|
|
1077
|
+
getWorkflowVersion(
|
|
1078
|
+
args: GetWorkflowVersionCommandInput,
|
|
1079
|
+
options?: __HttpHandlerOptions
|
|
1080
|
+
): Promise<GetWorkflowVersionCommandOutput>;
|
|
1081
|
+
getWorkflowVersion(
|
|
1082
|
+
args: GetWorkflowVersionCommandInput,
|
|
1083
|
+
cb: (err: any, data?: GetWorkflowVersionCommandOutput) => void
|
|
1084
|
+
): void;
|
|
1085
|
+
getWorkflowVersion(
|
|
1086
|
+
args: GetWorkflowVersionCommandInput,
|
|
1087
|
+
options: __HttpHandlerOptions,
|
|
1088
|
+
cb: (err: any, data?: GetWorkflowVersionCommandOutput) => void
|
|
1089
|
+
): void;
|
|
1031
1090
|
listAnnotationImportJobs(): Promise<ListAnnotationImportJobsCommandOutput>;
|
|
1032
1091
|
listAnnotationImportJobs(
|
|
1033
1092
|
args: ListAnnotationImportJobsCommandInput,
|
|
@@ -1324,6 +1383,19 @@ export interface Omics {
|
|
|
1324
1383
|
options: __HttpHandlerOptions,
|
|
1325
1384
|
cb: (err: any, data?: ListWorkflowsCommandOutput) => void
|
|
1326
1385
|
): void;
|
|
1386
|
+
listWorkflowVersions(
|
|
1387
|
+
args: ListWorkflowVersionsCommandInput,
|
|
1388
|
+
options?: __HttpHandlerOptions
|
|
1389
|
+
): Promise<ListWorkflowVersionsCommandOutput>;
|
|
1390
|
+
listWorkflowVersions(
|
|
1391
|
+
args: ListWorkflowVersionsCommandInput,
|
|
1392
|
+
cb: (err: any, data?: ListWorkflowVersionsCommandOutput) => void
|
|
1393
|
+
): void;
|
|
1394
|
+
listWorkflowVersions(
|
|
1395
|
+
args: ListWorkflowVersionsCommandInput,
|
|
1396
|
+
options: __HttpHandlerOptions,
|
|
1397
|
+
cb: (err: any, data?: ListWorkflowVersionsCommandOutput) => void
|
|
1398
|
+
): void;
|
|
1327
1399
|
putS3AccessPolicy(
|
|
1328
1400
|
args: PutS3AccessPolicyCommandInput,
|
|
1329
1401
|
options?: __HttpHandlerOptions
|
|
@@ -1545,6 +1617,19 @@ export interface Omics {
|
|
|
1545
1617
|
options: __HttpHandlerOptions,
|
|
1546
1618
|
cb: (err: any, data?: UpdateWorkflowCommandOutput) => void
|
|
1547
1619
|
): void;
|
|
1620
|
+
updateWorkflowVersion(
|
|
1621
|
+
args: UpdateWorkflowVersionCommandInput,
|
|
1622
|
+
options?: __HttpHandlerOptions
|
|
1623
|
+
): Promise<UpdateWorkflowVersionCommandOutput>;
|
|
1624
|
+
updateWorkflowVersion(
|
|
1625
|
+
args: UpdateWorkflowVersionCommandInput,
|
|
1626
|
+
cb: (err: any, data?: UpdateWorkflowVersionCommandOutput) => void
|
|
1627
|
+
): void;
|
|
1628
|
+
updateWorkflowVersion(
|
|
1629
|
+
args: UpdateWorkflowVersionCommandInput,
|
|
1630
|
+
options: __HttpHandlerOptions,
|
|
1631
|
+
cb: (err: any, data?: UpdateWorkflowVersionCommandOutput) => void
|
|
1632
|
+
): void;
|
|
1548
1633
|
uploadReadSetPart(
|
|
1549
1634
|
args: UploadReadSetPartCommandInput,
|
|
1550
1635
|
options?: __HttpHandlerOptions
|
|
@@ -114,6 +114,10 @@ import {
|
|
|
114
114
|
CreateWorkflowCommandInput,
|
|
115
115
|
CreateWorkflowCommandOutput,
|
|
116
116
|
} from "./commands/CreateWorkflowCommand";
|
|
117
|
+
import {
|
|
118
|
+
CreateWorkflowVersionCommandInput,
|
|
119
|
+
CreateWorkflowVersionCommandOutput,
|
|
120
|
+
} from "./commands/CreateWorkflowVersionCommand";
|
|
117
121
|
import {
|
|
118
122
|
DeleteAnnotationStoreCommandInput,
|
|
119
123
|
DeleteAnnotationStoreCommandOutput,
|
|
@@ -162,6 +166,10 @@ import {
|
|
|
162
166
|
DeleteWorkflowCommandInput,
|
|
163
167
|
DeleteWorkflowCommandOutput,
|
|
164
168
|
} from "./commands/DeleteWorkflowCommand";
|
|
169
|
+
import {
|
|
170
|
+
DeleteWorkflowVersionCommandInput,
|
|
171
|
+
DeleteWorkflowVersionCommandOutput,
|
|
172
|
+
} from "./commands/DeleteWorkflowVersionCommand";
|
|
165
173
|
import {
|
|
166
174
|
GetAnnotationImportJobCommandInput,
|
|
167
175
|
GetAnnotationImportJobCommandOutput,
|
|
@@ -250,6 +258,10 @@ import {
|
|
|
250
258
|
GetWorkflowCommandInput,
|
|
251
259
|
GetWorkflowCommandOutput,
|
|
252
260
|
} from "./commands/GetWorkflowCommand";
|
|
261
|
+
import {
|
|
262
|
+
GetWorkflowVersionCommandInput,
|
|
263
|
+
GetWorkflowVersionCommandOutput,
|
|
264
|
+
} from "./commands/GetWorkflowVersionCommand";
|
|
253
265
|
import {
|
|
254
266
|
ListAnnotationImportJobsCommandInput,
|
|
255
267
|
ListAnnotationImportJobsCommandOutput,
|
|
@@ -338,6 +350,10 @@ import {
|
|
|
338
350
|
ListWorkflowsCommandInput,
|
|
339
351
|
ListWorkflowsCommandOutput,
|
|
340
352
|
} from "./commands/ListWorkflowsCommand";
|
|
353
|
+
import {
|
|
354
|
+
ListWorkflowVersionsCommandInput,
|
|
355
|
+
ListWorkflowVersionsCommandOutput,
|
|
356
|
+
} from "./commands/ListWorkflowVersionsCommand";
|
|
341
357
|
import {
|
|
342
358
|
PutS3AccessPolicyCommandInput,
|
|
343
359
|
PutS3AccessPolicyCommandOutput,
|
|
@@ -406,6 +422,10 @@ import {
|
|
|
406
422
|
UpdateWorkflowCommandInput,
|
|
407
423
|
UpdateWorkflowCommandOutput,
|
|
408
424
|
} from "./commands/UpdateWorkflowCommand";
|
|
425
|
+
import {
|
|
426
|
+
UpdateWorkflowVersionCommandInput,
|
|
427
|
+
UpdateWorkflowVersionCommandOutput,
|
|
428
|
+
} from "./commands/UpdateWorkflowVersionCommand";
|
|
409
429
|
import {
|
|
410
430
|
UploadReadSetPartCommandInput,
|
|
411
431
|
UploadReadSetPartCommandOutput,
|
|
@@ -435,6 +455,7 @@ export type ServiceInputTypes =
|
|
|
435
455
|
| CreateShareCommandInput
|
|
436
456
|
| CreateVariantStoreCommandInput
|
|
437
457
|
| CreateWorkflowCommandInput
|
|
458
|
+
| CreateWorkflowVersionCommandInput
|
|
438
459
|
| DeleteAnnotationStoreCommandInput
|
|
439
460
|
| DeleteAnnotationStoreVersionsCommandInput
|
|
440
461
|
| DeleteReferenceCommandInput
|
|
@@ -447,6 +468,7 @@ export type ServiceInputTypes =
|
|
|
447
468
|
| DeleteShareCommandInput
|
|
448
469
|
| DeleteVariantStoreCommandInput
|
|
449
470
|
| DeleteWorkflowCommandInput
|
|
471
|
+
| DeleteWorkflowVersionCommandInput
|
|
450
472
|
| GetAnnotationImportJobCommandInput
|
|
451
473
|
| GetAnnotationStoreCommandInput
|
|
452
474
|
| GetAnnotationStoreVersionCommandInput
|
|
@@ -469,6 +491,7 @@ export type ServiceInputTypes =
|
|
|
469
491
|
| GetVariantImportJobCommandInput
|
|
470
492
|
| GetVariantStoreCommandInput
|
|
471
493
|
| GetWorkflowCommandInput
|
|
494
|
+
| GetWorkflowVersionCommandInput
|
|
472
495
|
| ListAnnotationImportJobsCommandInput
|
|
473
496
|
| ListAnnotationStoreVersionsCommandInput
|
|
474
497
|
| ListAnnotationStoresCommandInput
|
|
@@ -490,6 +513,7 @@ export type ServiceInputTypes =
|
|
|
490
513
|
| ListTagsForResourceCommandInput
|
|
491
514
|
| ListVariantImportJobsCommandInput
|
|
492
515
|
| ListVariantStoresCommandInput
|
|
516
|
+
| ListWorkflowVersionsCommandInput
|
|
493
517
|
| ListWorkflowsCommandInput
|
|
494
518
|
| PutS3AccessPolicyCommandInput
|
|
495
519
|
| StartAnnotationImportJobCommandInput
|
|
@@ -508,6 +532,7 @@ export type ServiceInputTypes =
|
|
|
508
532
|
| UpdateSequenceStoreCommandInput
|
|
509
533
|
| UpdateVariantStoreCommandInput
|
|
510
534
|
| UpdateWorkflowCommandInput
|
|
535
|
+
| UpdateWorkflowVersionCommandInput
|
|
511
536
|
| UploadReadSetPartCommandInput;
|
|
512
537
|
export type ServiceOutputTypes =
|
|
513
538
|
| AbortMultipartReadSetUploadCommandOutput
|
|
@@ -527,6 +552,7 @@ export type ServiceOutputTypes =
|
|
|
527
552
|
| CreateShareCommandOutput
|
|
528
553
|
| CreateVariantStoreCommandOutput
|
|
529
554
|
| CreateWorkflowCommandOutput
|
|
555
|
+
| CreateWorkflowVersionCommandOutput
|
|
530
556
|
| DeleteAnnotationStoreCommandOutput
|
|
531
557
|
| DeleteAnnotationStoreVersionsCommandOutput
|
|
532
558
|
| DeleteReferenceCommandOutput
|
|
@@ -539,6 +565,7 @@ export type ServiceOutputTypes =
|
|
|
539
565
|
| DeleteShareCommandOutput
|
|
540
566
|
| DeleteVariantStoreCommandOutput
|
|
541
567
|
| DeleteWorkflowCommandOutput
|
|
568
|
+
| DeleteWorkflowVersionCommandOutput
|
|
542
569
|
| GetAnnotationImportJobCommandOutput
|
|
543
570
|
| GetAnnotationStoreCommandOutput
|
|
544
571
|
| GetAnnotationStoreVersionCommandOutput
|
|
@@ -561,6 +588,7 @@ export type ServiceOutputTypes =
|
|
|
561
588
|
| GetVariantImportJobCommandOutput
|
|
562
589
|
| GetVariantStoreCommandOutput
|
|
563
590
|
| GetWorkflowCommandOutput
|
|
591
|
+
| GetWorkflowVersionCommandOutput
|
|
564
592
|
| ListAnnotationImportJobsCommandOutput
|
|
565
593
|
| ListAnnotationStoreVersionsCommandOutput
|
|
566
594
|
| ListAnnotationStoresCommandOutput
|
|
@@ -582,6 +610,7 @@ export type ServiceOutputTypes =
|
|
|
582
610
|
| ListTagsForResourceCommandOutput
|
|
583
611
|
| ListVariantImportJobsCommandOutput
|
|
584
612
|
| ListVariantStoresCommandOutput
|
|
613
|
+
| ListWorkflowVersionsCommandOutput
|
|
585
614
|
| ListWorkflowsCommandOutput
|
|
586
615
|
| PutS3AccessPolicyCommandOutput
|
|
587
616
|
| StartAnnotationImportJobCommandOutput
|
|
@@ -600,6 +629,7 @@ export type ServiceOutputTypes =
|
|
|
600
629
|
| UpdateSequenceStoreCommandOutput
|
|
601
630
|
| UpdateVariantStoreCommandOutput
|
|
602
631
|
| UpdateWorkflowCommandOutput
|
|
632
|
+
| UpdateWorkflowVersionCommandOutput
|
|
603
633
|
| UploadReadSetPartCommandOutput;
|
|
604
634
|
export interface ClientDefaults
|
|
605
635
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateWorkflowVersionRequest,
|
|
5
|
+
CreateWorkflowVersionResponse,
|
|
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 CreateWorkflowVersionCommandInput
|
|
15
|
+
extends CreateWorkflowVersionRequest {}
|
|
16
|
+
export interface CreateWorkflowVersionCommandOutput
|
|
17
|
+
extends CreateWorkflowVersionResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateWorkflowVersionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateWorkflowVersionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateWorkflowVersionCommandInput,
|
|
24
|
+
CreateWorkflowVersionCommandOutput,
|
|
25
|
+
OmicsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateWorkflowVersionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateWorkflowVersionCommandInput,
|
|
33
|
+
CreateWorkflowVersionCommandOutput,
|
|
34
|
+
OmicsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateWorkflowVersionCommand extends CreateWorkflowVersionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateWorkflowVersionRequest;
|
|
44
|
+
output: CreateWorkflowVersionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateWorkflowVersionCommandInput;
|
|
48
|
+
output: CreateWorkflowVersionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|