@aws-sdk/client-omics 3.331.0 → 3.335.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 +626 -4
- 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 +612 -2
- package/dist-types/Omics.d.ts +43 -1
- package/dist-types/OmicsClient.d.ts +12 -5
- 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/endpoint/EndpointParameters.d.ts +2 -1
- 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 +57 -2
- package/dist-types/runtimeConfig.browser.d.ts +12 -12
- package/dist-types/runtimeConfig.d.ts +9 -9
- package/dist-types/runtimeConfig.native.d.ts +13 -13
- package/dist-types/runtimeConfig.shared.d.ts +4 -4
- package/dist-types/ts3.4/Omics.d.ts +102 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +45 -7
- 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/endpoint/EndpointParameters.d.ts +1 -2
- 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 +74 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +18 -15
- package/dist-types/ts3.4/runtimeConfig.d.ts +12 -12
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -15
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -4
- package/package.json +7 -6
|
@@ -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,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { SdkStreamSerdeContext as __SdkStreamSerdeContext } from "@aws-sdk/types";
|
|
2
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
3
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
4
|
+
import { AbortMultipartReadSetUploadCommandInput, AbortMultipartReadSetUploadCommandOutput } from "../commands/AbortMultipartReadSetUploadCommand";
|
|
3
5
|
import { BatchDeleteReadSetCommandInput, BatchDeleteReadSetCommandOutput } from "../commands/BatchDeleteReadSetCommand";
|
|
4
6
|
import { CancelAnnotationImportJobCommandInput, CancelAnnotationImportJobCommandOutput } from "../commands/CancelAnnotationImportJobCommand";
|
|
5
7
|
import { CancelRunCommandInput, CancelRunCommandOutput } from "../commands/CancelRunCommand";
|
|
6
8
|
import { CancelVariantImportJobCommandInput, CancelVariantImportJobCommandOutput } from "../commands/CancelVariantImportJobCommand";
|
|
9
|
+
import { CompleteMultipartReadSetUploadCommandInput, CompleteMultipartReadSetUploadCommandOutput } from "../commands/CompleteMultipartReadSetUploadCommand";
|
|
7
10
|
import { CreateAnnotationStoreCommandInput, CreateAnnotationStoreCommandOutput } from "../commands/CreateAnnotationStoreCommand";
|
|
11
|
+
import { CreateMultipartReadSetUploadCommandInput, CreateMultipartReadSetUploadCommandOutput } from "../commands/CreateMultipartReadSetUploadCommand";
|
|
8
12
|
import { CreateReferenceStoreCommandInput, CreateReferenceStoreCommandOutput } from "../commands/CreateReferenceStoreCommand";
|
|
9
13
|
import { CreateRunGroupCommandInput, CreateRunGroupCommandOutput } from "../commands/CreateRunGroupCommand";
|
|
10
14
|
import { CreateSequenceStoreCommandInput, CreateSequenceStoreCommandOutput } from "../commands/CreateSequenceStoreCommand";
|
|
@@ -38,10 +42,12 @@ import { GetVariantStoreCommandInput, GetVariantStoreCommandOutput } from "../co
|
|
|
38
42
|
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "../commands/GetWorkflowCommand";
|
|
39
43
|
import { ListAnnotationImportJobsCommandInput, ListAnnotationImportJobsCommandOutput } from "../commands/ListAnnotationImportJobsCommand";
|
|
40
44
|
import { ListAnnotationStoresCommandInput, ListAnnotationStoresCommandOutput } from "../commands/ListAnnotationStoresCommand";
|
|
45
|
+
import { ListMultipartReadSetUploadsCommandInput, ListMultipartReadSetUploadsCommandOutput } from "../commands/ListMultipartReadSetUploadsCommand";
|
|
41
46
|
import { ListReadSetActivationJobsCommandInput, ListReadSetActivationJobsCommandOutput } from "../commands/ListReadSetActivationJobsCommand";
|
|
42
47
|
import { ListReadSetExportJobsCommandInput, ListReadSetExportJobsCommandOutput } from "../commands/ListReadSetExportJobsCommand";
|
|
43
48
|
import { ListReadSetImportJobsCommandInput, ListReadSetImportJobsCommandOutput } from "../commands/ListReadSetImportJobsCommand";
|
|
44
49
|
import { ListReadSetsCommandInput, ListReadSetsCommandOutput } from "../commands/ListReadSetsCommand";
|
|
50
|
+
import { ListReadSetUploadPartsCommandInput, ListReadSetUploadPartsCommandOutput } from "../commands/ListReadSetUploadPartsCommand";
|
|
45
51
|
import { ListReferenceImportJobsCommandInput, ListReferenceImportJobsCommandOutput } from "../commands/ListReferenceImportJobsCommand";
|
|
46
52
|
import { ListReferencesCommandInput, ListReferencesCommandOutput } from "../commands/ListReferencesCommand";
|
|
47
53
|
import { ListReferenceStoresCommandInput, ListReferenceStoresCommandOutput } from "../commands/ListReferenceStoresCommand";
|
|
@@ -66,6 +72,11 @@ import { UpdateAnnotationStoreCommandInput, UpdateAnnotationStoreCommandOutput }
|
|
|
66
72
|
import { UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput } from "../commands/UpdateRunGroupCommand";
|
|
67
73
|
import { UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput } from "../commands/UpdateVariantStoreCommand";
|
|
68
74
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "../commands/UpdateWorkflowCommand";
|
|
75
|
+
import { UploadReadSetPartCommandInput, UploadReadSetPartCommandOutput } from "../commands/UploadReadSetPartCommand";
|
|
76
|
+
/**
|
|
77
|
+
* serializeAws_restJson1AbortMultipartReadSetUploadCommand
|
|
78
|
+
*/
|
|
79
|
+
export declare const se_AbortMultipartReadSetUploadCommand: (input: AbortMultipartReadSetUploadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
69
80
|
/**
|
|
70
81
|
* serializeAws_restJson1BatchDeleteReadSetCommand
|
|
71
82
|
*/
|
|
@@ -82,10 +93,18 @@ export declare const se_CancelRunCommand: (input: CancelRunCommandInput, context
|
|
|
82
93
|
* serializeAws_restJson1CancelVariantImportJobCommand
|
|
83
94
|
*/
|
|
84
95
|
export declare const se_CancelVariantImportJobCommand: (input: CancelVariantImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
+
/**
|
|
97
|
+
* serializeAws_restJson1CompleteMultipartReadSetUploadCommand
|
|
98
|
+
*/
|
|
99
|
+
export declare const se_CompleteMultipartReadSetUploadCommand: (input: CompleteMultipartReadSetUploadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
100
|
/**
|
|
86
101
|
* serializeAws_restJson1CreateAnnotationStoreCommand
|
|
87
102
|
*/
|
|
88
103
|
export declare const se_CreateAnnotationStoreCommand: (input: CreateAnnotationStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
|
+
/**
|
|
105
|
+
* serializeAws_restJson1CreateMultipartReadSetUploadCommand
|
|
106
|
+
*/
|
|
107
|
+
export declare const se_CreateMultipartReadSetUploadCommand: (input: CreateMultipartReadSetUploadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
108
|
/**
|
|
90
109
|
* serializeAws_restJson1CreateReferenceStoreCommand
|
|
91
110
|
*/
|
|
@@ -218,6 +237,10 @@ export declare const se_ListAnnotationImportJobsCommand: (input: ListAnnotationI
|
|
|
218
237
|
* serializeAws_restJson1ListAnnotationStoresCommand
|
|
219
238
|
*/
|
|
220
239
|
export declare const se_ListAnnotationStoresCommand: (input: ListAnnotationStoresCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
240
|
+
/**
|
|
241
|
+
* serializeAws_restJson1ListMultipartReadSetUploadsCommand
|
|
242
|
+
*/
|
|
243
|
+
export declare const se_ListMultipartReadSetUploadsCommand: (input: ListMultipartReadSetUploadsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
221
244
|
/**
|
|
222
245
|
* serializeAws_restJson1ListReadSetActivationJobsCommand
|
|
223
246
|
*/
|
|
@@ -234,6 +257,10 @@ export declare const se_ListReadSetImportJobsCommand: (input: ListReadSetImportJ
|
|
|
234
257
|
* serializeAws_restJson1ListReadSetsCommand
|
|
235
258
|
*/
|
|
236
259
|
export declare const se_ListReadSetsCommand: (input: ListReadSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
260
|
+
/**
|
|
261
|
+
* serializeAws_restJson1ListReadSetUploadPartsCommand
|
|
262
|
+
*/
|
|
263
|
+
export declare const se_ListReadSetUploadPartsCommand: (input: ListReadSetUploadPartsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
237
264
|
/**
|
|
238
265
|
* serializeAws_restJson1ListReferenceImportJobsCommand
|
|
239
266
|
*/
|
|
@@ -330,6 +357,14 @@ export declare const se_UpdateVariantStoreCommand: (input: UpdateVariantStoreCom
|
|
|
330
357
|
* serializeAws_restJson1UpdateWorkflowCommand
|
|
331
358
|
*/
|
|
332
359
|
export declare const se_UpdateWorkflowCommand: (input: UpdateWorkflowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
360
|
+
/**
|
|
361
|
+
* serializeAws_restJson1UploadReadSetPartCommand
|
|
362
|
+
*/
|
|
363
|
+
export declare const se_UploadReadSetPartCommand: (input: UploadReadSetPartCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
364
|
+
/**
|
|
365
|
+
* deserializeAws_restJson1AbortMultipartReadSetUploadCommand
|
|
366
|
+
*/
|
|
367
|
+
export declare const de_AbortMultipartReadSetUploadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AbortMultipartReadSetUploadCommandOutput>;
|
|
333
368
|
/**
|
|
334
369
|
* deserializeAws_restJson1BatchDeleteReadSetCommand
|
|
335
370
|
*/
|
|
@@ -346,10 +381,18 @@ export declare const de_CancelRunCommand: (output: __HttpResponse, context: __Se
|
|
|
346
381
|
* deserializeAws_restJson1CancelVariantImportJobCommand
|
|
347
382
|
*/
|
|
348
383
|
export declare const de_CancelVariantImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelVariantImportJobCommandOutput>;
|
|
384
|
+
/**
|
|
385
|
+
* deserializeAws_restJson1CompleteMultipartReadSetUploadCommand
|
|
386
|
+
*/
|
|
387
|
+
export declare const de_CompleteMultipartReadSetUploadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CompleteMultipartReadSetUploadCommandOutput>;
|
|
349
388
|
/**
|
|
350
389
|
* deserializeAws_restJson1CreateAnnotationStoreCommand
|
|
351
390
|
*/
|
|
352
391
|
export declare const de_CreateAnnotationStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAnnotationStoreCommandOutput>;
|
|
392
|
+
/**
|
|
393
|
+
* deserializeAws_restJson1CreateMultipartReadSetUploadCommand
|
|
394
|
+
*/
|
|
395
|
+
export declare const de_CreateMultipartReadSetUploadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMultipartReadSetUploadCommandOutput>;
|
|
353
396
|
/**
|
|
354
397
|
* deserializeAws_restJson1CreateReferenceStoreCommand
|
|
355
398
|
*/
|
|
@@ -482,6 +525,10 @@ export declare const de_ListAnnotationImportJobsCommand: (output: __HttpResponse
|
|
|
482
525
|
* deserializeAws_restJson1ListAnnotationStoresCommand
|
|
483
526
|
*/
|
|
484
527
|
export declare const de_ListAnnotationStoresCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAnnotationStoresCommandOutput>;
|
|
528
|
+
/**
|
|
529
|
+
* deserializeAws_restJson1ListMultipartReadSetUploadsCommand
|
|
530
|
+
*/
|
|
531
|
+
export declare const de_ListMultipartReadSetUploadsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMultipartReadSetUploadsCommandOutput>;
|
|
485
532
|
/**
|
|
486
533
|
* deserializeAws_restJson1ListReadSetActivationJobsCommand
|
|
487
534
|
*/
|
|
@@ -498,6 +545,10 @@ export declare const de_ListReadSetImportJobsCommand: (output: __HttpResponse, c
|
|
|
498
545
|
* deserializeAws_restJson1ListReadSetsCommand
|
|
499
546
|
*/
|
|
500
547
|
export declare const de_ListReadSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReadSetsCommandOutput>;
|
|
548
|
+
/**
|
|
549
|
+
* deserializeAws_restJson1ListReadSetUploadPartsCommand
|
|
550
|
+
*/
|
|
551
|
+
export declare const de_ListReadSetUploadPartsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReadSetUploadPartsCommandOutput>;
|
|
501
552
|
/**
|
|
502
553
|
* deserializeAws_restJson1ListReferenceImportJobsCommand
|
|
503
554
|
*/
|
|
@@ -594,3 +645,7 @@ export declare const de_UpdateVariantStoreCommand: (output: __HttpResponse, cont
|
|
|
594
645
|
* deserializeAws_restJson1UpdateWorkflowCommand
|
|
595
646
|
*/
|
|
596
647
|
export declare const de_UpdateWorkflowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWorkflowCommandOutput>;
|
|
648
|
+
/**
|
|
649
|
+
* deserializeAws_restJson1UploadReadSetPartCommand
|
|
650
|
+
*/
|
|
651
|
+
export declare const de_UploadReadSetPartCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UploadReadSetPartCommandOutput>;
|
|
@@ -7,27 +7,27 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
-
maxAttempts: number | import("@aws-sdk/types").Provider<number
|
|
12
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) & (number | import("@aws-sdk/types").Provider<number>);
|
|
13
13
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@
|
|
15
|
-
retryMode: string | import("@
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
16
|
sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
|
-
streamCollector: import("@
|
|
19
|
-
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean
|
|
20
|
-
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean
|
|
18
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
20
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
21
21
|
apiVersion: string;
|
|
22
22
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
23
|
-
base64Decoder: import("@
|
|
24
|
-
base64Encoder: import("@
|
|
25
|
-
utf8Decoder: import("@
|
|
26
|
-
utf8Encoder: import("@
|
|
23
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
25
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
27
27
|
disableHostPrefix: boolean;
|
|
28
28
|
serviceId: string;
|
|
29
29
|
logger: import("@aws-sdk/types").Logger;
|
|
30
|
-
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@
|
|
30
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
31
31
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
32
|
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
33
33
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
@@ -7,27 +7,27 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
13
|
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@
|
|
15
|
-
retryMode: string | import("@
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
16
|
sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
|
|
17
17
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
18
|
-
streamCollector: import("@
|
|
18
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
21
|
apiVersion: string;
|
|
22
22
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
23
|
-
base64Decoder: import("@
|
|
24
|
-
base64Encoder: import("@
|
|
25
|
-
utf8Decoder: import("@
|
|
26
|
-
utf8Encoder: import("@
|
|
23
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
25
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
27
27
|
disableHostPrefix: boolean;
|
|
28
28
|
serviceId: string;
|
|
29
29
|
logger: import("@aws-sdk/types").Logger;
|
|
30
|
-
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@
|
|
30
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
31
31
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
32
|
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
33
33
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
@@ -5,28 +5,28 @@ import { OmicsClientConfig } from "./OmicsClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
-
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@
|
|
8
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@smithy/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
11
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
-
streamCollector: import("@
|
|
13
|
-
base64Decoder: import("@
|
|
14
|
-
base64Encoder: import("@
|
|
15
|
-
utf8Decoder: import("@
|
|
16
|
-
utf8Encoder: import("@
|
|
12
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
15
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
17
17
|
disableHostPrefix: boolean;
|
|
18
18
|
serviceId: string;
|
|
19
|
-
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean
|
|
20
|
-
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean
|
|
19
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
20
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
21
21
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
22
|
-
credentialDefaultProvider: (input: any) => import("@
|
|
22
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
23
23
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
24
|
-
maxAttempts: number | import("@aws-sdk/types").Provider<number
|
|
25
|
-
retryMode: string | import("@
|
|
24
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) & (number | import("@aws-sdk/types").Provider<number>);
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
26
|
logger: import("@aws-sdk/types").Logger;
|
|
27
|
-
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@
|
|
27
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
28
28
|
sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
|
|
29
|
-
endpoint?: string | import("@aws-sdk/types").
|
|
29
|
+
endpoint?: string | import("@aws-sdk/types").EndpointV2 | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@smithy/types").Provider<import("@smithy/types").Endpoint>) | (import("@aws-sdk/types").Endpoint & import("@smithy/types").Endpoint) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>) | undefined;
|
|
30
30
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
31
|
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
32
|
}) => import("@aws-sdk/types").EndpointV2;
|
|
@@ -4,8 +4,8 @@ import { OmicsClientConfig } from "./OmicsClient";
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
|
-
base64Decoder: import("@
|
|
8
|
-
base64Encoder: import("@
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
11
|
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
@@ -13,6 +13,6 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
13
13
|
logger: import("@aws-sdk/types").Logger;
|
|
14
14
|
serviceId: string;
|
|
15
15
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
16
|
-
utf8Decoder: import("@
|
|
17
|
-
utf8Encoder: import("@
|
|
16
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
18
18
|
};
|
|
@@ -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 {}
|
|
@@ -22,7 +22,6 @@ import {
|
|
|
22
22
|
UserAgentInputConfig,
|
|
23
23
|
UserAgentResolvedConfig,
|
|
24
24
|
} from "@aws-sdk/middleware-user-agent";
|
|
25
|
-
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
26
25
|
import {
|
|
27
26
|
Client as __Client,
|
|
28
27
|
DefaultsMode as __DefaultsMode,
|
|
@@ -33,18 +32,25 @@ import {
|
|
|
33
32
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
33
|
ChecksumConstructor as __ChecksumConstructor,
|
|
35
34
|
Credentials as __Credentials,
|
|
36
|
-
Decoder as __Decoder,
|
|
37
|
-
Encoder as __Encoder,
|
|
38
35
|
HashConstructor as __HashConstructor,
|
|
39
36
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
40
37
|
Logger as __Logger,
|
|
41
|
-
Provider as __Provider,
|
|
42
38
|
Provider,
|
|
43
39
|
SdkStreamMixinInjector as __SdkStreamMixinInjector,
|
|
44
|
-
StreamCollector as __StreamCollector,
|
|
45
40
|
UrlParser as __UrlParser,
|
|
46
41
|
UserAgent as __UserAgent,
|
|
47
42
|
} from "@aws-sdk/types";
|
|
43
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
44
|
+
import {
|
|
45
|
+
Decoder as __Decoder,
|
|
46
|
+
Encoder as __Encoder,
|
|
47
|
+
Provider as __Provider,
|
|
48
|
+
StreamCollector as __StreamCollector,
|
|
49
|
+
} from "@smithy/types";
|
|
50
|
+
import {
|
|
51
|
+
AbortMultipartReadSetUploadCommandInput,
|
|
52
|
+
AbortMultipartReadSetUploadCommandOutput,
|
|
53
|
+
} from "./commands/AbortMultipartReadSetUploadCommand";
|
|
48
54
|
import {
|
|
49
55
|
BatchDeleteReadSetCommandInput,
|
|
50
56
|
BatchDeleteReadSetCommandOutput,
|
|
@@ -61,10 +67,18 @@ import {
|
|
|
61
67
|
CancelVariantImportJobCommandInput,
|
|
62
68
|
CancelVariantImportJobCommandOutput,
|
|
63
69
|
} from "./commands/CancelVariantImportJobCommand";
|
|
70
|
+
import {
|
|
71
|
+
CompleteMultipartReadSetUploadCommandInput,
|
|
72
|
+
CompleteMultipartReadSetUploadCommandOutput,
|
|
73
|
+
} from "./commands/CompleteMultipartReadSetUploadCommand";
|
|
64
74
|
import {
|
|
65
75
|
CreateAnnotationStoreCommandInput,
|
|
66
76
|
CreateAnnotationStoreCommandOutput,
|
|
67
77
|
} from "./commands/CreateAnnotationStoreCommand";
|
|
78
|
+
import {
|
|
79
|
+
CreateMultipartReadSetUploadCommandInput,
|
|
80
|
+
CreateMultipartReadSetUploadCommandOutput,
|
|
81
|
+
} from "./commands/CreateMultipartReadSetUploadCommand";
|
|
68
82
|
import {
|
|
69
83
|
CreateReferenceStoreCommandInput,
|
|
70
84
|
CreateReferenceStoreCommandOutput,
|
|
@@ -197,6 +211,10 @@ import {
|
|
|
197
211
|
ListAnnotationStoresCommandInput,
|
|
198
212
|
ListAnnotationStoresCommandOutput,
|
|
199
213
|
} from "./commands/ListAnnotationStoresCommand";
|
|
214
|
+
import {
|
|
215
|
+
ListMultipartReadSetUploadsCommandInput,
|
|
216
|
+
ListMultipartReadSetUploadsCommandOutput,
|
|
217
|
+
} from "./commands/ListMultipartReadSetUploadsCommand";
|
|
200
218
|
import {
|
|
201
219
|
ListReadSetActivationJobsCommandInput,
|
|
202
220
|
ListReadSetActivationJobsCommandOutput,
|
|
@@ -213,6 +231,10 @@ import {
|
|
|
213
231
|
ListReadSetsCommandInput,
|
|
214
232
|
ListReadSetsCommandOutput,
|
|
215
233
|
} from "./commands/ListReadSetsCommand";
|
|
234
|
+
import {
|
|
235
|
+
ListReadSetUploadPartsCommandInput,
|
|
236
|
+
ListReadSetUploadPartsCommandOutput,
|
|
237
|
+
} from "./commands/ListReadSetUploadPartsCommand";
|
|
216
238
|
import {
|
|
217
239
|
ListReferenceImportJobsCommandInput,
|
|
218
240
|
ListReferenceImportJobsCommandOutput,
|
|
@@ -309,17 +331,24 @@ import {
|
|
|
309
331
|
UpdateWorkflowCommandInput,
|
|
310
332
|
UpdateWorkflowCommandOutput,
|
|
311
333
|
} from "./commands/UpdateWorkflowCommand";
|
|
334
|
+
import {
|
|
335
|
+
UploadReadSetPartCommandInput,
|
|
336
|
+
UploadReadSetPartCommandOutput,
|
|
337
|
+
} from "./commands/UploadReadSetPartCommand";
|
|
312
338
|
import {
|
|
313
339
|
ClientInputEndpointParameters,
|
|
314
340
|
ClientResolvedEndpointParameters,
|
|
315
341
|
EndpointParameters,
|
|
316
342
|
} from "./endpoint/EndpointParameters";
|
|
317
343
|
export type ServiceInputTypes =
|
|
344
|
+
| AbortMultipartReadSetUploadCommandInput
|
|
318
345
|
| BatchDeleteReadSetCommandInput
|
|
319
346
|
| CancelAnnotationImportJobCommandInput
|
|
320
347
|
| CancelRunCommandInput
|
|
321
348
|
| CancelVariantImportJobCommandInput
|
|
349
|
+
| CompleteMultipartReadSetUploadCommandInput
|
|
322
350
|
| CreateAnnotationStoreCommandInput
|
|
351
|
+
| CreateMultipartReadSetUploadCommandInput
|
|
323
352
|
| CreateReferenceStoreCommandInput
|
|
324
353
|
| CreateRunGroupCommandInput
|
|
325
354
|
| CreateSequenceStoreCommandInput
|
|
@@ -353,9 +382,11 @@ export type ServiceInputTypes =
|
|
|
353
382
|
| GetWorkflowCommandInput
|
|
354
383
|
| ListAnnotationImportJobsCommandInput
|
|
355
384
|
| ListAnnotationStoresCommandInput
|
|
385
|
+
| ListMultipartReadSetUploadsCommandInput
|
|
356
386
|
| ListReadSetActivationJobsCommandInput
|
|
357
387
|
| ListReadSetExportJobsCommandInput
|
|
358
388
|
| ListReadSetImportJobsCommandInput
|
|
389
|
+
| ListReadSetUploadPartsCommandInput
|
|
359
390
|
| ListReadSetsCommandInput
|
|
360
391
|
| ListReferenceImportJobsCommandInput
|
|
361
392
|
| ListReferenceStoresCommandInput
|
|
@@ -380,13 +411,17 @@ export type ServiceInputTypes =
|
|
|
380
411
|
| UpdateAnnotationStoreCommandInput
|
|
381
412
|
| UpdateRunGroupCommandInput
|
|
382
413
|
| UpdateVariantStoreCommandInput
|
|
383
|
-
| UpdateWorkflowCommandInput
|
|
414
|
+
| UpdateWorkflowCommandInput
|
|
415
|
+
| UploadReadSetPartCommandInput;
|
|
384
416
|
export type ServiceOutputTypes =
|
|
417
|
+
| AbortMultipartReadSetUploadCommandOutput
|
|
385
418
|
| BatchDeleteReadSetCommandOutput
|
|
386
419
|
| CancelAnnotationImportJobCommandOutput
|
|
387
420
|
| CancelRunCommandOutput
|
|
388
421
|
| CancelVariantImportJobCommandOutput
|
|
422
|
+
| CompleteMultipartReadSetUploadCommandOutput
|
|
389
423
|
| CreateAnnotationStoreCommandOutput
|
|
424
|
+
| CreateMultipartReadSetUploadCommandOutput
|
|
390
425
|
| CreateReferenceStoreCommandOutput
|
|
391
426
|
| CreateRunGroupCommandOutput
|
|
392
427
|
| CreateSequenceStoreCommandOutput
|
|
@@ -420,9 +455,11 @@ export type ServiceOutputTypes =
|
|
|
420
455
|
| GetWorkflowCommandOutput
|
|
421
456
|
| ListAnnotationImportJobsCommandOutput
|
|
422
457
|
| ListAnnotationStoresCommandOutput
|
|
458
|
+
| ListMultipartReadSetUploadsCommandOutput
|
|
423
459
|
| ListReadSetActivationJobsCommandOutput
|
|
424
460
|
| ListReadSetExportJobsCommandOutput
|
|
425
461
|
| ListReadSetImportJobsCommandOutput
|
|
462
|
+
| ListReadSetUploadPartsCommandOutput
|
|
426
463
|
| ListReadSetsCommandOutput
|
|
427
464
|
| ListReferenceImportJobsCommandOutput
|
|
428
465
|
| ListReferenceStoresCommandOutput
|
|
@@ -447,7 +484,8 @@ export type ServiceOutputTypes =
|
|
|
447
484
|
| UpdateAnnotationStoreCommandOutput
|
|
448
485
|
| UpdateRunGroupCommandOutput
|
|
449
486
|
| UpdateVariantStoreCommandOutput
|
|
450
|
-
| UpdateWorkflowCommandOutput
|
|
487
|
+
| UpdateWorkflowCommandOutput
|
|
488
|
+
| UploadReadSetPartCommandOutput;
|
|
451
489
|
export interface ClientDefaults
|
|
452
490
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
453
491
|
requestHandler?: __HttpHandler;
|