@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
|
@@ -74,6 +74,10 @@ import {
|
|
|
74
74
|
CreateWorkflowCommandInput,
|
|
75
75
|
CreateWorkflowCommandOutput,
|
|
76
76
|
} from "../commands/CreateWorkflowCommand";
|
|
77
|
+
import {
|
|
78
|
+
CreateWorkflowVersionCommandInput,
|
|
79
|
+
CreateWorkflowVersionCommandOutput,
|
|
80
|
+
} from "../commands/CreateWorkflowVersionCommand";
|
|
77
81
|
import {
|
|
78
82
|
DeleteAnnotationStoreCommandInput,
|
|
79
83
|
DeleteAnnotationStoreCommandOutput,
|
|
@@ -122,6 +126,10 @@ import {
|
|
|
122
126
|
DeleteWorkflowCommandInput,
|
|
123
127
|
DeleteWorkflowCommandOutput,
|
|
124
128
|
} from "../commands/DeleteWorkflowCommand";
|
|
129
|
+
import {
|
|
130
|
+
DeleteWorkflowVersionCommandInput,
|
|
131
|
+
DeleteWorkflowVersionCommandOutput,
|
|
132
|
+
} from "../commands/DeleteWorkflowVersionCommand";
|
|
125
133
|
import {
|
|
126
134
|
GetAnnotationImportJobCommandInput,
|
|
127
135
|
GetAnnotationImportJobCommandOutput,
|
|
@@ -210,6 +218,10 @@ import {
|
|
|
210
218
|
GetWorkflowCommandInput,
|
|
211
219
|
GetWorkflowCommandOutput,
|
|
212
220
|
} from "../commands/GetWorkflowCommand";
|
|
221
|
+
import {
|
|
222
|
+
GetWorkflowVersionCommandInput,
|
|
223
|
+
GetWorkflowVersionCommandOutput,
|
|
224
|
+
} from "../commands/GetWorkflowVersionCommand";
|
|
213
225
|
import {
|
|
214
226
|
ListAnnotationImportJobsCommandInput,
|
|
215
227
|
ListAnnotationImportJobsCommandOutput,
|
|
@@ -298,6 +310,10 @@ import {
|
|
|
298
310
|
ListWorkflowsCommandInput,
|
|
299
311
|
ListWorkflowsCommandOutput,
|
|
300
312
|
} from "../commands/ListWorkflowsCommand";
|
|
313
|
+
import {
|
|
314
|
+
ListWorkflowVersionsCommandInput,
|
|
315
|
+
ListWorkflowVersionsCommandOutput,
|
|
316
|
+
} from "../commands/ListWorkflowVersionsCommand";
|
|
301
317
|
import {
|
|
302
318
|
PutS3AccessPolicyCommandInput,
|
|
303
319
|
PutS3AccessPolicyCommandOutput,
|
|
@@ -366,6 +382,10 @@ import {
|
|
|
366
382
|
UpdateWorkflowCommandInput,
|
|
367
383
|
UpdateWorkflowCommandOutput,
|
|
368
384
|
} from "../commands/UpdateWorkflowCommand";
|
|
385
|
+
import {
|
|
386
|
+
UpdateWorkflowVersionCommandInput,
|
|
387
|
+
UpdateWorkflowVersionCommandOutput,
|
|
388
|
+
} from "../commands/UpdateWorkflowVersionCommand";
|
|
369
389
|
import {
|
|
370
390
|
UploadReadSetPartCommandInput,
|
|
371
391
|
UploadReadSetPartCommandOutput,
|
|
@@ -438,6 +458,10 @@ export declare const se_CreateWorkflowCommand: (
|
|
|
438
458
|
input: CreateWorkflowCommandInput,
|
|
439
459
|
context: __SerdeContext
|
|
440
460
|
) => Promise<__HttpRequest>;
|
|
461
|
+
export declare const se_CreateWorkflowVersionCommand: (
|
|
462
|
+
input: CreateWorkflowVersionCommandInput,
|
|
463
|
+
context: __SerdeContext
|
|
464
|
+
) => Promise<__HttpRequest>;
|
|
441
465
|
export declare const se_DeleteAnnotationStoreCommand: (
|
|
442
466
|
input: DeleteAnnotationStoreCommandInput,
|
|
443
467
|
context: __SerdeContext
|
|
@@ -486,6 +510,10 @@ export declare const se_DeleteWorkflowCommand: (
|
|
|
486
510
|
input: DeleteWorkflowCommandInput,
|
|
487
511
|
context: __SerdeContext
|
|
488
512
|
) => Promise<__HttpRequest>;
|
|
513
|
+
export declare const se_DeleteWorkflowVersionCommand: (
|
|
514
|
+
input: DeleteWorkflowVersionCommandInput,
|
|
515
|
+
context: __SerdeContext
|
|
516
|
+
) => Promise<__HttpRequest>;
|
|
489
517
|
export declare const se_GetAnnotationImportJobCommand: (
|
|
490
518
|
input: GetAnnotationImportJobCommandInput,
|
|
491
519
|
context: __SerdeContext
|
|
@@ -574,6 +602,10 @@ export declare const se_GetWorkflowCommand: (
|
|
|
574
602
|
input: GetWorkflowCommandInput,
|
|
575
603
|
context: __SerdeContext
|
|
576
604
|
) => Promise<__HttpRequest>;
|
|
605
|
+
export declare const se_GetWorkflowVersionCommand: (
|
|
606
|
+
input: GetWorkflowVersionCommandInput,
|
|
607
|
+
context: __SerdeContext
|
|
608
|
+
) => Promise<__HttpRequest>;
|
|
577
609
|
export declare const se_ListAnnotationImportJobsCommand: (
|
|
578
610
|
input: ListAnnotationImportJobsCommandInput,
|
|
579
611
|
context: __SerdeContext
|
|
@@ -662,6 +694,10 @@ export declare const se_ListWorkflowsCommand: (
|
|
|
662
694
|
input: ListWorkflowsCommandInput,
|
|
663
695
|
context: __SerdeContext
|
|
664
696
|
) => Promise<__HttpRequest>;
|
|
697
|
+
export declare const se_ListWorkflowVersionsCommand: (
|
|
698
|
+
input: ListWorkflowVersionsCommandInput,
|
|
699
|
+
context: __SerdeContext
|
|
700
|
+
) => Promise<__HttpRequest>;
|
|
665
701
|
export declare const se_PutS3AccessPolicyCommand: (
|
|
666
702
|
input: PutS3AccessPolicyCommandInput,
|
|
667
703
|
context: __SerdeContext
|
|
@@ -730,6 +766,10 @@ export declare const se_UpdateWorkflowCommand: (
|
|
|
730
766
|
input: UpdateWorkflowCommandInput,
|
|
731
767
|
context: __SerdeContext
|
|
732
768
|
) => Promise<__HttpRequest>;
|
|
769
|
+
export declare const se_UpdateWorkflowVersionCommand: (
|
|
770
|
+
input: UpdateWorkflowVersionCommandInput,
|
|
771
|
+
context: __SerdeContext
|
|
772
|
+
) => Promise<__HttpRequest>;
|
|
733
773
|
export declare const se_UploadReadSetPartCommand: (
|
|
734
774
|
input: UploadReadSetPartCommandInput,
|
|
735
775
|
context: __SerdeContext
|
|
@@ -802,6 +842,10 @@ export declare const de_CreateWorkflowCommand: (
|
|
|
802
842
|
output: __HttpResponse,
|
|
803
843
|
context: __SerdeContext
|
|
804
844
|
) => Promise<CreateWorkflowCommandOutput>;
|
|
845
|
+
export declare const de_CreateWorkflowVersionCommand: (
|
|
846
|
+
output: __HttpResponse,
|
|
847
|
+
context: __SerdeContext
|
|
848
|
+
) => Promise<CreateWorkflowVersionCommandOutput>;
|
|
805
849
|
export declare const de_DeleteAnnotationStoreCommand: (
|
|
806
850
|
output: __HttpResponse,
|
|
807
851
|
context: __SerdeContext
|
|
@@ -850,6 +894,10 @@ export declare const de_DeleteWorkflowCommand: (
|
|
|
850
894
|
output: __HttpResponse,
|
|
851
895
|
context: __SerdeContext
|
|
852
896
|
) => Promise<DeleteWorkflowCommandOutput>;
|
|
897
|
+
export declare const de_DeleteWorkflowVersionCommand: (
|
|
898
|
+
output: __HttpResponse,
|
|
899
|
+
context: __SerdeContext
|
|
900
|
+
) => Promise<DeleteWorkflowVersionCommandOutput>;
|
|
853
901
|
export declare const de_GetAnnotationImportJobCommand: (
|
|
854
902
|
output: __HttpResponse,
|
|
855
903
|
context: __SerdeContext
|
|
@@ -938,6 +986,10 @@ export declare const de_GetWorkflowCommand: (
|
|
|
938
986
|
output: __HttpResponse,
|
|
939
987
|
context: __SerdeContext
|
|
940
988
|
) => Promise<GetWorkflowCommandOutput>;
|
|
989
|
+
export declare const de_GetWorkflowVersionCommand: (
|
|
990
|
+
output: __HttpResponse,
|
|
991
|
+
context: __SerdeContext
|
|
992
|
+
) => Promise<GetWorkflowVersionCommandOutput>;
|
|
941
993
|
export declare const de_ListAnnotationImportJobsCommand: (
|
|
942
994
|
output: __HttpResponse,
|
|
943
995
|
context: __SerdeContext
|
|
@@ -1026,6 +1078,10 @@ export declare const de_ListWorkflowsCommand: (
|
|
|
1026
1078
|
output: __HttpResponse,
|
|
1027
1079
|
context: __SerdeContext
|
|
1028
1080
|
) => Promise<ListWorkflowsCommandOutput>;
|
|
1081
|
+
export declare const de_ListWorkflowVersionsCommand: (
|
|
1082
|
+
output: __HttpResponse,
|
|
1083
|
+
context: __SerdeContext
|
|
1084
|
+
) => Promise<ListWorkflowVersionsCommandOutput>;
|
|
1029
1085
|
export declare const de_PutS3AccessPolicyCommand: (
|
|
1030
1086
|
output: __HttpResponse,
|
|
1031
1087
|
context: __SerdeContext
|
|
@@ -1094,6 +1150,10 @@ export declare const de_UpdateWorkflowCommand: (
|
|
|
1094
1150
|
output: __HttpResponse,
|
|
1095
1151
|
context: __SerdeContext
|
|
1096
1152
|
) => Promise<UpdateWorkflowCommandOutput>;
|
|
1153
|
+
export declare const de_UpdateWorkflowVersionCommand: (
|
|
1154
|
+
output: __HttpResponse,
|
|
1155
|
+
context: __SerdeContext
|
|
1156
|
+
) => Promise<UpdateWorkflowVersionCommandOutput>;
|
|
1097
1157
|
export declare const de_UploadReadSetPartCommand: (
|
|
1098
1158
|
output: __HttpResponse,
|
|
1099
1159
|
context: __SerdeContext
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetWorkflowVersionCommandInput } from "../commands/GetWorkflowVersionCommand";
|
|
3
|
+
import { OmicsClient } from "../OmicsClient";
|
|
4
|
+
export declare const waitForWorkflowVersionActive: (
|
|
5
|
+
params: WaiterConfiguration<OmicsClient>,
|
|
6
|
+
input: GetWorkflowVersionCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilWorkflowVersionActive: (
|
|
9
|
+
params: WaiterConfiguration<OmicsClient>,
|
|
10
|
+
input: GetWorkflowVersionCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetWorkflowVersionCommandInput } from "../commands/GetWorkflowVersionCommand";
|
|
3
|
+
import { OmicsClient } from "../OmicsClient";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until a workflow version is active.
|
|
6
|
+
* @deprecated Use waitUntilWorkflowVersionActive instead. waitForWorkflowVersionActive does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForWorkflowVersionActive: (params: WaiterConfiguration<OmicsClient>, input: GetWorkflowVersionCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until a workflow version is active.
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetWorkflowVersionCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilWorkflowVersionActive: (params: WaiterConfiguration<OmicsClient>, input: GetWorkflowVersionCommandInput) => Promise<WaiterResult>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-omics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.796.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-omics",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.796.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.796.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.796.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
30
30
|
"@aws-sdk/types": "3.775.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.787.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.796.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.0",
|
|
35
35
|
"@smithy/core": "^3.2.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.2",
|