@aws-sdk/client-omics 3.331.0 → 3.332.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 +56 -8
- package/dist-cjs/Omics.js +12 -0
- package/dist-cjs/commands/AbortMultipartReadSetUploadCommand.js +45 -0
- package/dist-cjs/commands/CompleteMultipartReadSetUploadCommand.js +45 -0
- package/dist-cjs/commands/CreateMultipartReadSetUploadCommand.js +45 -0
- package/dist-cjs/commands/ListMultipartReadSetUploadsCommand.js +45 -0
- package/dist-cjs/commands/ListReadSetUploadPartsCommand.js +45 -0
- package/dist-cjs/commands/UploadReadSetPartCommand.js +46 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +83 -55
- package/dist-cjs/pagination/ListMultipartReadSetUploadsPaginator.js +29 -0
- package/dist-cjs/pagination/ListReadSetUploadPartsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +625 -3
- package/dist-es/Omics.js +12 -0
- package/dist-es/commands/AbortMultipartReadSetUploadCommand.js +41 -0
- package/dist-es/commands/CompleteMultipartReadSetUploadCommand.js +41 -0
- package/dist-es/commands/CreateMultipartReadSetUploadCommand.js +41 -0
- package/dist-es/commands/ListMultipartReadSetUploadsCommand.js +41 -0
- package/dist-es/commands/ListReadSetUploadPartsCommand.js +41 -0
- package/dist-es/commands/UploadReadSetPartCommand.js +42 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +78 -52
- package/dist-es/pagination/ListMultipartReadSetUploadsPaginator.js +25 -0
- package/dist-es/pagination/ListReadSetUploadPartsPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +611 -1
- package/dist-types/Omics.d.ts +43 -1
- package/dist-types/OmicsClient.d.ts +9 -3
- package/dist-types/commands/AbortMultipartReadSetUploadCommand.d.ts +96 -0
- package/dist-types/commands/CompleteMultipartReadSetUploadCommand.d.ts +105 -0
- package/dist-types/commands/CreateMultipartReadSetUploadCommand.d.ts +120 -0
- package/dist-types/commands/CreateRunGroupCommand.d.ts +1 -0
- package/dist-types/commands/CreateSequenceStoreCommand.d.ts +2 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +1 -0
- package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +3 -0
- package/dist-types/commands/GetReadSetMetadataCommand.d.ts +1 -0
- package/dist-types/commands/GetRunCommand.d.ts +1 -0
- package/dist-types/commands/GetRunGroupCommand.d.ts +1 -0
- package/dist-types/commands/GetRunTaskCommand.d.ts +1 -0
- package/dist-types/commands/GetSequenceStoreCommand.d.ts +1 -0
- package/dist-types/commands/GetVariantImportJobCommand.d.ts +3 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +4 -0
- package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +3 -0
- package/dist-types/commands/ListMultipartReadSetUploadsCommand.d.ts +116 -0
- package/dist-types/commands/ListReadSetUploadPartsCommand.d.ts +115 -0
- package/dist-types/commands/ListReadSetsCommand.d.ts +4 -0
- package/dist-types/commands/ListRunGroupsCommand.d.ts +1 -0
- package/dist-types/commands/ListRunTasksCommand.d.ts +1 -0
- package/dist-types/commands/ListRunsCommand.d.ts +1 -0
- package/dist-types/commands/ListSequenceStoresCommand.d.ts +1 -0
- package/dist-types/commands/ListVariantImportJobsCommand.d.ts +3 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +3 -0
- package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +3 -0
- package/dist-types/commands/StartVariantImportJobCommand.d.ts +3 -0
- package/dist-types/commands/UpdateRunGroupCommand.d.ts +1 -0
- package/dist-types/commands/UploadReadSetPartCommand.d.ts +111 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +825 -119
- package/dist-types/pagination/ListMultipartReadSetUploadsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListReadSetUploadPartsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/Omics.d.ts +102 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +38 -2
- package/dist-types/ts3.4/commands/AbortMultipartReadSetUploadCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CompleteMultipartReadSetUploadCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateMultipartReadSetUploadCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListMultipartReadSetUploadsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListReadSetUploadPartsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UploadReadSetPartCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +202 -52
- package/dist-types/ts3.4/pagination/ListMultipartReadSetUploadsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListReadSetUploadPartsPaginator.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 +72 -0
- package/package.json +5 -5
|
@@ -6,6 +6,10 @@ import {
|
|
|
6
6
|
SdkStreamSerdeContext as __SdkStreamSerdeContext,
|
|
7
7
|
SerdeContext as __SerdeContext,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
AbortMultipartReadSetUploadCommandInput,
|
|
11
|
+
AbortMultipartReadSetUploadCommandOutput,
|
|
12
|
+
} from "../commands/AbortMultipartReadSetUploadCommand";
|
|
9
13
|
import {
|
|
10
14
|
BatchDeleteReadSetCommandInput,
|
|
11
15
|
BatchDeleteReadSetCommandOutput,
|
|
@@ -22,10 +26,18 @@ import {
|
|
|
22
26
|
CancelVariantImportJobCommandInput,
|
|
23
27
|
CancelVariantImportJobCommandOutput,
|
|
24
28
|
} from "../commands/CancelVariantImportJobCommand";
|
|
29
|
+
import {
|
|
30
|
+
CompleteMultipartReadSetUploadCommandInput,
|
|
31
|
+
CompleteMultipartReadSetUploadCommandOutput,
|
|
32
|
+
} from "../commands/CompleteMultipartReadSetUploadCommand";
|
|
25
33
|
import {
|
|
26
34
|
CreateAnnotationStoreCommandInput,
|
|
27
35
|
CreateAnnotationStoreCommandOutput,
|
|
28
36
|
} from "../commands/CreateAnnotationStoreCommand";
|
|
37
|
+
import {
|
|
38
|
+
CreateMultipartReadSetUploadCommandInput,
|
|
39
|
+
CreateMultipartReadSetUploadCommandOutput,
|
|
40
|
+
} from "../commands/CreateMultipartReadSetUploadCommand";
|
|
29
41
|
import {
|
|
30
42
|
CreateReferenceStoreCommandInput,
|
|
31
43
|
CreateReferenceStoreCommandOutput,
|
|
@@ -158,6 +170,10 @@ import {
|
|
|
158
170
|
ListAnnotationStoresCommandInput,
|
|
159
171
|
ListAnnotationStoresCommandOutput,
|
|
160
172
|
} from "../commands/ListAnnotationStoresCommand";
|
|
173
|
+
import {
|
|
174
|
+
ListMultipartReadSetUploadsCommandInput,
|
|
175
|
+
ListMultipartReadSetUploadsCommandOutput,
|
|
176
|
+
} from "../commands/ListMultipartReadSetUploadsCommand";
|
|
161
177
|
import {
|
|
162
178
|
ListReadSetActivationJobsCommandInput,
|
|
163
179
|
ListReadSetActivationJobsCommandOutput,
|
|
@@ -174,6 +190,10 @@ import {
|
|
|
174
190
|
ListReadSetsCommandInput,
|
|
175
191
|
ListReadSetsCommandOutput,
|
|
176
192
|
} from "../commands/ListReadSetsCommand";
|
|
193
|
+
import {
|
|
194
|
+
ListReadSetUploadPartsCommandInput,
|
|
195
|
+
ListReadSetUploadPartsCommandOutput,
|
|
196
|
+
} from "../commands/ListReadSetUploadPartsCommand";
|
|
177
197
|
import {
|
|
178
198
|
ListReferenceImportJobsCommandInput,
|
|
179
199
|
ListReferenceImportJobsCommandOutput,
|
|
@@ -270,6 +290,14 @@ import {
|
|
|
270
290
|
UpdateWorkflowCommandInput,
|
|
271
291
|
UpdateWorkflowCommandOutput,
|
|
272
292
|
} from "../commands/UpdateWorkflowCommand";
|
|
293
|
+
import {
|
|
294
|
+
UploadReadSetPartCommandInput,
|
|
295
|
+
UploadReadSetPartCommandOutput,
|
|
296
|
+
} from "../commands/UploadReadSetPartCommand";
|
|
297
|
+
export declare const se_AbortMultipartReadSetUploadCommand: (
|
|
298
|
+
input: AbortMultipartReadSetUploadCommandInput,
|
|
299
|
+
context: __SerdeContext
|
|
300
|
+
) => Promise<__HttpRequest>;
|
|
273
301
|
export declare const se_BatchDeleteReadSetCommand: (
|
|
274
302
|
input: BatchDeleteReadSetCommandInput,
|
|
275
303
|
context: __SerdeContext
|
|
@@ -286,10 +314,18 @@ export declare const se_CancelVariantImportJobCommand: (
|
|
|
286
314
|
input: CancelVariantImportJobCommandInput,
|
|
287
315
|
context: __SerdeContext
|
|
288
316
|
) => Promise<__HttpRequest>;
|
|
317
|
+
export declare const se_CompleteMultipartReadSetUploadCommand: (
|
|
318
|
+
input: CompleteMultipartReadSetUploadCommandInput,
|
|
319
|
+
context: __SerdeContext
|
|
320
|
+
) => Promise<__HttpRequest>;
|
|
289
321
|
export declare const se_CreateAnnotationStoreCommand: (
|
|
290
322
|
input: CreateAnnotationStoreCommandInput,
|
|
291
323
|
context: __SerdeContext
|
|
292
324
|
) => Promise<__HttpRequest>;
|
|
325
|
+
export declare const se_CreateMultipartReadSetUploadCommand: (
|
|
326
|
+
input: CreateMultipartReadSetUploadCommandInput,
|
|
327
|
+
context: __SerdeContext
|
|
328
|
+
) => Promise<__HttpRequest>;
|
|
293
329
|
export declare const se_CreateReferenceStoreCommand: (
|
|
294
330
|
input: CreateReferenceStoreCommandInput,
|
|
295
331
|
context: __SerdeContext
|
|
@@ -422,6 +458,10 @@ export declare const se_ListAnnotationStoresCommand: (
|
|
|
422
458
|
input: ListAnnotationStoresCommandInput,
|
|
423
459
|
context: __SerdeContext
|
|
424
460
|
) => Promise<__HttpRequest>;
|
|
461
|
+
export declare const se_ListMultipartReadSetUploadsCommand: (
|
|
462
|
+
input: ListMultipartReadSetUploadsCommandInput,
|
|
463
|
+
context: __SerdeContext
|
|
464
|
+
) => Promise<__HttpRequest>;
|
|
425
465
|
export declare const se_ListReadSetActivationJobsCommand: (
|
|
426
466
|
input: ListReadSetActivationJobsCommandInput,
|
|
427
467
|
context: __SerdeContext
|
|
@@ -438,6 +478,10 @@ export declare const se_ListReadSetsCommand: (
|
|
|
438
478
|
input: ListReadSetsCommandInput,
|
|
439
479
|
context: __SerdeContext
|
|
440
480
|
) => Promise<__HttpRequest>;
|
|
481
|
+
export declare const se_ListReadSetUploadPartsCommand: (
|
|
482
|
+
input: ListReadSetUploadPartsCommandInput,
|
|
483
|
+
context: __SerdeContext
|
|
484
|
+
) => Promise<__HttpRequest>;
|
|
441
485
|
export declare const se_ListReferenceImportJobsCommand: (
|
|
442
486
|
input: ListReferenceImportJobsCommandInput,
|
|
443
487
|
context: __SerdeContext
|
|
@@ -534,6 +578,14 @@ export declare const se_UpdateWorkflowCommand: (
|
|
|
534
578
|
input: UpdateWorkflowCommandInput,
|
|
535
579
|
context: __SerdeContext
|
|
536
580
|
) => Promise<__HttpRequest>;
|
|
581
|
+
export declare const se_UploadReadSetPartCommand: (
|
|
582
|
+
input: UploadReadSetPartCommandInput,
|
|
583
|
+
context: __SerdeContext
|
|
584
|
+
) => Promise<__HttpRequest>;
|
|
585
|
+
export declare const de_AbortMultipartReadSetUploadCommand: (
|
|
586
|
+
output: __HttpResponse,
|
|
587
|
+
context: __SerdeContext
|
|
588
|
+
) => Promise<AbortMultipartReadSetUploadCommandOutput>;
|
|
537
589
|
export declare const de_BatchDeleteReadSetCommand: (
|
|
538
590
|
output: __HttpResponse,
|
|
539
591
|
context: __SerdeContext
|
|
@@ -550,10 +602,18 @@ export declare const de_CancelVariantImportJobCommand: (
|
|
|
550
602
|
output: __HttpResponse,
|
|
551
603
|
context: __SerdeContext
|
|
552
604
|
) => Promise<CancelVariantImportJobCommandOutput>;
|
|
605
|
+
export declare const de_CompleteMultipartReadSetUploadCommand: (
|
|
606
|
+
output: __HttpResponse,
|
|
607
|
+
context: __SerdeContext
|
|
608
|
+
) => Promise<CompleteMultipartReadSetUploadCommandOutput>;
|
|
553
609
|
export declare const de_CreateAnnotationStoreCommand: (
|
|
554
610
|
output: __HttpResponse,
|
|
555
611
|
context: __SerdeContext
|
|
556
612
|
) => Promise<CreateAnnotationStoreCommandOutput>;
|
|
613
|
+
export declare const de_CreateMultipartReadSetUploadCommand: (
|
|
614
|
+
output: __HttpResponse,
|
|
615
|
+
context: __SerdeContext
|
|
616
|
+
) => Promise<CreateMultipartReadSetUploadCommandOutput>;
|
|
557
617
|
export declare const de_CreateReferenceStoreCommand: (
|
|
558
618
|
output: __HttpResponse,
|
|
559
619
|
context: __SerdeContext
|
|
@@ -686,6 +746,10 @@ export declare const de_ListAnnotationStoresCommand: (
|
|
|
686
746
|
output: __HttpResponse,
|
|
687
747
|
context: __SerdeContext
|
|
688
748
|
) => Promise<ListAnnotationStoresCommandOutput>;
|
|
749
|
+
export declare const de_ListMultipartReadSetUploadsCommand: (
|
|
750
|
+
output: __HttpResponse,
|
|
751
|
+
context: __SerdeContext
|
|
752
|
+
) => Promise<ListMultipartReadSetUploadsCommandOutput>;
|
|
689
753
|
export declare const de_ListReadSetActivationJobsCommand: (
|
|
690
754
|
output: __HttpResponse,
|
|
691
755
|
context: __SerdeContext
|
|
@@ -702,6 +766,10 @@ export declare const de_ListReadSetsCommand: (
|
|
|
702
766
|
output: __HttpResponse,
|
|
703
767
|
context: __SerdeContext
|
|
704
768
|
) => Promise<ListReadSetsCommandOutput>;
|
|
769
|
+
export declare const de_ListReadSetUploadPartsCommand: (
|
|
770
|
+
output: __HttpResponse,
|
|
771
|
+
context: __SerdeContext
|
|
772
|
+
) => Promise<ListReadSetUploadPartsCommandOutput>;
|
|
705
773
|
export declare const de_ListReferenceImportJobsCommand: (
|
|
706
774
|
output: __HttpResponse,
|
|
707
775
|
context: __SerdeContext
|
|
@@ -798,3 +866,7 @@ export declare const de_UpdateWorkflowCommand: (
|
|
|
798
866
|
output: __HttpResponse,
|
|
799
867
|
context: __SerdeContext
|
|
800
868
|
) => Promise<UpdateWorkflowCommandOutput>;
|
|
869
|
+
export declare const de_UploadReadSetPartCommand: (
|
|
870
|
+
output: __HttpResponse,
|
|
871
|
+
context: __SerdeContext
|
|
872
|
+
) => Promise<UploadReadSetPartCommandOutput>;
|
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.332.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.332.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.329.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.332.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.329.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.329.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.329.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.329.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.329.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.329.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.332.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.329.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.329.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.329.0",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.329.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.329.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.332.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.329.0",
|
|
53
53
|
"@aws-sdk/util-stream-browser": "3.329.0",
|
|
54
54
|
"@aws-sdk/util-stream-node": "3.331.0",
|