@aws-sdk/client-omics 3.389.0 → 3.395.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.
Files changed (109) hide show
  1. package/README.md +80 -0
  2. package/dist-cjs/Omics.js +20 -0
  3. package/dist-cjs/OmicsClient.js +4 -2
  4. package/dist-cjs/clientConfiguration.js +2 -0
  5. package/dist-cjs/commands/AcceptShareCommand.js +46 -0
  6. package/dist-cjs/commands/CreateAnnotationStoreVersionCommand.js +46 -0
  7. package/dist-cjs/commands/CreateShareCommand.js +46 -0
  8. package/dist-cjs/commands/DeleteAnnotationStoreVersionsCommand.js +46 -0
  9. package/dist-cjs/commands/DeleteShareCommand.js +46 -0
  10. package/dist-cjs/commands/GetAnnotationStoreVersionCommand.js +46 -0
  11. package/dist-cjs/commands/GetShareCommand.js +46 -0
  12. package/dist-cjs/commands/ListAnnotationStoreVersionsCommand.js +46 -0
  13. package/dist-cjs/commands/ListSharesCommand.js +46 -0
  14. package/dist-cjs/commands/UpdateAnnotationStoreVersionCommand.js +46 -0
  15. package/dist-cjs/commands/index.js +10 -0
  16. package/dist-cjs/models/models_0.js +42 -14
  17. package/dist-cjs/pagination/ListAnnotationStoreVersionsPaginator.js +29 -0
  18. package/dist-cjs/pagination/ListSharesPaginator.js +29 -0
  19. package/dist-cjs/pagination/index.js +2 -0
  20. package/dist-cjs/protocols/Aws_restJson1.js +909 -38
  21. package/dist-cjs/runtimeConfig.shared.js +1 -0
  22. package/dist-cjs/runtimeExtensions.js +16 -0
  23. package/dist-cjs/waiters/index.js +2 -0
  24. package/dist-cjs/waiters/waitForAnnotationStoreVersionCreated.js +63 -0
  25. package/dist-cjs/waiters/waitForAnnotationStoreVersionDeleted.js +48 -0
  26. package/dist-es/Omics.js +20 -0
  27. package/dist-es/OmicsClient.js +4 -2
  28. package/dist-es/clientConfiguration.js +1 -0
  29. package/dist-es/commands/AcceptShareCommand.js +42 -0
  30. package/dist-es/commands/CreateAnnotationStoreVersionCommand.js +42 -0
  31. package/dist-es/commands/CreateShareCommand.js +42 -0
  32. package/dist-es/commands/DeleteAnnotationStoreVersionsCommand.js +42 -0
  33. package/dist-es/commands/DeleteShareCommand.js +42 -0
  34. package/dist-es/commands/GetAnnotationStoreVersionCommand.js +42 -0
  35. package/dist-es/commands/GetShareCommand.js +42 -0
  36. package/dist-es/commands/ListAnnotationStoreVersionsCommand.js +42 -0
  37. package/dist-es/commands/ListSharesCommand.js +42 -0
  38. package/dist-es/commands/UpdateAnnotationStoreVersionCommand.js +42 -0
  39. package/dist-es/commands/index.js +10 -0
  40. package/dist-es/models/models_0.js +39 -12
  41. package/dist-es/pagination/ListAnnotationStoreVersionsPaginator.js +25 -0
  42. package/dist-es/pagination/ListSharesPaginator.js +25 -0
  43. package/dist-es/pagination/index.js +2 -0
  44. package/dist-es/protocols/Aws_restJson1.js +884 -34
  45. package/dist-es/runtimeConfig.shared.js +1 -0
  46. package/dist-es/runtimeExtensions.js +12 -0
  47. package/dist-es/waiters/index.js +2 -0
  48. package/dist-es/waiters/waitForAnnotationStoreVersionCreated.js +58 -0
  49. package/dist-es/waiters/waitForAnnotationStoreVersionDeleted.js +43 -0
  50. package/dist-types/Omics.d.ts +70 -0
  51. package/dist-types/OmicsClient.d.ts +18 -3
  52. package/dist-types/clientConfiguration.d.ts +6 -0
  53. package/dist-types/commands/AcceptShareCommand.d.ts +96 -0
  54. package/dist-types/commands/CreateAnnotationStoreCommand.d.ts +2 -0
  55. package/dist-types/commands/CreateAnnotationStoreVersionCommand.d.ts +132 -0
  56. package/dist-types/commands/CreateShareCommand.d.ts +100 -0
  57. package/dist-types/commands/DeleteAnnotationStoreVersionsCommand.d.ts +102 -0
  58. package/dist-types/commands/DeleteShareCommand.d.ts +96 -0
  59. package/dist-types/commands/GetAnnotationImportJobCommand.d.ts +1 -0
  60. package/dist-types/commands/GetAnnotationStoreCommand.d.ts +1 -0
  61. package/dist-types/commands/GetAnnotationStoreVersionCommand.d.ts +117 -0
  62. package/dist-types/commands/GetShareCommand.d.ts +106 -0
  63. package/dist-types/commands/ListAnnotationImportJobsCommand.d.ts +1 -0
  64. package/dist-types/commands/ListAnnotationStoreVersionsCommand.d.ts +110 -0
  65. package/dist-types/commands/ListSharesCommand.d.ts +119 -0
  66. package/dist-types/commands/StartAnnotationImportJobCommand.d.ts +1 -0
  67. package/dist-types/commands/UpdateAnnotationStoreVersionCommand.d.ts +99 -0
  68. package/dist-types/commands/index.d.ts +10 -0
  69. package/dist-types/models/models_0.d.ts +1011 -48
  70. package/dist-types/pagination/ListAnnotationStoreVersionsPaginator.d.ts +7 -0
  71. package/dist-types/pagination/ListSharesPaginator.d.ts +7 -0
  72. package/dist-types/pagination/index.d.ts +2 -0
  73. package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
  74. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  75. package/dist-types/runtimeConfig.d.ts +1 -0
  76. package/dist-types/runtimeConfig.native.d.ts +1 -0
  77. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  78. package/dist-types/runtimeExtensions.d.ts +17 -0
  79. package/dist-types/ts3.4/Omics.d.ts +170 -0
  80. package/dist-types/ts3.4/OmicsClient.d.ts +63 -0
  81. package/dist-types/ts3.4/clientConfiguration.d.ts +2 -0
  82. package/dist-types/ts3.4/commands/AcceptShareCommand.d.ts +35 -0
  83. package/dist-types/ts3.4/commands/CreateAnnotationStoreVersionCommand.d.ts +42 -0
  84. package/dist-types/ts3.4/commands/CreateShareCommand.d.ts +35 -0
  85. package/dist-types/ts3.4/commands/DeleteAnnotationStoreVersionsCommand.d.ts +42 -0
  86. package/dist-types/ts3.4/commands/DeleteShareCommand.d.ts +35 -0
  87. package/dist-types/ts3.4/commands/GetAnnotationStoreVersionCommand.d.ts +42 -0
  88. package/dist-types/ts3.4/commands/GetShareCommand.d.ts +35 -0
  89. package/dist-types/ts3.4/commands/ListAnnotationStoreVersionsCommand.d.ts +42 -0
  90. package/dist-types/ts3.4/commands/ListSharesCommand.d.ts +35 -0
  91. package/dist-types/ts3.4/commands/UpdateAnnotationStoreVersionCommand.d.ts +42 -0
  92. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  93. package/dist-types/ts3.4/models/models_0.d.ts +197 -5
  94. package/dist-types/ts3.4/pagination/ListAnnotationStoreVersionsPaginator.d.ts +11 -0
  95. package/dist-types/ts3.4/pagination/ListSharesPaginator.d.ts +11 -0
  96. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  97. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +120 -0
  98. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
  99. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
  100. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
  101. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  102. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  103. package/dist-types/ts3.4/waiters/index.d.ts +2 -0
  104. package/dist-types/ts3.4/waiters/waitForAnnotationStoreVersionCreated.d.ts +11 -0
  105. package/dist-types/ts3.4/waiters/waitForAnnotationStoreVersionDeleted.d.ts +11 -0
  106. package/dist-types/waiters/index.d.ts +2 -0
  107. package/dist-types/waiters/waitForAnnotationStoreVersionCreated.d.ts +14 -0
  108. package/dist-types/waiters/waitForAnnotationStoreVersionDeleted.d.ts +14 -0
  109. package/package.json +30 -30
@@ -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
@@ -50,6 +50,10 @@ import {
50
50
  AbortMultipartReadSetUploadCommandInput,
51
51
  AbortMultipartReadSetUploadCommandOutput,
52
52
  } from "./commands/AbortMultipartReadSetUploadCommand";
53
+ import {
54
+ AcceptShareCommandInput,
55
+ AcceptShareCommandOutput,
56
+ } from "./commands/AcceptShareCommand";
53
57
  import {
54
58
  BatchDeleteReadSetCommandInput,
55
59
  BatchDeleteReadSetCommandOutput,
@@ -74,6 +78,10 @@ import {
74
78
  CreateAnnotationStoreCommandInput,
75
79
  CreateAnnotationStoreCommandOutput,
76
80
  } from "./commands/CreateAnnotationStoreCommand";
81
+ import {
82
+ CreateAnnotationStoreVersionCommandInput,
83
+ CreateAnnotationStoreVersionCommandOutput,
84
+ } from "./commands/CreateAnnotationStoreVersionCommand";
77
85
  import {
78
86
  CreateMultipartReadSetUploadCommandInput,
79
87
  CreateMultipartReadSetUploadCommandOutput,
@@ -90,6 +98,10 @@ import {
90
98
  CreateSequenceStoreCommandInput,
91
99
  CreateSequenceStoreCommandOutput,
92
100
  } from "./commands/CreateSequenceStoreCommand";
101
+ import {
102
+ CreateShareCommandInput,
103
+ CreateShareCommandOutput,
104
+ } from "./commands/CreateShareCommand";
93
105
  import {
94
106
  CreateVariantStoreCommandInput,
95
107
  CreateVariantStoreCommandOutput,
@@ -102,6 +114,10 @@ import {
102
114
  DeleteAnnotationStoreCommandInput,
103
115
  DeleteAnnotationStoreCommandOutput,
104
116
  } from "./commands/DeleteAnnotationStoreCommand";
117
+ import {
118
+ DeleteAnnotationStoreVersionsCommandInput,
119
+ DeleteAnnotationStoreVersionsCommandOutput,
120
+ } from "./commands/DeleteAnnotationStoreVersionsCommand";
105
121
  import {
106
122
  DeleteReferenceCommandInput,
107
123
  DeleteReferenceCommandOutput,
@@ -122,6 +138,10 @@ import {
122
138
  DeleteSequenceStoreCommandInput,
123
139
  DeleteSequenceStoreCommandOutput,
124
140
  } from "./commands/DeleteSequenceStoreCommand";
141
+ import {
142
+ DeleteShareCommandInput,
143
+ DeleteShareCommandOutput,
144
+ } from "./commands/DeleteShareCommand";
125
145
  import {
126
146
  DeleteVariantStoreCommandInput,
127
147
  DeleteVariantStoreCommandOutput,
@@ -138,6 +158,10 @@ import {
138
158
  GetAnnotationStoreCommandInput,
139
159
  GetAnnotationStoreCommandOutput,
140
160
  } from "./commands/GetAnnotationStoreCommand";
161
+ import {
162
+ GetAnnotationStoreVersionCommandInput,
163
+ GetAnnotationStoreVersionCommandOutput,
164
+ } from "./commands/GetAnnotationStoreVersionCommand";
141
165
  import {
142
166
  GetReadSetActivationJobCommandInput,
143
167
  GetReadSetActivationJobCommandOutput,
@@ -190,6 +214,10 @@ import {
190
214
  GetSequenceStoreCommandInput,
191
215
  GetSequenceStoreCommandOutput,
192
216
  } from "./commands/GetSequenceStoreCommand";
217
+ import {
218
+ GetShareCommandInput,
219
+ GetShareCommandOutput,
220
+ } from "./commands/GetShareCommand";
193
221
  import {
194
222
  GetVariantImportJobCommandInput,
195
223
  GetVariantImportJobCommandOutput,
@@ -210,6 +238,10 @@ import {
210
238
  ListAnnotationStoresCommandInput,
211
239
  ListAnnotationStoresCommandOutput,
212
240
  } from "./commands/ListAnnotationStoresCommand";
241
+ import {
242
+ ListAnnotationStoreVersionsCommandInput,
243
+ ListAnnotationStoreVersionsCommandOutput,
244
+ } from "./commands/ListAnnotationStoreVersionsCommand";
213
245
  import {
214
246
  ListMultipartReadSetUploadsCommandInput,
215
247
  ListMultipartReadSetUploadsCommandOutput,
@@ -262,6 +294,10 @@ import {
262
294
  ListSequenceStoresCommandInput,
263
295
  ListSequenceStoresCommandOutput,
264
296
  } from "./commands/ListSequenceStoresCommand";
297
+ import {
298
+ ListSharesCommandInput,
299
+ ListSharesCommandOutput,
300
+ } from "./commands/ListSharesCommand";
265
301
  import {
266
302
  ListTagsForResourceCommandInput,
267
303
  ListTagsForResourceCommandOutput,
@@ -318,6 +354,10 @@ import {
318
354
  UpdateAnnotationStoreCommandInput,
319
355
  UpdateAnnotationStoreCommandOutput,
320
356
  } from "./commands/UpdateAnnotationStoreCommand";
357
+ import {
358
+ UpdateAnnotationStoreVersionCommandInput,
359
+ UpdateAnnotationStoreVersionCommandOutput,
360
+ } from "./commands/UpdateAnnotationStoreVersionCommand";
321
361
  import {
322
362
  UpdateRunGroupCommandInput,
323
363
  UpdateRunGroupCommandOutput,
@@ -339,31 +379,38 @@ import {
339
379
  ClientResolvedEndpointParameters,
340
380
  EndpointParameters,
341
381
  } from "./endpoint/EndpointParameters";
382
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
342
383
  export { __Client };
343
384
  export type ServiceInputTypes =
344
385
  | AbortMultipartReadSetUploadCommandInput
386
+ | AcceptShareCommandInput
345
387
  | BatchDeleteReadSetCommandInput
346
388
  | CancelAnnotationImportJobCommandInput
347
389
  | CancelRunCommandInput
348
390
  | CancelVariantImportJobCommandInput
349
391
  | CompleteMultipartReadSetUploadCommandInput
350
392
  | CreateAnnotationStoreCommandInput
393
+ | CreateAnnotationStoreVersionCommandInput
351
394
  | CreateMultipartReadSetUploadCommandInput
352
395
  | CreateReferenceStoreCommandInput
353
396
  | CreateRunGroupCommandInput
354
397
  | CreateSequenceStoreCommandInput
398
+ | CreateShareCommandInput
355
399
  | CreateVariantStoreCommandInput
356
400
  | CreateWorkflowCommandInput
357
401
  | DeleteAnnotationStoreCommandInput
402
+ | DeleteAnnotationStoreVersionsCommandInput
358
403
  | DeleteReferenceCommandInput
359
404
  | DeleteReferenceStoreCommandInput
360
405
  | DeleteRunCommandInput
361
406
  | DeleteRunGroupCommandInput
362
407
  | DeleteSequenceStoreCommandInput
408
+ | DeleteShareCommandInput
363
409
  | DeleteVariantStoreCommandInput
364
410
  | DeleteWorkflowCommandInput
365
411
  | GetAnnotationImportJobCommandInput
366
412
  | GetAnnotationStoreCommandInput
413
+ | GetAnnotationStoreVersionCommandInput
367
414
  | GetReadSetActivationJobCommandInput
368
415
  | GetReadSetCommandInput
369
416
  | GetReadSetExportJobCommandInput
@@ -377,10 +424,12 @@ export type ServiceInputTypes =
377
424
  | GetRunGroupCommandInput
378
425
  | GetRunTaskCommandInput
379
426
  | GetSequenceStoreCommandInput
427
+ | GetShareCommandInput
380
428
  | GetVariantImportJobCommandInput
381
429
  | GetVariantStoreCommandInput
382
430
  | GetWorkflowCommandInput
383
431
  | ListAnnotationImportJobsCommandInput
432
+ | ListAnnotationStoreVersionsCommandInput
384
433
  | ListAnnotationStoresCommandInput
385
434
  | ListMultipartReadSetUploadsCommandInput
386
435
  | ListReadSetActivationJobsCommandInput
@@ -395,6 +444,7 @@ export type ServiceInputTypes =
395
444
  | ListRunTasksCommandInput
396
445
  | ListRunsCommandInput
397
446
  | ListSequenceStoresCommandInput
447
+ | ListSharesCommandInput
398
448
  | ListTagsForResourceCommandInput
399
449
  | ListVariantImportJobsCommandInput
400
450
  | ListVariantStoresCommandInput
@@ -409,34 +459,41 @@ export type ServiceInputTypes =
409
459
  | TagResourceCommandInput
410
460
  | UntagResourceCommandInput
411
461
  | UpdateAnnotationStoreCommandInput
462
+ | UpdateAnnotationStoreVersionCommandInput
412
463
  | UpdateRunGroupCommandInput
413
464
  | UpdateVariantStoreCommandInput
414
465
  | UpdateWorkflowCommandInput
415
466
  | UploadReadSetPartCommandInput;
416
467
  export type ServiceOutputTypes =
417
468
  | AbortMultipartReadSetUploadCommandOutput
469
+ | AcceptShareCommandOutput
418
470
  | BatchDeleteReadSetCommandOutput
419
471
  | CancelAnnotationImportJobCommandOutput
420
472
  | CancelRunCommandOutput
421
473
  | CancelVariantImportJobCommandOutput
422
474
  | CompleteMultipartReadSetUploadCommandOutput
423
475
  | CreateAnnotationStoreCommandOutput
476
+ | CreateAnnotationStoreVersionCommandOutput
424
477
  | CreateMultipartReadSetUploadCommandOutput
425
478
  | CreateReferenceStoreCommandOutput
426
479
  | CreateRunGroupCommandOutput
427
480
  | CreateSequenceStoreCommandOutput
481
+ | CreateShareCommandOutput
428
482
  | CreateVariantStoreCommandOutput
429
483
  | CreateWorkflowCommandOutput
430
484
  | DeleteAnnotationStoreCommandOutput
485
+ | DeleteAnnotationStoreVersionsCommandOutput
431
486
  | DeleteReferenceCommandOutput
432
487
  | DeleteReferenceStoreCommandOutput
433
488
  | DeleteRunCommandOutput
434
489
  | DeleteRunGroupCommandOutput
435
490
  | DeleteSequenceStoreCommandOutput
491
+ | DeleteShareCommandOutput
436
492
  | DeleteVariantStoreCommandOutput
437
493
  | DeleteWorkflowCommandOutput
438
494
  | GetAnnotationImportJobCommandOutput
439
495
  | GetAnnotationStoreCommandOutput
496
+ | GetAnnotationStoreVersionCommandOutput
440
497
  | GetReadSetActivationJobCommandOutput
441
498
  | GetReadSetCommandOutput
442
499
  | GetReadSetExportJobCommandOutput
@@ -450,10 +507,12 @@ export type ServiceOutputTypes =
450
507
  | GetRunGroupCommandOutput
451
508
  | GetRunTaskCommandOutput
452
509
  | GetSequenceStoreCommandOutput
510
+ | GetShareCommandOutput
453
511
  | GetVariantImportJobCommandOutput
454
512
  | GetVariantStoreCommandOutput
455
513
  | GetWorkflowCommandOutput
456
514
  | ListAnnotationImportJobsCommandOutput
515
+ | ListAnnotationStoreVersionsCommandOutput
457
516
  | ListAnnotationStoresCommandOutput
458
517
  | ListMultipartReadSetUploadsCommandOutput
459
518
  | ListReadSetActivationJobsCommandOutput
@@ -468,6 +527,7 @@ export type ServiceOutputTypes =
468
527
  | ListRunTasksCommandOutput
469
528
  | ListRunsCommandOutput
470
529
  | ListSequenceStoresCommandOutput
530
+ | ListSharesCommandOutput
471
531
  | ListTagsForResourceCommandOutput
472
532
  | ListVariantImportJobsCommandOutput
473
533
  | ListVariantStoresCommandOutput
@@ -482,6 +542,7 @@ export type ServiceOutputTypes =
482
542
  | TagResourceCommandOutput
483
543
  | UntagResourceCommandOutput
484
544
  | UpdateAnnotationStoreCommandOutput
545
+ | UpdateAnnotationStoreVersionCommandOutput
485
546
  | UpdateRunGroupCommandOutput
486
547
  | UpdateVariantStoreCommandOutput
487
548
  | UpdateWorkflowCommandOutput
@@ -508,6 +569,7 @@ export interface ClientDefaults
508
569
  maxAttempts?: number | __Provider<number>;
509
570
  retryMode?: string | __Provider<string>;
510
571
  logger?: __Logger;
572
+ extensions?: RuntimeExtension[];
511
573
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
512
574
  sdkStreamMixin?: __SdkStreamMixinInjector;
513
575
  }
@@ -526,6 +588,7 @@ export interface OmicsClientConfig extends OmicsClientConfigType {}
526
588
  export type OmicsClientResolvedConfigType =
527
589
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
528
590
  Required<ClientDefaults> &
591
+ RuntimeExtensionsConfig &
529
592
  RegionResolvedConfig &
530
593
  EndpointResolvedConfig<EndpointParameters> &
531
594
  RetryResolvedConfig &
@@ -0,0 +1,2 @@
1
+ import { DefaultClientConfiguration } from "@smithy/types";
2
+ export interface OmicsClientConfiguration extends DefaultClientConfiguration {}
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { AcceptShareRequest, AcceptShareResponse } from "../models/models_0";
10
+ import {
11
+ OmicsClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../OmicsClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface AcceptShareCommandInput extends AcceptShareRequest {}
17
+ export interface AcceptShareCommandOutput
18
+ extends AcceptShareResponse,
19
+ __MetadataBearer {}
20
+ export declare class AcceptShareCommand extends $Command<
21
+ AcceptShareCommandInput,
22
+ AcceptShareCommandOutput,
23
+ OmicsClientResolvedConfig
24
+ > {
25
+ readonly input: AcceptShareCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: AcceptShareCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: OmicsClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<AcceptShareCommandInput, AcceptShareCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateAnnotationStoreVersionRequest,
11
+ CreateAnnotationStoreVersionResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ OmicsClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../OmicsClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateAnnotationStoreVersionCommandInput
20
+ extends CreateAnnotationStoreVersionRequest {}
21
+ export interface CreateAnnotationStoreVersionCommandOutput
22
+ extends CreateAnnotationStoreVersionResponse,
23
+ __MetadataBearer {}
24
+ export declare class CreateAnnotationStoreVersionCommand extends $Command<
25
+ CreateAnnotationStoreVersionCommandInput,
26
+ CreateAnnotationStoreVersionCommandOutput,
27
+ OmicsClientResolvedConfig
28
+ > {
29
+ readonly input: CreateAnnotationStoreVersionCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateAnnotationStoreVersionCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: OmicsClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreateAnnotationStoreVersionCommandInput,
38
+ CreateAnnotationStoreVersionCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { CreateShareRequest, CreateShareResponse } from "../models/models_0";
10
+ import {
11
+ OmicsClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../OmicsClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface CreateShareCommandInput extends CreateShareRequest {}
17
+ export interface CreateShareCommandOutput
18
+ extends CreateShareResponse,
19
+ __MetadataBearer {}
20
+ export declare class CreateShareCommand extends $Command<
21
+ CreateShareCommandInput,
22
+ CreateShareCommandOutput,
23
+ OmicsClientResolvedConfig
24
+ > {
25
+ readonly input: CreateShareCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: CreateShareCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: OmicsClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<CreateShareCommandInput, CreateShareCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }