aws-sdk-omics 1.39.0 → 1.40.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-omics/client.rb +339 -6
- data/lib/aws-sdk-omics/client_api.rb +192 -0
- data/lib/aws-sdk-omics/types.rb +362 -2
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +72 -0
- data/sig/types.rbs +83 -0
- metadata +2 -2
data/lib/aws-sdk-omics/types.rb
CHANGED
@@ -893,6 +893,106 @@ module Aws::Omics
|
|
893
893
|
include Aws::Structure
|
894
894
|
end
|
895
895
|
|
896
|
+
# @!attribute [rw] cache_behavior
|
897
|
+
# Default cache behavior for runs that use this cache. Supported
|
898
|
+
# values are:
|
899
|
+
#
|
900
|
+
# `CACHE_ON_FAILURE`: Caches task outputs from completed tasks for
|
901
|
+
# runs that fail. This setting is useful if you're debugging a
|
902
|
+
# workflow that fails after several tasks completed successfully. The
|
903
|
+
# subsequent run uses the cache outputs for previously-completed tasks
|
904
|
+
# if the task definition, inputs, and container in ECR are identical
|
905
|
+
# to the prior run.
|
906
|
+
#
|
907
|
+
# `CACHE_ALWAYS`: Caches task outputs from completed tasks for all
|
908
|
+
# runs. This setting is useful in development mode, but do not use it
|
909
|
+
# in a production setting.
|
910
|
+
#
|
911
|
+
# If you don't specify a value, the default behavior is
|
912
|
+
# CACHE\_ON\_FAILURE. When you start a run that uses this cache, you
|
913
|
+
# can override the default cache behavior.
|
914
|
+
#
|
915
|
+
# For more information, see [Run cache behavior][1] in the AWS
|
916
|
+
# HealthOmics User Guide.
|
917
|
+
#
|
918
|
+
#
|
919
|
+
#
|
920
|
+
# [1]: https://docs.aws.amazon.com/omics/latest/dev/how-run-cache.html#run-cache-behavior
|
921
|
+
# @return [String]
|
922
|
+
#
|
923
|
+
# @!attribute [rw] cache_s3_location
|
924
|
+
# Specify the S3 location for storing the cached task outputs. This
|
925
|
+
# data must be immediately accessible (not in an archived state).
|
926
|
+
# @return [String]
|
927
|
+
#
|
928
|
+
# @!attribute [rw] description
|
929
|
+
# Enter a description of the run cache.
|
930
|
+
# @return [String]
|
931
|
+
#
|
932
|
+
# @!attribute [rw] name
|
933
|
+
# Enter a user-friendly name for the run cache.
|
934
|
+
# @return [String]
|
935
|
+
#
|
936
|
+
# @!attribute [rw] request_id
|
937
|
+
# A unique request token, to ensure idempotency. If you don't specify
|
938
|
+
# a token, HealthOmics automatically generates a universally unique
|
939
|
+
# identifier (UUID) for the request.
|
940
|
+
#
|
941
|
+
# **A suitable default value is auto-generated.** You should normally
|
942
|
+
# not need to pass this option.
|
943
|
+
# @return [String]
|
944
|
+
#
|
945
|
+
# @!attribute [rw] tags
|
946
|
+
# Specify one or more tags to associate with this run cache.
|
947
|
+
# @return [Hash<String,String>]
|
948
|
+
#
|
949
|
+
# @!attribute [rw] cache_bucket_owner_id
|
950
|
+
# The AWS account ID of the expected owner of the S3 bucket for the
|
951
|
+
# run cache. If not provided, your account ID is set as the owner of
|
952
|
+
# the bucket.
|
953
|
+
# @return [String]
|
954
|
+
#
|
955
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateRunCacheRequest AWS API Documentation
|
956
|
+
#
|
957
|
+
class CreateRunCacheRequest < Struct.new(
|
958
|
+
:cache_behavior,
|
959
|
+
:cache_s3_location,
|
960
|
+
:description,
|
961
|
+
:name,
|
962
|
+
:request_id,
|
963
|
+
:tags,
|
964
|
+
:cache_bucket_owner_id)
|
965
|
+
SENSITIVE = []
|
966
|
+
include Aws::Structure
|
967
|
+
end
|
968
|
+
|
969
|
+
# @!attribute [rw] arn
|
970
|
+
# Unique resource identifier for the run cache.
|
971
|
+
# @return [String]
|
972
|
+
#
|
973
|
+
# @!attribute [rw] id
|
974
|
+
# Identifier for the run cache.
|
975
|
+
# @return [String]
|
976
|
+
#
|
977
|
+
# @!attribute [rw] status
|
978
|
+
# Run cache status.
|
979
|
+
# @return [String]
|
980
|
+
#
|
981
|
+
# @!attribute [rw] tags
|
982
|
+
# The tags associated with this run cache.
|
983
|
+
# @return [Hash<String,String>]
|
984
|
+
#
|
985
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateRunCacheResponse AWS API Documentation
|
986
|
+
#
|
987
|
+
class CreateRunCacheResponse < Struct.new(
|
988
|
+
:arn,
|
989
|
+
:id,
|
990
|
+
:status,
|
991
|
+
:tags)
|
992
|
+
SENSITIVE = []
|
993
|
+
include Aws::Structure
|
994
|
+
end
|
995
|
+
|
896
996
|
# @!attribute [rw] name
|
897
997
|
# A name for the group.
|
898
998
|
# @return [String]
|
@@ -1361,6 +1461,18 @@ module Aws::Omics
|
|
1361
1461
|
#
|
1362
1462
|
class DeleteReferenceStoreResponse < Aws::EmptyStructure; end
|
1363
1463
|
|
1464
|
+
# @!attribute [rw] id
|
1465
|
+
# Run cache identifier for the cache you want to delete.
|
1466
|
+
# @return [String]
|
1467
|
+
#
|
1468
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteRunCacheRequest AWS API Documentation
|
1469
|
+
#
|
1470
|
+
class DeleteRunCacheRequest < Struct.new(
|
1471
|
+
:id)
|
1472
|
+
SENSITIVE = []
|
1473
|
+
include Aws::Structure
|
1474
|
+
end
|
1475
|
+
|
1364
1476
|
# @!attribute [rw] id
|
1365
1477
|
# The run group's ID.
|
1366
1478
|
# @return [String]
|
@@ -2527,6 +2639,75 @@ module Aws::Omics
|
|
2527
2639
|
include Aws::Structure
|
2528
2640
|
end
|
2529
2641
|
|
2642
|
+
# @!attribute [rw] id
|
2643
|
+
# The identifier of the run cache to retrieve.
|
2644
|
+
# @return [String]
|
2645
|
+
#
|
2646
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunCacheRequest AWS API Documentation
|
2647
|
+
#
|
2648
|
+
class GetRunCacheRequest < Struct.new(
|
2649
|
+
:id)
|
2650
|
+
SENSITIVE = []
|
2651
|
+
include Aws::Structure
|
2652
|
+
end
|
2653
|
+
|
2654
|
+
# @!attribute [rw] arn
|
2655
|
+
# Unique resource identifier for the run cache.
|
2656
|
+
# @return [String]
|
2657
|
+
#
|
2658
|
+
# @!attribute [rw] cache_behavior
|
2659
|
+
# The default cache behavior for runs using this cache.
|
2660
|
+
# @return [String]
|
2661
|
+
#
|
2662
|
+
# @!attribute [rw] cache_bucket_owner_id
|
2663
|
+
# The identifier of the bucket owner.
|
2664
|
+
# @return [String]
|
2665
|
+
#
|
2666
|
+
# @!attribute [rw] cache_s3_uri
|
2667
|
+
# The S3 URI where the cache data is stored.
|
2668
|
+
# @return [String]
|
2669
|
+
#
|
2670
|
+
# @!attribute [rw] creation_time
|
2671
|
+
# Creation time of the run cache (an ISO 8601 formatted string).
|
2672
|
+
# @return [Time]
|
2673
|
+
#
|
2674
|
+
# @!attribute [rw] description
|
2675
|
+
# The run cache description.
|
2676
|
+
# @return [String]
|
2677
|
+
#
|
2678
|
+
# @!attribute [rw] id
|
2679
|
+
# The run cache ID.
|
2680
|
+
# @return [String]
|
2681
|
+
#
|
2682
|
+
# @!attribute [rw] name
|
2683
|
+
# The run cache name.
|
2684
|
+
# @return [String]
|
2685
|
+
#
|
2686
|
+
# @!attribute [rw] status
|
2687
|
+
# The run cache status.
|
2688
|
+
# @return [String]
|
2689
|
+
#
|
2690
|
+
# @!attribute [rw] tags
|
2691
|
+
# The tags associated with the run cache.
|
2692
|
+
# @return [Hash<String,String>]
|
2693
|
+
#
|
2694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunCacheResponse AWS API Documentation
|
2695
|
+
#
|
2696
|
+
class GetRunCacheResponse < Struct.new(
|
2697
|
+
:arn,
|
2698
|
+
:cache_behavior,
|
2699
|
+
:cache_bucket_owner_id,
|
2700
|
+
:cache_s3_uri,
|
2701
|
+
:creation_time,
|
2702
|
+
:description,
|
2703
|
+
:id,
|
2704
|
+
:name,
|
2705
|
+
:status,
|
2706
|
+
:tags)
|
2707
|
+
SENSITIVE = []
|
2708
|
+
include Aws::Structure
|
2709
|
+
end
|
2710
|
+
|
2530
2711
|
# @!attribute [rw] id
|
2531
2712
|
# The group's ID.
|
2532
2713
|
# @return [String]
|
@@ -2616,6 +2797,18 @@ module Aws::Omics
|
|
2616
2797
|
# The run's ID.
|
2617
2798
|
# @return [String]
|
2618
2799
|
#
|
2800
|
+
# @!attribute [rw] cache_id
|
2801
|
+
# The run cache associated with the run.
|
2802
|
+
# @return [String]
|
2803
|
+
#
|
2804
|
+
# @!attribute [rw] cache_behavior
|
2805
|
+
# The run cache behavior for the run.
|
2806
|
+
# @return [String]
|
2807
|
+
#
|
2808
|
+
# @!attribute [rw] engine_version
|
2809
|
+
# The workflow engine version.
|
2810
|
+
# @return [String]
|
2811
|
+
#
|
2619
2812
|
# @!attribute [rw] status
|
2620
2813
|
# The run's status.
|
2621
2814
|
# @return [String]
|
@@ -2739,6 +2932,9 @@ module Aws::Omics
|
|
2739
2932
|
class GetRunResponse < Struct.new(
|
2740
2933
|
:arn,
|
2741
2934
|
:id,
|
2935
|
+
:cache_id,
|
2936
|
+
:cache_behavior,
|
2937
|
+
:engine_version,
|
2742
2938
|
:status,
|
2743
2939
|
:workflow_id,
|
2744
2940
|
:workflow_type,
|
@@ -2805,6 +3001,15 @@ module Aws::Omics
|
|
2805
3001
|
# The task's CPU usage.
|
2806
3002
|
# @return [Integer]
|
2807
3003
|
#
|
3004
|
+
# @!attribute [rw] cache_hit
|
3005
|
+
# Set to true if AWS HealthOmics found a matching entry in the run
|
3006
|
+
# cache for this task.
|
3007
|
+
# @return [Boolean]
|
3008
|
+
#
|
3009
|
+
# @!attribute [rw] cache_s3_uri
|
3010
|
+
# The S3 URI of the cache location.
|
3011
|
+
# @return [String]
|
3012
|
+
#
|
2808
3013
|
# @!attribute [rw] memory
|
2809
3014
|
# The task's memory use in gigabytes.
|
2810
3015
|
# @return [Integer]
|
@@ -2848,6 +3053,8 @@ module Aws::Omics
|
|
2848
3053
|
:status,
|
2849
3054
|
:name,
|
2850
3055
|
:cpus,
|
3056
|
+
:cache_hit,
|
3057
|
+
:cache_s3_uri,
|
2851
3058
|
:memory,
|
2852
3059
|
:creation_time,
|
2853
3060
|
:start_time,
|
@@ -4074,6 +4281,43 @@ module Aws::Omics
|
|
4074
4281
|
include Aws::Structure
|
4075
4282
|
end
|
4076
4283
|
|
4284
|
+
# @!attribute [rw] max_results
|
4285
|
+
# The maximum number of results to return.
|
4286
|
+
# @return [Integer]
|
4287
|
+
#
|
4288
|
+
# @!attribute [rw] starting_token
|
4289
|
+
# Optional pagination token returned from a prior call to the
|
4290
|
+
# `ListRunCaches` API operation.
|
4291
|
+
# @return [String]
|
4292
|
+
#
|
4293
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListRunCachesRequest AWS API Documentation
|
4294
|
+
#
|
4295
|
+
class ListRunCachesRequest < Struct.new(
|
4296
|
+
:max_results,
|
4297
|
+
:starting_token)
|
4298
|
+
SENSITIVE = []
|
4299
|
+
include Aws::Structure
|
4300
|
+
end
|
4301
|
+
|
4302
|
+
# @!attribute [rw] items
|
4303
|
+
# Details about each run cache in the response.
|
4304
|
+
# @return [Array<Types::RunCacheListItem>]
|
4305
|
+
#
|
4306
|
+
# @!attribute [rw] next_token
|
4307
|
+
# Pagination token to retrieve additional run caches. If the response
|
4308
|
+
# does not have a `nextToken`value, you have reached to the end of the
|
4309
|
+
# list.
|
4310
|
+
# @return [String]
|
4311
|
+
#
|
4312
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListRunCachesResponse AWS API Documentation
|
4313
|
+
#
|
4314
|
+
class ListRunCachesResponse < Struct.new(
|
4315
|
+
:items,
|
4316
|
+
:next_token)
|
4317
|
+
SENSITIVE = []
|
4318
|
+
include Aws::Structure
|
4319
|
+
end
|
4320
|
+
|
4077
4321
|
# @!attribute [rw] name
|
4078
4322
|
# The run groups' name.
|
4079
4323
|
# @return [String]
|
@@ -5113,6 +5357,51 @@ module Aws::Omics
|
|
5113
5357
|
include Aws::Structure
|
5114
5358
|
end
|
5115
5359
|
|
5360
|
+
# List entry for one run cache.
|
5361
|
+
#
|
5362
|
+
# @!attribute [rw] arn
|
5363
|
+
# Unique resource identifier for the run cache.
|
5364
|
+
# @return [String]
|
5365
|
+
#
|
5366
|
+
# @!attribute [rw] cache_behavior
|
5367
|
+
# Default cache behavior for the run cache.
|
5368
|
+
# @return [String]
|
5369
|
+
#
|
5370
|
+
# @!attribute [rw] cache_s3_uri
|
5371
|
+
# The S3 uri for the run cache data.
|
5372
|
+
# @return [String]
|
5373
|
+
#
|
5374
|
+
# @!attribute [rw] creation_time
|
5375
|
+
# The time that this run cache was created (an ISO 8601 formatted
|
5376
|
+
# string).
|
5377
|
+
# @return [Time]
|
5378
|
+
#
|
5379
|
+
# @!attribute [rw] id
|
5380
|
+
# The identifier for this run cache.
|
5381
|
+
# @return [String]
|
5382
|
+
#
|
5383
|
+
# @!attribute [rw] name
|
5384
|
+
# The name of the run cache.
|
5385
|
+
# @return [String]
|
5386
|
+
#
|
5387
|
+
# @!attribute [rw] status
|
5388
|
+
# The run cache status.
|
5389
|
+
# @return [String]
|
5390
|
+
#
|
5391
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/RunCacheListItem AWS API Documentation
|
5392
|
+
#
|
5393
|
+
class RunCacheListItem < Struct.new(
|
5394
|
+
:arn,
|
5395
|
+
:cache_behavior,
|
5396
|
+
:cache_s3_uri,
|
5397
|
+
:creation_time,
|
5398
|
+
:id,
|
5399
|
+
:name,
|
5400
|
+
:status)
|
5401
|
+
SENSITIVE = []
|
5402
|
+
include Aws::Structure
|
5403
|
+
end
|
5404
|
+
|
5116
5405
|
# A run group.
|
5117
5406
|
#
|
5118
5407
|
# @!attribute [rw] arn
|
@@ -5889,6 +6178,22 @@ module Aws::Omics
|
|
5889
6178
|
# A name for the run.
|
5890
6179
|
# @return [String]
|
5891
6180
|
#
|
6181
|
+
# @!attribute [rw] cache_id
|
6182
|
+
# Identifier of the cache associated with this run. If you don't
|
6183
|
+
# specify a cache ID, no task outputs are cached for this run.
|
6184
|
+
# @return [String]
|
6185
|
+
#
|
6186
|
+
# @!attribute [rw] cache_behavior
|
6187
|
+
# The cache behavior for the run. You specify this value if you want
|
6188
|
+
# to override the default behavior for the cache. You had set the
|
6189
|
+
# default value when you created the cache. For more information, see
|
6190
|
+
# [Run cache behavior][1] in the AWS HealthOmics User Guide.
|
6191
|
+
#
|
6192
|
+
#
|
6193
|
+
#
|
6194
|
+
# [1]: https://docs.aws.amazon.com/omics/latest/dev/how-run-cache.html#run-cache-behavior
|
6195
|
+
# @return [String]
|
6196
|
+
#
|
5892
6197
|
# @!attribute [rw] run_group_id
|
5893
6198
|
# The run's group ID.
|
5894
6199
|
# @return [String]
|
@@ -5928,7 +6233,22 @@ module Aws::Omics
|
|
5928
6233
|
# @return [String]
|
5929
6234
|
#
|
5930
6235
|
# @!attribute [rw] retention_mode
|
5931
|
-
# The retention mode for the run.
|
6236
|
+
# The retention mode for the run. The default value is RETAIN.
|
6237
|
+
#
|
6238
|
+
# HealthOmics stores a fixed number of runs that are available to the
|
6239
|
+
# console and API. In the default mode (RETAIN), you need to remove
|
6240
|
+
# runs manually when the number of run exceeds the maximum. If you set
|
6241
|
+
# the retention mode to `REMOVE`, HealthOmics automatically removes
|
6242
|
+
# runs (that have mode set to REMOVE) when the number of run exceeds
|
6243
|
+
# the maximum. All run logs are available in CloudWatch logs, if you
|
6244
|
+
# need information about a run that is no longer available to the API.
|
6245
|
+
#
|
6246
|
+
# For more information about retention mode, see [Specifying run
|
6247
|
+
# retention mode][1] in the *AWS HealthOmics User Guide*.
|
6248
|
+
#
|
6249
|
+
#
|
6250
|
+
#
|
6251
|
+
# [1]: https://docs.aws.amazon.com/omics/latest/dev/starting-a-run.html
|
5932
6252
|
# @return [String]
|
5933
6253
|
#
|
5934
6254
|
# @!attribute [rw] storage_type
|
@@ -5950,6 +6270,8 @@ module Aws::Omics
|
|
5950
6270
|
:run_id,
|
5951
6271
|
:role_arn,
|
5952
6272
|
:name,
|
6273
|
+
:cache_id,
|
6274
|
+
:cache_behavior,
|
5953
6275
|
:run_group_id,
|
5954
6276
|
:priority,
|
5955
6277
|
:parameters,
|
@@ -5966,7 +6288,7 @@ module Aws::Omics
|
|
5966
6288
|
end
|
5967
6289
|
|
5968
6290
|
# @!attribute [rw] arn
|
5969
|
-
#
|
6291
|
+
# Unique resource identifier for the run.
|
5970
6292
|
# @return [String]
|
5971
6293
|
#
|
5972
6294
|
# @!attribute [rw] id
|
@@ -6108,6 +6430,15 @@ module Aws::Omics
|
|
6108
6430
|
# The task's CPU count.
|
6109
6431
|
# @return [Integer]
|
6110
6432
|
#
|
6433
|
+
# @!attribute [rw] cache_hit
|
6434
|
+
# Set to true if AWS HealthOmics found a matching entry in the run
|
6435
|
+
# cache for this task.
|
6436
|
+
# @return [Boolean]
|
6437
|
+
#
|
6438
|
+
# @!attribute [rw] cache_s3_uri
|
6439
|
+
# The S3 URI of the cache location.
|
6440
|
+
# @return [String]
|
6441
|
+
#
|
6111
6442
|
# @!attribute [rw] memory
|
6112
6443
|
# The task's memory use in gigabyes.
|
6113
6444
|
# @return [Integer]
|
@@ -6140,6 +6471,8 @@ module Aws::Omics
|
|
6140
6471
|
:status,
|
6141
6472
|
:name,
|
6142
6473
|
:cpus,
|
6474
|
+
:cache_hit,
|
6475
|
+
:cache_s3_uri,
|
6143
6476
|
:memory,
|
6144
6477
|
:creation_time,
|
6145
6478
|
:start_time,
|
@@ -6384,6 +6717,33 @@ module Aws::Omics
|
|
6384
6717
|
include Aws::Structure
|
6385
6718
|
end
|
6386
6719
|
|
6720
|
+
# @!attribute [rw] cache_behavior
|
6721
|
+
# Update the default run cache behavior.
|
6722
|
+
# @return [String]
|
6723
|
+
#
|
6724
|
+
# @!attribute [rw] description
|
6725
|
+
# Update the run cache description.
|
6726
|
+
# @return [String]
|
6727
|
+
#
|
6728
|
+
# @!attribute [rw] id
|
6729
|
+
# The identifier of the run cache you want to update.
|
6730
|
+
# @return [String]
|
6731
|
+
#
|
6732
|
+
# @!attribute [rw] name
|
6733
|
+
# Update the name of the run cache.
|
6734
|
+
# @return [String]
|
6735
|
+
#
|
6736
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/UpdateRunCacheRequest AWS API Documentation
|
6737
|
+
#
|
6738
|
+
class UpdateRunCacheRequest < Struct.new(
|
6739
|
+
:cache_behavior,
|
6740
|
+
:description,
|
6741
|
+
:id,
|
6742
|
+
:name)
|
6743
|
+
SENSITIVE = []
|
6744
|
+
include Aws::Structure
|
6745
|
+
end
|
6746
|
+
|
6387
6747
|
# @!attribute [rw] id
|
6388
6748
|
# The group's ID.
|
6389
6749
|
# @return [String]
|
data/lib/aws-sdk-omics.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -264,6 +264,25 @@ module Aws
|
|
264
264
|
) -> _CreateReferenceStoreResponseSuccess
|
265
265
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReferenceStoreResponseSuccess
|
266
266
|
|
267
|
+
interface _CreateRunCacheResponseSuccess
|
268
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateRunCacheResponse]
|
269
|
+
def arn: () -> ::String
|
270
|
+
def id: () -> ::String
|
271
|
+
def status: () -> ("ACTIVE" | "DELETED" | "FAILED")
|
272
|
+
def tags: () -> ::Hash[::String, ::String]
|
273
|
+
end
|
274
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_run_cache-instance_method
|
275
|
+
def create_run_cache: (
|
276
|
+
?cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS"),
|
277
|
+
cache_s3_location: ::String,
|
278
|
+
?description: ::String,
|
279
|
+
?name: ::String,
|
280
|
+
request_id: ::String,
|
281
|
+
?tags: Hash[::String, ::String],
|
282
|
+
?cache_bucket_owner_id: ::String
|
283
|
+
) -> _CreateRunCacheResponseSuccess
|
284
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRunCacheResponseSuccess
|
285
|
+
|
267
286
|
interface _CreateRunGroupResponseSuccess
|
268
287
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateRunGroupResponse]
|
269
288
|
def arn: () -> ::String
|
@@ -419,6 +438,12 @@ module Aws
|
|
419
438
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
420
439
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
421
440
|
|
441
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_run_cache-instance_method
|
442
|
+
def delete_run_cache: (
|
443
|
+
id: ::String
|
444
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
445
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
446
|
+
|
422
447
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_run_group-instance_method
|
423
448
|
def delete_run_group: (
|
424
449
|
id: ::String
|
@@ -696,6 +721,9 @@ module Aws
|
|
696
721
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetRunResponse]
|
697
722
|
def arn: () -> ::String
|
698
723
|
def id: () -> ::String
|
724
|
+
def cache_id: () -> ::String
|
725
|
+
def cache_behavior: () -> ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
|
726
|
+
def engine_version: () -> ::String
|
699
727
|
def status: () -> ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
|
700
728
|
def workflow_id: () -> ::String
|
701
729
|
def workflow_type: () -> ("PRIVATE" | "READY2RUN")
|
@@ -733,6 +761,25 @@ module Aws
|
|
733
761
|
) -> _GetRunResponseSuccess
|
734
762
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunResponseSuccess
|
735
763
|
|
764
|
+
interface _GetRunCacheResponseSuccess
|
765
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetRunCacheResponse]
|
766
|
+
def arn: () -> ::String
|
767
|
+
def cache_behavior: () -> ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
|
768
|
+
def cache_bucket_owner_id: () -> ::String
|
769
|
+
def cache_s3_uri: () -> ::String
|
770
|
+
def creation_time: () -> ::Time
|
771
|
+
def description: () -> ::String
|
772
|
+
def id: () -> ::String
|
773
|
+
def name: () -> ::String
|
774
|
+
def status: () -> ("ACTIVE" | "DELETED" | "FAILED")
|
775
|
+
def tags: () -> ::Hash[::String, ::String]
|
776
|
+
end
|
777
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run_cache-instance_method
|
778
|
+
def get_run_cache: (
|
779
|
+
id: ::String
|
780
|
+
) -> _GetRunCacheResponseSuccess
|
781
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunCacheResponseSuccess
|
782
|
+
|
736
783
|
interface _GetRunGroupResponseSuccess
|
737
784
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetRunGroupResponse]
|
738
785
|
def arn: () -> ::String
|
@@ -757,6 +804,8 @@ module Aws
|
|
757
804
|
def status: () -> ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "CANCELLED" | "FAILED")
|
758
805
|
def name: () -> ::String
|
759
806
|
def cpus: () -> ::Integer
|
807
|
+
def cache_hit: () -> bool
|
808
|
+
def cache_s3_uri: () -> ::String
|
760
809
|
def memory: () -> ::Integer
|
761
810
|
def creation_time: () -> ::Time
|
762
811
|
def start_time: () -> ::Time
|
@@ -1085,6 +1134,18 @@ module Aws
|
|
1085
1134
|
) -> _ListReferencesResponseSuccess
|
1086
1135
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReferencesResponseSuccess
|
1087
1136
|
|
1137
|
+
interface _ListRunCachesResponseSuccess
|
1138
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListRunCachesResponse]
|
1139
|
+
def items: () -> ::Array[Types::RunCacheListItem]
|
1140
|
+
def next_token: () -> ::String
|
1141
|
+
end
|
1142
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_run_caches-instance_method
|
1143
|
+
def list_run_caches: (
|
1144
|
+
?max_results: ::Integer,
|
1145
|
+
?starting_token: ::String
|
1146
|
+
) -> _ListRunCachesResponseSuccess
|
1147
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRunCachesResponseSuccess
|
1148
|
+
|
1088
1149
|
interface _ListRunGroupsResponseSuccess
|
1089
1150
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListRunGroupsResponse]
|
1090
1151
|
def items: () -> ::Array[Types::RunGroupListItem]
|
@@ -1370,6 +1431,8 @@ module Aws
|
|
1370
1431
|
?run_id: ::String,
|
1371
1432
|
role_arn: ::String,
|
1372
1433
|
?name: ::String,
|
1434
|
+
?cache_id: ::String,
|
1435
|
+
?cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS"),
|
1373
1436
|
?run_group_id: ::String,
|
1374
1437
|
?priority: ::Integer,
|
1375
1438
|
?parameters: {
|
@@ -1461,6 +1524,15 @@ module Aws
|
|
1461
1524
|
) -> _UpdateAnnotationStoreVersionResponseSuccess
|
1462
1525
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAnnotationStoreVersionResponseSuccess
|
1463
1526
|
|
1527
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_run_cache-instance_method
|
1528
|
+
def update_run_cache: (
|
1529
|
+
?cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS"),
|
1530
|
+
?description: ::String,
|
1531
|
+
id: ::String,
|
1532
|
+
?name: ::String
|
1533
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1534
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1535
|
+
|
1464
1536
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_run_group-instance_method
|
1465
1537
|
def update_run_group: (
|
1466
1538
|
id: ::String,
|