@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
@@ -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
@@ -36,6 +36,7 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
36
36
  disableHostPrefix: boolean;
37
37
  serviceId: string;
38
38
  logger: import("@smithy/types").Logger;
39
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
39
40
  sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
40
41
  endpoint?:
41
42
  | ((
@@ -36,6 +36,7 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
36
36
  disableHostPrefix: boolean;
37
37
  serviceId: string;
38
38
  logger: import("@smithy/types").Logger;
39
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
39
40
  sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
40
41
  endpoint?:
41
42
  | ((
@@ -32,6 +32,7 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
32
32
  maxAttempts: number | import("@smithy/types").Provider<number>;
33
33
  retryMode: string | import("@smithy/types").Provider<string>;
34
34
  logger: import("@smithy/types").Logger;
35
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
35
36
  defaultsMode:
36
37
  | import("@smithy/smithy-client").DefaultsMode
37
38
  | import("@smithy/types").Provider<
@@ -10,6 +10,7 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
10
10
  logger?: import("@smithy/types").Logger | undefined;
11
11
  }
12
12
  ) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
13
14
  logger: import("@smithy/types").Logger;
14
15
  sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
15
16
  serviceId: string;
@@ -0,0 +1,11 @@
1
+ import { OmicsClientConfiguration } from "./clientConfiguration";
2
+ export interface RuntimeExtension {
3
+ configureClient(clientConfiguration: OmicsClientConfiguration): void;
4
+ }
5
+ export interface RuntimeExtensionsConfig {
6
+ extensions: RuntimeExtension[];
7
+ }
8
+ export declare const resolveRuntimeExtensions: (
9
+ runtimeConfig: any,
10
+ extensions: RuntimeExtension[]
11
+ ) => any;
@@ -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>;
@@ -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,14 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetAnnotationStoreVersionCommandInput } from "../commands/GetAnnotationStoreVersionCommand";
3
+ import { OmicsClient } from "../OmicsClient";
4
+ /**
5
+ * Wait until an annotation store version is created
6
+ * @deprecated Use waitUntilAnnotationStoreVersionCreated instead. waitForAnnotationStoreVersionCreated does not throw error in non-success cases.
7
+ */
8
+ export declare const waitForAnnotationStoreVersionCreated: (params: WaiterConfiguration<OmicsClient>, input: GetAnnotationStoreVersionCommandInput) => Promise<WaiterResult>;
9
+ /**
10
+ * Wait until an annotation store version is created
11
+ * @param params - Waiter configuration options.
12
+ * @param input - The input to GetAnnotationStoreVersionCommand for polling.
13
+ */
14
+ export declare const waitUntilAnnotationStoreVersionCreated: (params: WaiterConfiguration<OmicsClient>, input: GetAnnotationStoreVersionCommandInput) => Promise<WaiterResult>;
@@ -0,0 +1,14 @@
1
+ import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
2
+ import { GetAnnotationStoreVersionCommandInput } from "../commands/GetAnnotationStoreVersionCommand";
3
+ import { OmicsClient } from "../OmicsClient";
4
+ /**
5
+ * Wait until an annotation store version is deleted.
6
+ * @deprecated Use waitUntilAnnotationStoreVersionDeleted instead. waitForAnnotationStoreVersionDeleted does not throw error in non-success cases.
7
+ */
8
+ export declare const waitForAnnotationStoreVersionDeleted: (params: WaiterConfiguration<OmicsClient>, input: GetAnnotationStoreVersionCommandInput) => Promise<WaiterResult>;
9
+ /**
10
+ * Wait until an annotation store version is deleted.
11
+ * @param params - Waiter configuration options.
12
+ * @param input - The input to GetAnnotationStoreVersionCommand for polling.
13
+ */
14
+ export declare const waitUntilAnnotationStoreVersionDeleted: (params: WaiterConfiguration<OmicsClient>, input: GetAnnotationStoreVersionCommandInput) => Promise<WaiterResult>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-omics",
3
3
  "description": "AWS SDK for JavaScript Omics Client for Node.js, Browser and React Native",
4
- "version": "3.389.0",
4
+ "version": "3.395.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,41 +21,41 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.388.0",
25
- "@aws-sdk/credential-provider-node": "3.388.0",
26
- "@aws-sdk/middleware-host-header": "3.387.0",
27
- "@aws-sdk/middleware-logger": "3.387.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.387.0",
29
- "@aws-sdk/middleware-signing": "3.387.0",
30
- "@aws-sdk/middleware-user-agent": "3.387.0",
31
- "@aws-sdk/types": "3.387.0",
32
- "@aws-sdk/util-endpoints": "3.387.0",
33
- "@aws-sdk/util-user-agent-browser": "3.387.0",
34
- "@aws-sdk/util-user-agent-node": "3.387.0",
35
- "@smithy/config-resolver": "^2.0.2",
36
- "@smithy/fetch-http-handler": "^2.0.2",
37
- "@smithy/hash-node": "^2.0.2",
38
- "@smithy/invalid-dependency": "^2.0.2",
39
- "@smithy/middleware-content-length": "^2.0.2",
40
- "@smithy/middleware-endpoint": "^2.0.2",
41
- "@smithy/middleware-retry": "^2.0.2",
42
- "@smithy/middleware-serde": "^2.0.2",
24
+ "@aws-sdk/client-sts": "3.395.0",
25
+ "@aws-sdk/credential-provider-node": "3.395.0",
26
+ "@aws-sdk/middleware-host-header": "3.391.0",
27
+ "@aws-sdk/middleware-logger": "3.391.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.391.0",
29
+ "@aws-sdk/middleware-signing": "3.391.0",
30
+ "@aws-sdk/middleware-user-agent": "3.391.0",
31
+ "@aws-sdk/types": "3.391.0",
32
+ "@aws-sdk/util-endpoints": "3.391.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.391.0",
34
+ "@aws-sdk/util-user-agent-node": "3.391.0",
35
+ "@smithy/config-resolver": "^2.0.3",
36
+ "@smithy/fetch-http-handler": "^2.0.3",
37
+ "@smithy/hash-node": "^2.0.3",
38
+ "@smithy/invalid-dependency": "^2.0.3",
39
+ "@smithy/middleware-content-length": "^2.0.3",
40
+ "@smithy/middleware-endpoint": "^2.0.3",
41
+ "@smithy/middleware-retry": "^2.0.3",
42
+ "@smithy/middleware-serde": "^2.0.3",
43
43
  "@smithy/middleware-stack": "^2.0.0",
44
- "@smithy/node-config-provider": "^2.0.2",
45
- "@smithy/node-http-handler": "^2.0.2",
46
- "@smithy/protocol-http": "^2.0.2",
47
- "@smithy/smithy-client": "^2.0.2",
48
- "@smithy/types": "^2.1.0",
49
- "@smithy/url-parser": "^2.0.2",
44
+ "@smithy/node-config-provider": "^2.0.3",
45
+ "@smithy/node-http-handler": "^2.0.3",
46
+ "@smithy/protocol-http": "^2.0.3",
47
+ "@smithy/smithy-client": "^2.0.3",
48
+ "@smithy/types": "^2.2.0",
49
+ "@smithy/url-parser": "^2.0.3",
50
50
  "@smithy/util-base64": "^2.0.0",
51
51
  "@smithy/util-body-length-browser": "^2.0.0",
52
52
  "@smithy/util-body-length-node": "^2.0.0",
53
- "@smithy/util-defaults-mode-browser": "^2.0.2",
54
- "@smithy/util-defaults-mode-node": "^2.0.2",
53
+ "@smithy/util-defaults-mode-browser": "^2.0.3",
54
+ "@smithy/util-defaults-mode-node": "^2.0.3",
55
55
  "@smithy/util-retry": "^2.0.0",
56
- "@smithy/util-stream": "^2.0.2",
56
+ "@smithy/util-stream": "^2.0.3",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
- "@smithy/util-waiter": "^2.0.2",
58
+ "@smithy/util-waiter": "^2.0.3",
59
59
  "tslib": "^2.5.0",
60
60
  "uuid": "^8.3.2"
61
61
  },