@aws-sdk/client-omics 3.389.0 → 3.391.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 +80 -0
- package/dist-cjs/Omics.js +20 -0
- package/dist-cjs/commands/AcceptShareCommand.js +46 -0
- package/dist-cjs/commands/CreateAnnotationStoreVersionCommand.js +46 -0
- package/dist-cjs/commands/CreateShareCommand.js +46 -0
- package/dist-cjs/commands/DeleteAnnotationStoreVersionsCommand.js +46 -0
- package/dist-cjs/commands/DeleteShareCommand.js +46 -0
- package/dist-cjs/commands/GetAnnotationStoreVersionCommand.js +46 -0
- package/dist-cjs/commands/GetShareCommand.js +46 -0
- package/dist-cjs/commands/ListAnnotationStoreVersionsCommand.js +46 -0
- package/dist-cjs/commands/ListSharesCommand.js +46 -0
- package/dist-cjs/commands/UpdateAnnotationStoreVersionCommand.js +46 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/models/models_0.js +42 -14
- package/dist-cjs/pagination/ListAnnotationStoreVersionsPaginator.js +29 -0
- package/dist-cjs/pagination/ListSharesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +909 -38
- package/dist-cjs/waiters/index.js +2 -0
- package/dist-cjs/waiters/waitForAnnotationStoreVersionCreated.js +63 -0
- package/dist-cjs/waiters/waitForAnnotationStoreVersionDeleted.js +48 -0
- package/dist-es/Omics.js +20 -0
- package/dist-es/commands/AcceptShareCommand.js +42 -0
- package/dist-es/commands/CreateAnnotationStoreVersionCommand.js +42 -0
- package/dist-es/commands/CreateShareCommand.js +42 -0
- package/dist-es/commands/DeleteAnnotationStoreVersionsCommand.js +42 -0
- package/dist-es/commands/DeleteShareCommand.js +42 -0
- package/dist-es/commands/GetAnnotationStoreVersionCommand.js +42 -0
- package/dist-es/commands/GetShareCommand.js +42 -0
- package/dist-es/commands/ListAnnotationStoreVersionsCommand.js +42 -0
- package/dist-es/commands/ListSharesCommand.js +42 -0
- package/dist-es/commands/UpdateAnnotationStoreVersionCommand.js +42 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +39 -12
- package/dist-es/pagination/ListAnnotationStoreVersionsPaginator.js +25 -0
- package/dist-es/pagination/ListSharesPaginator.js +25 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +884 -34
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForAnnotationStoreVersionCreated.js +58 -0
- package/dist-es/waiters/waitForAnnotationStoreVersionDeleted.js +43 -0
- package/dist-types/Omics.d.ts +70 -0
- package/dist-types/OmicsClient.d.ts +12 -2
- package/dist-types/commands/AcceptShareCommand.d.ts +96 -0
- package/dist-types/commands/CreateAnnotationStoreCommand.d.ts +2 -0
- package/dist-types/commands/CreateAnnotationStoreVersionCommand.d.ts +132 -0
- package/dist-types/commands/CreateShareCommand.d.ts +100 -0
- package/dist-types/commands/DeleteAnnotationStoreVersionsCommand.d.ts +102 -0
- package/dist-types/commands/DeleteShareCommand.d.ts +96 -0
- package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +1 -0
- package/dist-types/commands/GetAnnotationStoreCommand.d.ts +1 -0
- package/dist-types/commands/GetAnnotationStoreVersionCommand.d.ts +117 -0
- package/dist-types/commands/GetShareCommand.d.ts +106 -0
- package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +1 -0
- package/dist-types/commands/ListAnnotationStoreVersionsCommand.d.ts +110 -0
- package/dist-types/commands/ListSharesCommand.d.ts +119 -0
- package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +1 -0
- package/dist-types/commands/UpdateAnnotationStoreVersionCommand.d.ts +99 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +1011 -48
- package/dist-types/pagination/ListAnnotationStoreVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListSharesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
- package/dist-types/ts3.4/Omics.d.ts +170 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +60 -0
- package/dist-types/ts3.4/commands/AcceptShareCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/CreateAnnotationStoreVersionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateShareCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DeleteAnnotationStoreVersionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteShareCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetAnnotationStoreVersionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetShareCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListAnnotationStoreVersionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListSharesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UpdateAnnotationStoreVersionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +197 -5
- package/dist-types/ts3.4/pagination/ListAnnotationStoreVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSharesPaginator.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 +120 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForAnnotationStoreVersionCreated.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForAnnotationStoreVersionDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForAnnotationStoreVersionCreated.d.ts +14 -0
- package/dist-types/waiters/waitForAnnotationStoreVersionDeleted.d.ts +14 -0
- package/package.json +30 -30
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAnnotationStoreVersionsCommandInput, ListAnnotationStoreVersionsCommandOutput } from "../commands/ListAnnotationStoreVersionsCommand";
|
|
3
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListAnnotationStoreVersions(config: OmicsPaginationConfiguration, input: ListAnnotationStoreVersionsCommandInput, ...additionalArguments: any): Paginator<ListAnnotationStoreVersionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListSharesCommandInput, ListSharesCommandOutput } from "../commands/ListSharesCommand";
|
|
3
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListShares(config: OmicsPaginationConfiguration, input: ListSharesCommandInput, ...additionalArguments: any): Paginator<ListSharesCommandOutput>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAnnotationImportJobsPaginator";
|
|
3
|
+
export * from "./ListAnnotationStoreVersionsPaginator";
|
|
3
4
|
export * from "./ListAnnotationStoresPaginator";
|
|
4
5
|
export * from "./ListMultipartReadSetUploadsPaginator";
|
|
5
6
|
export * from "./ListReadSetActivationJobsPaginator";
|
|
@@ -14,6 +15,7 @@ export * from "./ListRunGroupsPaginator";
|
|
|
14
15
|
export * from "./ListRunTasksPaginator";
|
|
15
16
|
export * from "./ListRunsPaginator";
|
|
16
17
|
export * from "./ListSequenceStoresPaginator";
|
|
18
|
+
export * from "./ListSharesPaginator";
|
|
17
19
|
export * from "./ListVariantImportJobsPaginator";
|
|
18
20
|
export * from "./ListVariantStoresPaginator";
|
|
19
21
|
export * from "./ListWorkflowsPaginator";
|
|
@@ -1,28 +1,34 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SdkStreamSerdeContext as __SdkStreamSerdeContext, SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { AbortMultipartReadSetUploadCommandInput, AbortMultipartReadSetUploadCommandOutput } from "../commands/AbortMultipartReadSetUploadCommand";
|
|
4
|
+
import { AcceptShareCommandInput, AcceptShareCommandOutput } from "../commands/AcceptShareCommand";
|
|
4
5
|
import { BatchDeleteReadSetCommandInput, BatchDeleteReadSetCommandOutput } from "../commands/BatchDeleteReadSetCommand";
|
|
5
6
|
import { CancelAnnotationImportJobCommandInput, CancelAnnotationImportJobCommandOutput } from "../commands/CancelAnnotationImportJobCommand";
|
|
6
7
|
import { CancelRunCommandInput, CancelRunCommandOutput } from "../commands/CancelRunCommand";
|
|
7
8
|
import { CancelVariantImportJobCommandInput, CancelVariantImportJobCommandOutput } from "../commands/CancelVariantImportJobCommand";
|
|
8
9
|
import { CompleteMultipartReadSetUploadCommandInput, CompleteMultipartReadSetUploadCommandOutput } from "../commands/CompleteMultipartReadSetUploadCommand";
|
|
9
10
|
import { CreateAnnotationStoreCommandInput, CreateAnnotationStoreCommandOutput } from "../commands/CreateAnnotationStoreCommand";
|
|
11
|
+
import { CreateAnnotationStoreVersionCommandInput, CreateAnnotationStoreVersionCommandOutput } from "../commands/CreateAnnotationStoreVersionCommand";
|
|
10
12
|
import { CreateMultipartReadSetUploadCommandInput, CreateMultipartReadSetUploadCommandOutput } from "../commands/CreateMultipartReadSetUploadCommand";
|
|
11
13
|
import { CreateReferenceStoreCommandInput, CreateReferenceStoreCommandOutput } from "../commands/CreateReferenceStoreCommand";
|
|
12
14
|
import { CreateRunGroupCommandInput, CreateRunGroupCommandOutput } from "../commands/CreateRunGroupCommand";
|
|
13
15
|
import { CreateSequenceStoreCommandInput, CreateSequenceStoreCommandOutput } from "../commands/CreateSequenceStoreCommand";
|
|
16
|
+
import { CreateShareCommandInput, CreateShareCommandOutput } from "../commands/CreateShareCommand";
|
|
14
17
|
import { CreateVariantStoreCommandInput, CreateVariantStoreCommandOutput } from "../commands/CreateVariantStoreCommand";
|
|
15
18
|
import { CreateWorkflowCommandInput, CreateWorkflowCommandOutput } from "../commands/CreateWorkflowCommand";
|
|
16
19
|
import { DeleteAnnotationStoreCommandInput, DeleteAnnotationStoreCommandOutput } from "../commands/DeleteAnnotationStoreCommand";
|
|
20
|
+
import { DeleteAnnotationStoreVersionsCommandInput, DeleteAnnotationStoreVersionsCommandOutput } from "../commands/DeleteAnnotationStoreVersionsCommand";
|
|
17
21
|
import { DeleteReferenceCommandInput, DeleteReferenceCommandOutput } from "../commands/DeleteReferenceCommand";
|
|
18
22
|
import { DeleteReferenceStoreCommandInput, DeleteReferenceStoreCommandOutput } from "../commands/DeleteReferenceStoreCommand";
|
|
19
23
|
import { DeleteRunCommandInput, DeleteRunCommandOutput } from "../commands/DeleteRunCommand";
|
|
20
24
|
import { DeleteRunGroupCommandInput, DeleteRunGroupCommandOutput } from "../commands/DeleteRunGroupCommand";
|
|
21
25
|
import { DeleteSequenceStoreCommandInput, DeleteSequenceStoreCommandOutput } from "../commands/DeleteSequenceStoreCommand";
|
|
26
|
+
import { DeleteShareCommandInput, DeleteShareCommandOutput } from "../commands/DeleteShareCommand";
|
|
22
27
|
import { DeleteVariantStoreCommandInput, DeleteVariantStoreCommandOutput } from "../commands/DeleteVariantStoreCommand";
|
|
23
28
|
import { DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput } from "../commands/DeleteWorkflowCommand";
|
|
24
29
|
import { GetAnnotationImportJobCommandInput, GetAnnotationImportJobCommandOutput } from "../commands/GetAnnotationImportJobCommand";
|
|
25
30
|
import { GetAnnotationStoreCommandInput, GetAnnotationStoreCommandOutput } from "../commands/GetAnnotationStoreCommand";
|
|
31
|
+
import { GetAnnotationStoreVersionCommandInput, GetAnnotationStoreVersionCommandOutput } from "../commands/GetAnnotationStoreVersionCommand";
|
|
26
32
|
import { GetReadSetActivationJobCommandInput, GetReadSetActivationJobCommandOutput } from "../commands/GetReadSetActivationJobCommand";
|
|
27
33
|
import { GetReadSetCommandInput, GetReadSetCommandOutput } from "../commands/GetReadSetCommand";
|
|
28
34
|
import { GetReadSetExportJobCommandInput, GetReadSetExportJobCommandOutput } from "../commands/GetReadSetExportJobCommand";
|
|
@@ -36,11 +42,13 @@ import { GetRunCommandInput, GetRunCommandOutput } from "../commands/GetRunComma
|
|
|
36
42
|
import { GetRunGroupCommandInput, GetRunGroupCommandOutput } from "../commands/GetRunGroupCommand";
|
|
37
43
|
import { GetRunTaskCommandInput, GetRunTaskCommandOutput } from "../commands/GetRunTaskCommand";
|
|
38
44
|
import { GetSequenceStoreCommandInput, GetSequenceStoreCommandOutput } from "../commands/GetSequenceStoreCommand";
|
|
45
|
+
import { GetShareCommandInput, GetShareCommandOutput } from "../commands/GetShareCommand";
|
|
39
46
|
import { GetVariantImportJobCommandInput, GetVariantImportJobCommandOutput } from "../commands/GetVariantImportJobCommand";
|
|
40
47
|
import { GetVariantStoreCommandInput, GetVariantStoreCommandOutput } from "../commands/GetVariantStoreCommand";
|
|
41
48
|
import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "../commands/GetWorkflowCommand";
|
|
42
49
|
import { ListAnnotationImportJobsCommandInput, ListAnnotationImportJobsCommandOutput } from "../commands/ListAnnotationImportJobsCommand";
|
|
43
50
|
import { ListAnnotationStoresCommandInput, ListAnnotationStoresCommandOutput } from "../commands/ListAnnotationStoresCommand";
|
|
51
|
+
import { ListAnnotationStoreVersionsCommandInput, ListAnnotationStoreVersionsCommandOutput } from "../commands/ListAnnotationStoreVersionsCommand";
|
|
44
52
|
import { ListMultipartReadSetUploadsCommandInput, ListMultipartReadSetUploadsCommandOutput } from "../commands/ListMultipartReadSetUploadsCommand";
|
|
45
53
|
import { ListReadSetActivationJobsCommandInput, ListReadSetActivationJobsCommandOutput } from "../commands/ListReadSetActivationJobsCommand";
|
|
46
54
|
import { ListReadSetExportJobsCommandInput, ListReadSetExportJobsCommandOutput } from "../commands/ListReadSetExportJobsCommand";
|
|
@@ -54,6 +62,7 @@ import { ListRunGroupsCommandInput, ListRunGroupsCommandOutput } from "../comman
|
|
|
54
62
|
import { ListRunsCommandInput, ListRunsCommandOutput } from "../commands/ListRunsCommand";
|
|
55
63
|
import { ListRunTasksCommandInput, ListRunTasksCommandOutput } from "../commands/ListRunTasksCommand";
|
|
56
64
|
import { ListSequenceStoresCommandInput, ListSequenceStoresCommandOutput } from "../commands/ListSequenceStoresCommand";
|
|
65
|
+
import { ListSharesCommandInput, ListSharesCommandOutput } from "../commands/ListSharesCommand";
|
|
57
66
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
58
67
|
import { ListVariantImportJobsCommandInput, ListVariantImportJobsCommandOutput } from "../commands/ListVariantImportJobsCommand";
|
|
59
68
|
import { ListVariantStoresCommandInput, ListVariantStoresCommandOutput } from "../commands/ListVariantStoresCommand";
|
|
@@ -68,6 +77,7 @@ import { StartVariantImportJobCommandInput, StartVariantImportJobCommandOutput }
|
|
|
68
77
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
69
78
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
70
79
|
import { UpdateAnnotationStoreCommandInput, UpdateAnnotationStoreCommandOutput } from "../commands/UpdateAnnotationStoreCommand";
|
|
80
|
+
import { UpdateAnnotationStoreVersionCommandInput, UpdateAnnotationStoreVersionCommandOutput } from "../commands/UpdateAnnotationStoreVersionCommand";
|
|
71
81
|
import { UpdateRunGroupCommandInput, UpdateRunGroupCommandOutput } from "../commands/UpdateRunGroupCommand";
|
|
72
82
|
import { UpdateVariantStoreCommandInput, UpdateVariantStoreCommandOutput } from "../commands/UpdateVariantStoreCommand";
|
|
73
83
|
import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput } from "../commands/UpdateWorkflowCommand";
|
|
@@ -76,6 +86,10 @@ import { UploadReadSetPartCommandInput, UploadReadSetPartCommandOutput } from ".
|
|
|
76
86
|
* serializeAws_restJson1AbortMultipartReadSetUploadCommand
|
|
77
87
|
*/
|
|
78
88
|
export declare const se_AbortMultipartReadSetUploadCommand: (input: AbortMultipartReadSetUploadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
|
+
/**
|
|
90
|
+
* serializeAws_restJson1AcceptShareCommand
|
|
91
|
+
*/
|
|
92
|
+
export declare const se_AcceptShareCommand: (input: AcceptShareCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
93
|
/**
|
|
80
94
|
* serializeAws_restJson1BatchDeleteReadSetCommand
|
|
81
95
|
*/
|
|
@@ -100,6 +114,10 @@ export declare const se_CompleteMultipartReadSetUploadCommand: (input: CompleteM
|
|
|
100
114
|
* serializeAws_restJson1CreateAnnotationStoreCommand
|
|
101
115
|
*/
|
|
102
116
|
export declare const se_CreateAnnotationStoreCommand: (input: CreateAnnotationStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
|
+
/**
|
|
118
|
+
* serializeAws_restJson1CreateAnnotationStoreVersionCommand
|
|
119
|
+
*/
|
|
120
|
+
export declare const se_CreateAnnotationStoreVersionCommand: (input: CreateAnnotationStoreVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
121
|
/**
|
|
104
122
|
* serializeAws_restJson1CreateMultipartReadSetUploadCommand
|
|
105
123
|
*/
|
|
@@ -116,6 +134,10 @@ export declare const se_CreateRunGroupCommand: (input: CreateRunGroupCommandInpu
|
|
|
116
134
|
* serializeAws_restJson1CreateSequenceStoreCommand
|
|
117
135
|
*/
|
|
118
136
|
export declare const se_CreateSequenceStoreCommand: (input: CreateSequenceStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
137
|
+
/**
|
|
138
|
+
* serializeAws_restJson1CreateShareCommand
|
|
139
|
+
*/
|
|
140
|
+
export declare const se_CreateShareCommand: (input: CreateShareCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
119
141
|
/**
|
|
120
142
|
* serializeAws_restJson1CreateVariantStoreCommand
|
|
121
143
|
*/
|
|
@@ -128,6 +150,10 @@ export declare const se_CreateWorkflowCommand: (input: CreateWorkflowCommandInpu
|
|
|
128
150
|
* serializeAws_restJson1DeleteAnnotationStoreCommand
|
|
129
151
|
*/
|
|
130
152
|
export declare const se_DeleteAnnotationStoreCommand: (input: DeleteAnnotationStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
153
|
+
/**
|
|
154
|
+
* serializeAws_restJson1DeleteAnnotationStoreVersionsCommand
|
|
155
|
+
*/
|
|
156
|
+
export declare const se_DeleteAnnotationStoreVersionsCommand: (input: DeleteAnnotationStoreVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
131
157
|
/**
|
|
132
158
|
* serializeAws_restJson1DeleteReferenceCommand
|
|
133
159
|
*/
|
|
@@ -148,6 +174,10 @@ export declare const se_DeleteRunGroupCommand: (input: DeleteRunGroupCommandInpu
|
|
|
148
174
|
* serializeAws_restJson1DeleteSequenceStoreCommand
|
|
149
175
|
*/
|
|
150
176
|
export declare const se_DeleteSequenceStoreCommand: (input: DeleteSequenceStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
177
|
+
/**
|
|
178
|
+
* serializeAws_restJson1DeleteShareCommand
|
|
179
|
+
*/
|
|
180
|
+
export declare const se_DeleteShareCommand: (input: DeleteShareCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
151
181
|
/**
|
|
152
182
|
* serializeAws_restJson1DeleteVariantStoreCommand
|
|
153
183
|
*/
|
|
@@ -164,6 +194,10 @@ export declare const se_GetAnnotationImportJobCommand: (input: GetAnnotationImpo
|
|
|
164
194
|
* serializeAws_restJson1GetAnnotationStoreCommand
|
|
165
195
|
*/
|
|
166
196
|
export declare const se_GetAnnotationStoreCommand: (input: GetAnnotationStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
197
|
+
/**
|
|
198
|
+
* serializeAws_restJson1GetAnnotationStoreVersionCommand
|
|
199
|
+
*/
|
|
200
|
+
export declare const se_GetAnnotationStoreVersionCommand: (input: GetAnnotationStoreVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
167
201
|
/**
|
|
168
202
|
* serializeAws_restJson1GetReadSetCommand
|
|
169
203
|
*/
|
|
@@ -216,6 +250,10 @@ export declare const se_GetRunTaskCommand: (input: GetRunTaskCommandInput, conte
|
|
|
216
250
|
* serializeAws_restJson1GetSequenceStoreCommand
|
|
217
251
|
*/
|
|
218
252
|
export declare const se_GetSequenceStoreCommand: (input: GetSequenceStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
253
|
+
/**
|
|
254
|
+
* serializeAws_restJson1GetShareCommand
|
|
255
|
+
*/
|
|
256
|
+
export declare const se_GetShareCommand: (input: GetShareCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
219
257
|
/**
|
|
220
258
|
* serializeAws_restJson1GetVariantImportJobCommand
|
|
221
259
|
*/
|
|
@@ -236,6 +274,10 @@ export declare const se_ListAnnotationImportJobsCommand: (input: ListAnnotationI
|
|
|
236
274
|
* serializeAws_restJson1ListAnnotationStoresCommand
|
|
237
275
|
*/
|
|
238
276
|
export declare const se_ListAnnotationStoresCommand: (input: ListAnnotationStoresCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
277
|
+
/**
|
|
278
|
+
* serializeAws_restJson1ListAnnotationStoreVersionsCommand
|
|
279
|
+
*/
|
|
280
|
+
export declare const se_ListAnnotationStoreVersionsCommand: (input: ListAnnotationStoreVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
239
281
|
/**
|
|
240
282
|
* serializeAws_restJson1ListMultipartReadSetUploadsCommand
|
|
241
283
|
*/
|
|
@@ -288,6 +330,10 @@ export declare const se_ListRunTasksCommand: (input: ListRunTasksCommandInput, c
|
|
|
288
330
|
* serializeAws_restJson1ListSequenceStoresCommand
|
|
289
331
|
*/
|
|
290
332
|
export declare const se_ListSequenceStoresCommand: (input: ListSequenceStoresCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
333
|
+
/**
|
|
334
|
+
* serializeAws_restJson1ListSharesCommand
|
|
335
|
+
*/
|
|
336
|
+
export declare const se_ListSharesCommand: (input: ListSharesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
291
337
|
/**
|
|
292
338
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
293
339
|
*/
|
|
@@ -344,6 +390,10 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
|
|
|
344
390
|
* serializeAws_restJson1UpdateAnnotationStoreCommand
|
|
345
391
|
*/
|
|
346
392
|
export declare const se_UpdateAnnotationStoreCommand: (input: UpdateAnnotationStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
393
|
+
/**
|
|
394
|
+
* serializeAws_restJson1UpdateAnnotationStoreVersionCommand
|
|
395
|
+
*/
|
|
396
|
+
export declare const se_UpdateAnnotationStoreVersionCommand: (input: UpdateAnnotationStoreVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
347
397
|
/**
|
|
348
398
|
* serializeAws_restJson1UpdateRunGroupCommand
|
|
349
399
|
*/
|
|
@@ -364,6 +414,10 @@ export declare const se_UploadReadSetPartCommand: (input: UploadReadSetPartComma
|
|
|
364
414
|
* deserializeAws_restJson1AbortMultipartReadSetUploadCommand
|
|
365
415
|
*/
|
|
366
416
|
export declare const de_AbortMultipartReadSetUploadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AbortMultipartReadSetUploadCommandOutput>;
|
|
417
|
+
/**
|
|
418
|
+
* deserializeAws_restJson1AcceptShareCommand
|
|
419
|
+
*/
|
|
420
|
+
export declare const de_AcceptShareCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptShareCommandOutput>;
|
|
367
421
|
/**
|
|
368
422
|
* deserializeAws_restJson1BatchDeleteReadSetCommand
|
|
369
423
|
*/
|
|
@@ -388,6 +442,10 @@ export declare const de_CompleteMultipartReadSetUploadCommand: (output: __HttpRe
|
|
|
388
442
|
* deserializeAws_restJson1CreateAnnotationStoreCommand
|
|
389
443
|
*/
|
|
390
444
|
export declare const de_CreateAnnotationStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAnnotationStoreCommandOutput>;
|
|
445
|
+
/**
|
|
446
|
+
* deserializeAws_restJson1CreateAnnotationStoreVersionCommand
|
|
447
|
+
*/
|
|
448
|
+
export declare const de_CreateAnnotationStoreVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAnnotationStoreVersionCommandOutput>;
|
|
391
449
|
/**
|
|
392
450
|
* deserializeAws_restJson1CreateMultipartReadSetUploadCommand
|
|
393
451
|
*/
|
|
@@ -404,6 +462,10 @@ export declare const de_CreateRunGroupCommand: (output: __HttpResponse, context:
|
|
|
404
462
|
* deserializeAws_restJson1CreateSequenceStoreCommand
|
|
405
463
|
*/
|
|
406
464
|
export declare const de_CreateSequenceStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSequenceStoreCommandOutput>;
|
|
465
|
+
/**
|
|
466
|
+
* deserializeAws_restJson1CreateShareCommand
|
|
467
|
+
*/
|
|
468
|
+
export declare const de_CreateShareCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateShareCommandOutput>;
|
|
407
469
|
/**
|
|
408
470
|
* deserializeAws_restJson1CreateVariantStoreCommand
|
|
409
471
|
*/
|
|
@@ -416,6 +478,10 @@ export declare const de_CreateWorkflowCommand: (output: __HttpResponse, context:
|
|
|
416
478
|
* deserializeAws_restJson1DeleteAnnotationStoreCommand
|
|
417
479
|
*/
|
|
418
480
|
export declare const de_DeleteAnnotationStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAnnotationStoreCommandOutput>;
|
|
481
|
+
/**
|
|
482
|
+
* deserializeAws_restJson1DeleteAnnotationStoreVersionsCommand
|
|
483
|
+
*/
|
|
484
|
+
export declare const de_DeleteAnnotationStoreVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAnnotationStoreVersionsCommandOutput>;
|
|
419
485
|
/**
|
|
420
486
|
* deserializeAws_restJson1DeleteReferenceCommand
|
|
421
487
|
*/
|
|
@@ -436,6 +502,10 @@ export declare const de_DeleteRunGroupCommand: (output: __HttpResponse, context:
|
|
|
436
502
|
* deserializeAws_restJson1DeleteSequenceStoreCommand
|
|
437
503
|
*/
|
|
438
504
|
export declare const de_DeleteSequenceStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSequenceStoreCommandOutput>;
|
|
505
|
+
/**
|
|
506
|
+
* deserializeAws_restJson1DeleteShareCommand
|
|
507
|
+
*/
|
|
508
|
+
export declare const de_DeleteShareCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteShareCommandOutput>;
|
|
439
509
|
/**
|
|
440
510
|
* deserializeAws_restJson1DeleteVariantStoreCommand
|
|
441
511
|
*/
|
|
@@ -452,6 +522,10 @@ export declare const de_GetAnnotationImportJobCommand: (output: __HttpResponse,
|
|
|
452
522
|
* deserializeAws_restJson1GetAnnotationStoreCommand
|
|
453
523
|
*/
|
|
454
524
|
export declare const de_GetAnnotationStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAnnotationStoreCommandOutput>;
|
|
525
|
+
/**
|
|
526
|
+
* deserializeAws_restJson1GetAnnotationStoreVersionCommand
|
|
527
|
+
*/
|
|
528
|
+
export declare const de_GetAnnotationStoreVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAnnotationStoreVersionCommandOutput>;
|
|
455
529
|
/**
|
|
456
530
|
* deserializeAws_restJson1GetReadSetCommand
|
|
457
531
|
*/
|
|
@@ -504,6 +578,10 @@ export declare const de_GetRunTaskCommand: (output: __HttpResponse, context: __S
|
|
|
504
578
|
* deserializeAws_restJson1GetSequenceStoreCommand
|
|
505
579
|
*/
|
|
506
580
|
export declare const de_GetSequenceStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSequenceStoreCommandOutput>;
|
|
581
|
+
/**
|
|
582
|
+
* deserializeAws_restJson1GetShareCommand
|
|
583
|
+
*/
|
|
584
|
+
export declare const de_GetShareCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetShareCommandOutput>;
|
|
507
585
|
/**
|
|
508
586
|
* deserializeAws_restJson1GetVariantImportJobCommand
|
|
509
587
|
*/
|
|
@@ -524,6 +602,10 @@ export declare const de_ListAnnotationImportJobsCommand: (output: __HttpResponse
|
|
|
524
602
|
* deserializeAws_restJson1ListAnnotationStoresCommand
|
|
525
603
|
*/
|
|
526
604
|
export declare const de_ListAnnotationStoresCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAnnotationStoresCommandOutput>;
|
|
605
|
+
/**
|
|
606
|
+
* deserializeAws_restJson1ListAnnotationStoreVersionsCommand
|
|
607
|
+
*/
|
|
608
|
+
export declare const de_ListAnnotationStoreVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAnnotationStoreVersionsCommandOutput>;
|
|
527
609
|
/**
|
|
528
610
|
* deserializeAws_restJson1ListMultipartReadSetUploadsCommand
|
|
529
611
|
*/
|
|
@@ -576,6 +658,10 @@ export declare const de_ListRunTasksCommand: (output: __HttpResponse, context: _
|
|
|
576
658
|
* deserializeAws_restJson1ListSequenceStoresCommand
|
|
577
659
|
*/
|
|
578
660
|
export declare const de_ListSequenceStoresCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSequenceStoresCommandOutput>;
|
|
661
|
+
/**
|
|
662
|
+
* deserializeAws_restJson1ListSharesCommand
|
|
663
|
+
*/
|
|
664
|
+
export declare const de_ListSharesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSharesCommandOutput>;
|
|
579
665
|
/**
|
|
580
666
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
581
667
|
*/
|
|
@@ -632,6 +718,10 @@ export declare const de_UntagResourceCommand: (output: __HttpResponse, context:
|
|
|
632
718
|
* deserializeAws_restJson1UpdateAnnotationStoreCommand
|
|
633
719
|
*/
|
|
634
720
|
export declare const de_UpdateAnnotationStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAnnotationStoreCommandOutput>;
|
|
721
|
+
/**
|
|
722
|
+
* deserializeAws_restJson1UpdateAnnotationStoreVersionCommand
|
|
723
|
+
*/
|
|
724
|
+
export declare const de_UpdateAnnotationStoreVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAnnotationStoreVersionCommandOutput>;
|
|
635
725
|
/**
|
|
636
726
|
* deserializeAws_restJson1UpdateRunGroupCommand
|
|
637
727
|
*/
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
AbortMultipartReadSetUploadCommandInput,
|
|
4
4
|
AbortMultipartReadSetUploadCommandOutput,
|
|
5
5
|
} from "./commands/AbortMultipartReadSetUploadCommand";
|
|
6
|
+
import {
|
|
7
|
+
AcceptShareCommandInput,
|
|
8
|
+
AcceptShareCommandOutput,
|
|
9
|
+
} from "./commands/AcceptShareCommand";
|
|
6
10
|
import {
|
|
7
11
|
BatchDeleteReadSetCommandInput,
|
|
8
12
|
BatchDeleteReadSetCommandOutput,
|
|
@@ -27,6 +31,10 @@ import {
|
|
|
27
31
|
CreateAnnotationStoreCommandInput,
|
|
28
32
|
CreateAnnotationStoreCommandOutput,
|
|
29
33
|
} from "./commands/CreateAnnotationStoreCommand";
|
|
34
|
+
import {
|
|
35
|
+
CreateAnnotationStoreVersionCommandInput,
|
|
36
|
+
CreateAnnotationStoreVersionCommandOutput,
|
|
37
|
+
} from "./commands/CreateAnnotationStoreVersionCommand";
|
|
30
38
|
import {
|
|
31
39
|
CreateMultipartReadSetUploadCommandInput,
|
|
32
40
|
CreateMultipartReadSetUploadCommandOutput,
|
|
@@ -43,6 +51,10 @@ import {
|
|
|
43
51
|
CreateSequenceStoreCommandInput,
|
|
44
52
|
CreateSequenceStoreCommandOutput,
|
|
45
53
|
} from "./commands/CreateSequenceStoreCommand";
|
|
54
|
+
import {
|
|
55
|
+
CreateShareCommandInput,
|
|
56
|
+
CreateShareCommandOutput,
|
|
57
|
+
} from "./commands/CreateShareCommand";
|
|
46
58
|
import {
|
|
47
59
|
CreateVariantStoreCommandInput,
|
|
48
60
|
CreateVariantStoreCommandOutput,
|
|
@@ -55,6 +67,10 @@ import {
|
|
|
55
67
|
DeleteAnnotationStoreCommandInput,
|
|
56
68
|
DeleteAnnotationStoreCommandOutput,
|
|
57
69
|
} from "./commands/DeleteAnnotationStoreCommand";
|
|
70
|
+
import {
|
|
71
|
+
DeleteAnnotationStoreVersionsCommandInput,
|
|
72
|
+
DeleteAnnotationStoreVersionsCommandOutput,
|
|
73
|
+
} from "./commands/DeleteAnnotationStoreVersionsCommand";
|
|
58
74
|
import {
|
|
59
75
|
DeleteReferenceCommandInput,
|
|
60
76
|
DeleteReferenceCommandOutput,
|
|
@@ -75,6 +91,10 @@ import {
|
|
|
75
91
|
DeleteSequenceStoreCommandInput,
|
|
76
92
|
DeleteSequenceStoreCommandOutput,
|
|
77
93
|
} from "./commands/DeleteSequenceStoreCommand";
|
|
94
|
+
import {
|
|
95
|
+
DeleteShareCommandInput,
|
|
96
|
+
DeleteShareCommandOutput,
|
|
97
|
+
} from "./commands/DeleteShareCommand";
|
|
78
98
|
import {
|
|
79
99
|
DeleteVariantStoreCommandInput,
|
|
80
100
|
DeleteVariantStoreCommandOutput,
|
|
@@ -91,6 +111,10 @@ import {
|
|
|
91
111
|
GetAnnotationStoreCommandInput,
|
|
92
112
|
GetAnnotationStoreCommandOutput,
|
|
93
113
|
} from "./commands/GetAnnotationStoreCommand";
|
|
114
|
+
import {
|
|
115
|
+
GetAnnotationStoreVersionCommandInput,
|
|
116
|
+
GetAnnotationStoreVersionCommandOutput,
|
|
117
|
+
} from "./commands/GetAnnotationStoreVersionCommand";
|
|
94
118
|
import {
|
|
95
119
|
GetReadSetActivationJobCommandInput,
|
|
96
120
|
GetReadSetActivationJobCommandOutput,
|
|
@@ -143,6 +167,10 @@ import {
|
|
|
143
167
|
GetSequenceStoreCommandInput,
|
|
144
168
|
GetSequenceStoreCommandOutput,
|
|
145
169
|
} from "./commands/GetSequenceStoreCommand";
|
|
170
|
+
import {
|
|
171
|
+
GetShareCommandInput,
|
|
172
|
+
GetShareCommandOutput,
|
|
173
|
+
} from "./commands/GetShareCommand";
|
|
146
174
|
import {
|
|
147
175
|
GetVariantImportJobCommandInput,
|
|
148
176
|
GetVariantImportJobCommandOutput,
|
|
@@ -163,6 +191,10 @@ import {
|
|
|
163
191
|
ListAnnotationStoresCommandInput,
|
|
164
192
|
ListAnnotationStoresCommandOutput,
|
|
165
193
|
} from "./commands/ListAnnotationStoresCommand";
|
|
194
|
+
import {
|
|
195
|
+
ListAnnotationStoreVersionsCommandInput,
|
|
196
|
+
ListAnnotationStoreVersionsCommandOutput,
|
|
197
|
+
} from "./commands/ListAnnotationStoreVersionsCommand";
|
|
166
198
|
import {
|
|
167
199
|
ListMultipartReadSetUploadsCommandInput,
|
|
168
200
|
ListMultipartReadSetUploadsCommandOutput,
|
|
@@ -215,6 +247,10 @@ import {
|
|
|
215
247
|
ListSequenceStoresCommandInput,
|
|
216
248
|
ListSequenceStoresCommandOutput,
|
|
217
249
|
} from "./commands/ListSequenceStoresCommand";
|
|
250
|
+
import {
|
|
251
|
+
ListSharesCommandInput,
|
|
252
|
+
ListSharesCommandOutput,
|
|
253
|
+
} from "./commands/ListSharesCommand";
|
|
218
254
|
import {
|
|
219
255
|
ListTagsForResourceCommandInput,
|
|
220
256
|
ListTagsForResourceCommandOutput,
|
|
@@ -271,6 +307,10 @@ import {
|
|
|
271
307
|
UpdateAnnotationStoreCommandInput,
|
|
272
308
|
UpdateAnnotationStoreCommandOutput,
|
|
273
309
|
} from "./commands/UpdateAnnotationStoreCommand";
|
|
310
|
+
import {
|
|
311
|
+
UpdateAnnotationStoreVersionCommandInput,
|
|
312
|
+
UpdateAnnotationStoreVersionCommandOutput,
|
|
313
|
+
} from "./commands/UpdateAnnotationStoreVersionCommand";
|
|
274
314
|
import {
|
|
275
315
|
UpdateRunGroupCommandInput,
|
|
276
316
|
UpdateRunGroupCommandOutput,
|
|
@@ -302,6 +342,19 @@ export interface Omics {
|
|
|
302
342
|
options: __HttpHandlerOptions,
|
|
303
343
|
cb: (err: any, data?: AbortMultipartReadSetUploadCommandOutput) => void
|
|
304
344
|
): void;
|
|
345
|
+
acceptShare(
|
|
346
|
+
args: AcceptShareCommandInput,
|
|
347
|
+
options?: __HttpHandlerOptions
|
|
348
|
+
): Promise<AcceptShareCommandOutput>;
|
|
349
|
+
acceptShare(
|
|
350
|
+
args: AcceptShareCommandInput,
|
|
351
|
+
cb: (err: any, data?: AcceptShareCommandOutput) => void
|
|
352
|
+
): void;
|
|
353
|
+
acceptShare(
|
|
354
|
+
args: AcceptShareCommandInput,
|
|
355
|
+
options: __HttpHandlerOptions,
|
|
356
|
+
cb: (err: any, data?: AcceptShareCommandOutput) => void
|
|
357
|
+
): void;
|
|
305
358
|
batchDeleteReadSet(
|
|
306
359
|
args: BatchDeleteReadSetCommandInput,
|
|
307
360
|
options?: __HttpHandlerOptions
|
|
@@ -380,6 +433,19 @@ export interface Omics {
|
|
|
380
433
|
options: __HttpHandlerOptions,
|
|
381
434
|
cb: (err: any, data?: CreateAnnotationStoreCommandOutput) => void
|
|
382
435
|
): void;
|
|
436
|
+
createAnnotationStoreVersion(
|
|
437
|
+
args: CreateAnnotationStoreVersionCommandInput,
|
|
438
|
+
options?: __HttpHandlerOptions
|
|
439
|
+
): Promise<CreateAnnotationStoreVersionCommandOutput>;
|
|
440
|
+
createAnnotationStoreVersion(
|
|
441
|
+
args: CreateAnnotationStoreVersionCommandInput,
|
|
442
|
+
cb: (err: any, data?: CreateAnnotationStoreVersionCommandOutput) => void
|
|
443
|
+
): void;
|
|
444
|
+
createAnnotationStoreVersion(
|
|
445
|
+
args: CreateAnnotationStoreVersionCommandInput,
|
|
446
|
+
options: __HttpHandlerOptions,
|
|
447
|
+
cb: (err: any, data?: CreateAnnotationStoreVersionCommandOutput) => void
|
|
448
|
+
): void;
|
|
383
449
|
createMultipartReadSetUpload(
|
|
384
450
|
args: CreateMultipartReadSetUploadCommandInput,
|
|
385
451
|
options?: __HttpHandlerOptions
|
|
@@ -432,6 +498,19 @@ export interface Omics {
|
|
|
432
498
|
options: __HttpHandlerOptions,
|
|
433
499
|
cb: (err: any, data?: CreateSequenceStoreCommandOutput) => void
|
|
434
500
|
): void;
|
|
501
|
+
createShare(
|
|
502
|
+
args: CreateShareCommandInput,
|
|
503
|
+
options?: __HttpHandlerOptions
|
|
504
|
+
): Promise<CreateShareCommandOutput>;
|
|
505
|
+
createShare(
|
|
506
|
+
args: CreateShareCommandInput,
|
|
507
|
+
cb: (err: any, data?: CreateShareCommandOutput) => void
|
|
508
|
+
): void;
|
|
509
|
+
createShare(
|
|
510
|
+
args: CreateShareCommandInput,
|
|
511
|
+
options: __HttpHandlerOptions,
|
|
512
|
+
cb: (err: any, data?: CreateShareCommandOutput) => void
|
|
513
|
+
): void;
|
|
435
514
|
createVariantStore(
|
|
436
515
|
args: CreateVariantStoreCommandInput,
|
|
437
516
|
options?: __HttpHandlerOptions
|
|
@@ -471,6 +550,19 @@ export interface Omics {
|
|
|
471
550
|
options: __HttpHandlerOptions,
|
|
472
551
|
cb: (err: any, data?: DeleteAnnotationStoreCommandOutput) => void
|
|
473
552
|
): void;
|
|
553
|
+
deleteAnnotationStoreVersions(
|
|
554
|
+
args: DeleteAnnotationStoreVersionsCommandInput,
|
|
555
|
+
options?: __HttpHandlerOptions
|
|
556
|
+
): Promise<DeleteAnnotationStoreVersionsCommandOutput>;
|
|
557
|
+
deleteAnnotationStoreVersions(
|
|
558
|
+
args: DeleteAnnotationStoreVersionsCommandInput,
|
|
559
|
+
cb: (err: any, data?: DeleteAnnotationStoreVersionsCommandOutput) => void
|
|
560
|
+
): void;
|
|
561
|
+
deleteAnnotationStoreVersions(
|
|
562
|
+
args: DeleteAnnotationStoreVersionsCommandInput,
|
|
563
|
+
options: __HttpHandlerOptions,
|
|
564
|
+
cb: (err: any, data?: DeleteAnnotationStoreVersionsCommandOutput) => void
|
|
565
|
+
): void;
|
|
474
566
|
deleteReference(
|
|
475
567
|
args: DeleteReferenceCommandInput,
|
|
476
568
|
options?: __HttpHandlerOptions
|
|
@@ -536,6 +628,19 @@ export interface Omics {
|
|
|
536
628
|
options: __HttpHandlerOptions,
|
|
537
629
|
cb: (err: any, data?: DeleteSequenceStoreCommandOutput) => void
|
|
538
630
|
): void;
|
|
631
|
+
deleteShare(
|
|
632
|
+
args: DeleteShareCommandInput,
|
|
633
|
+
options?: __HttpHandlerOptions
|
|
634
|
+
): Promise<DeleteShareCommandOutput>;
|
|
635
|
+
deleteShare(
|
|
636
|
+
args: DeleteShareCommandInput,
|
|
637
|
+
cb: (err: any, data?: DeleteShareCommandOutput) => void
|
|
638
|
+
): void;
|
|
639
|
+
deleteShare(
|
|
640
|
+
args: DeleteShareCommandInput,
|
|
641
|
+
options: __HttpHandlerOptions,
|
|
642
|
+
cb: (err: any, data?: DeleteShareCommandOutput) => void
|
|
643
|
+
): void;
|
|
539
644
|
deleteVariantStore(
|
|
540
645
|
args: DeleteVariantStoreCommandInput,
|
|
541
646
|
options?: __HttpHandlerOptions
|
|
@@ -588,6 +693,19 @@ export interface Omics {
|
|
|
588
693
|
options: __HttpHandlerOptions,
|
|
589
694
|
cb: (err: any, data?: GetAnnotationStoreCommandOutput) => void
|
|
590
695
|
): void;
|
|
696
|
+
getAnnotationStoreVersion(
|
|
697
|
+
args: GetAnnotationStoreVersionCommandInput,
|
|
698
|
+
options?: __HttpHandlerOptions
|
|
699
|
+
): Promise<GetAnnotationStoreVersionCommandOutput>;
|
|
700
|
+
getAnnotationStoreVersion(
|
|
701
|
+
args: GetAnnotationStoreVersionCommandInput,
|
|
702
|
+
cb: (err: any, data?: GetAnnotationStoreVersionCommandOutput) => void
|
|
703
|
+
): void;
|
|
704
|
+
getAnnotationStoreVersion(
|
|
705
|
+
args: GetAnnotationStoreVersionCommandInput,
|
|
706
|
+
options: __HttpHandlerOptions,
|
|
707
|
+
cb: (err: any, data?: GetAnnotationStoreVersionCommandOutput) => void
|
|
708
|
+
): void;
|
|
591
709
|
getReadSet(
|
|
592
710
|
args: GetReadSetCommandInput,
|
|
593
711
|
options?: __HttpHandlerOptions
|
|
@@ -757,6 +875,19 @@ export interface Omics {
|
|
|
757
875
|
options: __HttpHandlerOptions,
|
|
758
876
|
cb: (err: any, data?: GetSequenceStoreCommandOutput) => void
|
|
759
877
|
): void;
|
|
878
|
+
getShare(
|
|
879
|
+
args: GetShareCommandInput,
|
|
880
|
+
options?: __HttpHandlerOptions
|
|
881
|
+
): Promise<GetShareCommandOutput>;
|
|
882
|
+
getShare(
|
|
883
|
+
args: GetShareCommandInput,
|
|
884
|
+
cb: (err: any, data?: GetShareCommandOutput) => void
|
|
885
|
+
): void;
|
|
886
|
+
getShare(
|
|
887
|
+
args: GetShareCommandInput,
|
|
888
|
+
options: __HttpHandlerOptions,
|
|
889
|
+
cb: (err: any, data?: GetShareCommandOutput) => void
|
|
890
|
+
): void;
|
|
760
891
|
getVariantImportJob(
|
|
761
892
|
args: GetVariantImportJobCommandInput,
|
|
762
893
|
options?: __HttpHandlerOptions
|
|
@@ -822,6 +953,19 @@ export interface Omics {
|
|
|
822
953
|
options: __HttpHandlerOptions,
|
|
823
954
|
cb: (err: any, data?: ListAnnotationStoresCommandOutput) => void
|
|
824
955
|
): void;
|
|
956
|
+
listAnnotationStoreVersions(
|
|
957
|
+
args: ListAnnotationStoreVersionsCommandInput,
|
|
958
|
+
options?: __HttpHandlerOptions
|
|
959
|
+
): Promise<ListAnnotationStoreVersionsCommandOutput>;
|
|
960
|
+
listAnnotationStoreVersions(
|
|
961
|
+
args: ListAnnotationStoreVersionsCommandInput,
|
|
962
|
+
cb: (err: any, data?: ListAnnotationStoreVersionsCommandOutput) => void
|
|
963
|
+
): void;
|
|
964
|
+
listAnnotationStoreVersions(
|
|
965
|
+
args: ListAnnotationStoreVersionsCommandInput,
|
|
966
|
+
options: __HttpHandlerOptions,
|
|
967
|
+
cb: (err: any, data?: ListAnnotationStoreVersionsCommandOutput) => void
|
|
968
|
+
): void;
|
|
825
969
|
listMultipartReadSetUploads(
|
|
826
970
|
args: ListMultipartReadSetUploadsCommandInput,
|
|
827
971
|
options?: __HttpHandlerOptions
|
|
@@ -991,6 +1135,19 @@ export interface Omics {
|
|
|
991
1135
|
options: __HttpHandlerOptions,
|
|
992
1136
|
cb: (err: any, data?: ListSequenceStoresCommandOutput) => void
|
|
993
1137
|
): void;
|
|
1138
|
+
listShares(
|
|
1139
|
+
args: ListSharesCommandInput,
|
|
1140
|
+
options?: __HttpHandlerOptions
|
|
1141
|
+
): Promise<ListSharesCommandOutput>;
|
|
1142
|
+
listShares(
|
|
1143
|
+
args: ListSharesCommandInput,
|
|
1144
|
+
cb: (err: any, data?: ListSharesCommandOutput) => void
|
|
1145
|
+
): void;
|
|
1146
|
+
listShares(
|
|
1147
|
+
args: ListSharesCommandInput,
|
|
1148
|
+
options: __HttpHandlerOptions,
|
|
1149
|
+
cb: (err: any, data?: ListSharesCommandOutput) => void
|
|
1150
|
+
): void;
|
|
994
1151
|
listTagsForResource(
|
|
995
1152
|
args: ListTagsForResourceCommandInput,
|
|
996
1153
|
options?: __HttpHandlerOptions
|
|
@@ -1173,6 +1330,19 @@ export interface Omics {
|
|
|
1173
1330
|
options: __HttpHandlerOptions,
|
|
1174
1331
|
cb: (err: any, data?: UpdateAnnotationStoreCommandOutput) => void
|
|
1175
1332
|
): void;
|
|
1333
|
+
updateAnnotationStoreVersion(
|
|
1334
|
+
args: UpdateAnnotationStoreVersionCommandInput,
|
|
1335
|
+
options?: __HttpHandlerOptions
|
|
1336
|
+
): Promise<UpdateAnnotationStoreVersionCommandOutput>;
|
|
1337
|
+
updateAnnotationStoreVersion(
|
|
1338
|
+
args: UpdateAnnotationStoreVersionCommandInput,
|
|
1339
|
+
cb: (err: any, data?: UpdateAnnotationStoreVersionCommandOutput) => void
|
|
1340
|
+
): void;
|
|
1341
|
+
updateAnnotationStoreVersion(
|
|
1342
|
+
args: UpdateAnnotationStoreVersionCommandInput,
|
|
1343
|
+
options: __HttpHandlerOptions,
|
|
1344
|
+
cb: (err: any, data?: UpdateAnnotationStoreVersionCommandOutput) => void
|
|
1345
|
+
): void;
|
|
1176
1346
|
updateRunGroup(
|
|
1177
1347
|
args: UpdateRunGroupCommandInput,
|
|
1178
1348
|
options?: __HttpHandlerOptions
|