@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
|
@@ -73,6 +73,26 @@ export declare const Accelerators: {
|
|
|
73
73
|
readonly GPU: "GPU";
|
|
74
74
|
};
|
|
75
75
|
export type Accelerators = (typeof Accelerators)[keyof typeof Accelerators];
|
|
76
|
+
export interface AcceptShareRequest {
|
|
77
|
+
shareId: string | undefined;
|
|
78
|
+
}
|
|
79
|
+
export declare const ShareStatus: {
|
|
80
|
+
readonly ACTIVATING: "ACTIVATING";
|
|
81
|
+
readonly ACTIVE: "ACTIVE";
|
|
82
|
+
readonly DELETED: "DELETED";
|
|
83
|
+
readonly DELETING: "DELETING";
|
|
84
|
+
readonly FAILED: "FAILED";
|
|
85
|
+
readonly PENDING: "PENDING";
|
|
86
|
+
};
|
|
87
|
+
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
88
|
+
export interface AcceptShareResponse {
|
|
89
|
+
status?: ShareStatus | string;
|
|
90
|
+
}
|
|
91
|
+
export declare class ConflictException extends __BaseException {
|
|
92
|
+
readonly name: "ConflictException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
95
|
+
}
|
|
76
96
|
export declare const ReadSetActivationJobStatus: {
|
|
77
97
|
readonly CANCELLED: "CANCELLED";
|
|
78
98
|
readonly CANCELLING: "CANCELLING";
|
|
@@ -180,6 +200,7 @@ export declare namespace FormatOptions {
|
|
|
180
200
|
export interface GetAnnotationImportResponse {
|
|
181
201
|
id: string | undefined;
|
|
182
202
|
destinationName: string | undefined;
|
|
203
|
+
versionName: string | undefined;
|
|
183
204
|
roleArn: string | undefined;
|
|
184
205
|
status: JobStatus | string | undefined;
|
|
185
206
|
statusMessage: string | undefined;
|
|
@@ -204,6 +225,7 @@ export interface ListAnnotationImportJobsRequest {
|
|
|
204
225
|
export interface AnnotationImportJobItem {
|
|
205
226
|
id: string | undefined;
|
|
206
227
|
destinationName: string | undefined;
|
|
228
|
+
versionName: string | undefined;
|
|
207
229
|
roleArn: string | undefined;
|
|
208
230
|
status: JobStatus | string | undefined;
|
|
209
231
|
creationTime: Date | undefined;
|
|
@@ -220,6 +242,7 @@ export interface StartAnnotationImportRequest {
|
|
|
220
242
|
destinationName: string | undefined;
|
|
221
243
|
roleArn: string | undefined;
|
|
222
244
|
items: AnnotationImportItemSource[] | undefined;
|
|
245
|
+
versionName?: string;
|
|
223
246
|
formatOptions?: FormatOptions;
|
|
224
247
|
runLeftNormalization?: boolean;
|
|
225
248
|
annotationFields?: Record<string, string>;
|
|
@@ -227,11 +250,6 @@ export interface StartAnnotationImportRequest {
|
|
|
227
250
|
export interface StartAnnotationImportResponse {
|
|
228
251
|
jobId: string | undefined;
|
|
229
252
|
}
|
|
230
|
-
export declare class ConflictException extends __BaseException {
|
|
231
|
-
readonly name: "ConflictException";
|
|
232
|
-
readonly $fault: "client";
|
|
233
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
234
|
-
}
|
|
235
253
|
export type ReferenceItem =
|
|
236
254
|
| ReferenceItem.ReferenceArnMember
|
|
237
255
|
| ReferenceItem.$UnknownMember;
|
|
@@ -324,6 +342,7 @@ export interface CreateAnnotationStoreRequest {
|
|
|
324
342
|
name?: string;
|
|
325
343
|
description?: string;
|
|
326
344
|
tags?: Record<string, string>;
|
|
345
|
+
versionName?: string;
|
|
327
346
|
sseConfig?: SseConfig;
|
|
328
347
|
storeFormat: StoreFormat | string | undefined;
|
|
329
348
|
storeOptions?: StoreOptions;
|
|
@@ -343,6 +362,7 @@ export interface CreateAnnotationStoreResponse {
|
|
|
343
362
|
storeOptions?: StoreOptions;
|
|
344
363
|
status: StoreStatus | string | undefined;
|
|
345
364
|
name: string | undefined;
|
|
365
|
+
versionName: string | undefined;
|
|
346
366
|
creationTime: Date | undefined;
|
|
347
367
|
}
|
|
348
368
|
export interface DeleteAnnotationStoreRequest {
|
|
@@ -370,6 +390,7 @@ export interface GetAnnotationStoreResponse {
|
|
|
370
390
|
storeFormat?: StoreFormat | string;
|
|
371
391
|
statusMessage: string | undefined;
|
|
372
392
|
storeSizeBytes: number | undefined;
|
|
393
|
+
numVersions: number | undefined;
|
|
373
394
|
}
|
|
374
395
|
export interface ListAnnotationStoresFilter {
|
|
375
396
|
status?: StoreStatus | string;
|
|
@@ -413,6 +434,125 @@ export interface UpdateAnnotationStoreResponse {
|
|
|
413
434
|
storeOptions?: StoreOptions;
|
|
414
435
|
storeFormat?: StoreFormat | string;
|
|
415
436
|
}
|
|
437
|
+
export interface TsvVersionOptions {
|
|
438
|
+
annotationType?: AnnotationType | string;
|
|
439
|
+
formatToHeader?: Record<string, string>;
|
|
440
|
+
schema?: Record<string, SchemaValueType | string>[];
|
|
441
|
+
}
|
|
442
|
+
export type VersionOptions =
|
|
443
|
+
| VersionOptions.TsvVersionOptionsMember
|
|
444
|
+
| VersionOptions.$UnknownMember;
|
|
445
|
+
export declare namespace VersionOptions {
|
|
446
|
+
interface TsvVersionOptionsMember {
|
|
447
|
+
tsvVersionOptions: TsvVersionOptions;
|
|
448
|
+
$unknown?: never;
|
|
449
|
+
}
|
|
450
|
+
interface $UnknownMember {
|
|
451
|
+
tsvVersionOptions?: never;
|
|
452
|
+
$unknown: [string, any];
|
|
453
|
+
}
|
|
454
|
+
interface Visitor<T> {
|
|
455
|
+
tsvVersionOptions: (value: TsvVersionOptions) => T;
|
|
456
|
+
_: (name: string, value: any) => T;
|
|
457
|
+
}
|
|
458
|
+
const visit: <T>(value: VersionOptions, visitor: Visitor<T>) => T;
|
|
459
|
+
}
|
|
460
|
+
export interface CreateAnnotationStoreVersionRequest {
|
|
461
|
+
name: string | undefined;
|
|
462
|
+
versionName: string | undefined;
|
|
463
|
+
description?: string;
|
|
464
|
+
versionOptions?: VersionOptions;
|
|
465
|
+
tags?: Record<string, string>;
|
|
466
|
+
}
|
|
467
|
+
export declare const VersionStatus: {
|
|
468
|
+
readonly ACTIVE: "ACTIVE";
|
|
469
|
+
readonly CREATING: "CREATING";
|
|
470
|
+
readonly DELETING: "DELETING";
|
|
471
|
+
readonly FAILED: "FAILED";
|
|
472
|
+
readonly UPDATING: "UPDATING";
|
|
473
|
+
};
|
|
474
|
+
export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus];
|
|
475
|
+
export interface CreateAnnotationStoreVersionResponse {
|
|
476
|
+
id: string | undefined;
|
|
477
|
+
versionName: string | undefined;
|
|
478
|
+
storeId: string | undefined;
|
|
479
|
+
versionOptions?: VersionOptions;
|
|
480
|
+
name: string | undefined;
|
|
481
|
+
status: VersionStatus | string | undefined;
|
|
482
|
+
creationTime: Date | undefined;
|
|
483
|
+
}
|
|
484
|
+
export interface DeleteAnnotationStoreVersionsRequest {
|
|
485
|
+
name: string | undefined;
|
|
486
|
+
versions: string[] | undefined;
|
|
487
|
+
force?: boolean;
|
|
488
|
+
}
|
|
489
|
+
export interface VersionDeleteError {
|
|
490
|
+
versionName: string | undefined;
|
|
491
|
+
message: string | undefined;
|
|
492
|
+
}
|
|
493
|
+
export interface DeleteAnnotationStoreVersionsResponse {
|
|
494
|
+
errors?: VersionDeleteError[];
|
|
495
|
+
}
|
|
496
|
+
export interface GetAnnotationStoreVersionRequest {
|
|
497
|
+
name: string | undefined;
|
|
498
|
+
versionName: string | undefined;
|
|
499
|
+
}
|
|
500
|
+
export interface GetAnnotationStoreVersionResponse {
|
|
501
|
+
storeId: string | undefined;
|
|
502
|
+
id: string | undefined;
|
|
503
|
+
status: VersionStatus | string | undefined;
|
|
504
|
+
versionArn: string | undefined;
|
|
505
|
+
name: string | undefined;
|
|
506
|
+
versionName: string | undefined;
|
|
507
|
+
description: string | undefined;
|
|
508
|
+
creationTime: Date | undefined;
|
|
509
|
+
updateTime: Date | undefined;
|
|
510
|
+
tags: Record<string, string> | undefined;
|
|
511
|
+
versionOptions?: VersionOptions;
|
|
512
|
+
statusMessage: string | undefined;
|
|
513
|
+
versionSizeBytes: number | undefined;
|
|
514
|
+
}
|
|
515
|
+
export interface ListAnnotationStoreVersionsFilter {
|
|
516
|
+
status?: VersionStatus | string;
|
|
517
|
+
}
|
|
518
|
+
export interface ListAnnotationStoreVersionsRequest {
|
|
519
|
+
name: string | undefined;
|
|
520
|
+
maxResults?: number;
|
|
521
|
+
nextToken?: string;
|
|
522
|
+
filter?: ListAnnotationStoreVersionsFilter;
|
|
523
|
+
}
|
|
524
|
+
export interface AnnotationStoreVersionItem {
|
|
525
|
+
storeId: string | undefined;
|
|
526
|
+
id: string | undefined;
|
|
527
|
+
status: VersionStatus | string | undefined;
|
|
528
|
+
versionArn: string | undefined;
|
|
529
|
+
name: string | undefined;
|
|
530
|
+
versionName: string | undefined;
|
|
531
|
+
description: string | undefined;
|
|
532
|
+
creationTime: Date | undefined;
|
|
533
|
+
updateTime: Date | undefined;
|
|
534
|
+
statusMessage: string | undefined;
|
|
535
|
+
versionSizeBytes: number | undefined;
|
|
536
|
+
}
|
|
537
|
+
export interface ListAnnotationStoreVersionsResponse {
|
|
538
|
+
annotationStoreVersions?: AnnotationStoreVersionItem[];
|
|
539
|
+
nextToken?: string;
|
|
540
|
+
}
|
|
541
|
+
export interface UpdateAnnotationStoreVersionRequest {
|
|
542
|
+
name: string | undefined;
|
|
543
|
+
versionName: string | undefined;
|
|
544
|
+
description?: string;
|
|
545
|
+
}
|
|
546
|
+
export interface UpdateAnnotationStoreVersionResponse {
|
|
547
|
+
storeId: string | undefined;
|
|
548
|
+
id: string | undefined;
|
|
549
|
+
status: VersionStatus | string | undefined;
|
|
550
|
+
name: string | undefined;
|
|
551
|
+
versionName: string | undefined;
|
|
552
|
+
description: string | undefined;
|
|
553
|
+
creationTime: Date | undefined;
|
|
554
|
+
updateTime: Date | undefined;
|
|
555
|
+
}
|
|
416
556
|
export interface BatchDeleteReadSetRequest {
|
|
417
557
|
ids: string[] | undefined;
|
|
418
558
|
sequenceStoreId: string | undefined;
|
|
@@ -528,6 +668,16 @@ export interface CreateSequenceStoreResponse {
|
|
|
528
668
|
creationTime: Date | undefined;
|
|
529
669
|
fallbackLocation?: string;
|
|
530
670
|
}
|
|
671
|
+
export interface CreateShareRequest {
|
|
672
|
+
resourceArn: string | undefined;
|
|
673
|
+
principalSubscriber: string | undefined;
|
|
674
|
+
shareName?: string;
|
|
675
|
+
}
|
|
676
|
+
export interface CreateShareResponse {
|
|
677
|
+
shareId?: string;
|
|
678
|
+
status?: ShareStatus | string;
|
|
679
|
+
shareName?: string;
|
|
680
|
+
}
|
|
531
681
|
export interface CreateVariantStoreRequest {
|
|
532
682
|
reference: ReferenceItem | undefined;
|
|
533
683
|
name?: string;
|
|
@@ -606,6 +756,12 @@ export interface DeleteSequenceStoreRequest {
|
|
|
606
756
|
id: string | undefined;
|
|
607
757
|
}
|
|
608
758
|
export interface DeleteSequenceStoreResponse {}
|
|
759
|
+
export interface DeleteShareRequest {
|
|
760
|
+
shareId: string | undefined;
|
|
761
|
+
}
|
|
762
|
+
export interface DeleteShareResponse {
|
|
763
|
+
status?: ShareStatus | string;
|
|
764
|
+
}
|
|
609
765
|
export interface DeleteVariantStoreRequest {
|
|
610
766
|
name: string | undefined;
|
|
611
767
|
force?: boolean;
|
|
@@ -661,6 +817,10 @@ export interface FileInformation {
|
|
|
661
817
|
partSize?: number;
|
|
662
818
|
contentLength?: number;
|
|
663
819
|
}
|
|
820
|
+
export interface Filter {
|
|
821
|
+
resourceArns?: string[];
|
|
822
|
+
status?: (ShareStatus | string)[];
|
|
823
|
+
}
|
|
664
824
|
export declare const ReadSetFile: {
|
|
665
825
|
readonly INDEX: "INDEX";
|
|
666
826
|
readonly SOURCE1: "SOURCE1";
|
|
@@ -1008,6 +1168,23 @@ export interface GetSequenceStoreResponse {
|
|
|
1008
1168
|
creationTime: Date | undefined;
|
|
1009
1169
|
fallbackLocation?: string;
|
|
1010
1170
|
}
|
|
1171
|
+
export interface GetShareRequest {
|
|
1172
|
+
shareId: string | undefined;
|
|
1173
|
+
}
|
|
1174
|
+
export interface ShareDetails {
|
|
1175
|
+
shareId?: string;
|
|
1176
|
+
resourceArn?: string;
|
|
1177
|
+
principalSubscriber?: string;
|
|
1178
|
+
ownerId?: string;
|
|
1179
|
+
status?: ShareStatus | string;
|
|
1180
|
+
statusMessage?: string;
|
|
1181
|
+
shareName?: string;
|
|
1182
|
+
creationTime?: Date;
|
|
1183
|
+
updateTime?: Date;
|
|
1184
|
+
}
|
|
1185
|
+
export interface GetShareResponse {
|
|
1186
|
+
share?: ShareDetails;
|
|
1187
|
+
}
|
|
1011
1188
|
export interface GetVariantImportRequest {
|
|
1012
1189
|
jobId: string | undefined;
|
|
1013
1190
|
}
|
|
@@ -1360,6 +1537,21 @@ export interface ListSequenceStoresResponse {
|
|
|
1360
1537
|
nextToken?: string;
|
|
1361
1538
|
sequenceStores: SequenceStoreDetail[] | undefined;
|
|
1362
1539
|
}
|
|
1540
|
+
export declare const ResourceOwner: {
|
|
1541
|
+
readonly OTHER: "OTHER";
|
|
1542
|
+
readonly SELF: "SELF";
|
|
1543
|
+
};
|
|
1544
|
+
export type ResourceOwner = (typeof ResourceOwner)[keyof typeof ResourceOwner];
|
|
1545
|
+
export interface ListSharesRequest {
|
|
1546
|
+
resourceOwner: ResourceOwner | string | undefined;
|
|
1547
|
+
filter?: Filter;
|
|
1548
|
+
nextToken?: string;
|
|
1549
|
+
maxResults?: number;
|
|
1550
|
+
}
|
|
1551
|
+
export interface ListSharesResponse {
|
|
1552
|
+
shares: ShareDetails[] | undefined;
|
|
1553
|
+
nextToken?: string;
|
|
1554
|
+
}
|
|
1363
1555
|
export interface ListTagsForResourceRequest {
|
|
1364
1556
|
resourceArn: string | undefined;
|
|
1365
1557
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAnnotationStoreVersionsCommandInput,
|
|
4
|
+
ListAnnotationStoreVersionsCommandOutput,
|
|
5
|
+
} from "../commands/ListAnnotationStoreVersionsCommand";
|
|
6
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListAnnotationStoreVersions(
|
|
8
|
+
config: OmicsPaginationConfiguration,
|
|
9
|
+
input: ListAnnotationStoreVersionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListAnnotationStoreVersionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListSharesCommandInput,
|
|
4
|
+
ListSharesCommandOutput,
|
|
5
|
+
} from "../commands/ListSharesCommand";
|
|
6
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListShares(
|
|
8
|
+
config: OmicsPaginationConfiguration,
|
|
9
|
+
input: ListSharesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): 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";
|
|
@@ -10,6 +10,10 @@ import {
|
|
|
10
10
|
AbortMultipartReadSetUploadCommandInput,
|
|
11
11
|
AbortMultipartReadSetUploadCommandOutput,
|
|
12
12
|
} from "../commands/AbortMultipartReadSetUploadCommand";
|
|
13
|
+
import {
|
|
14
|
+
AcceptShareCommandInput,
|
|
15
|
+
AcceptShareCommandOutput,
|
|
16
|
+
} from "../commands/AcceptShareCommand";
|
|
13
17
|
import {
|
|
14
18
|
BatchDeleteReadSetCommandInput,
|
|
15
19
|
BatchDeleteReadSetCommandOutput,
|
|
@@ -34,6 +38,10 @@ import {
|
|
|
34
38
|
CreateAnnotationStoreCommandInput,
|
|
35
39
|
CreateAnnotationStoreCommandOutput,
|
|
36
40
|
} from "../commands/CreateAnnotationStoreCommand";
|
|
41
|
+
import {
|
|
42
|
+
CreateAnnotationStoreVersionCommandInput,
|
|
43
|
+
CreateAnnotationStoreVersionCommandOutput,
|
|
44
|
+
} from "../commands/CreateAnnotationStoreVersionCommand";
|
|
37
45
|
import {
|
|
38
46
|
CreateMultipartReadSetUploadCommandInput,
|
|
39
47
|
CreateMultipartReadSetUploadCommandOutput,
|
|
@@ -50,6 +58,10 @@ import {
|
|
|
50
58
|
CreateSequenceStoreCommandInput,
|
|
51
59
|
CreateSequenceStoreCommandOutput,
|
|
52
60
|
} from "../commands/CreateSequenceStoreCommand";
|
|
61
|
+
import {
|
|
62
|
+
CreateShareCommandInput,
|
|
63
|
+
CreateShareCommandOutput,
|
|
64
|
+
} from "../commands/CreateShareCommand";
|
|
53
65
|
import {
|
|
54
66
|
CreateVariantStoreCommandInput,
|
|
55
67
|
CreateVariantStoreCommandOutput,
|
|
@@ -62,6 +74,10 @@ import {
|
|
|
62
74
|
DeleteAnnotationStoreCommandInput,
|
|
63
75
|
DeleteAnnotationStoreCommandOutput,
|
|
64
76
|
} from "../commands/DeleteAnnotationStoreCommand";
|
|
77
|
+
import {
|
|
78
|
+
DeleteAnnotationStoreVersionsCommandInput,
|
|
79
|
+
DeleteAnnotationStoreVersionsCommandOutput,
|
|
80
|
+
} from "../commands/DeleteAnnotationStoreVersionsCommand";
|
|
65
81
|
import {
|
|
66
82
|
DeleteReferenceCommandInput,
|
|
67
83
|
DeleteReferenceCommandOutput,
|
|
@@ -82,6 +98,10 @@ import {
|
|
|
82
98
|
DeleteSequenceStoreCommandInput,
|
|
83
99
|
DeleteSequenceStoreCommandOutput,
|
|
84
100
|
} from "../commands/DeleteSequenceStoreCommand";
|
|
101
|
+
import {
|
|
102
|
+
DeleteShareCommandInput,
|
|
103
|
+
DeleteShareCommandOutput,
|
|
104
|
+
} from "../commands/DeleteShareCommand";
|
|
85
105
|
import {
|
|
86
106
|
DeleteVariantStoreCommandInput,
|
|
87
107
|
DeleteVariantStoreCommandOutput,
|
|
@@ -98,6 +118,10 @@ import {
|
|
|
98
118
|
GetAnnotationStoreCommandInput,
|
|
99
119
|
GetAnnotationStoreCommandOutput,
|
|
100
120
|
} from "../commands/GetAnnotationStoreCommand";
|
|
121
|
+
import {
|
|
122
|
+
GetAnnotationStoreVersionCommandInput,
|
|
123
|
+
GetAnnotationStoreVersionCommandOutput,
|
|
124
|
+
} from "../commands/GetAnnotationStoreVersionCommand";
|
|
101
125
|
import {
|
|
102
126
|
GetReadSetActivationJobCommandInput,
|
|
103
127
|
GetReadSetActivationJobCommandOutput,
|
|
@@ -150,6 +174,10 @@ import {
|
|
|
150
174
|
GetSequenceStoreCommandInput,
|
|
151
175
|
GetSequenceStoreCommandOutput,
|
|
152
176
|
} from "../commands/GetSequenceStoreCommand";
|
|
177
|
+
import {
|
|
178
|
+
GetShareCommandInput,
|
|
179
|
+
GetShareCommandOutput,
|
|
180
|
+
} from "../commands/GetShareCommand";
|
|
153
181
|
import {
|
|
154
182
|
GetVariantImportJobCommandInput,
|
|
155
183
|
GetVariantImportJobCommandOutput,
|
|
@@ -170,6 +198,10 @@ import {
|
|
|
170
198
|
ListAnnotationStoresCommandInput,
|
|
171
199
|
ListAnnotationStoresCommandOutput,
|
|
172
200
|
} from "../commands/ListAnnotationStoresCommand";
|
|
201
|
+
import {
|
|
202
|
+
ListAnnotationStoreVersionsCommandInput,
|
|
203
|
+
ListAnnotationStoreVersionsCommandOutput,
|
|
204
|
+
} from "../commands/ListAnnotationStoreVersionsCommand";
|
|
173
205
|
import {
|
|
174
206
|
ListMultipartReadSetUploadsCommandInput,
|
|
175
207
|
ListMultipartReadSetUploadsCommandOutput,
|
|
@@ -222,6 +254,10 @@ import {
|
|
|
222
254
|
ListSequenceStoresCommandInput,
|
|
223
255
|
ListSequenceStoresCommandOutput,
|
|
224
256
|
} from "../commands/ListSequenceStoresCommand";
|
|
257
|
+
import {
|
|
258
|
+
ListSharesCommandInput,
|
|
259
|
+
ListSharesCommandOutput,
|
|
260
|
+
} from "../commands/ListSharesCommand";
|
|
225
261
|
import {
|
|
226
262
|
ListTagsForResourceCommandInput,
|
|
227
263
|
ListTagsForResourceCommandOutput,
|
|
@@ -278,6 +314,10 @@ import {
|
|
|
278
314
|
UpdateAnnotationStoreCommandInput,
|
|
279
315
|
UpdateAnnotationStoreCommandOutput,
|
|
280
316
|
} from "../commands/UpdateAnnotationStoreCommand";
|
|
317
|
+
import {
|
|
318
|
+
UpdateAnnotationStoreVersionCommandInput,
|
|
319
|
+
UpdateAnnotationStoreVersionCommandOutput,
|
|
320
|
+
} from "../commands/UpdateAnnotationStoreVersionCommand";
|
|
281
321
|
import {
|
|
282
322
|
UpdateRunGroupCommandInput,
|
|
283
323
|
UpdateRunGroupCommandOutput,
|
|
@@ -298,6 +338,10 @@ export declare const se_AbortMultipartReadSetUploadCommand: (
|
|
|
298
338
|
input: AbortMultipartReadSetUploadCommandInput,
|
|
299
339
|
context: __SerdeContext
|
|
300
340
|
) => Promise<__HttpRequest>;
|
|
341
|
+
export declare const se_AcceptShareCommand: (
|
|
342
|
+
input: AcceptShareCommandInput,
|
|
343
|
+
context: __SerdeContext
|
|
344
|
+
) => Promise<__HttpRequest>;
|
|
301
345
|
export declare const se_BatchDeleteReadSetCommand: (
|
|
302
346
|
input: BatchDeleteReadSetCommandInput,
|
|
303
347
|
context: __SerdeContext
|
|
@@ -322,6 +366,10 @@ export declare const se_CreateAnnotationStoreCommand: (
|
|
|
322
366
|
input: CreateAnnotationStoreCommandInput,
|
|
323
367
|
context: __SerdeContext
|
|
324
368
|
) => Promise<__HttpRequest>;
|
|
369
|
+
export declare const se_CreateAnnotationStoreVersionCommand: (
|
|
370
|
+
input: CreateAnnotationStoreVersionCommandInput,
|
|
371
|
+
context: __SerdeContext
|
|
372
|
+
) => Promise<__HttpRequest>;
|
|
325
373
|
export declare const se_CreateMultipartReadSetUploadCommand: (
|
|
326
374
|
input: CreateMultipartReadSetUploadCommandInput,
|
|
327
375
|
context: __SerdeContext
|
|
@@ -338,6 +386,10 @@ export declare const se_CreateSequenceStoreCommand: (
|
|
|
338
386
|
input: CreateSequenceStoreCommandInput,
|
|
339
387
|
context: __SerdeContext
|
|
340
388
|
) => Promise<__HttpRequest>;
|
|
389
|
+
export declare const se_CreateShareCommand: (
|
|
390
|
+
input: CreateShareCommandInput,
|
|
391
|
+
context: __SerdeContext
|
|
392
|
+
) => Promise<__HttpRequest>;
|
|
341
393
|
export declare const se_CreateVariantStoreCommand: (
|
|
342
394
|
input: CreateVariantStoreCommandInput,
|
|
343
395
|
context: __SerdeContext
|
|
@@ -350,6 +402,10 @@ export declare const se_DeleteAnnotationStoreCommand: (
|
|
|
350
402
|
input: DeleteAnnotationStoreCommandInput,
|
|
351
403
|
context: __SerdeContext
|
|
352
404
|
) => Promise<__HttpRequest>;
|
|
405
|
+
export declare const se_DeleteAnnotationStoreVersionsCommand: (
|
|
406
|
+
input: DeleteAnnotationStoreVersionsCommandInput,
|
|
407
|
+
context: __SerdeContext
|
|
408
|
+
) => Promise<__HttpRequest>;
|
|
353
409
|
export declare const se_DeleteReferenceCommand: (
|
|
354
410
|
input: DeleteReferenceCommandInput,
|
|
355
411
|
context: __SerdeContext
|
|
@@ -370,6 +426,10 @@ export declare const se_DeleteSequenceStoreCommand: (
|
|
|
370
426
|
input: DeleteSequenceStoreCommandInput,
|
|
371
427
|
context: __SerdeContext
|
|
372
428
|
) => Promise<__HttpRequest>;
|
|
429
|
+
export declare const se_DeleteShareCommand: (
|
|
430
|
+
input: DeleteShareCommandInput,
|
|
431
|
+
context: __SerdeContext
|
|
432
|
+
) => Promise<__HttpRequest>;
|
|
373
433
|
export declare const se_DeleteVariantStoreCommand: (
|
|
374
434
|
input: DeleteVariantStoreCommandInput,
|
|
375
435
|
context: __SerdeContext
|
|
@@ -386,6 +446,10 @@ export declare const se_GetAnnotationStoreCommand: (
|
|
|
386
446
|
input: GetAnnotationStoreCommandInput,
|
|
387
447
|
context: __SerdeContext
|
|
388
448
|
) => Promise<__HttpRequest>;
|
|
449
|
+
export declare const se_GetAnnotationStoreVersionCommand: (
|
|
450
|
+
input: GetAnnotationStoreVersionCommandInput,
|
|
451
|
+
context: __SerdeContext
|
|
452
|
+
) => Promise<__HttpRequest>;
|
|
389
453
|
export declare const se_GetReadSetCommand: (
|
|
390
454
|
input: GetReadSetCommandInput,
|
|
391
455
|
context: __SerdeContext
|
|
@@ -438,6 +502,10 @@ export declare const se_GetSequenceStoreCommand: (
|
|
|
438
502
|
input: GetSequenceStoreCommandInput,
|
|
439
503
|
context: __SerdeContext
|
|
440
504
|
) => Promise<__HttpRequest>;
|
|
505
|
+
export declare const se_GetShareCommand: (
|
|
506
|
+
input: GetShareCommandInput,
|
|
507
|
+
context: __SerdeContext
|
|
508
|
+
) => Promise<__HttpRequest>;
|
|
441
509
|
export declare const se_GetVariantImportJobCommand: (
|
|
442
510
|
input: GetVariantImportJobCommandInput,
|
|
443
511
|
context: __SerdeContext
|
|
@@ -458,6 +526,10 @@ export declare const se_ListAnnotationStoresCommand: (
|
|
|
458
526
|
input: ListAnnotationStoresCommandInput,
|
|
459
527
|
context: __SerdeContext
|
|
460
528
|
) => Promise<__HttpRequest>;
|
|
529
|
+
export declare const se_ListAnnotationStoreVersionsCommand: (
|
|
530
|
+
input: ListAnnotationStoreVersionsCommandInput,
|
|
531
|
+
context: __SerdeContext
|
|
532
|
+
) => Promise<__HttpRequest>;
|
|
461
533
|
export declare const se_ListMultipartReadSetUploadsCommand: (
|
|
462
534
|
input: ListMultipartReadSetUploadsCommandInput,
|
|
463
535
|
context: __SerdeContext
|
|
@@ -510,6 +582,10 @@ export declare const se_ListSequenceStoresCommand: (
|
|
|
510
582
|
input: ListSequenceStoresCommandInput,
|
|
511
583
|
context: __SerdeContext
|
|
512
584
|
) => Promise<__HttpRequest>;
|
|
585
|
+
export declare const se_ListSharesCommand: (
|
|
586
|
+
input: ListSharesCommandInput,
|
|
587
|
+
context: __SerdeContext
|
|
588
|
+
) => Promise<__HttpRequest>;
|
|
513
589
|
export declare const se_ListTagsForResourceCommand: (
|
|
514
590
|
input: ListTagsForResourceCommandInput,
|
|
515
591
|
context: __SerdeContext
|
|
@@ -566,6 +642,10 @@ export declare const se_UpdateAnnotationStoreCommand: (
|
|
|
566
642
|
input: UpdateAnnotationStoreCommandInput,
|
|
567
643
|
context: __SerdeContext
|
|
568
644
|
) => Promise<__HttpRequest>;
|
|
645
|
+
export declare const se_UpdateAnnotationStoreVersionCommand: (
|
|
646
|
+
input: UpdateAnnotationStoreVersionCommandInput,
|
|
647
|
+
context: __SerdeContext
|
|
648
|
+
) => Promise<__HttpRequest>;
|
|
569
649
|
export declare const se_UpdateRunGroupCommand: (
|
|
570
650
|
input: UpdateRunGroupCommandInput,
|
|
571
651
|
context: __SerdeContext
|
|
@@ -586,6 +666,10 @@ export declare const de_AbortMultipartReadSetUploadCommand: (
|
|
|
586
666
|
output: __HttpResponse,
|
|
587
667
|
context: __SerdeContext
|
|
588
668
|
) => Promise<AbortMultipartReadSetUploadCommandOutput>;
|
|
669
|
+
export declare const de_AcceptShareCommand: (
|
|
670
|
+
output: __HttpResponse,
|
|
671
|
+
context: __SerdeContext
|
|
672
|
+
) => Promise<AcceptShareCommandOutput>;
|
|
589
673
|
export declare const de_BatchDeleteReadSetCommand: (
|
|
590
674
|
output: __HttpResponse,
|
|
591
675
|
context: __SerdeContext
|
|
@@ -610,6 +694,10 @@ export declare const de_CreateAnnotationStoreCommand: (
|
|
|
610
694
|
output: __HttpResponse,
|
|
611
695
|
context: __SerdeContext
|
|
612
696
|
) => Promise<CreateAnnotationStoreCommandOutput>;
|
|
697
|
+
export declare const de_CreateAnnotationStoreVersionCommand: (
|
|
698
|
+
output: __HttpResponse,
|
|
699
|
+
context: __SerdeContext
|
|
700
|
+
) => Promise<CreateAnnotationStoreVersionCommandOutput>;
|
|
613
701
|
export declare const de_CreateMultipartReadSetUploadCommand: (
|
|
614
702
|
output: __HttpResponse,
|
|
615
703
|
context: __SerdeContext
|
|
@@ -626,6 +714,10 @@ export declare const de_CreateSequenceStoreCommand: (
|
|
|
626
714
|
output: __HttpResponse,
|
|
627
715
|
context: __SerdeContext
|
|
628
716
|
) => Promise<CreateSequenceStoreCommandOutput>;
|
|
717
|
+
export declare const de_CreateShareCommand: (
|
|
718
|
+
output: __HttpResponse,
|
|
719
|
+
context: __SerdeContext
|
|
720
|
+
) => Promise<CreateShareCommandOutput>;
|
|
629
721
|
export declare const de_CreateVariantStoreCommand: (
|
|
630
722
|
output: __HttpResponse,
|
|
631
723
|
context: __SerdeContext
|
|
@@ -638,6 +730,10 @@ export declare const de_DeleteAnnotationStoreCommand: (
|
|
|
638
730
|
output: __HttpResponse,
|
|
639
731
|
context: __SerdeContext
|
|
640
732
|
) => Promise<DeleteAnnotationStoreCommandOutput>;
|
|
733
|
+
export declare const de_DeleteAnnotationStoreVersionsCommand: (
|
|
734
|
+
output: __HttpResponse,
|
|
735
|
+
context: __SerdeContext
|
|
736
|
+
) => Promise<DeleteAnnotationStoreVersionsCommandOutput>;
|
|
641
737
|
export declare const de_DeleteReferenceCommand: (
|
|
642
738
|
output: __HttpResponse,
|
|
643
739
|
context: __SerdeContext
|
|
@@ -658,6 +754,10 @@ export declare const de_DeleteSequenceStoreCommand: (
|
|
|
658
754
|
output: __HttpResponse,
|
|
659
755
|
context: __SerdeContext
|
|
660
756
|
) => Promise<DeleteSequenceStoreCommandOutput>;
|
|
757
|
+
export declare const de_DeleteShareCommand: (
|
|
758
|
+
output: __HttpResponse,
|
|
759
|
+
context: __SerdeContext
|
|
760
|
+
) => Promise<DeleteShareCommandOutput>;
|
|
661
761
|
export declare const de_DeleteVariantStoreCommand: (
|
|
662
762
|
output: __HttpResponse,
|
|
663
763
|
context: __SerdeContext
|
|
@@ -674,6 +774,10 @@ export declare const de_GetAnnotationStoreCommand: (
|
|
|
674
774
|
output: __HttpResponse,
|
|
675
775
|
context: __SerdeContext
|
|
676
776
|
) => Promise<GetAnnotationStoreCommandOutput>;
|
|
777
|
+
export declare const de_GetAnnotationStoreVersionCommand: (
|
|
778
|
+
output: __HttpResponse,
|
|
779
|
+
context: __SerdeContext
|
|
780
|
+
) => Promise<GetAnnotationStoreVersionCommandOutput>;
|
|
677
781
|
export declare const de_GetReadSetCommand: (
|
|
678
782
|
output: __HttpResponse,
|
|
679
783
|
context: __SerdeContext & __SdkStreamSerdeContext
|
|
@@ -726,6 +830,10 @@ export declare const de_GetSequenceStoreCommand: (
|
|
|
726
830
|
output: __HttpResponse,
|
|
727
831
|
context: __SerdeContext
|
|
728
832
|
) => Promise<GetSequenceStoreCommandOutput>;
|
|
833
|
+
export declare const de_GetShareCommand: (
|
|
834
|
+
output: __HttpResponse,
|
|
835
|
+
context: __SerdeContext
|
|
836
|
+
) => Promise<GetShareCommandOutput>;
|
|
729
837
|
export declare const de_GetVariantImportJobCommand: (
|
|
730
838
|
output: __HttpResponse,
|
|
731
839
|
context: __SerdeContext
|
|
@@ -746,6 +854,10 @@ export declare const de_ListAnnotationStoresCommand: (
|
|
|
746
854
|
output: __HttpResponse,
|
|
747
855
|
context: __SerdeContext
|
|
748
856
|
) => Promise<ListAnnotationStoresCommandOutput>;
|
|
857
|
+
export declare const de_ListAnnotationStoreVersionsCommand: (
|
|
858
|
+
output: __HttpResponse,
|
|
859
|
+
context: __SerdeContext
|
|
860
|
+
) => Promise<ListAnnotationStoreVersionsCommandOutput>;
|
|
749
861
|
export declare const de_ListMultipartReadSetUploadsCommand: (
|
|
750
862
|
output: __HttpResponse,
|
|
751
863
|
context: __SerdeContext
|
|
@@ -798,6 +910,10 @@ export declare const de_ListSequenceStoresCommand: (
|
|
|
798
910
|
output: __HttpResponse,
|
|
799
911
|
context: __SerdeContext
|
|
800
912
|
) => Promise<ListSequenceStoresCommandOutput>;
|
|
913
|
+
export declare const de_ListSharesCommand: (
|
|
914
|
+
output: __HttpResponse,
|
|
915
|
+
context: __SerdeContext
|
|
916
|
+
) => Promise<ListSharesCommandOutput>;
|
|
801
917
|
export declare const de_ListTagsForResourceCommand: (
|
|
802
918
|
output: __HttpResponse,
|
|
803
919
|
context: __SerdeContext
|
|
@@ -854,6 +970,10 @@ export declare const de_UpdateAnnotationStoreCommand: (
|
|
|
854
970
|
output: __HttpResponse,
|
|
855
971
|
context: __SerdeContext
|
|
856
972
|
) => Promise<UpdateAnnotationStoreCommandOutput>;
|
|
973
|
+
export declare const de_UpdateAnnotationStoreVersionCommand: (
|
|
974
|
+
output: __HttpResponse,
|
|
975
|
+
context: __SerdeContext
|
|
976
|
+
) => Promise<UpdateAnnotationStoreVersionCommandOutput>;
|
|
857
977
|
export declare const de_UpdateRunGroupCommand: (
|
|
858
978
|
output: __HttpResponse,
|
|
859
979
|
context: __SerdeContext
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export * from "./waitForAnnotationImportJobCreated";
|
|
2
2
|
export * from "./waitForAnnotationStoreCreated";
|
|
3
3
|
export * from "./waitForAnnotationStoreDeleted";
|
|
4
|
+
export * from "./waitForAnnotationStoreVersionCreated";
|
|
5
|
+
export * from "./waitForAnnotationStoreVersionDeleted";
|
|
4
6
|
export * from "./waitForReadSetActivationJobCompleted";
|
|
5
7
|
export * from "./waitForReadSetExportJobCompleted";
|
|
6
8
|
export * from "./waitForReadSetImportJobCompleted";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetAnnotationStoreVersionCommandInput } from "../commands/GetAnnotationStoreVersionCommand";
|
|
3
|
+
import { OmicsClient } from "../OmicsClient";
|
|
4
|
+
export declare const waitForAnnotationStoreVersionCreated: (
|
|
5
|
+
params: WaiterConfiguration<OmicsClient>,
|
|
6
|
+
input: GetAnnotationStoreVersionCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilAnnotationStoreVersionCreated: (
|
|
9
|
+
params: WaiterConfiguration<OmicsClient>,
|
|
10
|
+
input: GetAnnotationStoreVersionCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetAnnotationStoreVersionCommandInput } from "../commands/GetAnnotationStoreVersionCommand";
|
|
3
|
+
import { OmicsClient } from "../OmicsClient";
|
|
4
|
+
export declare const waitForAnnotationStoreVersionDeleted: (
|
|
5
|
+
params: WaiterConfiguration<OmicsClient>,
|
|
6
|
+
input: GetAnnotationStoreVersionCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilAnnotationStoreVersionDeleted: (
|
|
9
|
+
params: WaiterConfiguration<OmicsClient>,
|
|
10
|
+
input: GetAnnotationStoreVersionCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|