@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
|
@@ -138,6 +138,76 @@ export declare const Accelerators: {
|
|
|
138
138
|
* @public
|
|
139
139
|
*/
|
|
140
140
|
export type Accelerators = (typeof Accelerators)[keyof typeof Accelerators];
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
export interface AcceptShareRequest {
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
* <p>
|
|
148
|
+
* The ID for a share offer for analytics store data.
|
|
149
|
+
* </p>
|
|
150
|
+
*/
|
|
151
|
+
shareId: string | undefined;
|
|
152
|
+
}
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
* @enum
|
|
156
|
+
*/
|
|
157
|
+
export declare const ShareStatus: {
|
|
158
|
+
/**
|
|
159
|
+
* The share is activated
|
|
160
|
+
*/
|
|
161
|
+
readonly ACTIVATING: "ACTIVATING";
|
|
162
|
+
/**
|
|
163
|
+
* The share is active and can be used
|
|
164
|
+
*/
|
|
165
|
+
readonly ACTIVE: "ACTIVE";
|
|
166
|
+
/**
|
|
167
|
+
* The share has been deleted
|
|
168
|
+
*/
|
|
169
|
+
readonly DELETED: "DELETED";
|
|
170
|
+
/**
|
|
171
|
+
* The share is being deleted
|
|
172
|
+
*/
|
|
173
|
+
readonly DELETING: "DELETING";
|
|
174
|
+
/**
|
|
175
|
+
* The share has failed to activate or delete
|
|
176
|
+
*/
|
|
177
|
+
readonly FAILED: "FAILED";
|
|
178
|
+
/**
|
|
179
|
+
* The share has been created but is not yet active
|
|
180
|
+
*/
|
|
181
|
+
readonly PENDING: "PENDING";
|
|
182
|
+
};
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
*/
|
|
190
|
+
export interface AcceptShareResponse {
|
|
191
|
+
/**
|
|
192
|
+
* @public
|
|
193
|
+
* <p>
|
|
194
|
+
* The status of an analytics store share.
|
|
195
|
+
* </p>
|
|
196
|
+
*/
|
|
197
|
+
status?: ShareStatus | string;
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* @public
|
|
201
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
202
|
+
*/
|
|
203
|
+
export declare class ConflictException extends __BaseException {
|
|
204
|
+
readonly name: "ConflictException";
|
|
205
|
+
readonly $fault: "client";
|
|
206
|
+
/**
|
|
207
|
+
* @internal
|
|
208
|
+
*/
|
|
209
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
210
|
+
}
|
|
141
211
|
/**
|
|
142
212
|
* @public
|
|
143
213
|
* @enum
|
|
@@ -462,6 +532,13 @@ export interface GetAnnotationImportResponse {
|
|
|
462
532
|
* <p>The job's destination annotation store.</p>
|
|
463
533
|
*/
|
|
464
534
|
destinationName: string | undefined;
|
|
535
|
+
/**
|
|
536
|
+
* @public
|
|
537
|
+
* <p>
|
|
538
|
+
* The name of the annotation store version.
|
|
539
|
+
* </p>
|
|
540
|
+
*/
|
|
541
|
+
versionName: string | undefined;
|
|
465
542
|
/**
|
|
466
543
|
* @public
|
|
467
544
|
* <p>The job's service role ARN.</p>
|
|
@@ -571,6 +648,13 @@ export interface AnnotationImportJobItem {
|
|
|
571
648
|
* <p>The job's destination annotation store.</p>
|
|
572
649
|
*/
|
|
573
650
|
destinationName: string | undefined;
|
|
651
|
+
/**
|
|
652
|
+
* @public
|
|
653
|
+
* <p>
|
|
654
|
+
* The name of the annotation store version.
|
|
655
|
+
* </p>
|
|
656
|
+
*/
|
|
657
|
+
versionName: string | undefined;
|
|
574
658
|
/**
|
|
575
659
|
* @public
|
|
576
660
|
* <p>The job's service role ARN.</p>
|
|
@@ -643,6 +727,13 @@ export interface StartAnnotationImportRequest {
|
|
|
643
727
|
* <p>Items to import.</p>
|
|
644
728
|
*/
|
|
645
729
|
items: AnnotationImportItemSource[] | undefined;
|
|
730
|
+
/**
|
|
731
|
+
* @public
|
|
732
|
+
* <p>
|
|
733
|
+
* The name of the annotation store version.
|
|
734
|
+
* </p>
|
|
735
|
+
*/
|
|
736
|
+
versionName?: string;
|
|
646
737
|
/**
|
|
647
738
|
* @public
|
|
648
739
|
* <p>Formatting options for the annotation file.</p>
|
|
@@ -671,18 +762,6 @@ export interface StartAnnotationImportResponse {
|
|
|
671
762
|
*/
|
|
672
763
|
jobId: string | undefined;
|
|
673
764
|
}
|
|
674
|
-
/**
|
|
675
|
-
* @public
|
|
676
|
-
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
677
|
-
*/
|
|
678
|
-
export declare class ConflictException extends __BaseException {
|
|
679
|
-
readonly name: "ConflictException";
|
|
680
|
-
readonly $fault: "client";
|
|
681
|
-
/**
|
|
682
|
-
* @internal
|
|
683
|
-
*/
|
|
684
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
685
|
-
}
|
|
686
765
|
/**
|
|
687
766
|
* @public
|
|
688
767
|
* <p>A genome reference.</p>
|
|
@@ -928,6 +1007,13 @@ export interface CreateAnnotationStoreRequest {
|
|
|
928
1007
|
* <p>Tags for the store.</p>
|
|
929
1008
|
*/
|
|
930
1009
|
tags?: Record<string, string>;
|
|
1010
|
+
/**
|
|
1011
|
+
* @public
|
|
1012
|
+
* <p>
|
|
1013
|
+
* The name given to an annotation store version to distinguish it from other versions.
|
|
1014
|
+
* </p>
|
|
1015
|
+
*/
|
|
1016
|
+
versionName?: string;
|
|
931
1017
|
/**
|
|
932
1018
|
* @public
|
|
933
1019
|
* <p>Server-side encryption (SSE) settings for the store.</p>
|
|
@@ -1008,6 +1094,13 @@ export interface CreateAnnotationStoreResponse {
|
|
|
1008
1094
|
* <p>The store's name.</p>
|
|
1009
1095
|
*/
|
|
1010
1096
|
name: string | undefined;
|
|
1097
|
+
/**
|
|
1098
|
+
* @public
|
|
1099
|
+
* <p>
|
|
1100
|
+
* The name given to an annotation store version to distinguish it from other versions.
|
|
1101
|
+
* </p>
|
|
1102
|
+
*/
|
|
1103
|
+
versionName: string | undefined;
|
|
1011
1104
|
/**
|
|
1012
1105
|
* @public
|
|
1013
1106
|
* <p>When the store was created.</p>
|
|
@@ -1123,6 +1216,13 @@ export interface GetAnnotationStoreResponse {
|
|
|
1123
1216
|
* <p>The store's size in bytes.</p>
|
|
1124
1217
|
*/
|
|
1125
1218
|
storeSizeBytes: number | undefined;
|
|
1219
|
+
/**
|
|
1220
|
+
* @public
|
|
1221
|
+
* <p>
|
|
1222
|
+
* An integer indicating how many versions of an annotation store exist.
|
|
1223
|
+
* </p>
|
|
1224
|
+
*/
|
|
1225
|
+
numVersions: number | undefined;
|
|
1126
1226
|
}
|
|
1127
1227
|
/**
|
|
1128
1228
|
* @public
|
|
@@ -1199,112 +1299,712 @@ export interface AnnotationStoreItem {
|
|
|
1199
1299
|
* @public
|
|
1200
1300
|
* <p>The store's description.</p>
|
|
1201
1301
|
*/
|
|
1202
|
-
description: string | undefined;
|
|
1302
|
+
description: string | undefined;
|
|
1303
|
+
/**
|
|
1304
|
+
* @public
|
|
1305
|
+
* <p>The store's server-side encryption (SSE) settings.</p>
|
|
1306
|
+
*/
|
|
1307
|
+
sseConfig: SseConfig | undefined;
|
|
1308
|
+
/**
|
|
1309
|
+
* @public
|
|
1310
|
+
* <p>The store's creation time.</p>
|
|
1311
|
+
*/
|
|
1312
|
+
creationTime: Date | undefined;
|
|
1313
|
+
/**
|
|
1314
|
+
* @public
|
|
1315
|
+
* <p>When the store was updated.</p>
|
|
1316
|
+
*/
|
|
1317
|
+
updateTime: Date | undefined;
|
|
1318
|
+
/**
|
|
1319
|
+
* @public
|
|
1320
|
+
* <p>The store's status message.</p>
|
|
1321
|
+
*/
|
|
1322
|
+
statusMessage: string | undefined;
|
|
1323
|
+
/**
|
|
1324
|
+
* @public
|
|
1325
|
+
* <p>The store's size in bytes.</p>
|
|
1326
|
+
*/
|
|
1327
|
+
storeSizeBytes: number | undefined;
|
|
1328
|
+
}
|
|
1329
|
+
/**
|
|
1330
|
+
* @public
|
|
1331
|
+
*/
|
|
1332
|
+
export interface ListAnnotationStoresResponse {
|
|
1333
|
+
/**
|
|
1334
|
+
* @public
|
|
1335
|
+
* <p>A list of stores.</p>
|
|
1336
|
+
*/
|
|
1337
|
+
annotationStores?: AnnotationStoreItem[];
|
|
1338
|
+
/**
|
|
1339
|
+
* @public
|
|
1340
|
+
* <p>A pagination token that's included if more results are available.</p>
|
|
1341
|
+
*/
|
|
1342
|
+
nextToken?: string;
|
|
1343
|
+
}
|
|
1344
|
+
/**
|
|
1345
|
+
* @public
|
|
1346
|
+
*/
|
|
1347
|
+
export interface UpdateAnnotationStoreRequest {
|
|
1348
|
+
/**
|
|
1349
|
+
* @public
|
|
1350
|
+
* <p>A name for the store.</p>
|
|
1351
|
+
*/
|
|
1352
|
+
name: string | undefined;
|
|
1353
|
+
/**
|
|
1354
|
+
* @public
|
|
1355
|
+
* <p>A description for the store.</p>
|
|
1356
|
+
*/
|
|
1357
|
+
description?: string;
|
|
1358
|
+
}
|
|
1359
|
+
/**
|
|
1360
|
+
* @public
|
|
1361
|
+
*/
|
|
1362
|
+
export interface UpdateAnnotationStoreResponse {
|
|
1363
|
+
/**
|
|
1364
|
+
* @public
|
|
1365
|
+
* <p>The store's ID.</p>
|
|
1366
|
+
*/
|
|
1367
|
+
id: string | undefined;
|
|
1368
|
+
/**
|
|
1369
|
+
* @public
|
|
1370
|
+
* <p>The store's genome reference.</p>
|
|
1371
|
+
*/
|
|
1372
|
+
reference: ReferenceItem | undefined;
|
|
1373
|
+
/**
|
|
1374
|
+
* @public
|
|
1375
|
+
* <p>The store's status.</p>
|
|
1376
|
+
*/
|
|
1377
|
+
status: StoreStatus | string | undefined;
|
|
1378
|
+
/**
|
|
1379
|
+
* @public
|
|
1380
|
+
* <p>The store's name.</p>
|
|
1381
|
+
*/
|
|
1382
|
+
name: string | undefined;
|
|
1383
|
+
/**
|
|
1384
|
+
* @public
|
|
1385
|
+
* <p>The store's description.</p>
|
|
1386
|
+
*/
|
|
1387
|
+
description: string | undefined;
|
|
1388
|
+
/**
|
|
1389
|
+
* @public
|
|
1390
|
+
* <p>When the store was created.</p>
|
|
1391
|
+
*/
|
|
1392
|
+
creationTime: Date | undefined;
|
|
1393
|
+
/**
|
|
1394
|
+
* @public
|
|
1395
|
+
* <p>When the store was updated.</p>
|
|
1396
|
+
*/
|
|
1397
|
+
updateTime: Date | undefined;
|
|
1398
|
+
/**
|
|
1399
|
+
* @public
|
|
1400
|
+
* <p>Parsing options for the store.</p>
|
|
1401
|
+
*/
|
|
1402
|
+
storeOptions?: StoreOptions;
|
|
1403
|
+
/**
|
|
1404
|
+
* @public
|
|
1405
|
+
* <p>The annotation file format of the store.</p>
|
|
1406
|
+
*/
|
|
1407
|
+
storeFormat?: StoreFormat | string;
|
|
1408
|
+
}
|
|
1409
|
+
/**
|
|
1410
|
+
* @public
|
|
1411
|
+
* <p>
|
|
1412
|
+
* The options for a TSV file.
|
|
1413
|
+
* </p>
|
|
1414
|
+
*/
|
|
1415
|
+
export interface TsvVersionOptions {
|
|
1416
|
+
/**
|
|
1417
|
+
* @public
|
|
1418
|
+
* <p>
|
|
1419
|
+
* The store version's annotation type.
|
|
1420
|
+
* </p>
|
|
1421
|
+
*/
|
|
1422
|
+
annotationType?: AnnotationType | string;
|
|
1423
|
+
/**
|
|
1424
|
+
* @public
|
|
1425
|
+
* <p>
|
|
1426
|
+
* The annotation store version's header key to column name mapping.
|
|
1427
|
+
* </p>
|
|
1428
|
+
*/
|
|
1429
|
+
formatToHeader?: Record<string, string>;
|
|
1430
|
+
/**
|
|
1431
|
+
* @public
|
|
1432
|
+
* <p>
|
|
1433
|
+
* The TSV schema for an annotation store version.
|
|
1434
|
+
* </p>
|
|
1435
|
+
*/
|
|
1436
|
+
schema?: Record<string, SchemaValueType | string>[];
|
|
1437
|
+
}
|
|
1438
|
+
/**
|
|
1439
|
+
* @public
|
|
1440
|
+
* <p>
|
|
1441
|
+
* The options for an annotation store version.
|
|
1442
|
+
* </p>
|
|
1443
|
+
*/
|
|
1444
|
+
export type VersionOptions = VersionOptions.TsvVersionOptionsMember | VersionOptions.$UnknownMember;
|
|
1445
|
+
/**
|
|
1446
|
+
* @public
|
|
1447
|
+
*/
|
|
1448
|
+
export declare namespace VersionOptions {
|
|
1449
|
+
/**
|
|
1450
|
+
* @public
|
|
1451
|
+
* <p>
|
|
1452
|
+
* File settings for a version of a TSV store.
|
|
1453
|
+
* </p>
|
|
1454
|
+
*/
|
|
1455
|
+
interface TsvVersionOptionsMember {
|
|
1456
|
+
tsvVersionOptions: TsvVersionOptions;
|
|
1457
|
+
$unknown?: never;
|
|
1458
|
+
}
|
|
1459
|
+
/**
|
|
1460
|
+
* @public
|
|
1461
|
+
*/
|
|
1462
|
+
interface $UnknownMember {
|
|
1463
|
+
tsvVersionOptions?: never;
|
|
1464
|
+
$unknown: [string, any];
|
|
1465
|
+
}
|
|
1466
|
+
interface Visitor<T> {
|
|
1467
|
+
tsvVersionOptions: (value: TsvVersionOptions) => T;
|
|
1468
|
+
_: (name: string, value: any) => T;
|
|
1469
|
+
}
|
|
1470
|
+
const visit: <T>(value: VersionOptions, visitor: Visitor<T>) => T;
|
|
1471
|
+
}
|
|
1472
|
+
/**
|
|
1473
|
+
* @public
|
|
1474
|
+
*/
|
|
1475
|
+
export interface CreateAnnotationStoreVersionRequest {
|
|
1476
|
+
/**
|
|
1477
|
+
* @public
|
|
1478
|
+
* <p>
|
|
1479
|
+
* The name of an annotation store version from which versions are being created.
|
|
1480
|
+
* </p>
|
|
1481
|
+
*/
|
|
1482
|
+
name: string | undefined;
|
|
1483
|
+
/**
|
|
1484
|
+
* @public
|
|
1485
|
+
* <p>
|
|
1486
|
+
* The name given to an annotation store version to distinguish it from other versions.
|
|
1487
|
+
* </p>
|
|
1488
|
+
*/
|
|
1489
|
+
versionName: string | undefined;
|
|
1490
|
+
/**
|
|
1491
|
+
* @public
|
|
1492
|
+
* <p>
|
|
1493
|
+
* The description of an annotation store version.
|
|
1494
|
+
* </p>
|
|
1495
|
+
*/
|
|
1496
|
+
description?: string;
|
|
1497
|
+
/**
|
|
1498
|
+
* @public
|
|
1499
|
+
* <p>
|
|
1500
|
+
* The options for an annotation store version.
|
|
1501
|
+
* </p>
|
|
1502
|
+
*/
|
|
1503
|
+
versionOptions?: VersionOptions;
|
|
1504
|
+
/**
|
|
1505
|
+
* @public
|
|
1506
|
+
* <p>
|
|
1507
|
+
* Any tags added to annotation store version.
|
|
1508
|
+
* </p>
|
|
1509
|
+
*/
|
|
1510
|
+
tags?: Record<string, string>;
|
|
1511
|
+
}
|
|
1512
|
+
/**
|
|
1513
|
+
* @public
|
|
1514
|
+
* @enum
|
|
1515
|
+
*/
|
|
1516
|
+
export declare const VersionStatus: {
|
|
1517
|
+
/**
|
|
1518
|
+
* The Version is active
|
|
1519
|
+
*/
|
|
1520
|
+
readonly ACTIVE: "ACTIVE";
|
|
1521
|
+
/**
|
|
1522
|
+
* The Version is being created
|
|
1523
|
+
*/
|
|
1524
|
+
readonly CREATING: "CREATING";
|
|
1525
|
+
/**
|
|
1526
|
+
* The Version is deleting
|
|
1527
|
+
*/
|
|
1528
|
+
readonly DELETING: "DELETING";
|
|
1529
|
+
/**
|
|
1530
|
+
* The Version creation failed
|
|
1531
|
+
*/
|
|
1532
|
+
readonly FAILED: "FAILED";
|
|
1533
|
+
/**
|
|
1534
|
+
* The Version is updating
|
|
1535
|
+
*/
|
|
1536
|
+
readonly UPDATING: "UPDATING";
|
|
1537
|
+
};
|
|
1538
|
+
/**
|
|
1539
|
+
* @public
|
|
1540
|
+
*/
|
|
1541
|
+
export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus];
|
|
1542
|
+
/**
|
|
1543
|
+
* @public
|
|
1544
|
+
*/
|
|
1545
|
+
export interface CreateAnnotationStoreVersionResponse {
|
|
1546
|
+
/**
|
|
1547
|
+
* @public
|
|
1548
|
+
* <p>
|
|
1549
|
+
* A generated ID for the annotation store
|
|
1550
|
+
* </p>
|
|
1551
|
+
*/
|
|
1552
|
+
id: string | undefined;
|
|
1553
|
+
/**
|
|
1554
|
+
* @public
|
|
1555
|
+
* <p>
|
|
1556
|
+
* The name given to an annotation store version to distinguish it from other versions.
|
|
1557
|
+
* </p>
|
|
1558
|
+
*/
|
|
1559
|
+
versionName: string | undefined;
|
|
1560
|
+
/**
|
|
1561
|
+
* @public
|
|
1562
|
+
* <p>
|
|
1563
|
+
* The ID for the annotation store from which new versions are being created.
|
|
1564
|
+
* </p>
|
|
1565
|
+
*/
|
|
1566
|
+
storeId: string | undefined;
|
|
1567
|
+
/**
|
|
1568
|
+
* @public
|
|
1569
|
+
* <p>
|
|
1570
|
+
* The options for an annotation store version.
|
|
1571
|
+
* </p>
|
|
1572
|
+
*/
|
|
1573
|
+
versionOptions?: VersionOptions;
|
|
1574
|
+
/**
|
|
1575
|
+
* @public
|
|
1576
|
+
* <p>
|
|
1577
|
+
* The name given to an annotation store version to distinguish it from other versions.
|
|
1578
|
+
* </p>
|
|
1579
|
+
*/
|
|
1580
|
+
name: string | undefined;
|
|
1581
|
+
/**
|
|
1582
|
+
* @public
|
|
1583
|
+
* <p>
|
|
1584
|
+
* The status of a annotation store version.
|
|
1585
|
+
* </p>
|
|
1586
|
+
*/
|
|
1587
|
+
status: VersionStatus | string | undefined;
|
|
1588
|
+
/**
|
|
1589
|
+
* @public
|
|
1590
|
+
* <p>
|
|
1591
|
+
* The time stamp for the creation of an annotation store version.
|
|
1592
|
+
* </p>
|
|
1593
|
+
*/
|
|
1594
|
+
creationTime: Date | undefined;
|
|
1595
|
+
}
|
|
1596
|
+
/**
|
|
1597
|
+
* @public
|
|
1598
|
+
*/
|
|
1599
|
+
export interface DeleteAnnotationStoreVersionsRequest {
|
|
1600
|
+
/**
|
|
1601
|
+
* @public
|
|
1602
|
+
* <p>
|
|
1603
|
+
* The name of the annotation store from which versions are being deleted.
|
|
1604
|
+
* </p>
|
|
1605
|
+
*/
|
|
1606
|
+
name: string | undefined;
|
|
1607
|
+
/**
|
|
1608
|
+
* @public
|
|
1609
|
+
* <p>
|
|
1610
|
+
* The versions of an annotation store to be deleted.
|
|
1611
|
+
* </p>
|
|
1612
|
+
*/
|
|
1613
|
+
versions: string[] | undefined;
|
|
1614
|
+
/**
|
|
1615
|
+
* @public
|
|
1616
|
+
* <p>
|
|
1617
|
+
* Forces the deletion of an annotation store version when imports are in-progress..
|
|
1618
|
+
* </p>
|
|
1619
|
+
*/
|
|
1620
|
+
force?: boolean;
|
|
1621
|
+
}
|
|
1622
|
+
/**
|
|
1623
|
+
* @public
|
|
1624
|
+
* <p>
|
|
1625
|
+
* The error preventing deletion of the annotation store version.
|
|
1626
|
+
* </p>
|
|
1627
|
+
*/
|
|
1628
|
+
export interface VersionDeleteError {
|
|
1629
|
+
/**
|
|
1630
|
+
* @public
|
|
1631
|
+
* <p>
|
|
1632
|
+
* The name given to an annotation store version.
|
|
1633
|
+
* </p>
|
|
1634
|
+
*/
|
|
1635
|
+
versionName: string | undefined;
|
|
1636
|
+
/**
|
|
1637
|
+
* @public
|
|
1638
|
+
* <p>
|
|
1639
|
+
* The message explaining the error in annotation store deletion.
|
|
1640
|
+
* </p>
|
|
1641
|
+
*/
|
|
1642
|
+
message: string | undefined;
|
|
1643
|
+
}
|
|
1644
|
+
/**
|
|
1645
|
+
* @public
|
|
1646
|
+
*/
|
|
1647
|
+
export interface DeleteAnnotationStoreVersionsResponse {
|
|
1648
|
+
/**
|
|
1649
|
+
* @public
|
|
1650
|
+
* <p>
|
|
1651
|
+
* Any errors that occur when attempting to delete an annotation store version.
|
|
1652
|
+
* </p>
|
|
1653
|
+
*/
|
|
1654
|
+
errors?: VersionDeleteError[];
|
|
1655
|
+
}
|
|
1656
|
+
/**
|
|
1657
|
+
* @public
|
|
1658
|
+
*/
|
|
1659
|
+
export interface GetAnnotationStoreVersionRequest {
|
|
1660
|
+
/**
|
|
1661
|
+
* @public
|
|
1662
|
+
* <p>
|
|
1663
|
+
* The name given to an annotation store version to distinguish it from others.
|
|
1664
|
+
* </p>
|
|
1665
|
+
*/
|
|
1666
|
+
name: string | undefined;
|
|
1667
|
+
/**
|
|
1668
|
+
* @public
|
|
1669
|
+
* <p>
|
|
1670
|
+
* The name given to an annotation store version to distinguish it from others.
|
|
1671
|
+
* </p>
|
|
1672
|
+
*/
|
|
1673
|
+
versionName: string | undefined;
|
|
1674
|
+
}
|
|
1675
|
+
/**
|
|
1676
|
+
* @public
|
|
1677
|
+
*/
|
|
1678
|
+
export interface GetAnnotationStoreVersionResponse {
|
|
1679
|
+
/**
|
|
1680
|
+
* @public
|
|
1681
|
+
* <p>
|
|
1682
|
+
* The store ID for annotation store version.
|
|
1683
|
+
* </p>
|
|
1684
|
+
*/
|
|
1685
|
+
storeId: string | undefined;
|
|
1686
|
+
/**
|
|
1687
|
+
* @public
|
|
1688
|
+
* <p>
|
|
1689
|
+
* The annotation store version ID.
|
|
1690
|
+
* </p>
|
|
1691
|
+
*/
|
|
1692
|
+
id: string | undefined;
|
|
1693
|
+
/**
|
|
1694
|
+
* @public
|
|
1695
|
+
* <p>
|
|
1696
|
+
* The status of an annotation store version.
|
|
1697
|
+
* </p>
|
|
1698
|
+
*/
|
|
1699
|
+
status: VersionStatus | string | undefined;
|
|
1700
|
+
/**
|
|
1701
|
+
* @public
|
|
1702
|
+
* <p>
|
|
1703
|
+
* The Arn for the annotation store.
|
|
1704
|
+
* </p>
|
|
1705
|
+
*/
|
|
1706
|
+
versionArn: string | undefined;
|
|
1707
|
+
/**
|
|
1708
|
+
* @public
|
|
1709
|
+
* <p>
|
|
1710
|
+
* The name of the annotation store.
|
|
1711
|
+
* </p>
|
|
1712
|
+
*/
|
|
1713
|
+
name: string | undefined;
|
|
1714
|
+
/**
|
|
1715
|
+
* @public
|
|
1716
|
+
* <p>
|
|
1717
|
+
* The name given to an annotation store version to distinguish it from others.
|
|
1718
|
+
* </p>
|
|
1719
|
+
*/
|
|
1720
|
+
versionName: string | undefined;
|
|
1721
|
+
/**
|
|
1722
|
+
* @public
|
|
1723
|
+
* <p>
|
|
1724
|
+
* The description for an annotation store version.
|
|
1725
|
+
* </p>
|
|
1726
|
+
*/
|
|
1727
|
+
description: string | undefined;
|
|
1728
|
+
/**
|
|
1729
|
+
* @public
|
|
1730
|
+
* <p>
|
|
1731
|
+
* The time stamp for when an annotation store version was created.
|
|
1732
|
+
* </p>
|
|
1733
|
+
*/
|
|
1734
|
+
creationTime: Date | undefined;
|
|
1735
|
+
/**
|
|
1736
|
+
* @public
|
|
1737
|
+
* <p>
|
|
1738
|
+
* The time stamp for when an annotation store version was updated.
|
|
1739
|
+
* </p>
|
|
1740
|
+
*/
|
|
1741
|
+
updateTime: Date | undefined;
|
|
1742
|
+
/**
|
|
1743
|
+
* @public
|
|
1744
|
+
* <p>
|
|
1745
|
+
* Any tags associated with an annotation store version.
|
|
1746
|
+
* </p>
|
|
1747
|
+
*/
|
|
1748
|
+
tags: Record<string, string> | undefined;
|
|
1749
|
+
/**
|
|
1750
|
+
* @public
|
|
1751
|
+
* <p>
|
|
1752
|
+
* The options for an annotation store version.
|
|
1753
|
+
* </p>
|
|
1754
|
+
*/
|
|
1755
|
+
versionOptions?: VersionOptions;
|
|
1756
|
+
/**
|
|
1757
|
+
* @public
|
|
1758
|
+
* <p>
|
|
1759
|
+
* The status of an annotation store version.
|
|
1760
|
+
* </p>
|
|
1761
|
+
*/
|
|
1762
|
+
statusMessage: string | undefined;
|
|
1763
|
+
/**
|
|
1764
|
+
* @public
|
|
1765
|
+
* <p>
|
|
1766
|
+
* The size of the annotation store version in Bytes.
|
|
1767
|
+
* </p>
|
|
1768
|
+
*/
|
|
1769
|
+
versionSizeBytes: number | undefined;
|
|
1770
|
+
}
|
|
1771
|
+
/**
|
|
1772
|
+
* @public
|
|
1773
|
+
* <p>
|
|
1774
|
+
* Use filters to focus the returned annotation store versions on a specific parameter, such as the status of the annotation store.
|
|
1775
|
+
* </p>
|
|
1776
|
+
*/
|
|
1777
|
+
export interface ListAnnotationStoreVersionsFilter {
|
|
1778
|
+
/**
|
|
1779
|
+
* @public
|
|
1780
|
+
* <p>
|
|
1781
|
+
* The status of an annotation store version.
|
|
1782
|
+
* </p>
|
|
1783
|
+
*/
|
|
1784
|
+
status?: VersionStatus | string;
|
|
1785
|
+
}
|
|
1786
|
+
/**
|
|
1787
|
+
* @public
|
|
1788
|
+
*/
|
|
1789
|
+
export interface ListAnnotationStoreVersionsRequest {
|
|
1790
|
+
/**
|
|
1791
|
+
* @public
|
|
1792
|
+
* <p>
|
|
1793
|
+
* The name of an annotation store.
|
|
1794
|
+
* </p>
|
|
1795
|
+
*/
|
|
1796
|
+
name: string | undefined;
|
|
1797
|
+
/**
|
|
1798
|
+
* @public
|
|
1799
|
+
* <p>
|
|
1800
|
+
* The maximum number of annotation store versions to return in one page of results.
|
|
1801
|
+
* </p>
|
|
1802
|
+
*/
|
|
1803
|
+
maxResults?: number;
|
|
1804
|
+
/**
|
|
1805
|
+
* @public
|
|
1806
|
+
* <p>
|
|
1807
|
+
* Specifies the pagination token from a previous request to retrieve the next page of results.
|
|
1808
|
+
* </p>
|
|
1809
|
+
*/
|
|
1810
|
+
nextToken?: string;
|
|
1811
|
+
/**
|
|
1812
|
+
* @public
|
|
1813
|
+
* <p>
|
|
1814
|
+
* A filter to apply to the list of annotation store versions.
|
|
1815
|
+
* </p>
|
|
1816
|
+
*/
|
|
1817
|
+
filter?: ListAnnotationStoreVersionsFilter;
|
|
1818
|
+
}
|
|
1819
|
+
/**
|
|
1820
|
+
* @public
|
|
1821
|
+
* <p>
|
|
1822
|
+
* Annotation store versions.
|
|
1823
|
+
* </p>
|
|
1824
|
+
*/
|
|
1825
|
+
export interface AnnotationStoreVersionItem {
|
|
1826
|
+
/**
|
|
1827
|
+
* @public
|
|
1828
|
+
* <p>
|
|
1829
|
+
* The store ID for an annotation store version.
|
|
1830
|
+
* </p>
|
|
1831
|
+
*/
|
|
1832
|
+
storeId: string | undefined;
|
|
1833
|
+
/**
|
|
1834
|
+
* @public
|
|
1835
|
+
* <p>
|
|
1836
|
+
* The annotation store version ID.
|
|
1837
|
+
* </p>
|
|
1838
|
+
*/
|
|
1839
|
+
id: string | undefined;
|
|
1840
|
+
/**
|
|
1841
|
+
* @public
|
|
1842
|
+
* <p>
|
|
1843
|
+
* The status of an annotation store version.
|
|
1844
|
+
* </p>
|
|
1845
|
+
*/
|
|
1846
|
+
status: VersionStatus | string | undefined;
|
|
1847
|
+
/**
|
|
1848
|
+
* @public
|
|
1849
|
+
* <p>
|
|
1850
|
+
* The Arn for an annotation store version.
|
|
1851
|
+
* </p>
|
|
1852
|
+
*/
|
|
1853
|
+
versionArn: string | undefined;
|
|
1854
|
+
/**
|
|
1855
|
+
* @public
|
|
1856
|
+
* <p>
|
|
1857
|
+
* A name given to an annotation store version to distinguish it from others.
|
|
1858
|
+
* </p>
|
|
1859
|
+
*/
|
|
1860
|
+
name: string | undefined;
|
|
1861
|
+
/**
|
|
1862
|
+
* @public
|
|
1863
|
+
* <p>
|
|
1864
|
+
* The name of an annotation store version.
|
|
1865
|
+
* </p>
|
|
1866
|
+
*/
|
|
1867
|
+
versionName: string | undefined;
|
|
1203
1868
|
/**
|
|
1204
1869
|
* @public
|
|
1205
|
-
* <p>
|
|
1870
|
+
* <p>
|
|
1871
|
+
* The description of an annotation store version.
|
|
1872
|
+
* </p>
|
|
1206
1873
|
*/
|
|
1207
|
-
|
|
1874
|
+
description: string | undefined;
|
|
1208
1875
|
/**
|
|
1209
1876
|
* @public
|
|
1210
|
-
* <p>
|
|
1877
|
+
* <p>
|
|
1878
|
+
* The time stamp for when an annotation store version was created.
|
|
1879
|
+
* </p>
|
|
1211
1880
|
*/
|
|
1212
1881
|
creationTime: Date | undefined;
|
|
1213
1882
|
/**
|
|
1214
1883
|
* @public
|
|
1215
|
-
* <p>
|
|
1884
|
+
* <p>
|
|
1885
|
+
* The time stamp for when an annotation store version was updated.
|
|
1886
|
+
* </p>
|
|
1216
1887
|
*/
|
|
1217
1888
|
updateTime: Date | undefined;
|
|
1218
1889
|
/**
|
|
1219
1890
|
* @public
|
|
1220
|
-
* <p>
|
|
1891
|
+
* <p>
|
|
1892
|
+
* The status of an annotation store version.
|
|
1893
|
+
* </p>
|
|
1221
1894
|
*/
|
|
1222
1895
|
statusMessage: string | undefined;
|
|
1223
1896
|
/**
|
|
1224
1897
|
* @public
|
|
1225
|
-
* <p>
|
|
1898
|
+
* <p>
|
|
1899
|
+
* The size of an annotation store version in Bytes.
|
|
1900
|
+
* </p>
|
|
1226
1901
|
*/
|
|
1227
|
-
|
|
1902
|
+
versionSizeBytes: number | undefined;
|
|
1228
1903
|
}
|
|
1229
1904
|
/**
|
|
1230
1905
|
* @public
|
|
1231
1906
|
*/
|
|
1232
|
-
export interface
|
|
1907
|
+
export interface ListAnnotationStoreVersionsResponse {
|
|
1233
1908
|
/**
|
|
1234
1909
|
* @public
|
|
1235
|
-
* <p>
|
|
1910
|
+
* <p>
|
|
1911
|
+
* Lists all versions of an annotation store.
|
|
1912
|
+
* </p>
|
|
1236
1913
|
*/
|
|
1237
|
-
|
|
1914
|
+
annotationStoreVersions?: AnnotationStoreVersionItem[];
|
|
1238
1915
|
/**
|
|
1239
1916
|
* @public
|
|
1240
|
-
* <p>
|
|
1917
|
+
* <p>
|
|
1918
|
+
* Specifies the pagination token from a previous request to retrieve the next page of results.
|
|
1919
|
+
* </p>
|
|
1241
1920
|
*/
|
|
1242
1921
|
nextToken?: string;
|
|
1243
1922
|
}
|
|
1244
1923
|
/**
|
|
1245
1924
|
* @public
|
|
1246
1925
|
*/
|
|
1247
|
-
export interface
|
|
1926
|
+
export interface UpdateAnnotationStoreVersionRequest {
|
|
1248
1927
|
/**
|
|
1249
1928
|
* @public
|
|
1250
|
-
* <p>
|
|
1929
|
+
* <p>
|
|
1930
|
+
* The name of an annotation store.
|
|
1931
|
+
* </p>
|
|
1251
1932
|
*/
|
|
1252
1933
|
name: string | undefined;
|
|
1253
1934
|
/**
|
|
1254
1935
|
* @public
|
|
1255
|
-
* <p>
|
|
1936
|
+
* <p>
|
|
1937
|
+
* The name of an annotation store version.
|
|
1938
|
+
* </p>
|
|
1939
|
+
*/
|
|
1940
|
+
versionName: string | undefined;
|
|
1941
|
+
/**
|
|
1942
|
+
* @public
|
|
1943
|
+
* <p>
|
|
1944
|
+
* The description of an annotation store.
|
|
1945
|
+
* </p>
|
|
1256
1946
|
*/
|
|
1257
1947
|
description?: string;
|
|
1258
1948
|
}
|
|
1259
1949
|
/**
|
|
1260
1950
|
* @public
|
|
1261
1951
|
*/
|
|
1262
|
-
export interface
|
|
1952
|
+
export interface UpdateAnnotationStoreVersionResponse {
|
|
1263
1953
|
/**
|
|
1264
1954
|
* @public
|
|
1265
|
-
* <p>
|
|
1955
|
+
* <p>
|
|
1956
|
+
* The annotation store ID.
|
|
1957
|
+
* </p>
|
|
1266
1958
|
*/
|
|
1267
|
-
|
|
1959
|
+
storeId: string | undefined;
|
|
1268
1960
|
/**
|
|
1269
1961
|
* @public
|
|
1270
|
-
* <p>
|
|
1962
|
+
* <p>
|
|
1963
|
+
* The annotation store version ID.
|
|
1964
|
+
* </p>
|
|
1271
1965
|
*/
|
|
1272
|
-
|
|
1966
|
+
id: string | undefined;
|
|
1273
1967
|
/**
|
|
1274
1968
|
* @public
|
|
1275
|
-
* <p>
|
|
1969
|
+
* <p>
|
|
1970
|
+
* The status of an annotation store version.
|
|
1971
|
+
* </p>
|
|
1276
1972
|
*/
|
|
1277
|
-
status:
|
|
1973
|
+
status: VersionStatus | string | undefined;
|
|
1278
1974
|
/**
|
|
1279
1975
|
* @public
|
|
1280
|
-
* <p>
|
|
1976
|
+
* <p>
|
|
1977
|
+
* The name of an annotation store.
|
|
1978
|
+
* </p>
|
|
1281
1979
|
*/
|
|
1282
1980
|
name: string | undefined;
|
|
1283
1981
|
/**
|
|
1284
1982
|
* @public
|
|
1285
|
-
* <p>
|
|
1286
|
-
|
|
1287
|
-
description: string | undefined;
|
|
1288
|
-
/**
|
|
1289
|
-
* @public
|
|
1290
|
-
* <p>When the store was created.</p>
|
|
1983
|
+
* <p>
|
|
1984
|
+
* The name of an annotation store version. </p>
|
|
1291
1985
|
*/
|
|
1292
|
-
|
|
1986
|
+
versionName: string | undefined;
|
|
1293
1987
|
/**
|
|
1294
1988
|
* @public
|
|
1295
|
-
* <p>
|
|
1989
|
+
* <p>
|
|
1990
|
+
* The description of an annotation store version.
|
|
1991
|
+
* </p>
|
|
1296
1992
|
*/
|
|
1297
|
-
|
|
1993
|
+
description: string | undefined;
|
|
1298
1994
|
/**
|
|
1299
1995
|
* @public
|
|
1300
|
-
* <p>
|
|
1996
|
+
* <p>
|
|
1997
|
+
* The time stamp for when an annotation store version was created.
|
|
1998
|
+
* </p>
|
|
1301
1999
|
*/
|
|
1302
|
-
|
|
2000
|
+
creationTime: Date | undefined;
|
|
1303
2001
|
/**
|
|
1304
2002
|
* @public
|
|
1305
|
-
* <p>
|
|
2003
|
+
* <p>
|
|
2004
|
+
* The time stamp for when an annotation store version was updated.
|
|
2005
|
+
* </p>
|
|
1306
2006
|
*/
|
|
1307
|
-
|
|
2007
|
+
updateTime: Date | undefined;
|
|
1308
2008
|
}
|
|
1309
2009
|
/**
|
|
1310
2010
|
* @public
|
|
@@ -1832,6 +2532,58 @@ export interface CreateSequenceStoreResponse {
|
|
|
1832
2532
|
*/
|
|
1833
2533
|
fallbackLocation?: string;
|
|
1834
2534
|
}
|
|
2535
|
+
/**
|
|
2536
|
+
* @public
|
|
2537
|
+
*/
|
|
2538
|
+
export interface CreateShareRequest {
|
|
2539
|
+
/**
|
|
2540
|
+
* @public
|
|
2541
|
+
* <p>
|
|
2542
|
+
* The resource ARN for the analytics store to be shared.
|
|
2543
|
+
* </p>
|
|
2544
|
+
*/
|
|
2545
|
+
resourceArn: string | undefined;
|
|
2546
|
+
/**
|
|
2547
|
+
* @public
|
|
2548
|
+
* <p>
|
|
2549
|
+
* The principal subscriber is the account being given access to the analytics store data through the share offer.
|
|
2550
|
+
* </p>
|
|
2551
|
+
*/
|
|
2552
|
+
principalSubscriber: string | undefined;
|
|
2553
|
+
/**
|
|
2554
|
+
* @public
|
|
2555
|
+
* <p>
|
|
2556
|
+
* A name given to the share.
|
|
2557
|
+
* </p>
|
|
2558
|
+
*/
|
|
2559
|
+
shareName?: string;
|
|
2560
|
+
}
|
|
2561
|
+
/**
|
|
2562
|
+
* @public
|
|
2563
|
+
*/
|
|
2564
|
+
export interface CreateShareResponse {
|
|
2565
|
+
/**
|
|
2566
|
+
* @public
|
|
2567
|
+
* <p>
|
|
2568
|
+
* An ID generated for the share.
|
|
2569
|
+
* </p>
|
|
2570
|
+
*/
|
|
2571
|
+
shareId?: string;
|
|
2572
|
+
/**
|
|
2573
|
+
* @public
|
|
2574
|
+
* <p>
|
|
2575
|
+
* The status of a share.
|
|
2576
|
+
* </p>
|
|
2577
|
+
*/
|
|
2578
|
+
status?: ShareStatus | string;
|
|
2579
|
+
/**
|
|
2580
|
+
* @public
|
|
2581
|
+
* <p>
|
|
2582
|
+
* A name given to the share.
|
|
2583
|
+
* </p>
|
|
2584
|
+
*/
|
|
2585
|
+
shareName?: string;
|
|
2586
|
+
}
|
|
1835
2587
|
/**
|
|
1836
2588
|
* @public
|
|
1837
2589
|
*/
|
|
@@ -2106,6 +2858,30 @@ export interface DeleteSequenceStoreRequest {
|
|
|
2106
2858
|
*/
|
|
2107
2859
|
export interface DeleteSequenceStoreResponse {
|
|
2108
2860
|
}
|
|
2861
|
+
/**
|
|
2862
|
+
* @public
|
|
2863
|
+
*/
|
|
2864
|
+
export interface DeleteShareRequest {
|
|
2865
|
+
/**
|
|
2866
|
+
* @public
|
|
2867
|
+
* <p>
|
|
2868
|
+
* The ID for the share request to be deleted.
|
|
2869
|
+
* </p>
|
|
2870
|
+
*/
|
|
2871
|
+
shareId: string | undefined;
|
|
2872
|
+
}
|
|
2873
|
+
/**
|
|
2874
|
+
* @public
|
|
2875
|
+
*/
|
|
2876
|
+
export interface DeleteShareResponse {
|
|
2877
|
+
/**
|
|
2878
|
+
* @public
|
|
2879
|
+
* <p>
|
|
2880
|
+
* The status of the share being deleted.
|
|
2881
|
+
* </p>
|
|
2882
|
+
*/
|
|
2883
|
+
status?: ShareStatus | string;
|
|
2884
|
+
}
|
|
2109
2885
|
/**
|
|
2110
2886
|
* @public
|
|
2111
2887
|
*/
|
|
@@ -2282,6 +3058,28 @@ export interface FileInformation {
|
|
|
2282
3058
|
*/
|
|
2283
3059
|
contentLength?: number;
|
|
2284
3060
|
}
|
|
3061
|
+
/**
|
|
3062
|
+
* @public
|
|
3063
|
+
* <p>
|
|
3064
|
+
* Use filters to focus the returned annotation store versions on a specific parameter, such as the status of the annotation store.
|
|
3065
|
+
* </p>
|
|
3066
|
+
*/
|
|
3067
|
+
export interface Filter {
|
|
3068
|
+
/**
|
|
3069
|
+
* @public
|
|
3070
|
+
* <p>
|
|
3071
|
+
* The Amazon Resource Number (Arn) for an analytics store.
|
|
3072
|
+
* </p>
|
|
3073
|
+
*/
|
|
3074
|
+
resourceArns?: string[];
|
|
3075
|
+
/**
|
|
3076
|
+
* @public
|
|
3077
|
+
* <p>
|
|
3078
|
+
* The status of an annotation store version.
|
|
3079
|
+
* </p>
|
|
3080
|
+
*/
|
|
3081
|
+
status?: (ShareStatus | string)[];
|
|
3082
|
+
}
|
|
2285
3083
|
/**
|
|
2286
3084
|
* @public
|
|
2287
3085
|
* @enum
|
|
@@ -3524,6 +4322,101 @@ export interface GetSequenceStoreResponse {
|
|
|
3524
4322
|
*/
|
|
3525
4323
|
fallbackLocation?: string;
|
|
3526
4324
|
}
|
|
4325
|
+
/**
|
|
4326
|
+
* @public
|
|
4327
|
+
*/
|
|
4328
|
+
export interface GetShareRequest {
|
|
4329
|
+
/**
|
|
4330
|
+
* @public
|
|
4331
|
+
* <p>
|
|
4332
|
+
* The generated ID for a share.
|
|
4333
|
+
* </p>
|
|
4334
|
+
*/
|
|
4335
|
+
shareId: string | undefined;
|
|
4336
|
+
}
|
|
4337
|
+
/**
|
|
4338
|
+
* @public
|
|
4339
|
+
* <p>
|
|
4340
|
+
* The details of a share.
|
|
4341
|
+
* </p>
|
|
4342
|
+
*/
|
|
4343
|
+
export interface ShareDetails {
|
|
4344
|
+
/**
|
|
4345
|
+
* @public
|
|
4346
|
+
* <p>
|
|
4347
|
+
* The ID for a share offer for an analytics store .
|
|
4348
|
+
* </p>
|
|
4349
|
+
*/
|
|
4350
|
+
shareId?: string;
|
|
4351
|
+
/**
|
|
4352
|
+
* @public
|
|
4353
|
+
* <p>
|
|
4354
|
+
* The resource Arn of the analytics store being shared.
|
|
4355
|
+
* </p>
|
|
4356
|
+
*/
|
|
4357
|
+
resourceArn?: string;
|
|
4358
|
+
/**
|
|
4359
|
+
* @public
|
|
4360
|
+
* <p>
|
|
4361
|
+
* The principal subscriber is the account the analytics store data is being shared with.
|
|
4362
|
+
* </p>
|
|
4363
|
+
*/
|
|
4364
|
+
principalSubscriber?: string;
|
|
4365
|
+
/**
|
|
4366
|
+
* @public
|
|
4367
|
+
* <p>
|
|
4368
|
+
* The account ID for the data owner. The owner creates the share offer.
|
|
4369
|
+
* </p>
|
|
4370
|
+
*/
|
|
4371
|
+
ownerId?: string;
|
|
4372
|
+
/**
|
|
4373
|
+
* @public
|
|
4374
|
+
* <p>
|
|
4375
|
+
* The status of a share.
|
|
4376
|
+
* </p>
|
|
4377
|
+
*/
|
|
4378
|
+
status?: ShareStatus | string;
|
|
4379
|
+
/**
|
|
4380
|
+
* @public
|
|
4381
|
+
* <p>
|
|
4382
|
+
* The status message for a share. It provides more details on the status of the share.
|
|
4383
|
+
* </p>
|
|
4384
|
+
*/
|
|
4385
|
+
statusMessage?: string;
|
|
4386
|
+
/**
|
|
4387
|
+
* @public
|
|
4388
|
+
* <p>
|
|
4389
|
+
* The name of the share.
|
|
4390
|
+
* </p>
|
|
4391
|
+
*/
|
|
4392
|
+
shareName?: string;
|
|
4393
|
+
/**
|
|
4394
|
+
* @public
|
|
4395
|
+
* <p>
|
|
4396
|
+
* The timestamp for when the share was created.
|
|
4397
|
+
* </p>
|
|
4398
|
+
*/
|
|
4399
|
+
creationTime?: Date;
|
|
4400
|
+
/**
|
|
4401
|
+
* @public
|
|
4402
|
+
* <p>
|
|
4403
|
+
* The timestamp of the share update.
|
|
4404
|
+
* </p>
|
|
4405
|
+
*/
|
|
4406
|
+
updateTime?: Date;
|
|
4407
|
+
}
|
|
4408
|
+
/**
|
|
4409
|
+
* @public
|
|
4410
|
+
*/
|
|
4411
|
+
export interface GetShareResponse {
|
|
4412
|
+
/**
|
|
4413
|
+
* @public
|
|
4414
|
+
* <p>
|
|
4415
|
+
* An analytic store share details object. contains status, resourceArn, ownerId, etc.
|
|
4416
|
+
* </p>
|
|
4417
|
+
*/
|
|
4418
|
+
share?: ShareDetails;
|
|
4419
|
+
}
|
|
3527
4420
|
/**
|
|
3528
4421
|
* @public
|
|
3529
4422
|
*/
|
|
@@ -5131,6 +6024,76 @@ export interface ListSequenceStoresResponse {
|
|
|
5131
6024
|
*/
|
|
5132
6025
|
sequenceStores: SequenceStoreDetail[] | undefined;
|
|
5133
6026
|
}
|
|
6027
|
+
/**
|
|
6028
|
+
* @public
|
|
6029
|
+
* @enum
|
|
6030
|
+
*/
|
|
6031
|
+
export declare const ResourceOwner: {
|
|
6032
|
+
/**
|
|
6033
|
+
* The resource owner is an account other than the caller
|
|
6034
|
+
*/
|
|
6035
|
+
readonly OTHER: "OTHER";
|
|
6036
|
+
/**
|
|
6037
|
+
* The resource owner is the calling account
|
|
6038
|
+
*/
|
|
6039
|
+
readonly SELF: "SELF";
|
|
6040
|
+
};
|
|
6041
|
+
/**
|
|
6042
|
+
* @public
|
|
6043
|
+
*/
|
|
6044
|
+
export type ResourceOwner = (typeof ResourceOwner)[keyof typeof ResourceOwner];
|
|
6045
|
+
/**
|
|
6046
|
+
* @public
|
|
6047
|
+
*/
|
|
6048
|
+
export interface ListSharesRequest {
|
|
6049
|
+
/**
|
|
6050
|
+
* @public
|
|
6051
|
+
* <p>
|
|
6052
|
+
* The account that owns the analytics store shared.
|
|
6053
|
+
* </p>
|
|
6054
|
+
*/
|
|
6055
|
+
resourceOwner: ResourceOwner | string | undefined;
|
|
6056
|
+
/**
|
|
6057
|
+
* @public
|
|
6058
|
+
* <p>
|
|
6059
|
+
* Attributes used to filter for a specific subset of shares.
|
|
6060
|
+
* </p>
|
|
6061
|
+
*/
|
|
6062
|
+
filter?: Filter;
|
|
6063
|
+
/**
|
|
6064
|
+
* @public
|
|
6065
|
+
* <p>
|
|
6066
|
+
* Next token returned in the response of a previous ListReadSetUploadPartsRequest call. Used to get the next page of results.
|
|
6067
|
+
* </p>
|
|
6068
|
+
*/
|
|
6069
|
+
nextToken?: string;
|
|
6070
|
+
/**
|
|
6071
|
+
* @public
|
|
6072
|
+
* <p>
|
|
6073
|
+
* The maximum number of shares to return in one page of results.
|
|
6074
|
+
* </p>
|
|
6075
|
+
*/
|
|
6076
|
+
maxResults?: number;
|
|
6077
|
+
}
|
|
6078
|
+
/**
|
|
6079
|
+
* @public
|
|
6080
|
+
*/
|
|
6081
|
+
export interface ListSharesResponse {
|
|
6082
|
+
/**
|
|
6083
|
+
* @public
|
|
6084
|
+
* <p>
|
|
6085
|
+
* The shares available and their meta details.
|
|
6086
|
+
* </p>
|
|
6087
|
+
*/
|
|
6088
|
+
shares: ShareDetails[] | undefined;
|
|
6089
|
+
/**
|
|
6090
|
+
* @public
|
|
6091
|
+
* <p>
|
|
6092
|
+
* Next token returned in the response of a previous ListSharesResponse call. Used to get the next page of results.
|
|
6093
|
+
* </p>
|
|
6094
|
+
*/
|
|
6095
|
+
nextToken?: string;
|
|
6096
|
+
}
|
|
5134
6097
|
/**
|
|
5135
6098
|
* @public
|
|
5136
6099
|
*/
|