@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
|
@@ -1,11 +1,13 @@
|
|
|
1
|
+
import { SdkStreamSerdeContext as __SdkStreamSerdeContext } from "@aws-sdk/types";
|
|
1
2
|
import {
|
|
2
3
|
HttpRequest as __HttpRequest,
|
|
3
4
|
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@
|
|
5
|
+
} from "@smithy/protocol-http";
|
|
6
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
5
7
|
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
} from "
|
|
8
|
+
AbortMultipartReadSetUploadCommandInput,
|
|
9
|
+
AbortMultipartReadSetUploadCommandOutput,
|
|
10
|
+
} from "../commands/AbortMultipartReadSetUploadCommand";
|
|
9
11
|
import {
|
|
10
12
|
BatchDeleteReadSetCommandInput,
|
|
11
13
|
BatchDeleteReadSetCommandOutput,
|
|
@@ -22,10 +24,18 @@ import {
|
|
|
22
24
|
CancelVariantImportJobCommandInput,
|
|
23
25
|
CancelVariantImportJobCommandOutput,
|
|
24
26
|
} from "../commands/CancelVariantImportJobCommand";
|
|
27
|
+
import {
|
|
28
|
+
CompleteMultipartReadSetUploadCommandInput,
|
|
29
|
+
CompleteMultipartReadSetUploadCommandOutput,
|
|
30
|
+
} from "../commands/CompleteMultipartReadSetUploadCommand";
|
|
25
31
|
import {
|
|
26
32
|
CreateAnnotationStoreCommandInput,
|
|
27
33
|
CreateAnnotationStoreCommandOutput,
|
|
28
34
|
} from "../commands/CreateAnnotationStoreCommand";
|
|
35
|
+
import {
|
|
36
|
+
CreateMultipartReadSetUploadCommandInput,
|
|
37
|
+
CreateMultipartReadSetUploadCommandOutput,
|
|
38
|
+
} from "../commands/CreateMultipartReadSetUploadCommand";
|
|
29
39
|
import {
|
|
30
40
|
CreateReferenceStoreCommandInput,
|
|
31
41
|
CreateReferenceStoreCommandOutput,
|
|
@@ -158,6 +168,10 @@ import {
|
|
|
158
168
|
ListAnnotationStoresCommandInput,
|
|
159
169
|
ListAnnotationStoresCommandOutput,
|
|
160
170
|
} from "../commands/ListAnnotationStoresCommand";
|
|
171
|
+
import {
|
|
172
|
+
ListMultipartReadSetUploadsCommandInput,
|
|
173
|
+
ListMultipartReadSetUploadsCommandOutput,
|
|
174
|
+
} from "../commands/ListMultipartReadSetUploadsCommand";
|
|
161
175
|
import {
|
|
162
176
|
ListReadSetActivationJobsCommandInput,
|
|
163
177
|
ListReadSetActivationJobsCommandOutput,
|
|
@@ -174,6 +188,10 @@ import {
|
|
|
174
188
|
ListReadSetsCommandInput,
|
|
175
189
|
ListReadSetsCommandOutput,
|
|
176
190
|
} from "../commands/ListReadSetsCommand";
|
|
191
|
+
import {
|
|
192
|
+
ListReadSetUploadPartsCommandInput,
|
|
193
|
+
ListReadSetUploadPartsCommandOutput,
|
|
194
|
+
} from "../commands/ListReadSetUploadPartsCommand";
|
|
177
195
|
import {
|
|
178
196
|
ListReferenceImportJobsCommandInput,
|
|
179
197
|
ListReferenceImportJobsCommandOutput,
|
|
@@ -270,6 +288,14 @@ import {
|
|
|
270
288
|
UpdateWorkflowCommandInput,
|
|
271
289
|
UpdateWorkflowCommandOutput,
|
|
272
290
|
} from "../commands/UpdateWorkflowCommand";
|
|
291
|
+
import {
|
|
292
|
+
UploadReadSetPartCommandInput,
|
|
293
|
+
UploadReadSetPartCommandOutput,
|
|
294
|
+
} from "../commands/UploadReadSetPartCommand";
|
|
295
|
+
export declare const se_AbortMultipartReadSetUploadCommand: (
|
|
296
|
+
input: AbortMultipartReadSetUploadCommandInput,
|
|
297
|
+
context: __SerdeContext
|
|
298
|
+
) => Promise<__HttpRequest>;
|
|
273
299
|
export declare const se_BatchDeleteReadSetCommand: (
|
|
274
300
|
input: BatchDeleteReadSetCommandInput,
|
|
275
301
|
context: __SerdeContext
|
|
@@ -286,10 +312,18 @@ export declare const se_CancelVariantImportJobCommand: (
|
|
|
286
312
|
input: CancelVariantImportJobCommandInput,
|
|
287
313
|
context: __SerdeContext
|
|
288
314
|
) => Promise<__HttpRequest>;
|
|
315
|
+
export declare const se_CompleteMultipartReadSetUploadCommand: (
|
|
316
|
+
input: CompleteMultipartReadSetUploadCommandInput,
|
|
317
|
+
context: __SerdeContext
|
|
318
|
+
) => Promise<__HttpRequest>;
|
|
289
319
|
export declare const se_CreateAnnotationStoreCommand: (
|
|
290
320
|
input: CreateAnnotationStoreCommandInput,
|
|
291
321
|
context: __SerdeContext
|
|
292
322
|
) => Promise<__HttpRequest>;
|
|
323
|
+
export declare const se_CreateMultipartReadSetUploadCommand: (
|
|
324
|
+
input: CreateMultipartReadSetUploadCommandInput,
|
|
325
|
+
context: __SerdeContext
|
|
326
|
+
) => Promise<__HttpRequest>;
|
|
293
327
|
export declare const se_CreateReferenceStoreCommand: (
|
|
294
328
|
input: CreateReferenceStoreCommandInput,
|
|
295
329
|
context: __SerdeContext
|
|
@@ -422,6 +456,10 @@ export declare const se_ListAnnotationStoresCommand: (
|
|
|
422
456
|
input: ListAnnotationStoresCommandInput,
|
|
423
457
|
context: __SerdeContext
|
|
424
458
|
) => Promise<__HttpRequest>;
|
|
459
|
+
export declare const se_ListMultipartReadSetUploadsCommand: (
|
|
460
|
+
input: ListMultipartReadSetUploadsCommandInput,
|
|
461
|
+
context: __SerdeContext
|
|
462
|
+
) => Promise<__HttpRequest>;
|
|
425
463
|
export declare const se_ListReadSetActivationJobsCommand: (
|
|
426
464
|
input: ListReadSetActivationJobsCommandInput,
|
|
427
465
|
context: __SerdeContext
|
|
@@ -438,6 +476,10 @@ export declare const se_ListReadSetsCommand: (
|
|
|
438
476
|
input: ListReadSetsCommandInput,
|
|
439
477
|
context: __SerdeContext
|
|
440
478
|
) => Promise<__HttpRequest>;
|
|
479
|
+
export declare const se_ListReadSetUploadPartsCommand: (
|
|
480
|
+
input: ListReadSetUploadPartsCommandInput,
|
|
481
|
+
context: __SerdeContext
|
|
482
|
+
) => Promise<__HttpRequest>;
|
|
441
483
|
export declare const se_ListReferenceImportJobsCommand: (
|
|
442
484
|
input: ListReferenceImportJobsCommandInput,
|
|
443
485
|
context: __SerdeContext
|
|
@@ -534,6 +576,14 @@ export declare const se_UpdateWorkflowCommand: (
|
|
|
534
576
|
input: UpdateWorkflowCommandInput,
|
|
535
577
|
context: __SerdeContext
|
|
536
578
|
) => Promise<__HttpRequest>;
|
|
579
|
+
export declare const se_UploadReadSetPartCommand: (
|
|
580
|
+
input: UploadReadSetPartCommandInput,
|
|
581
|
+
context: __SerdeContext
|
|
582
|
+
) => Promise<__HttpRequest>;
|
|
583
|
+
export declare const de_AbortMultipartReadSetUploadCommand: (
|
|
584
|
+
output: __HttpResponse,
|
|
585
|
+
context: __SerdeContext
|
|
586
|
+
) => Promise<AbortMultipartReadSetUploadCommandOutput>;
|
|
537
587
|
export declare const de_BatchDeleteReadSetCommand: (
|
|
538
588
|
output: __HttpResponse,
|
|
539
589
|
context: __SerdeContext
|
|
@@ -550,10 +600,18 @@ export declare const de_CancelVariantImportJobCommand: (
|
|
|
550
600
|
output: __HttpResponse,
|
|
551
601
|
context: __SerdeContext
|
|
552
602
|
) => Promise<CancelVariantImportJobCommandOutput>;
|
|
603
|
+
export declare const de_CompleteMultipartReadSetUploadCommand: (
|
|
604
|
+
output: __HttpResponse,
|
|
605
|
+
context: __SerdeContext
|
|
606
|
+
) => Promise<CompleteMultipartReadSetUploadCommandOutput>;
|
|
553
607
|
export declare const de_CreateAnnotationStoreCommand: (
|
|
554
608
|
output: __HttpResponse,
|
|
555
609
|
context: __SerdeContext
|
|
556
610
|
) => Promise<CreateAnnotationStoreCommandOutput>;
|
|
611
|
+
export declare const de_CreateMultipartReadSetUploadCommand: (
|
|
612
|
+
output: __HttpResponse,
|
|
613
|
+
context: __SerdeContext
|
|
614
|
+
) => Promise<CreateMultipartReadSetUploadCommandOutput>;
|
|
557
615
|
export declare const de_CreateReferenceStoreCommand: (
|
|
558
616
|
output: __HttpResponse,
|
|
559
617
|
context: __SerdeContext
|
|
@@ -686,6 +744,10 @@ export declare const de_ListAnnotationStoresCommand: (
|
|
|
686
744
|
output: __HttpResponse,
|
|
687
745
|
context: __SerdeContext
|
|
688
746
|
) => Promise<ListAnnotationStoresCommandOutput>;
|
|
747
|
+
export declare const de_ListMultipartReadSetUploadsCommand: (
|
|
748
|
+
output: __HttpResponse,
|
|
749
|
+
context: __SerdeContext
|
|
750
|
+
) => Promise<ListMultipartReadSetUploadsCommandOutput>;
|
|
689
751
|
export declare const de_ListReadSetActivationJobsCommand: (
|
|
690
752
|
output: __HttpResponse,
|
|
691
753
|
context: __SerdeContext
|
|
@@ -702,6 +764,10 @@ export declare const de_ListReadSetsCommand: (
|
|
|
702
764
|
output: __HttpResponse,
|
|
703
765
|
context: __SerdeContext
|
|
704
766
|
) => Promise<ListReadSetsCommandOutput>;
|
|
767
|
+
export declare const de_ListReadSetUploadPartsCommand: (
|
|
768
|
+
output: __HttpResponse,
|
|
769
|
+
context: __SerdeContext
|
|
770
|
+
) => Promise<ListReadSetUploadPartsCommandOutput>;
|
|
705
771
|
export declare const de_ListReferenceImportJobsCommand: (
|
|
706
772
|
output: __HttpResponse,
|
|
707
773
|
context: __SerdeContext
|
|
@@ -798,3 +864,7 @@ export declare const de_UpdateWorkflowCommand: (
|
|
|
798
864
|
output: __HttpResponse,
|
|
799
865
|
context: __SerdeContext
|
|
800
866
|
) => Promise<UpdateWorkflowCommandOutput>;
|
|
867
|
+
export declare const de_UploadReadSetPartCommand: (
|
|
868
|
+
output: __HttpResponse,
|
|
869
|
+
context: __SerdeContext
|
|
870
|
+
) => Promise<UploadReadSetPartCommandOutput>;
|
|
@@ -8,11 +8,12 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider: (
|
|
10
10
|
input: any
|
|
11
|
-
) => import("@
|
|
11
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
12
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
13
13
|
import("@aws-sdk/types").UserAgent
|
|
14
14
|
>;
|
|
15
|
-
maxAttempts: number | import("@
|
|
15
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) &
|
|
16
|
+
(number | import("@aws-sdk/types").Provider<number>);
|
|
16
17
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
17
18
|
requestHandler:
|
|
18
19
|
| (import("@aws-sdk/types").RequestHandler<
|
|
@@ -20,20 +21,22 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
20
21
|
any,
|
|
21
22
|
import("@aws-sdk/types").HttpHandlerOptions
|
|
22
23
|
> &
|
|
23
|
-
import("@
|
|
24
|
+
import("@smithy/protocol-http").HttpHandler)
|
|
24
25
|
| RequestHandler;
|
|
25
|
-
retryMode: string | import("@
|
|
26
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
27
|
sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
|
|
27
28
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
28
|
-
streamCollector: import("@
|
|
29
|
-
useDualstackEndpoint: boolean | import("@
|
|
30
|
-
|
|
29
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
|
+
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
32
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
|
+
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
31
34
|
apiVersion: string;
|
|
32
35
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
33
|
-
base64Decoder: import("@
|
|
34
|
-
base64Encoder: import("@
|
|
35
|
-
utf8Decoder: import("@
|
|
36
|
-
utf8Encoder: import("@
|
|
36
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
37
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
38
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
39
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
37
40
|
disableHostPrefix: boolean;
|
|
38
41
|
serviceId: string;
|
|
39
42
|
logger: import("@aws-sdk/types").Logger;
|
|
@@ -47,11 +50,11 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
47
50
|
) &
|
|
48
51
|
(
|
|
49
52
|
| string
|
|
50
|
-
| import("@
|
|
51
|
-
| import("@
|
|
52
|
-
| import("@
|
|
53
|
+
| import("@smithy/types").Provider<string>
|
|
54
|
+
| import("@smithy/types").Endpoint
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
53
56
|
| import("@aws-sdk/types").EndpointV2
|
|
54
|
-
| import("@
|
|
57
|
+
| import("@smithy/types").Provider<
|
|
55
58
|
import("@aws-sdk/types").EndpointV2
|
|
56
59
|
>
|
|
57
60
|
))
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider: (
|
|
10
10
|
input: any
|
|
11
|
-
) => import("@
|
|
11
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
12
12
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
13
13
|
import("@aws-sdk/types").UserAgent
|
|
14
14
|
>;
|
|
@@ -20,20 +20,20 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
20
20
|
any,
|
|
21
21
|
import("@aws-sdk/types").HttpHandlerOptions
|
|
22
22
|
> &
|
|
23
|
-
import("@
|
|
23
|
+
import("@smithy/protocol-http").HttpHandler)
|
|
24
24
|
| RequestHandler;
|
|
25
|
-
retryMode: string | import("@
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
26
|
sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
|
|
27
27
|
sha256: import("@aws-sdk/types").HashConstructor;
|
|
28
|
-
streamCollector: import("@
|
|
28
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
29
29
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
30
30
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
31
|
apiVersion: string;
|
|
32
32
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
33
|
-
base64Decoder: import("@
|
|
34
|
-
base64Encoder: import("@
|
|
35
|
-
utf8Decoder: import("@
|
|
36
|
-
utf8Encoder: import("@
|
|
33
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
34
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
35
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
36
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
37
37
|
disableHostPrefix: boolean;
|
|
38
38
|
serviceId: string;
|
|
39
39
|
logger: import("@aws-sdk/types").Logger;
|
|
@@ -47,11 +47,11 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
47
47
|
) &
|
|
48
48
|
(
|
|
49
49
|
| string
|
|
50
|
-
| import("@
|
|
51
|
-
| import("@
|
|
52
|
-
| import("@
|
|
50
|
+
| import("@smithy/types").Provider<string>
|
|
51
|
+
| import("@smithy/types").Endpoint
|
|
52
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
53
53
|
| import("@aws-sdk/types").EndpointV2
|
|
54
|
-
| import("@
|
|
54
|
+
| import("@smithy/types").Provider<
|
|
55
55
|
import("@aws-sdk/types").EndpointV2
|
|
56
56
|
>
|
|
57
57
|
))
|
|
@@ -8,42 +8,47 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
8
8
|
any,
|
|
9
9
|
import("@aws-sdk/types").HttpHandlerOptions
|
|
10
10
|
> &
|
|
11
|
-
import("@
|
|
11
|
+
import("@smithy/protocol-http").HttpHandler)
|
|
12
12
|
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
13
13
|
apiVersion: string;
|
|
14
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
15
15
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
16
|
-
streamCollector: import("@
|
|
17
|
-
base64Decoder: import("@
|
|
18
|
-
base64Encoder: import("@
|
|
19
|
-
utf8Decoder: import("@
|
|
20
|
-
utf8Encoder: import("@
|
|
16
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
17
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
18
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
19
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
utf8Encoder: import("@smithy/types").Encoder;
|
|
21
21
|
disableHostPrefix: boolean;
|
|
22
22
|
serviceId: string;
|
|
23
|
-
useDualstackEndpoint: boolean | import("@
|
|
24
|
-
|
|
23
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
24
|
+
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
25
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
26
|
+
(boolean | import("@aws-sdk/types").Provider<boolean>);
|
|
25
27
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
26
28
|
credentialDefaultProvider: (
|
|
27
29
|
input: any
|
|
28
|
-
) => import("@
|
|
30
|
+
) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
29
31
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
30
32
|
import("@aws-sdk/types").UserAgent
|
|
31
33
|
>;
|
|
32
|
-
maxAttempts: number | import("@
|
|
33
|
-
|
|
34
|
+
maxAttempts: (number | import("@smithy/types").Provider<number>) &
|
|
35
|
+
(number | import("@aws-sdk/types").Provider<number>);
|
|
36
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
34
37
|
logger: import("@aws-sdk/types").Logger;
|
|
35
38
|
defaultsMode:
|
|
36
39
|
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
37
|
-
| import("@
|
|
40
|
+
| import("@smithy/types").Provider<
|
|
38
41
|
import("@aws-sdk/smithy-client").DefaultsMode
|
|
39
42
|
>;
|
|
40
43
|
sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
|
|
41
44
|
endpoint?:
|
|
42
45
|
| string
|
|
43
|
-
| import("@aws-sdk/types").Endpoint
|
|
44
|
-
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
46
|
| import("@aws-sdk/types").EndpointV2
|
|
46
|
-
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").
|
|
47
|
+
| (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> &
|
|
48
|
+
import("@smithy/types").Provider<import("@smithy/types").Endpoint>)
|
|
49
|
+
| (import("@aws-sdk/types").Endpoint & import("@smithy/types").Endpoint)
|
|
50
|
+
| (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> &
|
|
51
|
+
import("@smithy/types").Provider<import("@aws-sdk/types").EndpointV2>)
|
|
47
52
|
| undefined;
|
|
48
53
|
endpointProvider: (
|
|
49
54
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { OmicsClientConfig } from "./OmicsClient";
|
|
2
2
|
export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
3
3
|
apiVersion: string;
|
|
4
|
-
base64Decoder: import("@
|
|
5
|
-
base64Encoder: import("@
|
|
4
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
5
|
+
base64Encoder: import("@smithy/types").Encoder;
|
|
6
6
|
disableHostPrefix: boolean;
|
|
7
7
|
endpointProvider: (
|
|
8
8
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
@@ -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
|
};
|
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.335.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.335.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.329.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.335.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,10 +36,9 @@
|
|
|
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
|
-
"@aws-sdk/protocol-http": "3.329.0",
|
|
43
42
|
"@aws-sdk/smithy-client": "3.329.0",
|
|
44
43
|
"@aws-sdk/types": "3.329.0",
|
|
45
44
|
"@aws-sdk/url-parser": "3.329.0",
|
|
@@ -48,7 +47,7 @@
|
|
|
48
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
48
|
"@aws-sdk/util-defaults-mode-browser": "3.329.0",
|
|
50
49
|
"@aws-sdk/util-defaults-mode-node": "3.329.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.332.0",
|
|
52
51
|
"@aws-sdk/util-retry": "3.329.0",
|
|
53
52
|
"@aws-sdk/util-stream-browser": "3.329.0",
|
|
54
53
|
"@aws-sdk/util-stream-node": "3.331.0",
|
|
@@ -56,6 +55,8 @@
|
|
|
56
55
|
"@aws-sdk/util-user-agent-node": "3.329.0",
|
|
57
56
|
"@aws-sdk/util-utf8": "3.310.0",
|
|
58
57
|
"@aws-sdk/util-waiter": "3.329.0",
|
|
58
|
+
"@smithy/protocol-http": "^1.0.1",
|
|
59
|
+
"@smithy/types": "^1.0.0",
|
|
59
60
|
"tslib": "^2.5.0",
|
|
60
61
|
"uuid": "^8.3.2"
|
|
61
62
|
},
|