@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
@@ -1,4 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
1
+ import { ExceptionOptionType as __ExceptionOptionType, LazyJsonString as __LazyJsonString } from "@smithy/smithy-client";
2
2
  import { DocumentType as __DocumentType, StreamingBlobTypes } from "@smithy/types";
3
3
  import { OmicsServiceException as __BaseException } from "./OmicsServiceException";
4
4
  /**
@@ -2037,6 +2037,18 @@ export interface BatchDeleteReadSetResponse {
2037
2037
  */
2038
2038
  errors?: ReadSetBatchError[] | undefined;
2039
2039
  }
2040
+ /**
2041
+ * @public
2042
+ * @enum
2043
+ */
2044
+ export declare const CacheBehavior: {
2045
+ readonly CACHE_ALWAYS: "CACHE_ALWAYS";
2046
+ readonly CACHE_ON_FAILURE: "CACHE_ON_FAILURE";
2047
+ };
2048
+ /**
2049
+ * @public
2050
+ */
2051
+ export type CacheBehavior = (typeof CacheBehavior)[keyof typeof CacheBehavior];
2040
2052
  /**
2041
2053
  * @public
2042
2054
  */
@@ -2327,6 +2339,98 @@ export interface CreateReferenceStoreResponse {
2327
2339
  */
2328
2340
  creationTime: Date | undefined;
2329
2341
  }
2342
+ /**
2343
+ * @public
2344
+ */
2345
+ export interface CreateRunCacheRequest {
2346
+ /**
2347
+ * <p>Default cache behavior for runs that use this cache. Supported values are:</p>
2348
+ * <p>
2349
+ * <code>CACHE_ON_FAILURE</code>: Caches task outputs from completed tasks for runs that fail. This setting is
2350
+ * useful if you're debugging a workflow that fails after several
2351
+ * tasks completed successfully. The subsequent run uses the cache outputs for previously-completed tasks if the task definition,
2352
+ * inputs, and container in ECR are identical to the prior run.</p>
2353
+ * <p>
2354
+ * <code>CACHE_ALWAYS</code>: Caches task outputs from completed tasks for all runs. This setting
2355
+ * is useful in development mode, but do not use it in a production setting.</p>
2356
+ * <p>If you don't specify a value, the default behavior is CACHE_ON_FAILURE.
2357
+ * When you start a run that uses this cache, you can override the default cache behavior.</p>
2358
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/how-run-cache.html#run-cache-behavior">Run cache behavior</a> in the AWS HealthOmics User Guide.</p>
2359
+ * @public
2360
+ */
2361
+ cacheBehavior?: CacheBehavior | undefined;
2362
+ /**
2363
+ * <p>Specify the S3 location for storing the cached task outputs.
2364
+ * This data must be immediately accessible (not in an archived state).</p>
2365
+ * @public
2366
+ */
2367
+ cacheS3Location: string | undefined;
2368
+ /**
2369
+ * <p>Enter a description of the run cache.</p>
2370
+ * @public
2371
+ */
2372
+ description?: string | undefined;
2373
+ /**
2374
+ * <p>Enter a user-friendly name for the run cache.</p>
2375
+ * @public
2376
+ */
2377
+ name?: string | undefined;
2378
+ /**
2379
+ * <p>A unique request token, to ensure idempotency. If you don't specify a token,
2380
+ * HealthOmics automatically generates a universally unique identifier (UUID) for the request.</p>
2381
+ * @public
2382
+ */
2383
+ requestId?: string | undefined;
2384
+ /**
2385
+ * <p>Specify one or more tags to associate with this run cache.</p>
2386
+ * @public
2387
+ */
2388
+ tags?: Record<string, string> | undefined;
2389
+ /**
2390
+ * <p>The AWS account ID of the expected owner of the S3 bucket for the run cache.
2391
+ * If not provided, your account ID is set as the owner of the bucket.</p>
2392
+ * @public
2393
+ */
2394
+ cacheBucketOwnerId?: string | undefined;
2395
+ }
2396
+ /**
2397
+ * @public
2398
+ * @enum
2399
+ */
2400
+ export declare const RunCacheStatus: {
2401
+ readonly ACTIVE: "ACTIVE";
2402
+ readonly DELETED: "DELETED";
2403
+ readonly FAILED: "FAILED";
2404
+ };
2405
+ /**
2406
+ * @public
2407
+ */
2408
+ export type RunCacheStatus = (typeof RunCacheStatus)[keyof typeof RunCacheStatus];
2409
+ /**
2410
+ * @public
2411
+ */
2412
+ export interface CreateRunCacheResponse {
2413
+ /**
2414
+ * <p>Unique resource identifier for the run cache.</p>
2415
+ * @public
2416
+ */
2417
+ arn?: string | undefined;
2418
+ /**
2419
+ * <p>Identifier for the run cache.</p>
2420
+ * @public
2421
+ */
2422
+ id?: string | undefined;
2423
+ /**
2424
+ * <p>Run cache status.</p>
2425
+ * @public
2426
+ */
2427
+ status?: RunCacheStatus | undefined;
2428
+ /**
2429
+ * <p>The tags associated with this run cache.</p>
2430
+ * @public
2431
+ */
2432
+ tags?: Record<string, string> | undefined;
2433
+ }
2330
2434
  /**
2331
2435
  * @public
2332
2436
  */
@@ -2403,6 +2507,17 @@ export declare const ETagAlgorithmFamily: {
2403
2507
  * @public
2404
2508
  */
2405
2509
  export type ETagAlgorithmFamily = (typeof ETagAlgorithmFamily)[keyof typeof ETagAlgorithmFamily];
2510
+ /**
2511
+ * <p>S3 access configuration parameters.</p>
2512
+ * @public
2513
+ */
2514
+ export interface S3AccessConfig {
2515
+ /**
2516
+ * <p>Location of the access logs.</p>
2517
+ * @public
2518
+ */
2519
+ accessLogLocation?: string | undefined;
2520
+ }
2406
2521
  /**
2407
2522
  * @public
2408
2523
  */
@@ -2442,7 +2557,53 @@ export interface CreateSequenceStoreRequest {
2442
2557
  * @public
2443
2558
  */
2444
2559
  eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
2560
+ /**
2561
+ * <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
2562
+ * @public
2563
+ */
2564
+ propagatedSetLevelTags?: string[] | undefined;
2565
+ /**
2566
+ * <p>S3 access configuration parameters</p>
2567
+ * @public
2568
+ */
2569
+ s3AccessConfig?: S3AccessConfig | undefined;
2445
2570
  }
2571
+ /**
2572
+ * <p>The S3 access metadata of the sequence store.</p>
2573
+ * @public
2574
+ */
2575
+ export interface SequenceStoreS3Access {
2576
+ /**
2577
+ * <p>The S3 URI of the sequence store.</p>
2578
+ * @public
2579
+ */
2580
+ s3Uri?: string | undefined;
2581
+ /**
2582
+ * <p>This is ARN of the access point associated with the S3 bucket storing read sets.</p>
2583
+ * @public
2584
+ */
2585
+ s3AccessPointArn?: string | undefined;
2586
+ /**
2587
+ * <p>Location of the access logs.</p>
2588
+ * @public
2589
+ */
2590
+ accessLogLocation?: string | undefined;
2591
+ }
2592
+ /**
2593
+ * @public
2594
+ * @enum
2595
+ */
2596
+ export declare const SequenceStoreStatus: {
2597
+ readonly ACTIVE: "ACTIVE";
2598
+ readonly CREATING: "CREATING";
2599
+ readonly DELETING: "DELETING";
2600
+ readonly FAILED: "FAILED";
2601
+ readonly UPDATING: "UPDATING";
2602
+ };
2603
+ /**
2604
+ * @public
2605
+ */
2606
+ export type SequenceStoreStatus = (typeof SequenceStoreStatus)[keyof typeof SequenceStoreStatus];
2446
2607
  /**
2447
2608
  * @public
2448
2609
  */
@@ -2487,6 +2648,26 @@ export interface CreateSequenceStoreResponse {
2487
2648
  * @public
2488
2649
  */
2489
2650
  eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
2651
+ /**
2652
+ * <p>The status of the sequence store.</p>
2653
+ * @public
2654
+ */
2655
+ status?: SequenceStoreStatus | undefined;
2656
+ /**
2657
+ * <p>The status message of the sequence store.</p>
2658
+ * @public
2659
+ */
2660
+ statusMessage?: string | undefined;
2661
+ /**
2662
+ * <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
2663
+ * @public
2664
+ */
2665
+ propagatedSetLevelTags?: string[] | undefined;
2666
+ /**
2667
+ * <p>The S3 access metadata of the sequence store.</p>
2668
+ * @public
2669
+ */
2670
+ s3Access?: SequenceStoreS3Access | undefined;
2490
2671
  }
2491
2672
  /**
2492
2673
  * @public
@@ -2775,6 +2956,16 @@ export interface DeleteRunRequest {
2775
2956
  */
2776
2957
  id: string | undefined;
2777
2958
  }
2959
+ /**
2960
+ * @public
2961
+ */
2962
+ export interface DeleteRunCacheRequest {
2963
+ /**
2964
+ * <p>Run cache identifier for the cache you want to delete.</p>
2965
+ * @public
2966
+ */
2967
+ id: string | undefined;
2968
+ }
2778
2969
  /**
2779
2970
  * @public
2780
2971
  */
@@ -2785,6 +2976,21 @@ export interface DeleteRunGroupRequest {
2785
2976
  */
2786
2977
  id: string | undefined;
2787
2978
  }
2979
+ /**
2980
+ * @public
2981
+ */
2982
+ export interface DeleteS3AccessPolicyRequest {
2983
+ /**
2984
+ * <p>The S3 access point ARN that has the access policy.</p>
2985
+ * @public
2986
+ */
2987
+ s3AccessPointArn: string | undefined;
2988
+ }
2989
+ /**
2990
+ * @public
2991
+ */
2992
+ export interface DeleteS3AccessPolicyResponse {
2993
+ }
2788
2994
  /**
2789
2995
  * @public
2790
2996
  */
@@ -4089,6 +4295,21 @@ export interface GetRunResponse {
4089
4295
  * @public
4090
4296
  */
4091
4297
  id?: string | undefined;
4298
+ /**
4299
+ * <p>The run cache associated with the run.</p>
4300
+ * @public
4301
+ */
4302
+ cacheId?: string | undefined;
4303
+ /**
4304
+ * <p>The run cache behavior for the run.</p>
4305
+ * @public
4306
+ */
4307
+ cacheBehavior?: CacheBehavior | undefined;
4308
+ /**
4309
+ * <p>The workflow engine version.</p>
4310
+ * @public
4311
+ */
4312
+ engineVersion?: string | undefined;
4092
4313
  /**
4093
4314
  * <p>The run's status.</p>
4094
4315
  * @public
@@ -4237,6 +4458,71 @@ export interface GetRunResponse {
4237
4458
  */
4238
4459
  workflowOwnerId?: string | undefined;
4239
4460
  }
4461
+ /**
4462
+ * @public
4463
+ */
4464
+ export interface GetRunCacheRequest {
4465
+ /**
4466
+ * <p>The identifier of the run cache to retrieve.</p>
4467
+ * @public
4468
+ */
4469
+ id: string | undefined;
4470
+ }
4471
+ /**
4472
+ * @public
4473
+ */
4474
+ export interface GetRunCacheResponse {
4475
+ /**
4476
+ * <p>Unique resource identifier for the run cache.</p>
4477
+ * @public
4478
+ */
4479
+ arn?: string | undefined;
4480
+ /**
4481
+ * <p>The default cache behavior for runs using this cache.</p>
4482
+ * @public
4483
+ */
4484
+ cacheBehavior?: CacheBehavior | undefined;
4485
+ /**
4486
+ * <p>The identifier of the bucket owner.</p>
4487
+ * @public
4488
+ */
4489
+ cacheBucketOwnerId?: string | undefined;
4490
+ /**
4491
+ * <p>The S3 URI where the cache data is stored.</p>
4492
+ * @public
4493
+ */
4494
+ cacheS3Uri?: string | undefined;
4495
+ /**
4496
+ * <p>Creation time of the run cache (an ISO 8601 formatted string).</p>
4497
+ * @public
4498
+ */
4499
+ creationTime?: Date | undefined;
4500
+ /**
4501
+ * <p>The run cache description.</p>
4502
+ * @public
4503
+ */
4504
+ description?: string | undefined;
4505
+ /**
4506
+ * <p>The run cache ID.</p>
4507
+ * @public
4508
+ */
4509
+ id?: string | undefined;
4510
+ /**
4511
+ * <p>The run cache name.</p>
4512
+ * @public
4513
+ */
4514
+ name?: string | undefined;
4515
+ /**
4516
+ * <p>The run cache status.</p>
4517
+ * @public
4518
+ */
4519
+ status?: RunCacheStatus | undefined;
4520
+ /**
4521
+ * <p>The tags associated with the run cache.</p>
4522
+ * @public
4523
+ */
4524
+ tags?: Record<string, string> | undefined;
4525
+ }
4240
4526
  /**
4241
4527
  * @public
4242
4528
  */
@@ -4353,6 +4639,16 @@ export interface GetRunTaskResponse {
4353
4639
  * @public
4354
4640
  */
4355
4641
  cpus?: number | undefined;
4642
+ /**
4643
+ * <p>Set to true if AWS HealthOmics found a matching entry in the run cache for this task.</p>
4644
+ * @public
4645
+ */
4646
+ cacheHit?: boolean | undefined;
4647
+ /**
4648
+ * <p>The S3 URI of the cache location.</p>
4649
+ * @public
4650
+ */
4651
+ cacheS3Uri?: string | undefined;
4356
4652
  /**
4357
4653
  * <p>The task's memory use in gigabytes.</p>
4358
4654
  * @public
@@ -4402,28 +4698,64 @@ export interface GetRunTaskResponse {
4402
4698
  /**
4403
4699
  * @public
4404
4700
  */
4405
- export interface GetSequenceStoreRequest {
4701
+ export interface GetS3AccessPolicyRequest {
4406
4702
  /**
4407
- * <p>The store's ID.</p>
4703
+ * <p>The S3 access point ARN that has the access policy.</p>
4408
4704
  * @public
4409
4705
  */
4410
- id: string | undefined;
4706
+ s3AccessPointArn: string | undefined;
4411
4707
  }
4412
4708
  /**
4413
- * <p>The S3 access metadata of the sequence store.</p>
4414
4709
  * @public
4710
+ * @enum
4415
4711
  */
4416
- export interface SequenceStoreS3Access {
4712
+ export declare const StoreType: {
4713
+ readonly REFERENCE_STORE: "REFERENCE_STORE";
4714
+ readonly SEQUENCE_STORE: "SEQUENCE_STORE";
4715
+ };
4716
+ /**
4717
+ * @public
4718
+ */
4719
+ export type StoreType = (typeof StoreType)[keyof typeof StoreType];
4720
+ /**
4721
+ * @public
4722
+ */
4723
+ export interface GetS3AccessPolicyResponse {
4417
4724
  /**
4418
- * <p>The S3 URI of the sequence store.</p>
4725
+ * <p>The S3 access point ARN that has the access policy.</p>
4419
4726
  * @public
4420
4727
  */
4421
- s3Uri?: string | undefined;
4728
+ s3AccessPointArn?: string | undefined;
4422
4729
  /**
4423
- * <p>This is ARN of the access point associated with the S3 bucket storing read sets.</p>
4730
+ * <p>The AWS-generated Sequence Store or Reference Store ID.</p>
4424
4731
  * @public
4425
4732
  */
4426
- s3AccessPointArn?: string | undefined;
4733
+ storeId?: string | undefined;
4734
+ /**
4735
+ * <p>The type of store associated with the access point.</p>
4736
+ * @public
4737
+ */
4738
+ storeType?: StoreType | undefined;
4739
+ /**
4740
+ * <p>The time when the policy was last updated.</p>
4741
+ * @public
4742
+ */
4743
+ updateTime?: Date | undefined;
4744
+ /**
4745
+ * <p>The current resource policy that controls S3 access on the store.</p>
4746
+ * @public
4747
+ */
4748
+ s3AccessPolicy: __LazyJsonString | string | undefined;
4749
+ }
4750
+ /**
4751
+ * @public
4752
+ */
4753
+ export interface GetSequenceStoreRequest {
4754
+ /**
4755
+ * <p>The store's ID.</p>
4756
+ * @public
4757
+ */
4758
+ id: string | undefined;
4427
4759
  }
4428
4760
  /**
4429
4761
  * @public
@@ -4474,6 +4806,26 @@ export interface GetSequenceStoreResponse {
4474
4806
  * @public
4475
4807
  */
4476
4808
  eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
4809
+ /**
4810
+ * <p>The status of the sequence store.</p>
4811
+ * @public
4812
+ */
4813
+ status?: SequenceStoreStatus | undefined;
4814
+ /**
4815
+ * <p>The status message of the sequence store.</p>
4816
+ * @public
4817
+ */
4818
+ statusMessage?: string | undefined;
4819
+ /**
4820
+ * <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
4821
+ * @public
4822
+ */
4823
+ propagatedSetLevelTags?: string[] | undefined;
4824
+ /**
4825
+ * <p>The last-updated time of the sequence store.</p>
4826
+ * @public
4827
+ */
4828
+ updateTime?: Date | undefined;
4477
4829
  }
4478
4830
  /**
4479
4831
  * @public
@@ -5756,6 +6108,78 @@ export interface ListReferenceStoresResponse {
5756
6108
  */
5757
6109
  referenceStores: ReferenceStoreDetail[] | undefined;
5758
6110
  }
6111
+ /**
6112
+ * @public
6113
+ */
6114
+ export interface ListRunCachesRequest {
6115
+ /**
6116
+ * <p>The maximum number of results to return.</p>
6117
+ * @public
6118
+ */
6119
+ maxResults?: number | undefined;
6120
+ /**
6121
+ * <p>Optional pagination token returned from a prior call to the <code>ListRunCaches</code> API operation.</p>
6122
+ * @public
6123
+ */
6124
+ startingToken?: string | undefined;
6125
+ }
6126
+ /**
6127
+ * <p>List entry for one run cache.</p>
6128
+ * @public
6129
+ */
6130
+ export interface RunCacheListItem {
6131
+ /**
6132
+ * <p>Unique resource identifier for the run cache.</p>
6133
+ * @public
6134
+ */
6135
+ arn?: string | undefined;
6136
+ /**
6137
+ * <p>Default cache behavior for the run cache.</p>
6138
+ * @public
6139
+ */
6140
+ cacheBehavior?: CacheBehavior | undefined;
6141
+ /**
6142
+ * <p>The S3 uri for the run cache data.</p>
6143
+ * @public
6144
+ */
6145
+ cacheS3Uri?: string | undefined;
6146
+ /**
6147
+ * <p>The time that this run cache was created (an ISO 8601 formatted string).</p>
6148
+ * @public
6149
+ */
6150
+ creationTime?: Date | undefined;
6151
+ /**
6152
+ * <p>The identifier for this run cache.</p>
6153
+ * @public
6154
+ */
6155
+ id?: string | undefined;
6156
+ /**
6157
+ * <p>The name of the run cache.</p>
6158
+ * @public
6159
+ */
6160
+ name?: string | undefined;
6161
+ /**
6162
+ * <p>The run cache status.</p>
6163
+ * @public
6164
+ */
6165
+ status?: RunCacheStatus | undefined;
6166
+ }
6167
+ /**
6168
+ * @public
6169
+ */
6170
+ export interface ListRunCachesResponse {
6171
+ /**
6172
+ * <p>Details about each run cache in the response.</p>
6173
+ * @public
6174
+ */
6175
+ items?: RunCacheListItem[] | undefined;
6176
+ /**
6177
+ * <p>Pagination token to retrieve additional run caches. If the response does not have a
6178
+ * <code>nextToken</code>value, you have reached to the end of the list.</p>
6179
+ * @public
6180
+ */
6181
+ nextToken?: string | undefined;
6182
+ }
5759
6183
  /**
5760
6184
  * @public
5761
6185
  */
@@ -5997,6 +6421,16 @@ export interface TaskListItem {
5997
6421
  * @public
5998
6422
  */
5999
6423
  cpus?: number | undefined;
6424
+ /**
6425
+ * <p>Set to true if AWS HealthOmics found a matching entry in the run cache for this task.</p>
6426
+ * @public
6427
+ */
6428
+ cacheHit?: boolean | undefined;
6429
+ /**
6430
+ * <p>The S3 URI of the cache location.</p>
6431
+ * @public
6432
+ */
6433
+ cacheS3Uri?: string | undefined;
6000
6434
  /**
6001
6435
  * <p>The task's memory use in gigabyes.</p>
6002
6436
  * @public
@@ -6065,6 +6499,21 @@ export interface SequenceStoreFilter {
6065
6499
  * @public
6066
6500
  */
6067
6501
  createdBefore?: Date | undefined;
6502
+ /**
6503
+ * <p>Filter results based on status.</p>
6504
+ * @public
6505
+ */
6506
+ status?: SequenceStoreStatus | undefined;
6507
+ /**
6508
+ * <p>Filter results based on stores updated after the specified time.</p>
6509
+ * @public
6510
+ */
6511
+ updatedAfter?: Date | undefined;
6512
+ /**
6513
+ * <p>Filter results based on stores updated before the specified time.</p>
6514
+ * @public
6515
+ */
6516
+ updatedBefore?: Date | undefined;
6068
6517
  }
6069
6518
  /**
6070
6519
  * @public
@@ -6133,6 +6582,21 @@ export interface SequenceStoreDetail {
6133
6582
  * @public
6134
6583
  */
6135
6584
  eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
6585
+ /**
6586
+ * <p>Status of the sequence store.</p>
6587
+ * @public
6588
+ */
6589
+ status?: SequenceStoreStatus | undefined;
6590
+ /**
6591
+ * <p>The status message of the sequence store.</p>
6592
+ * @public
6593
+ */
6594
+ statusMessage?: string | undefined;
6595
+ /**
6596
+ * <p>The last-updated time of the Sequence Store.</p>
6597
+ * @public
6598
+ */
6599
+ updateTime?: Date | undefined;
6136
6600
  }
6137
6601
  /**
6138
6602
  * @public
@@ -6539,6 +7003,41 @@ export interface ListWorkflowsResponse {
6539
7003
  */
6540
7004
  nextToken?: string | undefined;
6541
7005
  }
7006
+ /**
7007
+ * @public
7008
+ */
7009
+ export interface PutS3AccessPolicyRequest {
7010
+ /**
7011
+ * <p>The S3 access point ARN where you want to put the access policy.</p>
7012
+ * @public
7013
+ */
7014
+ s3AccessPointArn: string | undefined;
7015
+ /**
7016
+ * <p>The resource policy that controls S3 access to the store.</p>
7017
+ * @public
7018
+ */
7019
+ s3AccessPolicy: __LazyJsonString | string | undefined;
7020
+ }
7021
+ /**
7022
+ * @public
7023
+ */
7024
+ export interface PutS3AccessPolicyResponse {
7025
+ /**
7026
+ * <p>The S3 access point ARN that now has the access policy.</p>
7027
+ * @public
7028
+ */
7029
+ s3AccessPointArn?: string | undefined;
7030
+ /**
7031
+ * <p>The AWS-generated Sequence Store or Reference Store ID.</p>
7032
+ * @public
7033
+ */
7034
+ storeId?: string | undefined;
7035
+ /**
7036
+ * <p>The type of store associated with the access point.</p>
7037
+ * @public
7038
+ */
7039
+ storeType?: StoreType | undefined;
7040
+ }
6542
7041
  /**
6543
7042
  * <p>A source for a reference import job.</p>
6544
7043
  * @public
@@ -6620,6 +7119,31 @@ export interface StartReferenceImportJobResponse {
6620
7119
  */
6621
7120
  creationTime: Date | undefined;
6622
7121
  }
7122
+ /**
7123
+ * @public
7124
+ */
7125
+ export interface UpdateRunCacheRequest {
7126
+ /**
7127
+ * <p>Update the default run cache behavior.</p>
7128
+ * @public
7129
+ */
7130
+ cacheBehavior?: CacheBehavior | undefined;
7131
+ /**
7132
+ * <p>Update the run cache description.</p>
7133
+ * @public
7134
+ */
7135
+ description?: string | undefined;
7136
+ /**
7137
+ * <p>The identifier of the run cache you want to update.</p>
7138
+ * @public
7139
+ */
7140
+ id: string | undefined;
7141
+ /**
7142
+ * <p>Update the name of the run cache.</p>
7143
+ * @public
7144
+ */
7145
+ name?: string | undefined;
7146
+ }
6623
7147
  /**
6624
7148
  * @public
6625
7149
  */
@@ -6684,6 +7208,19 @@ export interface StartRunRequest {
6684
7208
  * @public
6685
7209
  */
6686
7210
  name?: string | undefined;
7211
+ /**
7212
+ * <p>Identifier of the cache associated with this run. If you don't specify a cache ID, no task outputs are cached
7213
+ * for this run.</p>
7214
+ * @public
7215
+ */
7216
+ cacheId?: string | undefined;
7217
+ /**
7218
+ * <p>The cache behavior for the run. You specify this value if you want to override
7219
+ * the default behavior for the cache. You had set the default value when you created the cache.
7220
+ * For more information, see <a href="https://docs.aws.amazon.com/omics/latest/dev/how-run-cache.html#run-cache-behavior">Run cache behavior</a> in the AWS HealthOmics User Guide.</p>
7221
+ * @public
7222
+ */
7223
+ cacheBehavior?: CacheBehavior | undefined;
6687
7224
  /**
6688
7225
  * <p>The run's group ID.</p>
6689
7226
  * @public
@@ -6726,7 +7263,14 @@ export interface StartRunRequest {
6726
7263
  */
6727
7264
  requestId?: string | undefined;
6728
7265
  /**
6729
- * <p>The retention mode for the run.</p>
7266
+ * <p>The retention mode for the run. The default value is RETAIN. </p>
7267
+ * <p>HealthOmics stores a fixed number of runs that are available to the console and API.
7268
+ * In the default mode (RETAIN), you need to remove runs manually when the number of run exceeds the maximum.
7269
+ * If you set the retention mode to <code>REMOVE</code>, HealthOmics automatically
7270
+ * removes runs (that have mode set to REMOVE) when the number of run exceeds the maximum.
7271
+ * All run logs are available in CloudWatch logs, if you need information about a run that is no longer available to the API.</p>
7272
+ * <p>For more information about retention mode, see <a href="https://docs.aws.amazon.com/omics/latest/dev/starting-a-run.html">Specifying run retention mode</a>
7273
+ * in the <i>AWS HealthOmics User Guide</i>.</p>
6730
7274
  * @public
6731
7275
  */
6732
7276
  retentionMode?: RunRetentionMode | undefined;
@@ -6748,7 +7292,7 @@ export interface StartRunRequest {
6748
7292
  */
6749
7293
  export interface StartRunResponse {
6750
7294
  /**
6751
- * <p>The run's ARN.</p>
7295
+ * <p>Unique resource identifier for the run.</p>
6752
7296
  * @public
6753
7297
  */
6754
7298
  arn?: string | undefined;
@@ -7000,6 +7544,116 @@ export interface StartReadSetImportJobResponse {
7000
7544
  */
7001
7545
  creationTime: Date | undefined;
7002
7546
  }
7547
+ /**
7548
+ * @public
7549
+ */
7550
+ export interface UpdateSequenceStoreRequest {
7551
+ /**
7552
+ * <p>The ID of the sequence store.</p>
7553
+ * @public
7554
+ */
7555
+ id: string | undefined;
7556
+ /**
7557
+ * <p>A name for the sequence store.</p>
7558
+ * @public
7559
+ */
7560
+ name?: string | undefined;
7561
+ /**
7562
+ * <p>A description for the sequence store.</p>
7563
+ * @public
7564
+ */
7565
+ description?: string | undefined;
7566
+ /**
7567
+ * <p>To ensure that requests don't run multiple times, specify a unique token for each request.</p>
7568
+ * @public
7569
+ */
7570
+ clientToken?: string | undefined;
7571
+ /**
7572
+ * <p>The S3 URI of a bucket and folder to store Read Sets that fail to upload.</p>
7573
+ * @public
7574
+ */
7575
+ fallbackLocation?: string | undefined;
7576
+ /**
7577
+ * <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
7578
+ * @public
7579
+ */
7580
+ propagatedSetLevelTags?: string[] | undefined;
7581
+ /**
7582
+ * <p>S3 access configuration parameters.</p>
7583
+ * @public
7584
+ */
7585
+ s3AccessConfig?: S3AccessConfig | undefined;
7586
+ }
7587
+ /**
7588
+ * @public
7589
+ */
7590
+ export interface UpdateSequenceStoreResponse {
7591
+ /**
7592
+ * <p>The ID of the sequence store.</p>
7593
+ * @public
7594
+ */
7595
+ id: string | undefined;
7596
+ /**
7597
+ * <p>The ARN of the sequence store.</p>
7598
+ * @public
7599
+ */
7600
+ arn: string | undefined;
7601
+ /**
7602
+ * <p>The name of the sequence store.</p>
7603
+ * @public
7604
+ */
7605
+ name?: string | undefined;
7606
+ /**
7607
+ * <p>Description of the sequence store.</p>
7608
+ * @public
7609
+ */
7610
+ description?: string | undefined;
7611
+ /**
7612
+ * <p>Server-side encryption (SSE) settings for a store.</p>
7613
+ * @public
7614
+ */
7615
+ sseConfig?: SseConfig | undefined;
7616
+ /**
7617
+ * <p>The time when the store was created.</p>
7618
+ * @public
7619
+ */
7620
+ creationTime: Date | undefined;
7621
+ /**
7622
+ * <p>The last-updated time of the Sequence Store.</p>
7623
+ * @public
7624
+ */
7625
+ updateTime?: Date | undefined;
7626
+ /**
7627
+ * <p>The tags keys to propagate to the S3 objects associated with read sets in the sequence store.</p>
7628
+ * @public
7629
+ */
7630
+ propagatedSetLevelTags?: string[] | undefined;
7631
+ /**
7632
+ * <p>The status of the sequence store.</p>
7633
+ * @public
7634
+ */
7635
+ status?: SequenceStoreStatus | undefined;
7636
+ /**
7637
+ * <p>The status message of the sequence store.</p>
7638
+ * @public
7639
+ */
7640
+ statusMessage?: string | undefined;
7641
+ /**
7642
+ * <p>The S3 URI of a bucket and folder to store Read Sets that fail to upload.</p>
7643
+ * @public
7644
+ */
7645
+ fallbackLocation?: string | undefined;
7646
+ /**
7647
+ * <p>The S3 access metadata of the sequence store.</p>
7648
+ * @public
7649
+ */
7650
+ s3Access?: SequenceStoreS3Access | undefined;
7651
+ /**
7652
+ * <p>The ETag algorithm family to use on ingested read sets.</p>
7653
+ * @public
7654
+ */
7655
+ eTagAlgorithmFamily?: ETagAlgorithmFamily | undefined;
7656
+ }
7003
7657
  /**
7004
7658
  * @public
7005
7659
  */