@aws-sdk/client-omics 3.696.0 → 3.699.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 (58) hide show
  1. package/README.md +72 -0
  2. package/dist-cjs/index.js +575 -5
  3. package/dist-es/Omics.js +18 -0
  4. package/dist-es/commands/CreateRunCacheCommand.js +22 -0
  5. package/dist-es/commands/DeleteRunCacheCommand.js +22 -0
  6. package/dist-es/commands/DeleteS3AccessPolicyCommand.js +22 -0
  7. package/dist-es/commands/GetRunCacheCommand.js +22 -0
  8. package/dist-es/commands/GetS3AccessPolicyCommand.js +22 -0
  9. package/dist-es/commands/ListRunCachesCommand.js +22 -0
  10. package/dist-es/commands/PutS3AccessPolicyCommand.js +22 -0
  11. package/dist-es/commands/UpdateRunCacheCommand.js +22 -0
  12. package/dist-es/commands/UpdateSequenceStoreCommand.js +22 -0
  13. package/dist-es/commands/index.js +9 -0
  14. package/dist-es/models/models_0.js +20 -0
  15. package/dist-es/pagination/ListRunCachesPaginator.js +4 -0
  16. package/dist-es/pagination/index.js +1 -0
  17. package/dist-es/protocols/Aws_restJson1.js +379 -2
  18. package/dist-types/Omics.d.ts +64 -0
  19. package/dist-types/OmicsClient.d.ts +11 -2
  20. package/dist-types/commands/CreateRunCacheCommand.d.ts +112 -0
  21. package/dist-types/commands/CreateSequenceStoreCommand.d.ts +16 -0
  22. package/dist-types/commands/DeleteRunCacheCommand.d.ts +98 -0
  23. package/dist-types/commands/DeleteS3AccessPolicyCommand.d.ts +92 -0
  24. package/dist-types/commands/GetRunCacheCommand.d.ts +107 -0
  25. package/dist-types/commands/GetRunCommand.d.ts +7 -0
  26. package/dist-types/commands/GetRunTaskCommand.d.ts +2 -0
  27. package/dist-types/commands/GetS3AccessPolicyCommand.d.ts +101 -0
  28. package/dist-types/commands/GetSequenceStoreCommand.d.ts +7 -0
  29. package/dist-types/commands/ListRunCachesCommand.d.ts +107 -0
  30. package/dist-types/commands/ListRunTasksCommand.d.ts +2 -0
  31. package/dist-types/commands/ListRunsCommand.d.ts +4 -0
  32. package/dist-types/commands/ListSequenceStoresCommand.d.ts +6 -0
  33. package/dist-types/commands/PutS3AccessPolicyCommand.d.ts +97 -0
  34. package/dist-types/commands/StartRunCommand.d.ts +6 -3
  35. package/dist-types/commands/UpdateRunCacheCommand.d.ts +96 -0
  36. package/dist-types/commands/UpdateSequenceStoreCommand.d.ts +123 -0
  37. package/dist-types/commands/index.d.ts +9 -0
  38. package/dist-types/models/models_0.d.ts +666 -12
  39. package/dist-types/pagination/ListRunCachesPaginator.d.ts +7 -0
  40. package/dist-types/pagination/index.d.ts +1 -0
  41. package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
  42. package/dist-types/ts3.4/Omics.d.ts +154 -0
  43. package/dist-types/ts3.4/OmicsClient.d.ts +54 -0
  44. package/dist-types/ts3.4/commands/CreateRunCacheCommand.d.ts +50 -0
  45. package/dist-types/ts3.4/commands/DeleteRunCacheCommand.d.ts +45 -0
  46. package/dist-types/ts3.4/commands/DeleteS3AccessPolicyCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/GetRunCacheCommand.d.ts +47 -0
  48. package/dist-types/ts3.4/commands/GetS3AccessPolicyCommand.d.ts +51 -0
  49. package/dist-types/ts3.4/commands/ListRunCachesCommand.d.ts +50 -0
  50. package/dist-types/ts3.4/commands/PutS3AccessPolicyCommand.d.ts +51 -0
  51. package/dist-types/ts3.4/commands/UpdateRunCacheCommand.d.ts +45 -0
  52. package/dist-types/ts3.4/commands/UpdateSequenceStoreCommand.d.ts +51 -0
  53. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  54. package/dist-types/ts3.4/models/models_0.d.ts +166 -5
  55. package/dist-types/ts3.4/pagination/ListRunCachesPaginator.d.ts +11 -0
  56. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  57. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
  58. package/package.json +4 -4
@@ -90,6 +90,10 @@ import {
90
90
  CreateReferenceStoreCommandInput,
91
91
  CreateReferenceStoreCommandOutput,
92
92
  } from "./commands/CreateReferenceStoreCommand";
93
+ import {
94
+ CreateRunCacheCommandInput,
95
+ CreateRunCacheCommandOutput,
96
+ } from "./commands/CreateRunCacheCommand";
93
97
  import {
94
98
  CreateRunGroupCommandInput,
95
99
  CreateRunGroupCommandOutput,
@@ -126,6 +130,10 @@ import {
126
130
  DeleteReferenceStoreCommandInput,
127
131
  DeleteReferenceStoreCommandOutput,
128
132
  } from "./commands/DeleteReferenceStoreCommand";
133
+ import {
134
+ DeleteRunCacheCommandInput,
135
+ DeleteRunCacheCommandOutput,
136
+ } from "./commands/DeleteRunCacheCommand";
129
137
  import {
130
138
  DeleteRunCommandInput,
131
139
  DeleteRunCommandOutput,
@@ -134,6 +142,10 @@ import {
134
142
  DeleteRunGroupCommandInput,
135
143
  DeleteRunGroupCommandOutput,
136
144
  } from "./commands/DeleteRunGroupCommand";
145
+ import {
146
+ DeleteS3AccessPolicyCommandInput,
147
+ DeleteS3AccessPolicyCommandOutput,
148
+ } from "./commands/DeleteS3AccessPolicyCommand";
137
149
  import {
138
150
  DeleteSequenceStoreCommandInput,
139
151
  DeleteSequenceStoreCommandOutput,
@@ -198,6 +210,10 @@ import {
198
210
  GetReferenceStoreCommandInput,
199
211
  GetReferenceStoreCommandOutput,
200
212
  } from "./commands/GetReferenceStoreCommand";
213
+ import {
214
+ GetRunCacheCommandInput,
215
+ GetRunCacheCommandOutput,
216
+ } from "./commands/GetRunCacheCommand";
201
217
  import {
202
218
  GetRunCommandInput,
203
219
  GetRunCommandOutput,
@@ -210,6 +226,10 @@ import {
210
226
  GetRunTaskCommandInput,
211
227
  GetRunTaskCommandOutput,
212
228
  } from "./commands/GetRunTaskCommand";
229
+ import {
230
+ GetS3AccessPolicyCommandInput,
231
+ GetS3AccessPolicyCommandOutput,
232
+ } from "./commands/GetS3AccessPolicyCommand";
213
233
  import {
214
234
  GetSequenceStoreCommandInput,
215
235
  GetSequenceStoreCommandOutput,
@@ -278,6 +298,10 @@ import {
278
298
  ListReferenceStoresCommandInput,
279
299
  ListReferenceStoresCommandOutput,
280
300
  } from "./commands/ListReferenceStoresCommand";
301
+ import {
302
+ ListRunCachesCommandInput,
303
+ ListRunCachesCommandOutput,
304
+ } from "./commands/ListRunCachesCommand";
281
305
  import {
282
306
  ListRunGroupsCommandInput,
283
307
  ListRunGroupsCommandOutput,
@@ -314,6 +338,10 @@ import {
314
338
  ListWorkflowsCommandInput,
315
339
  ListWorkflowsCommandOutput,
316
340
  } from "./commands/ListWorkflowsCommand";
341
+ import {
342
+ PutS3AccessPolicyCommandInput,
343
+ PutS3AccessPolicyCommandOutput,
344
+ } from "./commands/PutS3AccessPolicyCommand";
317
345
  import {
318
346
  StartAnnotationImportJobCommandInput,
319
347
  StartAnnotationImportJobCommandOutput,
@@ -358,10 +386,18 @@ import {
358
386
  UpdateAnnotationStoreVersionCommandInput,
359
387
  UpdateAnnotationStoreVersionCommandOutput,
360
388
  } from "./commands/UpdateAnnotationStoreVersionCommand";
389
+ import {
390
+ UpdateRunCacheCommandInput,
391
+ UpdateRunCacheCommandOutput,
392
+ } from "./commands/UpdateRunCacheCommand";
361
393
  import {
362
394
  UpdateRunGroupCommandInput,
363
395
  UpdateRunGroupCommandOutput,
364
396
  } from "./commands/UpdateRunGroupCommand";
397
+ import {
398
+ UpdateSequenceStoreCommandInput,
399
+ UpdateSequenceStoreCommandOutput,
400
+ } from "./commands/UpdateSequenceStoreCommand";
365
401
  import {
366
402
  UpdateVariantStoreCommandInput,
367
403
  UpdateVariantStoreCommandOutput,
@@ -393,6 +429,7 @@ export type ServiceInputTypes =
393
429
  | CreateAnnotationStoreVersionCommandInput
394
430
  | CreateMultipartReadSetUploadCommandInput
395
431
  | CreateReferenceStoreCommandInput
432
+ | CreateRunCacheCommandInput
396
433
  | CreateRunGroupCommandInput
397
434
  | CreateSequenceStoreCommandInput
398
435
  | CreateShareCommandInput
@@ -402,8 +439,10 @@ export type ServiceInputTypes =
402
439
  | DeleteAnnotationStoreVersionsCommandInput
403
440
  | DeleteReferenceCommandInput
404
441
  | DeleteReferenceStoreCommandInput
442
+ | DeleteRunCacheCommandInput
405
443
  | DeleteRunCommandInput
406
444
  | DeleteRunGroupCommandInput
445
+ | DeleteS3AccessPolicyCommandInput
407
446
  | DeleteSequenceStoreCommandInput
408
447
  | DeleteShareCommandInput
409
448
  | DeleteVariantStoreCommandInput
@@ -420,9 +459,11 @@ export type ServiceInputTypes =
420
459
  | GetReferenceImportJobCommandInput
421
460
  | GetReferenceMetadataCommandInput
422
461
  | GetReferenceStoreCommandInput
462
+ | GetRunCacheCommandInput
423
463
  | GetRunCommandInput
424
464
  | GetRunGroupCommandInput
425
465
  | GetRunTaskCommandInput
466
+ | GetS3AccessPolicyCommandInput
426
467
  | GetSequenceStoreCommandInput
427
468
  | GetShareCommandInput
428
469
  | GetVariantImportJobCommandInput
@@ -440,6 +481,7 @@ export type ServiceInputTypes =
440
481
  | ListReferenceImportJobsCommandInput
441
482
  | ListReferenceStoresCommandInput
442
483
  | ListReferencesCommandInput
484
+ | ListRunCachesCommandInput
443
485
  | ListRunGroupsCommandInput
444
486
  | ListRunTasksCommandInput
445
487
  | ListRunsCommandInput
@@ -449,6 +491,7 @@ export type ServiceInputTypes =
449
491
  | ListVariantImportJobsCommandInput
450
492
  | ListVariantStoresCommandInput
451
493
  | ListWorkflowsCommandInput
494
+ | PutS3AccessPolicyCommandInput
452
495
  | StartAnnotationImportJobCommandInput
453
496
  | StartReadSetActivationJobCommandInput
454
497
  | StartReadSetExportJobCommandInput
@@ -460,7 +503,9 @@ export type ServiceInputTypes =
460
503
  | UntagResourceCommandInput
461
504
  | UpdateAnnotationStoreCommandInput
462
505
  | UpdateAnnotationStoreVersionCommandInput
506
+ | UpdateRunCacheCommandInput
463
507
  | UpdateRunGroupCommandInput
508
+ | UpdateSequenceStoreCommandInput
464
509
  | UpdateVariantStoreCommandInput
465
510
  | UpdateWorkflowCommandInput
466
511
  | UploadReadSetPartCommandInput;
@@ -476,6 +521,7 @@ export type ServiceOutputTypes =
476
521
  | CreateAnnotationStoreVersionCommandOutput
477
522
  | CreateMultipartReadSetUploadCommandOutput
478
523
  | CreateReferenceStoreCommandOutput
524
+ | CreateRunCacheCommandOutput
479
525
  | CreateRunGroupCommandOutput
480
526
  | CreateSequenceStoreCommandOutput
481
527
  | CreateShareCommandOutput
@@ -485,8 +531,10 @@ export type ServiceOutputTypes =
485
531
  | DeleteAnnotationStoreVersionsCommandOutput
486
532
  | DeleteReferenceCommandOutput
487
533
  | DeleteReferenceStoreCommandOutput
534
+ | DeleteRunCacheCommandOutput
488
535
  | DeleteRunCommandOutput
489
536
  | DeleteRunGroupCommandOutput
537
+ | DeleteS3AccessPolicyCommandOutput
490
538
  | DeleteSequenceStoreCommandOutput
491
539
  | DeleteShareCommandOutput
492
540
  | DeleteVariantStoreCommandOutput
@@ -503,9 +551,11 @@ export type ServiceOutputTypes =
503
551
  | GetReferenceImportJobCommandOutput
504
552
  | GetReferenceMetadataCommandOutput
505
553
  | GetReferenceStoreCommandOutput
554
+ | GetRunCacheCommandOutput
506
555
  | GetRunCommandOutput
507
556
  | GetRunGroupCommandOutput
508
557
  | GetRunTaskCommandOutput
558
+ | GetS3AccessPolicyCommandOutput
509
559
  | GetSequenceStoreCommandOutput
510
560
  | GetShareCommandOutput
511
561
  | GetVariantImportJobCommandOutput
@@ -523,6 +573,7 @@ export type ServiceOutputTypes =
523
573
  | ListReferenceImportJobsCommandOutput
524
574
  | ListReferenceStoresCommandOutput
525
575
  | ListReferencesCommandOutput
576
+ | ListRunCachesCommandOutput
526
577
  | ListRunGroupsCommandOutput
527
578
  | ListRunTasksCommandOutput
528
579
  | ListRunsCommandOutput
@@ -532,6 +583,7 @@ export type ServiceOutputTypes =
532
583
  | ListVariantImportJobsCommandOutput
533
584
  | ListVariantStoresCommandOutput
534
585
  | ListWorkflowsCommandOutput
586
+ | PutS3AccessPolicyCommandOutput
535
587
  | StartAnnotationImportJobCommandOutput
536
588
  | StartReadSetActivationJobCommandOutput
537
589
  | StartReadSetExportJobCommandOutput
@@ -543,7 +595,9 @@ export type ServiceOutputTypes =
543
595
  | UntagResourceCommandOutput
544
596
  | UpdateAnnotationStoreCommandOutput
545
597
  | UpdateAnnotationStoreVersionCommandOutput
598
+ | UpdateRunCacheCommandOutput
546
599
  | UpdateRunGroupCommandOutput
600
+ | UpdateSequenceStoreCommandOutput
547
601
  | UpdateVariantStoreCommandOutput
548
602
  | UpdateWorkflowCommandOutput
549
603
  | UploadReadSetPartCommandOutput;
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateRunCacheRequest,
5
+ CreateRunCacheResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ OmicsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OmicsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateRunCacheCommandInput extends CreateRunCacheRequest {}
15
+ export interface CreateRunCacheCommandOutput
16
+ extends CreateRunCacheResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateRunCacheCommand_base: {
19
+ new (
20
+ input: CreateRunCacheCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateRunCacheCommandInput,
23
+ CreateRunCacheCommandOutput,
24
+ OmicsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateRunCacheCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateRunCacheCommandInput,
32
+ CreateRunCacheCommandOutput,
33
+ OmicsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateRunCacheCommand extends CreateRunCacheCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateRunCacheRequest;
43
+ output: CreateRunCacheResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateRunCacheCommandInput;
47
+ output: CreateRunCacheCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteRunCacheRequest } from "../models/models_0";
4
+ import {
5
+ OmicsClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../OmicsClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteRunCacheCommandInput extends DeleteRunCacheRequest {}
12
+ export interface DeleteRunCacheCommandOutput extends __MetadataBearer {}
13
+ declare const DeleteRunCacheCommand_base: {
14
+ new (
15
+ input: DeleteRunCacheCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ DeleteRunCacheCommandInput,
18
+ DeleteRunCacheCommandOutput,
19
+ OmicsClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ __0_0: DeleteRunCacheCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ DeleteRunCacheCommandInput,
27
+ DeleteRunCacheCommandOutput,
28
+ OmicsClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class DeleteRunCacheCommand extends DeleteRunCacheCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: DeleteRunCacheRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: DeleteRunCacheCommandInput;
42
+ output: DeleteRunCacheCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteS3AccessPolicyRequest,
5
+ DeleteS3AccessPolicyResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ OmicsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OmicsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteS3AccessPolicyCommandInput
15
+ extends DeleteS3AccessPolicyRequest {}
16
+ export interface DeleteS3AccessPolicyCommandOutput
17
+ extends DeleteS3AccessPolicyResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteS3AccessPolicyCommand_base: {
20
+ new (
21
+ input: DeleteS3AccessPolicyCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteS3AccessPolicyCommandInput,
24
+ DeleteS3AccessPolicyCommandOutput,
25
+ OmicsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DeleteS3AccessPolicyCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteS3AccessPolicyCommandInput,
33
+ DeleteS3AccessPolicyCommandOutput,
34
+ OmicsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteS3AccessPolicyCommand extends DeleteS3AccessPolicyCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteS3AccessPolicyRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteS3AccessPolicyCommandInput;
48
+ output: DeleteS3AccessPolicyCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetRunCacheRequest, GetRunCacheResponse } from "../models/models_0";
4
+ import {
5
+ OmicsClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../OmicsClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetRunCacheCommandInput extends GetRunCacheRequest {}
12
+ export interface GetRunCacheCommandOutput
13
+ extends GetRunCacheResponse,
14
+ __MetadataBearer {}
15
+ declare const GetRunCacheCommand_base: {
16
+ new (
17
+ input: GetRunCacheCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetRunCacheCommandInput,
20
+ GetRunCacheCommandOutput,
21
+ OmicsClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetRunCacheCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetRunCacheCommandInput,
29
+ GetRunCacheCommandOutput,
30
+ OmicsClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetRunCacheCommand extends GetRunCacheCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetRunCacheRequest;
40
+ output: GetRunCacheResponse;
41
+ };
42
+ sdk: {
43
+ input: GetRunCacheCommandInput;
44
+ output: GetRunCacheCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetS3AccessPolicyRequest,
5
+ GetS3AccessPolicyResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ OmicsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OmicsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetS3AccessPolicyCommandInput
15
+ extends GetS3AccessPolicyRequest {}
16
+ export interface GetS3AccessPolicyCommandOutput
17
+ extends GetS3AccessPolicyResponse,
18
+ __MetadataBearer {}
19
+ declare const GetS3AccessPolicyCommand_base: {
20
+ new (
21
+ input: GetS3AccessPolicyCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetS3AccessPolicyCommandInput,
24
+ GetS3AccessPolicyCommandOutput,
25
+ OmicsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetS3AccessPolicyCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetS3AccessPolicyCommandInput,
33
+ GetS3AccessPolicyCommandOutput,
34
+ OmicsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetS3AccessPolicyCommand extends GetS3AccessPolicyCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetS3AccessPolicyRequest;
44
+ output: GetS3AccessPolicyResponse;
45
+ };
46
+ sdk: {
47
+ input: GetS3AccessPolicyCommandInput;
48
+ output: GetS3AccessPolicyCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListRunCachesRequest,
5
+ ListRunCachesResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ OmicsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OmicsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListRunCachesCommandInput extends ListRunCachesRequest {}
15
+ export interface ListRunCachesCommandOutput
16
+ extends ListRunCachesResponse,
17
+ __MetadataBearer {}
18
+ declare const ListRunCachesCommand_base: {
19
+ new (
20
+ input: ListRunCachesCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListRunCachesCommandInput,
23
+ ListRunCachesCommandOutput,
24
+ OmicsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListRunCachesCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListRunCachesCommandInput,
32
+ ListRunCachesCommandOutput,
33
+ OmicsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListRunCachesCommand extends ListRunCachesCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListRunCachesRequest;
43
+ output: ListRunCachesResponse;
44
+ };
45
+ sdk: {
46
+ input: ListRunCachesCommandInput;
47
+ output: ListRunCachesCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ PutS3AccessPolicyRequest,
5
+ PutS3AccessPolicyResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ OmicsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OmicsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface PutS3AccessPolicyCommandInput
15
+ extends PutS3AccessPolicyRequest {}
16
+ export interface PutS3AccessPolicyCommandOutput
17
+ extends PutS3AccessPolicyResponse,
18
+ __MetadataBearer {}
19
+ declare const PutS3AccessPolicyCommand_base: {
20
+ new (
21
+ input: PutS3AccessPolicyCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ PutS3AccessPolicyCommandInput,
24
+ PutS3AccessPolicyCommandOutput,
25
+ OmicsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: PutS3AccessPolicyCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ PutS3AccessPolicyCommandInput,
33
+ PutS3AccessPolicyCommandOutput,
34
+ OmicsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class PutS3AccessPolicyCommand extends PutS3AccessPolicyCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: PutS3AccessPolicyRequest;
44
+ output: PutS3AccessPolicyResponse;
45
+ };
46
+ sdk: {
47
+ input: PutS3AccessPolicyCommandInput;
48
+ output: PutS3AccessPolicyCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateRunCacheRequest } from "../models/models_0";
4
+ import {
5
+ OmicsClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../OmicsClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateRunCacheCommandInput extends UpdateRunCacheRequest {}
12
+ export interface UpdateRunCacheCommandOutput extends __MetadataBearer {}
13
+ declare const UpdateRunCacheCommand_base: {
14
+ new (
15
+ input: UpdateRunCacheCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ UpdateRunCacheCommandInput,
18
+ UpdateRunCacheCommandOutput,
19
+ OmicsClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ __0_0: UpdateRunCacheCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ UpdateRunCacheCommandInput,
27
+ UpdateRunCacheCommandOutput,
28
+ OmicsClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class UpdateRunCacheCommand extends UpdateRunCacheCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: UpdateRunCacheRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: UpdateRunCacheCommandInput;
42
+ output: UpdateRunCacheCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateSequenceStoreRequest,
5
+ UpdateSequenceStoreResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ OmicsClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OmicsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateSequenceStoreCommandInput
15
+ extends UpdateSequenceStoreRequest {}
16
+ export interface UpdateSequenceStoreCommandOutput
17
+ extends UpdateSequenceStoreResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateSequenceStoreCommand_base: {
20
+ new (
21
+ input: UpdateSequenceStoreCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateSequenceStoreCommandInput,
24
+ UpdateSequenceStoreCommandOutput,
25
+ OmicsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: UpdateSequenceStoreCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateSequenceStoreCommandInput,
33
+ UpdateSequenceStoreCommandOutput,
34
+ OmicsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateSequenceStoreCommand extends UpdateSequenceStoreCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateSequenceStoreRequest;
44
+ output: UpdateSequenceStoreResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateSequenceStoreCommandInput;
48
+ output: UpdateSequenceStoreCommandOutput;
49
+ };
50
+ };
51
+ }