@aws-sdk/client-omics 3.1017.0 → 3.1019.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 +28 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/index.js +74 -0
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-cjs/schemas/schemas_0.js +125 -16
- package/dist-es/Omics.js +10 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/commands/CreateConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteConfigurationCommand.js +16 -0
- package/dist-es/commands/GetConfigurationCommand.js +16 -0
- package/dist-es/commands/ListConfigurationsCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +12 -0
- package/dist-es/pagination/ListConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-es/schemas/schemas_0.js +116 -8
- package/dist-types/Omics.d.ts +36 -0
- package/dist-types/OmicsClient.d.ts +6 -2
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/CreateConfigurationCommand.d.ts +132 -0
- package/dist-types/commands/DeleteConfigurationCommand.d.ts +96 -0
- package/dist-types/commands/GetConfigurationCommand.d.ts +117 -0
- package/dist-types/commands/GetRunCommand.d.ts +15 -0
- package/dist-types/commands/ListConfigurationsCommand.d.ts +108 -0
- package/dist-types/commands/StartRunCommand.d.ts +8 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +28 -0
- package/dist-types/models/models_0.d.ts +317 -1
- package/dist-types/pagination/ListConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/Omics.d.ts +76 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +24 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteConfigurationCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +16 -0
- package/dist-types/ts3.4/models/models_0.d.ts +77 -0
- package/dist-types/ts3.4/pagination/ListConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +7 -7
|
@@ -86,6 +86,10 @@ import {
|
|
|
86
86
|
CreateAnnotationStoreVersionCommandInput,
|
|
87
87
|
CreateAnnotationStoreVersionCommandOutput,
|
|
88
88
|
} from "./commands/CreateAnnotationStoreVersionCommand";
|
|
89
|
+
import {
|
|
90
|
+
CreateConfigurationCommandInput,
|
|
91
|
+
CreateConfigurationCommandOutput,
|
|
92
|
+
} from "./commands/CreateConfigurationCommand";
|
|
89
93
|
import {
|
|
90
94
|
CreateMultipartReadSetUploadCommandInput,
|
|
91
95
|
CreateMultipartReadSetUploadCommandOutput,
|
|
@@ -134,6 +138,10 @@ import {
|
|
|
134
138
|
DeleteBatchCommandInput,
|
|
135
139
|
DeleteBatchCommandOutput,
|
|
136
140
|
} from "./commands/DeleteBatchCommand";
|
|
141
|
+
import {
|
|
142
|
+
DeleteConfigurationCommandInput,
|
|
143
|
+
DeleteConfigurationCommandOutput,
|
|
144
|
+
} from "./commands/DeleteConfigurationCommand";
|
|
137
145
|
import {
|
|
138
146
|
DeleteReferenceCommandInput,
|
|
139
147
|
DeleteReferenceCommandOutput,
|
|
@@ -198,6 +206,10 @@ import {
|
|
|
198
206
|
GetBatchCommandInput,
|
|
199
207
|
GetBatchCommandOutput,
|
|
200
208
|
} from "./commands/GetBatchCommand";
|
|
209
|
+
import {
|
|
210
|
+
GetConfigurationCommandInput,
|
|
211
|
+
GetConfigurationCommandOutput,
|
|
212
|
+
} from "./commands/GetConfigurationCommand";
|
|
201
213
|
import {
|
|
202
214
|
GetReadSetActivationJobCommandInput,
|
|
203
215
|
GetReadSetActivationJobCommandOutput,
|
|
@@ -294,6 +306,10 @@ import {
|
|
|
294
306
|
ListBatchCommandInput,
|
|
295
307
|
ListBatchCommandOutput,
|
|
296
308
|
} from "./commands/ListBatchCommand";
|
|
309
|
+
import {
|
|
310
|
+
ListConfigurationsCommandInput,
|
|
311
|
+
ListConfigurationsCommandOutput,
|
|
312
|
+
} from "./commands/ListConfigurationsCommand";
|
|
297
313
|
import {
|
|
298
314
|
ListMultipartReadSetUploadsCommandInput,
|
|
299
315
|
ListMultipartReadSetUploadsCommandOutput,
|
|
@@ -476,6 +492,7 @@ export type ServiceInputTypes =
|
|
|
476
492
|
| CompleteMultipartReadSetUploadCommandInput
|
|
477
493
|
| CreateAnnotationStoreCommandInput
|
|
478
494
|
| CreateAnnotationStoreVersionCommandInput
|
|
495
|
+
| CreateConfigurationCommandInput
|
|
479
496
|
| CreateMultipartReadSetUploadCommandInput
|
|
480
497
|
| CreateReferenceStoreCommandInput
|
|
481
498
|
| CreateRunCacheCommandInput
|
|
@@ -488,6 +505,7 @@ export type ServiceInputTypes =
|
|
|
488
505
|
| DeleteAnnotationStoreCommandInput
|
|
489
506
|
| DeleteAnnotationStoreVersionsCommandInput
|
|
490
507
|
| DeleteBatchCommandInput
|
|
508
|
+
| DeleteConfigurationCommandInput
|
|
491
509
|
| DeleteReferenceCommandInput
|
|
492
510
|
| DeleteReferenceStoreCommandInput
|
|
493
511
|
| DeleteRunBatchCommandInput
|
|
@@ -504,6 +522,7 @@ export type ServiceInputTypes =
|
|
|
504
522
|
| GetAnnotationStoreCommandInput
|
|
505
523
|
| GetAnnotationStoreVersionCommandInput
|
|
506
524
|
| GetBatchCommandInput
|
|
525
|
+
| GetConfigurationCommandInput
|
|
507
526
|
| GetReadSetActivationJobCommandInput
|
|
508
527
|
| GetReadSetCommandInput
|
|
509
528
|
| GetReadSetExportJobCommandInput
|
|
@@ -528,6 +547,7 @@ export type ServiceInputTypes =
|
|
|
528
547
|
| ListAnnotationStoreVersionsCommandInput
|
|
529
548
|
| ListAnnotationStoresCommandInput
|
|
530
549
|
| ListBatchCommandInput
|
|
550
|
+
| ListConfigurationsCommandInput
|
|
531
551
|
| ListMultipartReadSetUploadsCommandInput
|
|
532
552
|
| ListReadSetActivationJobsCommandInput
|
|
533
553
|
| ListReadSetExportJobsCommandInput
|
|
@@ -580,6 +600,7 @@ export type ServiceOutputTypes =
|
|
|
580
600
|
| CompleteMultipartReadSetUploadCommandOutput
|
|
581
601
|
| CreateAnnotationStoreCommandOutput
|
|
582
602
|
| CreateAnnotationStoreVersionCommandOutput
|
|
603
|
+
| CreateConfigurationCommandOutput
|
|
583
604
|
| CreateMultipartReadSetUploadCommandOutput
|
|
584
605
|
| CreateReferenceStoreCommandOutput
|
|
585
606
|
| CreateRunCacheCommandOutput
|
|
@@ -592,6 +613,7 @@ export type ServiceOutputTypes =
|
|
|
592
613
|
| DeleteAnnotationStoreCommandOutput
|
|
593
614
|
| DeleteAnnotationStoreVersionsCommandOutput
|
|
594
615
|
| DeleteBatchCommandOutput
|
|
616
|
+
| DeleteConfigurationCommandOutput
|
|
595
617
|
| DeleteReferenceCommandOutput
|
|
596
618
|
| DeleteReferenceStoreCommandOutput
|
|
597
619
|
| DeleteRunBatchCommandOutput
|
|
@@ -608,6 +630,7 @@ export type ServiceOutputTypes =
|
|
|
608
630
|
| GetAnnotationStoreCommandOutput
|
|
609
631
|
| GetAnnotationStoreVersionCommandOutput
|
|
610
632
|
| GetBatchCommandOutput
|
|
633
|
+
| GetConfigurationCommandOutput
|
|
611
634
|
| GetReadSetActivationJobCommandOutput
|
|
612
635
|
| GetReadSetCommandOutput
|
|
613
636
|
| GetReadSetExportJobCommandOutput
|
|
@@ -632,6 +655,7 @@ export type ServiceOutputTypes =
|
|
|
632
655
|
| ListAnnotationStoreVersionsCommandOutput
|
|
633
656
|
| ListAnnotationStoresCommandOutput
|
|
634
657
|
| ListBatchCommandOutput
|
|
658
|
+
| ListConfigurationsCommandOutput
|
|
635
659
|
| ListMultipartReadSetUploadsCommandOutput
|
|
636
660
|
| ListReadSetActivationJobsCommandOutput
|
|
637
661
|
| ListReadSetExportJobsCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateConfigurationRequest,
|
|
5
|
+
CreateConfigurationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OmicsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OmicsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateConfigurationCommandInput
|
|
15
|
+
extends CreateConfigurationRequest {}
|
|
16
|
+
export interface CreateConfigurationCommandOutput
|
|
17
|
+
extends CreateConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateConfigurationCommandInput,
|
|
24
|
+
CreateConfigurationCommandOutput,
|
|
25
|
+
OmicsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateConfigurationCommandInput,
|
|
33
|
+
CreateConfigurationCommandOutput,
|
|
34
|
+
OmicsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateConfigurationCommand extends CreateConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateConfigurationRequest;
|
|
44
|
+
output: CreateConfigurationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateConfigurationCommandInput;
|
|
48
|
+
output: CreateConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteConfigurationRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
OmicsClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../OmicsClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteConfigurationCommandInput
|
|
12
|
+
extends DeleteConfigurationRequest {}
|
|
13
|
+
export interface DeleteConfigurationCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const DeleteConfigurationCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: DeleteConfigurationCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
DeleteConfigurationCommandInput,
|
|
19
|
+
DeleteConfigurationCommandOutput,
|
|
20
|
+
OmicsClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
input: DeleteConfigurationCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteConfigurationCommandInput,
|
|
28
|
+
DeleteConfigurationCommandOutput,
|
|
29
|
+
OmicsClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class DeleteConfigurationCommand extends DeleteConfigurationCommand_base {
|
|
36
|
+
protected static __types: {
|
|
37
|
+
api: {
|
|
38
|
+
input: DeleteConfigurationRequest;
|
|
39
|
+
output: {};
|
|
40
|
+
};
|
|
41
|
+
sdk: {
|
|
42
|
+
input: DeleteConfigurationCommandInput;
|
|
43
|
+
output: DeleteConfigurationCommandOutput;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetConfigurationRequest,
|
|
5
|
+
GetConfigurationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OmicsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OmicsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetConfigurationCommandInput extends GetConfigurationRequest {}
|
|
15
|
+
export interface GetConfigurationCommandOutput
|
|
16
|
+
extends GetConfigurationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetConfigurationCommandInput,
|
|
23
|
+
GetConfigurationCommandOutput,
|
|
24
|
+
OmicsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: GetConfigurationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetConfigurationCommandInput,
|
|
32
|
+
GetConfigurationCommandOutput,
|
|
33
|
+
OmicsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetConfigurationCommand extends GetConfigurationCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetConfigurationRequest;
|
|
43
|
+
output: GetConfigurationResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetConfigurationCommandInput;
|
|
47
|
+
output: GetConfigurationCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListConfigurationsRequest,
|
|
5
|
+
ListConfigurationsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
OmicsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../OmicsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListConfigurationsCommandInput
|
|
15
|
+
extends ListConfigurationsRequest {}
|
|
16
|
+
export interface ListConfigurationsCommandOutput
|
|
17
|
+
extends ListConfigurationsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListConfigurationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListConfigurationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListConfigurationsCommandInput,
|
|
24
|
+
ListConfigurationsCommandOutput,
|
|
25
|
+
OmicsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListConfigurationsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListConfigurationsCommandInput,
|
|
33
|
+
ListConfigurationsCommandOutput,
|
|
34
|
+
OmicsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListConfigurationsCommand extends ListConfigurationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListConfigurationsRequest;
|
|
44
|
+
output: ListConfigurationsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListConfigurationsCommandInput;
|
|
48
|
+
output: ListConfigurationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -8,6 +8,7 @@ export * from "./CancelVariantImportJobCommand";
|
|
|
8
8
|
export * from "./CompleteMultipartReadSetUploadCommand";
|
|
9
9
|
export * from "./CreateAnnotationStoreCommand";
|
|
10
10
|
export * from "./CreateAnnotationStoreVersionCommand";
|
|
11
|
+
export * from "./CreateConfigurationCommand";
|
|
11
12
|
export * from "./CreateMultipartReadSetUploadCommand";
|
|
12
13
|
export * from "./CreateReferenceStoreCommand";
|
|
13
14
|
export * from "./CreateRunCacheCommand";
|
|
@@ -20,6 +21,7 @@ export * from "./CreateWorkflowVersionCommand";
|
|
|
20
21
|
export * from "./DeleteAnnotationStoreCommand";
|
|
21
22
|
export * from "./DeleteAnnotationStoreVersionsCommand";
|
|
22
23
|
export * from "./DeleteBatchCommand";
|
|
24
|
+
export * from "./DeleteConfigurationCommand";
|
|
23
25
|
export * from "./DeleteReferenceCommand";
|
|
24
26
|
export * from "./DeleteReferenceStoreCommand";
|
|
25
27
|
export * from "./DeleteRunBatchCommand";
|
|
@@ -36,6 +38,7 @@ export * from "./GetAnnotationImportJobCommand";
|
|
|
36
38
|
export * from "./GetAnnotationStoreCommand";
|
|
37
39
|
export * from "./GetAnnotationStoreVersionCommand";
|
|
38
40
|
export * from "./GetBatchCommand";
|
|
41
|
+
export * from "./GetConfigurationCommand";
|
|
39
42
|
export * from "./GetReadSetActivationJobCommand";
|
|
40
43
|
export * from "./GetReadSetCommand";
|
|
41
44
|
export * from "./GetReadSetExportJobCommand";
|
|
@@ -60,6 +63,7 @@ export * from "./ListAnnotationImportJobsCommand";
|
|
|
60
63
|
export * from "./ListAnnotationStoreVersionsCommand";
|
|
61
64
|
export * from "./ListAnnotationStoresCommand";
|
|
62
65
|
export * from "./ListBatchCommand";
|
|
66
|
+
export * from "./ListConfigurationsCommand";
|
|
63
67
|
export * from "./ListMultipartReadSetUploadsCommand";
|
|
64
68
|
export * from "./ListReadSetActivationJobsCommand";
|
|
65
69
|
export * from "./ListReadSetExportJobsCommand";
|
|
@@ -120,6 +120,16 @@ export declare const ReadSetPartSource: {
|
|
|
120
120
|
};
|
|
121
121
|
export type ReadSetPartSource =
|
|
122
122
|
(typeof ReadSetPartSource)[keyof typeof ReadSetPartSource];
|
|
123
|
+
export declare const ConfigurationStatus: {
|
|
124
|
+
readonly ACTIVE: "ACTIVE";
|
|
125
|
+
readonly CREATING: "CREATING";
|
|
126
|
+
readonly DELETED: "DELETED";
|
|
127
|
+
readonly DELETING: "DELETING";
|
|
128
|
+
readonly FAILED: "FAILED";
|
|
129
|
+
readonly UPDATING: "UPDATING";
|
|
130
|
+
};
|
|
131
|
+
export type ConfigurationStatus =
|
|
132
|
+
(typeof ConfigurationStatus)[keyof typeof ConfigurationStatus];
|
|
123
133
|
export declare const FileType: {
|
|
124
134
|
readonly BAM: "BAM";
|
|
125
135
|
readonly CRAM: "CRAM";
|
|
@@ -316,6 +326,12 @@ export declare const RunExport: {
|
|
|
316
326
|
readonly DEFINITION: "DEFINITION";
|
|
317
327
|
};
|
|
318
328
|
export type RunExport = (typeof RunExport)[keyof typeof RunExport];
|
|
329
|
+
export declare const NetworkingMode: {
|
|
330
|
+
readonly RESTRICTED: "RESTRICTED";
|
|
331
|
+
readonly VPC: "VPC";
|
|
332
|
+
};
|
|
333
|
+
export type NetworkingMode =
|
|
334
|
+
(typeof NetworkingMode)[keyof typeof NetworkingMode];
|
|
319
335
|
export declare const RunStatus: {
|
|
320
336
|
readonly CANCELLED: "CANCELLED";
|
|
321
337
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
AnnotationType,
|
|
9
9
|
BatchStatus,
|
|
10
10
|
CacheBehavior,
|
|
11
|
+
ConfigurationStatus,
|
|
11
12
|
CreationType,
|
|
12
13
|
EncryptionType,
|
|
13
14
|
ETagAlgorithm,
|
|
@@ -15,6 +16,7 @@ import {
|
|
|
15
16
|
FileType,
|
|
16
17
|
FormatToHeaderKey,
|
|
17
18
|
JobStatus,
|
|
19
|
+
NetworkingMode,
|
|
18
20
|
ReadSetActivationJobItemStatus,
|
|
19
21
|
ReadSetActivationJobStatus,
|
|
20
22
|
ReadSetExportJobItemStatus,
|
|
@@ -512,6 +514,74 @@ export interface CompleteMultipartReadSetUploadRequest {
|
|
|
512
514
|
export interface CompleteMultipartReadSetUploadResponse {
|
|
513
515
|
readSetId: string | undefined;
|
|
514
516
|
}
|
|
517
|
+
export interface ConfigurationDetails {
|
|
518
|
+
name?: string | undefined;
|
|
519
|
+
arn?: string | undefined;
|
|
520
|
+
uuid?: string | undefined;
|
|
521
|
+
}
|
|
522
|
+
export interface ConfigurationListItem {
|
|
523
|
+
arn?: string | undefined;
|
|
524
|
+
name?: string | undefined;
|
|
525
|
+
description?: string | undefined;
|
|
526
|
+
status?: ConfigurationStatus | undefined;
|
|
527
|
+
creationTime?: Date | undefined;
|
|
528
|
+
}
|
|
529
|
+
export interface VpcConfig {
|
|
530
|
+
securityGroupIds?: string[] | undefined;
|
|
531
|
+
subnetIds?: string[] | undefined;
|
|
532
|
+
}
|
|
533
|
+
export interface RunConfigurations {
|
|
534
|
+
vpcConfig?: VpcConfig | undefined;
|
|
535
|
+
}
|
|
536
|
+
export interface CreateConfigurationRequest {
|
|
537
|
+
name: string | undefined;
|
|
538
|
+
description?: string | undefined;
|
|
539
|
+
runConfigurations: RunConfigurations | undefined;
|
|
540
|
+
tags?: Record<string, string> | undefined;
|
|
541
|
+
requestId?: string | undefined;
|
|
542
|
+
}
|
|
543
|
+
export interface VpcConfigResponse {
|
|
544
|
+
securityGroupIds?: string[] | undefined;
|
|
545
|
+
subnetIds?: string[] | undefined;
|
|
546
|
+
vpcId?: string | undefined;
|
|
547
|
+
}
|
|
548
|
+
export interface RunConfigurationsResponse {
|
|
549
|
+
vpcConfig?: VpcConfigResponse | undefined;
|
|
550
|
+
}
|
|
551
|
+
export interface CreateConfigurationResponse {
|
|
552
|
+
arn?: string | undefined;
|
|
553
|
+
uuid?: string | undefined;
|
|
554
|
+
name?: string | undefined;
|
|
555
|
+
description?: string | undefined;
|
|
556
|
+
runConfigurations?: RunConfigurationsResponse | undefined;
|
|
557
|
+
status?: ConfigurationStatus | undefined;
|
|
558
|
+
creationTime?: Date | undefined;
|
|
559
|
+
tags?: Record<string, string> | undefined;
|
|
560
|
+
}
|
|
561
|
+
export interface DeleteConfigurationRequest {
|
|
562
|
+
name: string | undefined;
|
|
563
|
+
}
|
|
564
|
+
export interface GetConfigurationRequest {
|
|
565
|
+
name: string | undefined;
|
|
566
|
+
}
|
|
567
|
+
export interface GetConfigurationResponse {
|
|
568
|
+
arn?: string | undefined;
|
|
569
|
+
uuid?: string | undefined;
|
|
570
|
+
name?: string | undefined;
|
|
571
|
+
description?: string | undefined;
|
|
572
|
+
runConfigurations?: RunConfigurationsResponse | undefined;
|
|
573
|
+
status?: ConfigurationStatus | undefined;
|
|
574
|
+
creationTime?: Date | undefined;
|
|
575
|
+
tags?: Record<string, string> | undefined;
|
|
576
|
+
}
|
|
577
|
+
export interface ListConfigurationsRequest {
|
|
578
|
+
maxResults?: number | undefined;
|
|
579
|
+
startingToken?: string | undefined;
|
|
580
|
+
}
|
|
581
|
+
export interface ListConfigurationsResponse {
|
|
582
|
+
items?: ConfigurationListItem[] | undefined;
|
|
583
|
+
nextToken?: string | undefined;
|
|
584
|
+
}
|
|
515
585
|
export interface ImageMapping {
|
|
516
586
|
sourceImage?: string | undefined;
|
|
517
587
|
destinationImage?: string | undefined;
|
|
@@ -1099,6 +1169,9 @@ export interface GetRunResponse {
|
|
|
1099
1169
|
workflowOwnerId?: string | undefined;
|
|
1100
1170
|
workflowVersionName?: string | undefined;
|
|
1101
1171
|
workflowUuid?: string | undefined;
|
|
1172
|
+
networkingMode?: NetworkingMode | undefined;
|
|
1173
|
+
configuration?: ConfigurationDetails | undefined;
|
|
1174
|
+
vpcConfig?: VpcConfigResponse | undefined;
|
|
1102
1175
|
}
|
|
1103
1176
|
export interface GetRunCacheRequest {
|
|
1104
1177
|
id: string | undefined;
|
|
@@ -1837,6 +1910,8 @@ export interface StartRunRequest {
|
|
|
1837
1910
|
storageType?: StorageType | undefined;
|
|
1838
1911
|
workflowOwnerId?: string | undefined;
|
|
1839
1912
|
workflowVersionName?: string | undefined;
|
|
1913
|
+
networkingMode?: NetworkingMode | undefined;
|
|
1914
|
+
configurationName?: string | undefined;
|
|
1840
1915
|
}
|
|
1841
1916
|
export interface StartRunResponse {
|
|
1842
1917
|
arn?: string | undefined;
|
|
@@ -1845,6 +1920,8 @@ export interface StartRunResponse {
|
|
|
1845
1920
|
tags?: Record<string, string> | undefined;
|
|
1846
1921
|
uuid?: string | undefined;
|
|
1847
1922
|
runOutputUri?: string | undefined;
|
|
1923
|
+
configuration?: ConfigurationDetails | undefined;
|
|
1924
|
+
networkingMode?: string | undefined;
|
|
1848
1925
|
}
|
|
1849
1926
|
export interface StartReadSetActivationJobSourceItem {
|
|
1850
1927
|
readSetId: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConfigurationsCommandInput,
|
|
4
|
+
ListConfigurationsCommandOutput,
|
|
5
|
+
} from "../commands/ListConfigurationsCommand";
|
|
6
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListConfigurations: (
|
|
8
|
+
config: OmicsPaginationConfiguration,
|
|
9
|
+
input: ListConfigurationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConfigurationsCommandOutput>;
|
|
@@ -3,6 +3,7 @@ export * from "./ListAnnotationImportJobsPaginator";
|
|
|
3
3
|
export * from "./ListAnnotationStoresPaginator";
|
|
4
4
|
export * from "./ListAnnotationStoreVersionsPaginator";
|
|
5
5
|
export * from "./ListBatchPaginator";
|
|
6
|
+
export * from "./ListConfigurationsPaginator";
|
|
6
7
|
export * from "./ListMultipartReadSetUploadsPaginator";
|
|
7
8
|
export * from "./ListReadSetActivationJobsPaginator";
|
|
8
9
|
export * from "./ListReadSetExportJobsPaginator";
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
30
30
|
protocol:
|
|
31
31
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
32
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
-
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
33
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
34
34
|
protocolSettings: {
|
|
35
35
|
defaultNamespace?: string;
|
|
36
36
|
[setting: string]: unknown;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
30
30
|
protocol:
|
|
31
31
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
32
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
-
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
33
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
34
34
|
protocolSettings: {
|
|
35
35
|
defaultNamespace?: string;
|
|
36
36
|
[setting: string]: unknown;
|
|
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
12
12
|
protocol:
|
|
13
13
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
14
14
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
15
|
-
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
15
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
16
16
|
protocolSettings: {
|
|
17
17
|
defaultNamespace?: string;
|
|
18
18
|
[setting: string]: unknown;
|
|
@@ -42,11 +42,15 @@ export declare var CancelVariantImportResponse$: StaticStructureSchema;
|
|
|
42
42
|
export declare var CompleteMultipartReadSetUploadRequest$: StaticStructureSchema;
|
|
43
43
|
export declare var CompleteMultipartReadSetUploadResponse$: StaticStructureSchema;
|
|
44
44
|
export declare var CompleteReadSetUploadPartListItem$: StaticStructureSchema;
|
|
45
|
+
export declare var ConfigurationDetails$: StaticStructureSchema;
|
|
46
|
+
export declare var ConfigurationListItem$: StaticStructureSchema;
|
|
45
47
|
export declare var ContainerRegistryMap$: StaticStructureSchema;
|
|
46
48
|
export declare var CreateAnnotationStoreRequest$: StaticStructureSchema;
|
|
47
49
|
export declare var CreateAnnotationStoreResponse$: StaticStructureSchema;
|
|
48
50
|
export declare var CreateAnnotationStoreVersionRequest$: StaticStructureSchema;
|
|
49
51
|
export declare var CreateAnnotationStoreVersionResponse$: StaticStructureSchema;
|
|
52
|
+
export declare var CreateConfigurationRequest$: StaticStructureSchema;
|
|
53
|
+
export declare var CreateConfigurationResponse$: StaticStructureSchema;
|
|
50
54
|
export declare var CreateMultipartReadSetUploadRequest$: StaticStructureSchema;
|
|
51
55
|
export declare var CreateMultipartReadSetUploadResponse$: StaticStructureSchema;
|
|
52
56
|
export declare var CreateReferenceStoreRequest$: StaticStructureSchema;
|
|
@@ -73,6 +77,7 @@ export declare var DeleteAnnotationStoreResponse$: StaticStructureSchema;
|
|
|
73
77
|
export declare var DeleteAnnotationStoreVersionsRequest$: StaticStructureSchema;
|
|
74
78
|
export declare var DeleteAnnotationStoreVersionsResponse$: StaticStructureSchema;
|
|
75
79
|
export declare var DeleteBatchRequest$: StaticStructureSchema;
|
|
80
|
+
export declare var DeleteConfigurationRequest$: StaticStructureSchema;
|
|
76
81
|
export declare var DeleteReferenceRequest$: StaticStructureSchema;
|
|
77
82
|
export declare var DeleteReferenceResponse$: StaticStructureSchema;
|
|
78
83
|
export declare var DeleteReferenceStoreRequest$: StaticStructureSchema;
|
|
@@ -107,6 +112,8 @@ export declare var GetAnnotationStoreVersionRequest$: StaticStructureSchema;
|
|
|
107
112
|
export declare var GetAnnotationStoreVersionResponse$: StaticStructureSchema;
|
|
108
113
|
export declare var GetBatchRequest$: StaticStructureSchema;
|
|
109
114
|
export declare var GetBatchResponse$: StaticStructureSchema;
|
|
115
|
+
export declare var GetConfigurationRequest$: StaticStructureSchema;
|
|
116
|
+
export declare var GetConfigurationResponse$: StaticStructureSchema;
|
|
110
117
|
export declare var GetReadSetActivationJobRequest$: StaticStructureSchema;
|
|
111
118
|
export declare var GetReadSetActivationJobResponse$: StaticStructureSchema;
|
|
112
119
|
export declare var GetReadSetExportJobRequest$: StaticStructureSchema;
|
|
@@ -167,6 +174,8 @@ export declare var ListAnnotationStoreVersionsRequest$: StaticStructureSchema;
|
|
|
167
174
|
export declare var ListAnnotationStoreVersionsResponse$: StaticStructureSchema;
|
|
168
175
|
export declare var ListBatchRequest$: StaticStructureSchema;
|
|
169
176
|
export declare var ListBatchResponse$: StaticStructureSchema;
|
|
177
|
+
export declare var ListConfigurationsRequest$: StaticStructureSchema;
|
|
178
|
+
export declare var ListConfigurationsResponse$: StaticStructureSchema;
|
|
170
179
|
export declare var ListMultipartReadSetUploadsRequest$: StaticStructureSchema;
|
|
171
180
|
export declare var ListMultipartReadSetUploadsResponse$: StaticStructureSchema;
|
|
172
181
|
export declare var ListReadSetActivationJobsRequest$: StaticStructureSchema;
|
|
@@ -230,6 +239,8 @@ export declare var ReferenceStoreFilter$: StaticStructureSchema;
|
|
|
230
239
|
export declare var RegistryMapping$: StaticStructureSchema;
|
|
231
240
|
export declare var RunBatchListItem$: StaticStructureSchema;
|
|
232
241
|
export declare var RunCacheListItem$: StaticStructureSchema;
|
|
242
|
+
export declare var RunConfigurations$: StaticStructureSchema;
|
|
243
|
+
export declare var RunConfigurationsResponse$: StaticStructureSchema;
|
|
233
244
|
export declare var RunGroupListItem$: StaticStructureSchema;
|
|
234
245
|
export declare var RunListItem$: StaticStructureSchema;
|
|
235
246
|
export declare var RunLogLocation$: StaticStructureSchema;
|
|
@@ -291,6 +302,8 @@ export declare var VariantImportJobItem$: StaticStructureSchema;
|
|
|
291
302
|
export declare var VariantStoreItem$: StaticStructureSchema;
|
|
292
303
|
export declare var VcfOptions$: StaticStructureSchema;
|
|
293
304
|
export declare var VersionDeleteError$: StaticStructureSchema;
|
|
305
|
+
export declare var VpcConfig$: StaticStructureSchema;
|
|
306
|
+
export declare var VpcConfigResponse$: StaticStructureSchema;
|
|
294
307
|
export declare var WorkflowListItem$: StaticStructureSchema;
|
|
295
308
|
export declare var WorkflowParameter$: StaticStructureSchema;
|
|
296
309
|
export declare var WorkflowVersionListItem$: StaticStructureSchema;
|
|
@@ -309,6 +322,7 @@ export declare var CancelVariantImportJob$: StaticOperationSchema;
|
|
|
309
322
|
export declare var CompleteMultipartReadSetUpload$: StaticOperationSchema;
|
|
310
323
|
export declare var CreateAnnotationStore$: StaticOperationSchema;
|
|
311
324
|
export declare var CreateAnnotationStoreVersion$: StaticOperationSchema;
|
|
325
|
+
export declare var CreateConfiguration$: StaticOperationSchema;
|
|
312
326
|
export declare var CreateMultipartReadSetUpload$: StaticOperationSchema;
|
|
313
327
|
export declare var CreateReferenceStore$: StaticOperationSchema;
|
|
314
328
|
export declare var CreateRunCache$: StaticOperationSchema;
|
|
@@ -321,6 +335,7 @@ export declare var CreateWorkflowVersion$: StaticOperationSchema;
|
|
|
321
335
|
export declare var DeleteAnnotationStore$: StaticOperationSchema;
|
|
322
336
|
export declare var DeleteAnnotationStoreVersions$: StaticOperationSchema;
|
|
323
337
|
export declare var DeleteBatch$: StaticOperationSchema;
|
|
338
|
+
export declare var DeleteConfiguration$: StaticOperationSchema;
|
|
324
339
|
export declare var DeleteReference$: StaticOperationSchema;
|
|
325
340
|
export declare var DeleteReferenceStore$: StaticOperationSchema;
|
|
326
341
|
export declare var DeleteRun$: StaticOperationSchema;
|
|
@@ -337,6 +352,7 @@ export declare var GetAnnotationImportJob$: StaticOperationSchema;
|
|
|
337
352
|
export declare var GetAnnotationStore$: StaticOperationSchema;
|
|
338
353
|
export declare var GetAnnotationStoreVersion$: StaticOperationSchema;
|
|
339
354
|
export declare var GetBatch$: StaticOperationSchema;
|
|
355
|
+
export declare var GetConfiguration$: StaticOperationSchema;
|
|
340
356
|
export declare var GetReadSet$: StaticOperationSchema;
|
|
341
357
|
export declare var GetReadSetActivationJob$: StaticOperationSchema;
|
|
342
358
|
export declare var GetReadSetExportJob$: StaticOperationSchema;
|
|
@@ -361,6 +377,7 @@ export declare var ListAnnotationImportJobs$: StaticOperationSchema;
|
|
|
361
377
|
export declare var ListAnnotationStores$: StaticOperationSchema;
|
|
362
378
|
export declare var ListAnnotationStoreVersions$: StaticOperationSchema;
|
|
363
379
|
export declare var ListBatch$: StaticOperationSchema;
|
|
380
|
+
export declare var ListConfigurations$: StaticOperationSchema;
|
|
364
381
|
export declare var ListMultipartReadSetUploads$: StaticOperationSchema;
|
|
365
382
|
export declare var ListReadSetActivationJobs$: StaticOperationSchema;
|
|
366
383
|
export declare var ListReadSetExportJobs$: StaticOperationSchema;
|
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.1019.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-omics",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.25",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.27",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.26",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.12",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.13",
|
|
36
36
|
"@smithy/core": "^3.23.12",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|