@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
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListMultipartReadSetUploadsCommandInput, ListMultipartReadSetUploadsCommandOutput } from "../commands/ListMultipartReadSetUploadsCommand";
|
|
3
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListMultipartReadSetUploads(config: OmicsPaginationConfiguration, input: ListMultipartReadSetUploadsCommandInput, ...additionalArguments: any): Paginator<ListMultipartReadSetUploadsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListReadSetUploadPartsCommandInput, ListReadSetUploadPartsCommandOutput } from "../commands/ListReadSetUploadPartsCommand";
|
|
3
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListReadSetUploadParts(config: OmicsPaginationConfiguration, input: ListReadSetUploadPartsCommandInput, ...additionalArguments: any): Paginator<ListReadSetUploadPartsCommandOutput>;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAnnotationImportJobsPaginator";
|
|
3
3
|
export * from "./ListAnnotationStoresPaginator";
|
|
4
|
+
export * from "./ListMultipartReadSetUploadsPaginator";
|
|
4
5
|
export * from "./ListReadSetActivationJobsPaginator";
|
|
5
6
|
export * from "./ListReadSetExportJobsPaginator";
|
|
6
7
|
export * from "./ListReadSetImportJobsPaginator";
|
|
8
|
+
export * from "./ListReadSetUploadPartsPaginator";
|
|
7
9
|
export * from "./ListReadSetsPaginator";
|
|
8
10
|
export * from "./ListReferenceImportJobsPaginator";
|
|
9
11
|
export * from "./ListReferenceStoresPaginator";
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
2
|
import { SdkStreamSerdeContext as __SdkStreamSerdeContext, SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { AbortMultipartReadSetUploadCommandInput, AbortMultipartReadSetUploadCommandOutput } from "../commands/AbortMultipartReadSetUploadCommand";
|
|
3
4
|
import { BatchDeleteReadSetCommandInput, BatchDeleteReadSetCommandOutput } from "../commands/BatchDeleteReadSetCommand";
|
|
4
5
|
import { CancelAnnotationImportJobCommandInput, CancelAnnotationImportJobCommandOutput } from "../commands/CancelAnnotationImportJobCommand";
|
|
5
6
|
import { CancelRunCommandInput, CancelRunCommandOutput } from "../commands/CancelRunCommand";
|
|
6
7
|
import { CancelVariantImportJobCommandInput, CancelVariantImportJobCommandOutput } from "../commands/CancelVariantImportJobCommand";
|
|
8
|
+
import { CompleteMultipartReadSetUploadCommandInput, CompleteMultipartReadSetUploadCommandOutput } from "../commands/CompleteMultipartReadSetUploadCommand";
|
|
7
9
|
import { CreateAnnotationStoreCommandInput, CreateAnnotationStoreCommandOutput } from "../commands/CreateAnnotationStoreCommand";
|
|
10
|
+
import { CreateMultipartReadSetUploadCommandInput, CreateMultipartReadSetUploadCommandOutput } from "../commands/CreateMultipartReadSetUploadCommand";
|
|
8
11
|
import { CreateReferenceStoreCommandInput, CreateReferenceStoreCommandOutput } from "../commands/CreateReferenceStoreCommand";
|
|
9
12
|
import { CreateRunGroupCommandInput, CreateRunGroupCommandOutput } from "../commands/CreateRunGroupCommand";
|
|
10
13
|
import { CreateSequenceStoreCommandInput, CreateSequenceStoreCommandOutput } from "../commands/CreateSequenceStoreCommand";
|
|
@@ -38,10 +41,12 @@ import { GetVariantStoreCommandInput, GetVariantStoreCommandOutput } from "../co
|
|
|
38
41
|
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "../commands/GetWorkflowCommand";
|
|
39
42
|
import { ListAnnotationImportJobsCommandInput, ListAnnotationImportJobsCommandOutput } from "../commands/ListAnnotationImportJobsCommand";
|
|
40
43
|
import { ListAnnotationStoresCommandInput, ListAnnotationStoresCommandOutput } from "../commands/ListAnnotationStoresCommand";
|
|
44
|
+
import { ListMultipartReadSetUploadsCommandInput, ListMultipartReadSetUploadsCommandOutput } from "../commands/ListMultipartReadSetUploadsCommand";
|
|
41
45
|
import { ListReadSetActivationJobsCommandInput, ListReadSetActivationJobsCommandOutput } from "../commands/ListReadSetActivationJobsCommand";
|
|
42
46
|
import { ListReadSetExportJobsCommandInput, ListReadSetExportJobsCommandOutput } from "../commands/ListReadSetExportJobsCommand";
|
|
43
47
|
import { ListReadSetImportJobsCommandInput, ListReadSetImportJobsCommandOutput } from "../commands/ListReadSetImportJobsCommand";
|
|
44
48
|
import { ListReadSetsCommandInput, ListReadSetsCommandOutput } from "../commands/ListReadSetsCommand";
|
|
49
|
+
import { ListReadSetUploadPartsCommandInput, ListReadSetUploadPartsCommandOutput } from "../commands/ListReadSetUploadPartsCommand";
|
|
45
50
|
import { ListReferenceImportJobsCommandInput, ListReferenceImportJobsCommandOutput } from "../commands/ListReferenceImportJobsCommand";
|
|
46
51
|
import { ListReferencesCommandInput, ListReferencesCommandOutput } from "../commands/ListReferencesCommand";
|
|
47
52
|
import { ListReferenceStoresCommandInput, ListReferenceStoresCommandOutput } from "../commands/ListReferenceStoresCommand";
|
|
@@ -66,6 +71,11 @@ import { UpdateAnnotationStoreCommandInput, UpdateAnnotationStoreCommandOutput }
|
|
|
66
71
|
import { UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput } from "../commands/UpdateRunGroupCommand";
|
|
67
72
|
import { UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput } from "../commands/UpdateVariantStoreCommand";
|
|
68
73
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "../commands/UpdateWorkflowCommand";
|
|
74
|
+
import { UploadReadSetPartCommandInput, UploadReadSetPartCommandOutput } from "../commands/UploadReadSetPartCommand";
|
|
75
|
+
/**
|
|
76
|
+
* serializeAws_restJson1AbortMultipartReadSetUploadCommand
|
|
77
|
+
*/
|
|
78
|
+
export declare const se_AbortMultipartReadSetUploadCommand: (input: AbortMultipartReadSetUploadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
79
|
/**
|
|
70
80
|
* serializeAws_restJson1BatchDeleteReadSetCommand
|
|
71
81
|
*/
|
|
@@ -82,10 +92,18 @@ export declare const se_CancelRunCommand: (input: CancelRunCommandInput, context
|
|
|
82
92
|
* serializeAws_restJson1CancelVariantImportJobCommand
|
|
83
93
|
*/
|
|
84
94
|
export declare const se_CancelVariantImportJobCommand: (input: CancelVariantImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
|
+
/**
|
|
96
|
+
* serializeAws_restJson1CompleteMultipartReadSetUploadCommand
|
|
97
|
+
*/
|
|
98
|
+
export declare const se_CompleteMultipartReadSetUploadCommand: (input: CompleteMultipartReadSetUploadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
99
|
/**
|
|
86
100
|
* serializeAws_restJson1CreateAnnotationStoreCommand
|
|
87
101
|
*/
|
|
88
102
|
export declare const se_CreateAnnotationStoreCommand: (input: CreateAnnotationStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
|
+
/**
|
|
104
|
+
* serializeAws_restJson1CreateMultipartReadSetUploadCommand
|
|
105
|
+
*/
|
|
106
|
+
export declare const se_CreateMultipartReadSetUploadCommand: (input: CreateMultipartReadSetUploadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
107
|
/**
|
|
90
108
|
* serializeAws_restJson1CreateReferenceStoreCommand
|
|
91
109
|
*/
|
|
@@ -218,6 +236,10 @@ export declare const se_ListAnnotationImportJobsCommand: (input: ListAnnotationI
|
|
|
218
236
|
* serializeAws_restJson1ListAnnotationStoresCommand
|
|
219
237
|
*/
|
|
220
238
|
export declare const se_ListAnnotationStoresCommand: (input: ListAnnotationStoresCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
239
|
+
/**
|
|
240
|
+
* serializeAws_restJson1ListMultipartReadSetUploadsCommand
|
|
241
|
+
*/
|
|
242
|
+
export declare const se_ListMultipartReadSetUploadsCommand: (input: ListMultipartReadSetUploadsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
221
243
|
/**
|
|
222
244
|
* serializeAws_restJson1ListReadSetActivationJobsCommand
|
|
223
245
|
*/
|
|
@@ -234,6 +256,10 @@ export declare const se_ListReadSetImportJobsCommand: (input: ListReadSetImportJ
|
|
|
234
256
|
* serializeAws_restJson1ListReadSetsCommand
|
|
235
257
|
*/
|
|
236
258
|
export declare const se_ListReadSetsCommand: (input: ListReadSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
259
|
+
/**
|
|
260
|
+
* serializeAws_restJson1ListReadSetUploadPartsCommand
|
|
261
|
+
*/
|
|
262
|
+
export declare const se_ListReadSetUploadPartsCommand: (input: ListReadSetUploadPartsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
237
263
|
/**
|
|
238
264
|
* serializeAws_restJson1ListReferenceImportJobsCommand
|
|
239
265
|
*/
|
|
@@ -330,6 +356,14 @@ export declare const se_UpdateVariantStoreCommand: (input: UpdateVariantStoreCom
|
|
|
330
356
|
* serializeAws_restJson1UpdateWorkflowCommand
|
|
331
357
|
*/
|
|
332
358
|
export declare const se_UpdateWorkflowCommand: (input: UpdateWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
359
|
+
/**
|
|
360
|
+
* serializeAws_restJson1UploadReadSetPartCommand
|
|
361
|
+
*/
|
|
362
|
+
export declare const se_UploadReadSetPartCommand: (input: UploadReadSetPartCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
363
|
+
/**
|
|
364
|
+
* deserializeAws_restJson1AbortMultipartReadSetUploadCommand
|
|
365
|
+
*/
|
|
366
|
+
export declare const de_AbortMultipartReadSetUploadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AbortMultipartReadSetUploadCommandOutput>;
|
|
333
367
|
/**
|
|
334
368
|
* deserializeAws_restJson1BatchDeleteReadSetCommand
|
|
335
369
|
*/
|
|
@@ -346,10 +380,18 @@ export declare const de_CancelRunCommand: (output: __HttpResponse, context: __Se
|
|
|
346
380
|
* deserializeAws_restJson1CancelVariantImportJobCommand
|
|
347
381
|
*/
|
|
348
382
|
export declare const de_CancelVariantImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelVariantImportJobCommandOutput>;
|
|
383
|
+
/**
|
|
384
|
+
* deserializeAws_restJson1CompleteMultipartReadSetUploadCommand
|
|
385
|
+
*/
|
|
386
|
+
export declare const de_CompleteMultipartReadSetUploadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CompleteMultipartReadSetUploadCommandOutput>;
|
|
349
387
|
/**
|
|
350
388
|
* deserializeAws_restJson1CreateAnnotationStoreCommand
|
|
351
389
|
*/
|
|
352
390
|
export declare const de_CreateAnnotationStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAnnotationStoreCommandOutput>;
|
|
391
|
+
/**
|
|
392
|
+
* deserializeAws_restJson1CreateMultipartReadSetUploadCommand
|
|
393
|
+
*/
|
|
394
|
+
export declare const de_CreateMultipartReadSetUploadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMultipartReadSetUploadCommandOutput>;
|
|
353
395
|
/**
|
|
354
396
|
* deserializeAws_restJson1CreateReferenceStoreCommand
|
|
355
397
|
*/
|
|
@@ -482,6 +524,10 @@ export declare const de_ListAnnotationImportJobsCommand: (output: __HttpResponse
|
|
|
482
524
|
* deserializeAws_restJson1ListAnnotationStoresCommand
|
|
483
525
|
*/
|
|
484
526
|
export declare const de_ListAnnotationStoresCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAnnotationStoresCommandOutput>;
|
|
527
|
+
/**
|
|
528
|
+
* deserializeAws_restJson1ListMultipartReadSetUploadsCommand
|
|
529
|
+
*/
|
|
530
|
+
export declare const de_ListMultipartReadSetUploadsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMultipartReadSetUploadsCommandOutput>;
|
|
485
531
|
/**
|
|
486
532
|
* deserializeAws_restJson1ListReadSetActivationJobsCommand
|
|
487
533
|
*/
|
|
@@ -498,6 +544,10 @@ export declare const de_ListReadSetImportJobsCommand: (output: __HttpResponse, c
|
|
|
498
544
|
* deserializeAws_restJson1ListReadSetsCommand
|
|
499
545
|
*/
|
|
500
546
|
export declare const de_ListReadSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReadSetsCommandOutput>;
|
|
547
|
+
/**
|
|
548
|
+
* deserializeAws_restJson1ListReadSetUploadPartsCommand
|
|
549
|
+
*/
|
|
550
|
+
export declare const de_ListReadSetUploadPartsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReadSetUploadPartsCommandOutput>;
|
|
501
551
|
/**
|
|
502
552
|
* deserializeAws_restJson1ListReferenceImportJobsCommand
|
|
503
553
|
*/
|
|
@@ -594,3 +644,7 @@ export declare const de_UpdateVariantStoreCommand: (output: __HttpResponse, cont
|
|
|
594
644
|
* deserializeAws_restJson1UpdateWorkflowCommand
|
|
595
645
|
*/
|
|
596
646
|
export declare const de_UpdateWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWorkflowCommandOutput>;
|
|
647
|
+
/**
|
|
648
|
+
* deserializeAws_restJson1UploadReadSetPartCommand
|
|
649
|
+
*/
|
|
650
|
+
export declare const de_UploadReadSetPartCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UploadReadSetPartCommandOutput>;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
AbortMultipartReadSetUploadCommandInput,
|
|
4
|
+
AbortMultipartReadSetUploadCommandOutput,
|
|
5
|
+
} from "./commands/AbortMultipartReadSetUploadCommand";
|
|
2
6
|
import {
|
|
3
7
|
BatchDeleteReadSetCommandInput,
|
|
4
8
|
BatchDeleteReadSetCommandOutput,
|
|
@@ -15,10 +19,18 @@ import {
|
|
|
15
19
|
CancelVariantImportJobCommandInput,
|
|
16
20
|
CancelVariantImportJobCommandOutput,
|
|
17
21
|
} from "./commands/CancelVariantImportJobCommand";
|
|
22
|
+
import {
|
|
23
|
+
CompleteMultipartReadSetUploadCommandInput,
|
|
24
|
+
CompleteMultipartReadSetUploadCommandOutput,
|
|
25
|
+
} from "./commands/CompleteMultipartReadSetUploadCommand";
|
|
18
26
|
import {
|
|
19
27
|
CreateAnnotationStoreCommandInput,
|
|
20
28
|
CreateAnnotationStoreCommandOutput,
|
|
21
29
|
} from "./commands/CreateAnnotationStoreCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateMultipartReadSetUploadCommandInput,
|
|
32
|
+
CreateMultipartReadSetUploadCommandOutput,
|
|
33
|
+
} from "./commands/CreateMultipartReadSetUploadCommand";
|
|
22
34
|
import {
|
|
23
35
|
CreateReferenceStoreCommandInput,
|
|
24
36
|
CreateReferenceStoreCommandOutput,
|
|
@@ -151,6 +163,10 @@ import {
|
|
|
151
163
|
ListAnnotationStoresCommandInput,
|
|
152
164
|
ListAnnotationStoresCommandOutput,
|
|
153
165
|
} from "./commands/ListAnnotationStoresCommand";
|
|
166
|
+
import {
|
|
167
|
+
ListMultipartReadSetUploadsCommandInput,
|
|
168
|
+
ListMultipartReadSetUploadsCommandOutput,
|
|
169
|
+
} from "./commands/ListMultipartReadSetUploadsCommand";
|
|
154
170
|
import {
|
|
155
171
|
ListReadSetActivationJobsCommandInput,
|
|
156
172
|
ListReadSetActivationJobsCommandOutput,
|
|
@@ -167,6 +183,10 @@ import {
|
|
|
167
183
|
ListReadSetsCommandInput,
|
|
168
184
|
ListReadSetsCommandOutput,
|
|
169
185
|
} from "./commands/ListReadSetsCommand";
|
|
186
|
+
import {
|
|
187
|
+
ListReadSetUploadPartsCommandInput,
|
|
188
|
+
ListReadSetUploadPartsCommandOutput,
|
|
189
|
+
} from "./commands/ListReadSetUploadPartsCommand";
|
|
170
190
|
import {
|
|
171
191
|
ListReferenceImportJobsCommandInput,
|
|
172
192
|
ListReferenceImportJobsCommandOutput,
|
|
@@ -263,8 +283,25 @@ import {
|
|
|
263
283
|
UpdateWorkflowCommandInput,
|
|
264
284
|
UpdateWorkflowCommandOutput,
|
|
265
285
|
} from "./commands/UpdateWorkflowCommand";
|
|
286
|
+
import {
|
|
287
|
+
UploadReadSetPartCommandInput,
|
|
288
|
+
UploadReadSetPartCommandOutput,
|
|
289
|
+
} from "./commands/UploadReadSetPartCommand";
|
|
266
290
|
import { OmicsClient } from "./OmicsClient";
|
|
267
291
|
export interface Omics {
|
|
292
|
+
abortMultipartReadSetUpload(
|
|
293
|
+
args: AbortMultipartReadSetUploadCommandInput,
|
|
294
|
+
options?: __HttpHandlerOptions
|
|
295
|
+
): Promise<AbortMultipartReadSetUploadCommandOutput>;
|
|
296
|
+
abortMultipartReadSetUpload(
|
|
297
|
+
args: AbortMultipartReadSetUploadCommandInput,
|
|
298
|
+
cb: (err: any, data?: AbortMultipartReadSetUploadCommandOutput) => void
|
|
299
|
+
): void;
|
|
300
|
+
abortMultipartReadSetUpload(
|
|
301
|
+
args: AbortMultipartReadSetUploadCommandInput,
|
|
302
|
+
options: __HttpHandlerOptions,
|
|
303
|
+
cb: (err: any, data?: AbortMultipartReadSetUploadCommandOutput) => void
|
|
304
|
+
): void;
|
|
268
305
|
batchDeleteReadSet(
|
|
269
306
|
args: BatchDeleteReadSetCommandInput,
|
|
270
307
|
options?: __HttpHandlerOptions
|
|
@@ -317,6 +354,19 @@ export interface Omics {
|
|
|
317
354
|
options: __HttpHandlerOptions,
|
|
318
355
|
cb: (err: any, data?: CancelVariantImportJobCommandOutput) => void
|
|
319
356
|
): void;
|
|
357
|
+
completeMultipartReadSetUpload(
|
|
358
|
+
args: CompleteMultipartReadSetUploadCommandInput,
|
|
359
|
+
options?: __HttpHandlerOptions
|
|
360
|
+
): Promise<CompleteMultipartReadSetUploadCommandOutput>;
|
|
361
|
+
completeMultipartReadSetUpload(
|
|
362
|
+
args: CompleteMultipartReadSetUploadCommandInput,
|
|
363
|
+
cb: (err: any, data?: CompleteMultipartReadSetUploadCommandOutput) => void
|
|
364
|
+
): void;
|
|
365
|
+
completeMultipartReadSetUpload(
|
|
366
|
+
args: CompleteMultipartReadSetUploadCommandInput,
|
|
367
|
+
options: __HttpHandlerOptions,
|
|
368
|
+
cb: (err: any, data?: CompleteMultipartReadSetUploadCommandOutput) => void
|
|
369
|
+
): void;
|
|
320
370
|
createAnnotationStore(
|
|
321
371
|
args: CreateAnnotationStoreCommandInput,
|
|
322
372
|
options?: __HttpHandlerOptions
|
|
@@ -330,6 +380,19 @@ export interface Omics {
|
|
|
330
380
|
options: __HttpHandlerOptions,
|
|
331
381
|
cb: (err: any, data?: CreateAnnotationStoreCommandOutput) => void
|
|
332
382
|
): void;
|
|
383
|
+
createMultipartReadSetUpload(
|
|
384
|
+
args: CreateMultipartReadSetUploadCommandInput,
|
|
385
|
+
options?: __HttpHandlerOptions
|
|
386
|
+
): Promise<CreateMultipartReadSetUploadCommandOutput>;
|
|
387
|
+
createMultipartReadSetUpload(
|
|
388
|
+
args: CreateMultipartReadSetUploadCommandInput,
|
|
389
|
+
cb: (err: any, data?: CreateMultipartReadSetUploadCommandOutput) => void
|
|
390
|
+
): void;
|
|
391
|
+
createMultipartReadSetUpload(
|
|
392
|
+
args: CreateMultipartReadSetUploadCommandInput,
|
|
393
|
+
options: __HttpHandlerOptions,
|
|
394
|
+
cb: (err: any, data?: CreateMultipartReadSetUploadCommandOutput) => void
|
|
395
|
+
): void;
|
|
333
396
|
createReferenceStore(
|
|
334
397
|
args: CreateReferenceStoreCommandInput,
|
|
335
398
|
options?: __HttpHandlerOptions
|
|
@@ -759,6 +822,19 @@ export interface Omics {
|
|
|
759
822
|
options: __HttpHandlerOptions,
|
|
760
823
|
cb: (err: any, data?: ListAnnotationStoresCommandOutput) => void
|
|
761
824
|
): void;
|
|
825
|
+
listMultipartReadSetUploads(
|
|
826
|
+
args: ListMultipartReadSetUploadsCommandInput,
|
|
827
|
+
options?: __HttpHandlerOptions
|
|
828
|
+
): Promise<ListMultipartReadSetUploadsCommandOutput>;
|
|
829
|
+
listMultipartReadSetUploads(
|
|
830
|
+
args: ListMultipartReadSetUploadsCommandInput,
|
|
831
|
+
cb: (err: any, data?: ListMultipartReadSetUploadsCommandOutput) => void
|
|
832
|
+
): void;
|
|
833
|
+
listMultipartReadSetUploads(
|
|
834
|
+
args: ListMultipartReadSetUploadsCommandInput,
|
|
835
|
+
options: __HttpHandlerOptions,
|
|
836
|
+
cb: (err: any, data?: ListMultipartReadSetUploadsCommandOutput) => void
|
|
837
|
+
): void;
|
|
762
838
|
listReadSetActivationJobs(
|
|
763
839
|
args: ListReadSetActivationJobsCommandInput,
|
|
764
840
|
options?: __HttpHandlerOptions
|
|
@@ -811,6 +887,19 @@ export interface Omics {
|
|
|
811
887
|
options: __HttpHandlerOptions,
|
|
812
888
|
cb: (err: any, data?: ListReadSetsCommandOutput) => void
|
|
813
889
|
): void;
|
|
890
|
+
listReadSetUploadParts(
|
|
891
|
+
args: ListReadSetUploadPartsCommandInput,
|
|
892
|
+
options?: __HttpHandlerOptions
|
|
893
|
+
): Promise<ListReadSetUploadPartsCommandOutput>;
|
|
894
|
+
listReadSetUploadParts(
|
|
895
|
+
args: ListReadSetUploadPartsCommandInput,
|
|
896
|
+
cb: (err: any, data?: ListReadSetUploadPartsCommandOutput) => void
|
|
897
|
+
): void;
|
|
898
|
+
listReadSetUploadParts(
|
|
899
|
+
args: ListReadSetUploadPartsCommandInput,
|
|
900
|
+
options: __HttpHandlerOptions,
|
|
901
|
+
cb: (err: any, data?: ListReadSetUploadPartsCommandOutput) => void
|
|
902
|
+
): void;
|
|
814
903
|
listReferenceImportJobs(
|
|
815
904
|
args: ListReferenceImportJobsCommandInput,
|
|
816
905
|
options?: __HttpHandlerOptions
|
|
@@ -1123,5 +1212,18 @@ export interface Omics {
|
|
|
1123
1212
|
options: __HttpHandlerOptions,
|
|
1124
1213
|
cb: (err: any, data?: UpdateWorkflowCommandOutput) => void
|
|
1125
1214
|
): void;
|
|
1215
|
+
uploadReadSetPart(
|
|
1216
|
+
args: UploadReadSetPartCommandInput,
|
|
1217
|
+
options?: __HttpHandlerOptions
|
|
1218
|
+
): Promise<UploadReadSetPartCommandOutput>;
|
|
1219
|
+
uploadReadSetPart(
|
|
1220
|
+
args: UploadReadSetPartCommandInput,
|
|
1221
|
+
cb: (err: any, data?: UploadReadSetPartCommandOutput) => void
|
|
1222
|
+
): void;
|
|
1223
|
+
uploadReadSetPart(
|
|
1224
|
+
args: UploadReadSetPartCommandInput,
|
|
1225
|
+
options: __HttpHandlerOptions,
|
|
1226
|
+
cb: (err: any, data?: UploadReadSetPartCommandOutput) => void
|
|
1227
|
+
): void;
|
|
1126
1228
|
}
|
|
1127
1229
|
export declare class Omics extends OmicsClient implements Omics {}
|
|
@@ -45,6 +45,10 @@ import {
|
|
|
45
45
|
UrlParser as __UrlParser,
|
|
46
46
|
UserAgent as __UserAgent,
|
|
47
47
|
} from "@aws-sdk/types";
|
|
48
|
+
import {
|
|
49
|
+
AbortMultipartReadSetUploadCommandInput,
|
|
50
|
+
AbortMultipartReadSetUploadCommandOutput,
|
|
51
|
+
} from "./commands/AbortMultipartReadSetUploadCommand";
|
|
48
52
|
import {
|
|
49
53
|
BatchDeleteReadSetCommandInput,
|
|
50
54
|
BatchDeleteReadSetCommandOutput,
|
|
@@ -61,10 +65,18 @@ import {
|
|
|
61
65
|
CancelVariantImportJobCommandInput,
|
|
62
66
|
CancelVariantImportJobCommandOutput,
|
|
63
67
|
} from "./commands/CancelVariantImportJobCommand";
|
|
68
|
+
import {
|
|
69
|
+
CompleteMultipartReadSetUploadCommandInput,
|
|
70
|
+
CompleteMultipartReadSetUploadCommandOutput,
|
|
71
|
+
} from "./commands/CompleteMultipartReadSetUploadCommand";
|
|
64
72
|
import {
|
|
65
73
|
CreateAnnotationStoreCommandInput,
|
|
66
74
|
CreateAnnotationStoreCommandOutput,
|
|
67
75
|
} from "./commands/CreateAnnotationStoreCommand";
|
|
76
|
+
import {
|
|
77
|
+
CreateMultipartReadSetUploadCommandInput,
|
|
78
|
+
CreateMultipartReadSetUploadCommandOutput,
|
|
79
|
+
} from "./commands/CreateMultipartReadSetUploadCommand";
|
|
68
80
|
import {
|
|
69
81
|
CreateReferenceStoreCommandInput,
|
|
70
82
|
CreateReferenceStoreCommandOutput,
|
|
@@ -197,6 +209,10 @@ import {
|
|
|
197
209
|
ListAnnotationStoresCommandInput,
|
|
198
210
|
ListAnnotationStoresCommandOutput,
|
|
199
211
|
} from "./commands/ListAnnotationStoresCommand";
|
|
212
|
+
import {
|
|
213
|
+
ListMultipartReadSetUploadsCommandInput,
|
|
214
|
+
ListMultipartReadSetUploadsCommandOutput,
|
|
215
|
+
} from "./commands/ListMultipartReadSetUploadsCommand";
|
|
200
216
|
import {
|
|
201
217
|
ListReadSetActivationJobsCommandInput,
|
|
202
218
|
ListReadSetActivationJobsCommandOutput,
|
|
@@ -213,6 +229,10 @@ import {
|
|
|
213
229
|
ListReadSetsCommandInput,
|
|
214
230
|
ListReadSetsCommandOutput,
|
|
215
231
|
} from "./commands/ListReadSetsCommand";
|
|
232
|
+
import {
|
|
233
|
+
ListReadSetUploadPartsCommandInput,
|
|
234
|
+
ListReadSetUploadPartsCommandOutput,
|
|
235
|
+
} from "./commands/ListReadSetUploadPartsCommand";
|
|
216
236
|
import {
|
|
217
237
|
ListReferenceImportJobsCommandInput,
|
|
218
238
|
ListReferenceImportJobsCommandOutput,
|
|
@@ -309,17 +329,24 @@ import {
|
|
|
309
329
|
UpdateWorkflowCommandInput,
|
|
310
330
|
UpdateWorkflowCommandOutput,
|
|
311
331
|
} from "./commands/UpdateWorkflowCommand";
|
|
332
|
+
import {
|
|
333
|
+
UploadReadSetPartCommandInput,
|
|
334
|
+
UploadReadSetPartCommandOutput,
|
|
335
|
+
} from "./commands/UploadReadSetPartCommand";
|
|
312
336
|
import {
|
|
313
337
|
ClientInputEndpointParameters,
|
|
314
338
|
ClientResolvedEndpointParameters,
|
|
315
339
|
EndpointParameters,
|
|
316
340
|
} from "./endpoint/EndpointParameters";
|
|
317
341
|
export type ServiceInputTypes =
|
|
342
|
+
| AbortMultipartReadSetUploadCommandInput
|
|
318
343
|
| BatchDeleteReadSetCommandInput
|
|
319
344
|
| CancelAnnotationImportJobCommandInput
|
|
320
345
|
| CancelRunCommandInput
|
|
321
346
|
| CancelVariantImportJobCommandInput
|
|
347
|
+
| CompleteMultipartReadSetUploadCommandInput
|
|
322
348
|
| CreateAnnotationStoreCommandInput
|
|
349
|
+
| CreateMultipartReadSetUploadCommandInput
|
|
323
350
|
| CreateReferenceStoreCommandInput
|
|
324
351
|
| CreateRunGroupCommandInput
|
|
325
352
|
| CreateSequenceStoreCommandInput
|
|
@@ -353,9 +380,11 @@ export type ServiceInputTypes =
|
|
|
353
380
|
| GetWorkflowCommandInput
|
|
354
381
|
| ListAnnotationImportJobsCommandInput
|
|
355
382
|
| ListAnnotationStoresCommandInput
|
|
383
|
+
| ListMultipartReadSetUploadsCommandInput
|
|
356
384
|
| ListReadSetActivationJobsCommandInput
|
|
357
385
|
| ListReadSetExportJobsCommandInput
|
|
358
386
|
| ListReadSetImportJobsCommandInput
|
|
387
|
+
| ListReadSetUploadPartsCommandInput
|
|
359
388
|
| ListReadSetsCommandInput
|
|
360
389
|
| ListReferenceImportJobsCommandInput
|
|
361
390
|
| ListReferenceStoresCommandInput
|
|
@@ -380,13 +409,17 @@ export type ServiceInputTypes =
|
|
|
380
409
|
| UpdateAnnotationStoreCommandInput
|
|
381
410
|
| UpdateRunGroupCommandInput
|
|
382
411
|
| UpdateVariantStoreCommandInput
|
|
383
|
-
| UpdateWorkflowCommandInput
|
|
412
|
+
| UpdateWorkflowCommandInput
|
|
413
|
+
| UploadReadSetPartCommandInput;
|
|
384
414
|
export type ServiceOutputTypes =
|
|
415
|
+
| AbortMultipartReadSetUploadCommandOutput
|
|
385
416
|
| BatchDeleteReadSetCommandOutput
|
|
386
417
|
| CancelAnnotationImportJobCommandOutput
|
|
387
418
|
| CancelRunCommandOutput
|
|
388
419
|
| CancelVariantImportJobCommandOutput
|
|
420
|
+
| CompleteMultipartReadSetUploadCommandOutput
|
|
389
421
|
| CreateAnnotationStoreCommandOutput
|
|
422
|
+
| CreateMultipartReadSetUploadCommandOutput
|
|
390
423
|
| CreateReferenceStoreCommandOutput
|
|
391
424
|
| CreateRunGroupCommandOutput
|
|
392
425
|
| CreateSequenceStoreCommandOutput
|
|
@@ -420,9 +453,11 @@ export type ServiceOutputTypes =
|
|
|
420
453
|
| GetWorkflowCommandOutput
|
|
421
454
|
| ListAnnotationImportJobsCommandOutput
|
|
422
455
|
| ListAnnotationStoresCommandOutput
|
|
456
|
+
| ListMultipartReadSetUploadsCommandOutput
|
|
423
457
|
| ListReadSetActivationJobsCommandOutput
|
|
424
458
|
| ListReadSetExportJobsCommandOutput
|
|
425
459
|
| ListReadSetImportJobsCommandOutput
|
|
460
|
+
| ListReadSetUploadPartsCommandOutput
|
|
426
461
|
| ListReadSetsCommandOutput
|
|
427
462
|
| ListReferenceImportJobsCommandOutput
|
|
428
463
|
| ListReferenceStoresCommandOutput
|
|
@@ -447,7 +482,8 @@ export type ServiceOutputTypes =
|
|
|
447
482
|
| UpdateAnnotationStoreCommandOutput
|
|
448
483
|
| UpdateRunGroupCommandOutput
|
|
449
484
|
| UpdateVariantStoreCommandOutput
|
|
450
|
-
| UpdateWorkflowCommandOutput
|
|
485
|
+
| UpdateWorkflowCommandOutput
|
|
486
|
+
| UploadReadSetPartCommandOutput;
|
|
451
487
|
export interface ClientDefaults
|
|
452
488
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
453
489
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
AbortMultipartReadSetUploadRequest,
|
|
11
|
+
AbortMultipartReadSetUploadResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OmicsClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OmicsClient";
|
|
18
|
+
export interface AbortMultipartReadSetUploadCommandInput
|
|
19
|
+
extends AbortMultipartReadSetUploadRequest {}
|
|
20
|
+
export interface AbortMultipartReadSetUploadCommandOutput
|
|
21
|
+
extends AbortMultipartReadSetUploadResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class AbortMultipartReadSetUploadCommand extends $Command<
|
|
24
|
+
AbortMultipartReadSetUploadCommandInput,
|
|
25
|
+
AbortMultipartReadSetUploadCommandOutput,
|
|
26
|
+
OmicsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: AbortMultipartReadSetUploadCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: AbortMultipartReadSetUploadCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OmicsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
AbortMultipartReadSetUploadCommandInput,
|
|
37
|
+
AbortMultipartReadSetUploadCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CompleteMultipartReadSetUploadRequest,
|
|
11
|
+
CompleteMultipartReadSetUploadResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OmicsClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OmicsClient";
|
|
18
|
+
export interface CompleteMultipartReadSetUploadCommandInput
|
|
19
|
+
extends CompleteMultipartReadSetUploadRequest {}
|
|
20
|
+
export interface CompleteMultipartReadSetUploadCommandOutput
|
|
21
|
+
extends CompleteMultipartReadSetUploadResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CompleteMultipartReadSetUploadCommand extends $Command<
|
|
24
|
+
CompleteMultipartReadSetUploadCommandInput,
|
|
25
|
+
CompleteMultipartReadSetUploadCommandOutput,
|
|
26
|
+
OmicsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CompleteMultipartReadSetUploadCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CompleteMultipartReadSetUploadCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OmicsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CompleteMultipartReadSetUploadCommandInput,
|
|
37
|
+
CompleteMultipartReadSetUploadCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateMultipartReadSetUploadRequest,
|
|
11
|
+
CreateMultipartReadSetUploadResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OmicsClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OmicsClient";
|
|
18
|
+
export interface CreateMultipartReadSetUploadCommandInput
|
|
19
|
+
extends CreateMultipartReadSetUploadRequest {}
|
|
20
|
+
export interface CreateMultipartReadSetUploadCommandOutput
|
|
21
|
+
extends CreateMultipartReadSetUploadResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateMultipartReadSetUploadCommand extends $Command<
|
|
24
|
+
CreateMultipartReadSetUploadCommandInput,
|
|
25
|
+
CreateMultipartReadSetUploadCommandOutput,
|
|
26
|
+
OmicsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateMultipartReadSetUploadCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateMultipartReadSetUploadCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OmicsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateMultipartReadSetUploadCommandInput,
|
|
37
|
+
CreateMultipartReadSetUploadCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListMultipartReadSetUploadsRequest,
|
|
11
|
+
ListMultipartReadSetUploadsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
OmicsClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../OmicsClient";
|
|
18
|
+
export interface ListMultipartReadSetUploadsCommandInput
|
|
19
|
+
extends ListMultipartReadSetUploadsRequest {}
|
|
20
|
+
export interface ListMultipartReadSetUploadsCommandOutput
|
|
21
|
+
extends ListMultipartReadSetUploadsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListMultipartReadSetUploadsCommand extends $Command<
|
|
24
|
+
ListMultipartReadSetUploadsCommandInput,
|
|
25
|
+
ListMultipartReadSetUploadsCommandOutput,
|
|
26
|
+
OmicsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListMultipartReadSetUploadsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListMultipartReadSetUploadsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: OmicsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListMultipartReadSetUploadsCommandInput,
|
|
37
|
+
ListMultipartReadSetUploadsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|