aws-sdk-omics 1.63.0 → 1.65.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.
@@ -576,11 +576,10 @@ module Aws::Omics
576
576
  end
577
577
 
578
578
  # Amazon Web Services HealthOmics variant stores and annotation stores
579
- # will no longer be open to new customers starting November 7, 2025. If
580
- # you would like to use variant stores or annotation stores, sign up
581
- # prior to that date. Existing customers can continue to use the service
582
- # as normal. For more information, see [ Amazon Web Services HealthOmics
583
- # variant store and annotation store availability change][1].
579
+ # are no longer open to new customers. Existing customers can continue
580
+ # to use the service as normal. For more information, see [ Amazon Web
581
+ # Services HealthOmics variant store and annotation store availability
582
+ # change][1].
584
583
  #
585
584
  # Cancels an annotation import job.
586
585
  #
@@ -632,12 +631,42 @@ module Aws::Omics
632
631
  req.send_request(options)
633
632
  end
634
633
 
634
+ # Cancels all runs within a specified batch. This operation prevents
635
+ # not-yet-submitted runs from starting and submits `CancelRun` requests
636
+ # for runs that have already started.
637
+ #
638
+ # Cancel is only allowed on batches in `PENDING`, `SUBMITTING`, or
639
+ # `INPROGRESS` state. Cancel operations are non-atomic and may be
640
+ # partially successful. Use `GetBatch` to review
641
+ # `successfulCancelSubmissionCount` and `failedCancelSubmissionCount` in
642
+ # the `submissionSummary`. Only one cancel or delete operation per batch
643
+ # is allowed at a time.
644
+ #
645
+ # @option params [required, String] :batch_id
646
+ # The identifier portion of the run batch ARN.
647
+ #
648
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
649
+ #
650
+ # @example Request syntax with placeholder values
651
+ #
652
+ # resp = client.cancel_run_batch({
653
+ # batch_id: "BatchId", # required
654
+ # })
655
+ #
656
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CancelRunBatch AWS API Documentation
657
+ #
658
+ # @overload cancel_run_batch(params = {})
659
+ # @param [Hash] params ({})
660
+ def cancel_run_batch(params = {}, options = {})
661
+ req = build_request(:cancel_run_batch, params)
662
+ req.send_request(options)
663
+ end
664
+
635
665
  # Amazon Web Services HealthOmics variant stores and annotation stores
636
- # will no longer be open to new customers starting November 7, 2025. If
637
- # you would like to use variant stores or annotation stores, sign up
638
- # prior to that date. Existing customers can continue to use the service
639
- # as normal. For more information, see [ Amazon Web Services HealthOmics
640
- # variant store and annotation store availability change][1].
666
+ # are no longer open to new customers. Existing customers can continue
667
+ # to use the service as normal. For more information, see [ Amazon Web
668
+ # Services HealthOmics variant store and annotation store availability
669
+ # change][1].
641
670
  #
642
671
  # Cancels a variant import job.
643
672
  #
@@ -720,11 +749,10 @@ module Aws::Omics
720
749
  end
721
750
 
722
751
  # Amazon Web Services HealthOmics variant stores and annotation stores
723
- # will no longer be open to new customers starting November 7, 2025. If
724
- # you would like to use variant stores or annotation stores, sign up
725
- # prior to that date. Existing customers can continue to use the service
726
- # as normal. For more information, see [ Amazon Web Services HealthOmics
727
- # variant store and annotation store availability change][1].
752
+ # are no longer open to new customers. Existing customers can continue
753
+ # to use the service as normal. For more information, see [ Amazon Web
754
+ # Services HealthOmics variant store and annotation store availability
755
+ # change][1].
728
756
  #
729
757
  # Creates an annotation store.
730
758
  #
@@ -902,6 +930,81 @@ module Aws::Omics
902
930
  req.send_request(options)
903
931
  end
904
932
 
933
+ # Create a new configuration.
934
+ #
935
+ # @option params [required, String] :name
936
+ # User-friendly name for the configuration.
937
+ #
938
+ # @option params [String] :description
939
+ # Optional description for the configuration.
940
+ #
941
+ # @option params [required, Types::RunConfigurations] :run_configurations
942
+ # Required run-specific configurations.
943
+ #
944
+ # @option params [Hash<String,String>] :tags
945
+ # Optional tags for the configuration.
946
+ #
947
+ # @option params [required, String] :request_id
948
+ # Optional request idempotency token. If not specified, a universally
949
+ # unique identifier (UUID) will be automatically generated for the
950
+ # request.
951
+ #
952
+ # **A suitable default value is auto-generated.** You should normally
953
+ # not need to pass this option.**
954
+ #
955
+ # @return [Types::CreateConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
956
+ #
957
+ # * {Types::CreateConfigurationResponse#arn #arn} => String
958
+ # * {Types::CreateConfigurationResponse#uuid #uuid} => String
959
+ # * {Types::CreateConfigurationResponse#name #name} => String
960
+ # * {Types::CreateConfigurationResponse#description #description} => String
961
+ # * {Types::CreateConfigurationResponse#run_configurations #run_configurations} => Types::RunConfigurationsResponse
962
+ # * {Types::CreateConfigurationResponse#status #status} => String
963
+ # * {Types::CreateConfigurationResponse#creation_time #creation_time} => Time
964
+ # * {Types::CreateConfigurationResponse#tags #tags} => Hash&lt;String,String&gt;
965
+ #
966
+ # @example Request syntax with placeholder values
967
+ #
968
+ # resp = client.create_configuration({
969
+ # name: "ConfigurationName", # required
970
+ # description: "ConfigurationDescription",
971
+ # run_configurations: { # required
972
+ # vpc_config: {
973
+ # security_group_ids: ["SecurityGroupId"],
974
+ # subnet_ids: ["SubnetId"],
975
+ # },
976
+ # },
977
+ # tags: {
978
+ # "TagKey" => "TagValue",
979
+ # },
980
+ # request_id: "ConfigurationRequestId", # required
981
+ # })
982
+ #
983
+ # @example Response structure
984
+ #
985
+ # resp.arn #=> String
986
+ # resp.uuid #=> String
987
+ # resp.name #=> String
988
+ # resp.description #=> String
989
+ # resp.run_configurations.vpc_config.security_group_ids #=> Array
990
+ # resp.run_configurations.vpc_config.security_group_ids[0] #=> String
991
+ # resp.run_configurations.vpc_config.subnet_ids #=> Array
992
+ # resp.run_configurations.vpc_config.subnet_ids[0] #=> String
993
+ # resp.run_configurations.vpc_config.vpc_id #=> String
994
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED"
995
+ # resp.creation_time #=> Time
996
+ # resp.tags #=> Hash
997
+ # resp.tags["TagKey"] #=> String
998
+ #
999
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateConfiguration AWS API Documentation
1000
+ #
1001
+ # @overload create_configuration(params = {})
1002
+ # @param [Hash] params ({})
1003
+ def create_configuration(params = {}, options = {})
1004
+ req = build_request(:create_configuration, params)
1005
+ req.send_request(options)
1006
+ end
1007
+
905
1008
  # Initiates a multipart read set upload for uploading partitioned source
906
1009
  # files into a sequence store. You can directly import source files from
907
1010
  # an EC2 instance and other local compute, or from an S3 bucket. To
@@ -1455,11 +1558,10 @@ module Aws::Omics
1455
1558
  end
1456
1559
 
1457
1560
  # Amazon Web Services HealthOmics variant stores and annotation stores
1458
- # will no longer be open to new customers starting November 7, 2025. If
1459
- # you would like to use variant stores or annotation stores, sign up
1460
- # prior to that date. Existing customers can continue to use the service
1461
- # as normal. For more information, see [ Amazon Web Services HealthOmics
1462
- # variant store and annotation store availability change][1].
1561
+ # are no longer open to new customers. Existing customers can continue
1562
+ # to use the service as normal. For more information, see [ Amazon Web
1563
+ # Services HealthOmics variant store and annotation store availability
1564
+ # change][1].
1463
1565
  #
1464
1566
  # Creates a variant store.
1465
1567
  #
@@ -1575,10 +1677,19 @@ module Aws::Omics
1575
1677
  # A description for the workflow.
1576
1678
  #
1577
1679
  # @option params [String] :engine
1578
- # The workflow engine for the workflow. This is only required if you
1579
- # have workflow definition files from more than one engine in your zip
1580
- # file. Otherwise, the service can detect the engine automatically from
1581
- # your workflow definition.
1680
+ # The workflow engine for the workflow. By default, Amazon Web Services
1681
+ # HealthOmics detects the engine automatically from your workflow
1682
+ # definition. Provide a value if you have workflow definition files from
1683
+ # more than one engine in your zip file, or to use WDL lenient.
1684
+ #
1685
+ # WDL lenient is designed to handle workflows migrated from Cromwell. It
1686
+ # supports customer Cromwell directives and some non-conformant logic.
1687
+ # For details, see [Implicit type conversion in WDL lenient][1] in the
1688
+ # *Amazon Web Services HealthOmics User Guide*.
1689
+ #
1690
+ #
1691
+ #
1692
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/workflow-wdl-type-conversion.html
1582
1693
  #
1583
1694
  # @option params [String, StringIO, File] :definition_zip
1584
1695
  # A ZIP archive containing the main workflow definition file and
@@ -2031,11 +2142,10 @@ module Aws::Omics
2031
2142
  end
2032
2143
 
2033
2144
  # Amazon Web Services HealthOmics variant stores and annotation stores
2034
- # will no longer be open to new customers starting November 7, 2025. If
2035
- # you would like to use variant stores or annotation stores, sign up
2036
- # prior to that date. Existing customers can continue to use the service
2037
- # as normal. For more information, see [ Amazon Web Services HealthOmics
2038
- # variant store and annotation store availability change][1].
2145
+ # are no longer open to new customers. Existing customers can continue
2146
+ # to use the service as normal. For more information, see [ Amazon Web
2147
+ # Services HealthOmics variant store and annotation store availability
2148
+ # change][1].
2039
2149
  #
2040
2150
  # Deletes an annotation store.
2041
2151
  #
@@ -2113,6 +2223,58 @@ module Aws::Omics
2113
2223
  req.send_request(options)
2114
2224
  end
2115
2225
 
2226
+ # Deletes a run batch resource and its associated metadata. This
2227
+ # operation does not delete the individual workflow runs. To delete the
2228
+ # runs, call `DeleteRunBatch` before calling `DeleteBatch`.
2229
+ #
2230
+ # `DeleteBatch` requires the batch to be in a terminal state:
2231
+ # `PROCESSED`, `FAILED`, `CANCELLED`, or `RUNS_DELETED`. After
2232
+ # `DeleteBatch` completes, the batch metadata is no longer accessible.
2233
+ # You cannot call `GetBatch`, `ListRunsInBatch`, `DeleteRunBatch`, or
2234
+ # `CancelRunBatch` on a deleted batch.
2235
+ #
2236
+ # @option params [required, String] :batch_id
2237
+ # The identifier portion of the run batch ARN.
2238
+ #
2239
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2240
+ #
2241
+ # @example Request syntax with placeholder values
2242
+ #
2243
+ # resp = client.delete_batch({
2244
+ # batch_id: "BatchId", # required
2245
+ # })
2246
+ #
2247
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteBatch AWS API Documentation
2248
+ #
2249
+ # @overload delete_batch(params = {})
2250
+ # @param [Hash] params ({})
2251
+ def delete_batch(params = {}, options = {})
2252
+ req = build_request(:delete_batch, params)
2253
+ req.send_request(options)
2254
+ end
2255
+
2256
+ # Delete an existing configuration.
2257
+ #
2258
+ # @option params [required, String] :name
2259
+ # Configuration name to delete.
2260
+ #
2261
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2262
+ #
2263
+ # @example Request syntax with placeholder values
2264
+ #
2265
+ # resp = client.delete_configuration({
2266
+ # name: "ConfigurationName", # required
2267
+ # })
2268
+ #
2269
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteConfiguration AWS API Documentation
2270
+ #
2271
+ # @overload delete_configuration(params = {})
2272
+ # @param [Hash] params ({})
2273
+ def delete_configuration(params = {}, options = {})
2274
+ req = build_request(:delete_configuration, params)
2275
+ req.send_request(options)
2276
+ end
2277
+
2116
2278
  # Deletes a reference genome and returns a response with no body if the
2117
2279
  # operation is successful. The read set associated with the reference
2118
2280
  # genome must first be deleted before deleting the reference genome.
@@ -2217,6 +2379,35 @@ module Aws::Omics
2217
2379
  req.send_request(options)
2218
2380
  end
2219
2381
 
2382
+ # Deletes the individual workflow runs within a batch. This operation is
2383
+ # separate from `DeleteBatch`, which removes the batch metadata.
2384
+ #
2385
+ # Delete is only allowed on batches in `PROCESSED` or `CANCELLED` state.
2386
+ # Delete operations are non-atomic and may be partially successful. Use
2387
+ # `GetBatch` to review `successfulDeleteSubmissionCount` and
2388
+ # `failedDeleteSubmissionCount` in the `submissionSummary`. Only one
2389
+ # cancel or delete operation per batch is allowed at a time.
2390
+ #
2391
+ # @option params [required, String] :batch_id
2392
+ # The identifier portion of the run batch ARN.
2393
+ #
2394
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2395
+ #
2396
+ # @example Request syntax with placeholder values
2397
+ #
2398
+ # resp = client.delete_run_batch({
2399
+ # batch_id: "BatchId", # required
2400
+ # })
2401
+ #
2402
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteRunBatch AWS API Documentation
2403
+ #
2404
+ # @overload delete_run_batch(params = {})
2405
+ # @param [Hash] params ({})
2406
+ def delete_run_batch(params = {}, options = {})
2407
+ req = build_request(:delete_run_batch, params)
2408
+ req.send_request(options)
2409
+ end
2410
+
2220
2411
  # Deletes a run cache and returns a response with no body if the
2221
2412
  # operation is successful. This action removes the cache metadata stored
2222
2413
  # in the service account, but does not delete the data in Amazon S3. You
@@ -2369,11 +2560,10 @@ module Aws::Omics
2369
2560
  end
2370
2561
 
2371
2562
  # Amazon Web Services HealthOmics variant stores and annotation stores
2372
- # will no longer be open to new customers starting November 7, 2025. If
2373
- # you would like to use variant stores or annotation stores, sign up
2374
- # prior to that date. Existing customers can continue to use the service
2375
- # as normal. For more information, see [ Amazon Web Services HealthOmics
2376
- # variant store and annotation store availability change][1].
2563
+ # are no longer open to new customers. Existing customers can continue
2564
+ # to use the service as normal. For more information, see [ Amazon Web
2565
+ # Services HealthOmics variant store and annotation store availability
2566
+ # change][1].
2377
2567
  #
2378
2568
  # Deletes a variant store.
2379
2569
  #
@@ -2476,11 +2666,10 @@ module Aws::Omics
2476
2666
  end
2477
2667
 
2478
2668
  # Amazon Web Services HealthOmics variant stores and annotation stores
2479
- # will no longer be open to new customers starting November 7, 2025. If
2480
- # you would like to use variant stores or annotation stores, sign up
2481
- # prior to that date. Existing customers can continue to use the service
2482
- # as normal. For more information, see [ Amazon Web Services HealthOmics
2483
- # variant store and annotation store availability change][1].
2669
+ # are no longer open to new customers. Existing customers can continue
2670
+ # to use the service as normal. For more information, see [ Amazon Web
2671
+ # Services HealthOmics variant store and annotation store availability
2672
+ # change][1].
2484
2673
  #
2485
2674
  # Gets information about an annotation import job.
2486
2675
  #
@@ -2557,11 +2746,10 @@ module Aws::Omics
2557
2746
  end
2558
2747
 
2559
2748
  # Amazon Web Services HealthOmics variant stores and annotation stores
2560
- # will no longer be open to new customers starting November 7, 2025. If
2561
- # you would like to use variant stores or annotation stores, sign up
2562
- # prior to that date. Existing customers can continue to use the service
2563
- # as normal. For more information, see [ Amazon Web Services HealthOmics
2564
- # variant store and annotation store availability change][1].
2749
+ # are no longer open to new customers. Existing customers can continue
2750
+ # to use the service as normal. For more information, see [ Amazon Web
2751
+ # Services HealthOmics variant store and annotation store availability
2752
+ # change][1].
2565
2753
  #
2566
2754
  # Gets information about an annotation store.
2567
2755
  #
@@ -2706,6 +2894,141 @@ module Aws::Omics
2706
2894
  req.send_request(options)
2707
2895
  end
2708
2896
 
2897
+ # Retrieves details and current status for a specific run batch,
2898
+ # including submission progress and run execution counts.
2899
+ #
2900
+ # @option params [required, String] :batch_id
2901
+ # The identifier portion of the run batch ARN.
2902
+ #
2903
+ # @return [Types::GetBatchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2904
+ #
2905
+ # * {Types::GetBatchResponse#id #id} => String
2906
+ # * {Types::GetBatchResponse#arn #arn} => String
2907
+ # * {Types::GetBatchResponse#uuid #uuid} => String
2908
+ # * {Types::GetBatchResponse#name #name} => String
2909
+ # * {Types::GetBatchResponse#status #status} => String
2910
+ # * {Types::GetBatchResponse#tags #tags} => Hash&lt;String,String&gt;
2911
+ # * {Types::GetBatchResponse#total_runs #total_runs} => Integer
2912
+ # * {Types::GetBatchResponse#default_run_setting #default_run_setting} => Types::DefaultRunSetting
2913
+ # * {Types::GetBatchResponse#submission_summary #submission_summary} => Types::SubmissionSummary
2914
+ # * {Types::GetBatchResponse#run_summary #run_summary} => Types::RunSummary
2915
+ # * {Types::GetBatchResponse#creation_time #creation_time} => Time
2916
+ # * {Types::GetBatchResponse#submitted_time #submitted_time} => Time
2917
+ # * {Types::GetBatchResponse#processed_time #processed_time} => Time
2918
+ # * {Types::GetBatchResponse#failed_time #failed_time} => Time
2919
+ # * {Types::GetBatchResponse#failure_reason #failure_reason} => String
2920
+ #
2921
+ # @example Request syntax with placeholder values
2922
+ #
2923
+ # resp = client.get_batch({
2924
+ # batch_id: "BatchId", # required
2925
+ # })
2926
+ #
2927
+ # @example Response structure
2928
+ #
2929
+ # resp.id #=> String
2930
+ # resp.arn #=> String
2931
+ # resp.uuid #=> String
2932
+ # resp.name #=> String
2933
+ # resp.status #=> String, one of "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETED"
2934
+ # resp.tags #=> Hash
2935
+ # resp.tags["TagKey"] #=> String
2936
+ # resp.total_runs #=> Integer
2937
+ # resp.default_run_setting.workflow_id #=> String
2938
+ # resp.default_run_setting.workflow_type #=> String, one of "PRIVATE", "READY2RUN"
2939
+ # resp.default_run_setting.role_arn #=> String
2940
+ # resp.default_run_setting.name #=> String
2941
+ # resp.default_run_setting.cache_id #=> String
2942
+ # resp.default_run_setting.cache_behavior #=> String, one of "CACHE_ON_FAILURE", "CACHE_ALWAYS"
2943
+ # resp.default_run_setting.run_group_id #=> String
2944
+ # resp.default_run_setting.priority #=> Integer
2945
+ # resp.default_run_setting.storage_capacity #=> Integer
2946
+ # resp.default_run_setting.output_uri #=> String
2947
+ # resp.default_run_setting.log_level #=> String, one of "OFF", "FATAL", "ERROR", "ALL"
2948
+ # resp.default_run_setting.run_tags #=> Hash
2949
+ # resp.default_run_setting.run_tags["TagKey"] #=> String
2950
+ # resp.default_run_setting.retention_mode #=> String, one of "RETAIN", "REMOVE"
2951
+ # resp.default_run_setting.storage_type #=> String, one of "STATIC", "DYNAMIC"
2952
+ # resp.default_run_setting.workflow_owner_id #=> String
2953
+ # resp.default_run_setting.output_bucket_owner_id #=> String
2954
+ # resp.default_run_setting.workflow_version_name #=> String
2955
+ # resp.submission_summary.successful_start_submission_count #=> Integer
2956
+ # resp.submission_summary.failed_start_submission_count #=> Integer
2957
+ # resp.submission_summary.pending_start_submission_count #=> Integer
2958
+ # resp.submission_summary.successful_cancel_submission_count #=> Integer
2959
+ # resp.submission_summary.failed_cancel_submission_count #=> Integer
2960
+ # resp.submission_summary.successful_delete_submission_count #=> Integer
2961
+ # resp.submission_summary.failed_delete_submission_count #=> Integer
2962
+ # resp.run_summary.pending_run_count #=> Integer
2963
+ # resp.run_summary.starting_run_count #=> Integer
2964
+ # resp.run_summary.running_run_count #=> Integer
2965
+ # resp.run_summary.stopping_run_count #=> Integer
2966
+ # resp.run_summary.completed_run_count #=> Integer
2967
+ # resp.run_summary.deleted_run_count #=> Integer
2968
+ # resp.run_summary.failed_run_count #=> Integer
2969
+ # resp.run_summary.cancelled_run_count #=> Integer
2970
+ # resp.creation_time #=> Time
2971
+ # resp.submitted_time #=> Time
2972
+ # resp.processed_time #=> Time
2973
+ # resp.failed_time #=> Time
2974
+ # resp.failure_reason #=> String
2975
+ #
2976
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetBatch AWS API Documentation
2977
+ #
2978
+ # @overload get_batch(params = {})
2979
+ # @param [Hash] params ({})
2980
+ def get_batch(params = {}, options = {})
2981
+ req = build_request(:get_batch, params)
2982
+ req.send_request(options)
2983
+ end
2984
+
2985
+ # Retrieve configuration details for specified name.
2986
+ #
2987
+ # @option params [required, String] :name
2988
+ # Configuration name to retrieve.
2989
+ #
2990
+ # @return [Types::GetConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2991
+ #
2992
+ # * {Types::GetConfigurationResponse#arn #arn} => String
2993
+ # * {Types::GetConfigurationResponse#uuid #uuid} => String
2994
+ # * {Types::GetConfigurationResponse#name #name} => String
2995
+ # * {Types::GetConfigurationResponse#description #description} => String
2996
+ # * {Types::GetConfigurationResponse#run_configurations #run_configurations} => Types::RunConfigurationsResponse
2997
+ # * {Types::GetConfigurationResponse#status #status} => String
2998
+ # * {Types::GetConfigurationResponse#creation_time #creation_time} => Time
2999
+ # * {Types::GetConfigurationResponse#tags #tags} => Hash&lt;String,String&gt;
3000
+ #
3001
+ # @example Request syntax with placeholder values
3002
+ #
3003
+ # resp = client.get_configuration({
3004
+ # name: "ConfigurationName", # required
3005
+ # })
3006
+ #
3007
+ # @example Response structure
3008
+ #
3009
+ # resp.arn #=> String
3010
+ # resp.uuid #=> String
3011
+ # resp.name #=> String
3012
+ # resp.description #=> String
3013
+ # resp.run_configurations.vpc_config.security_group_ids #=> Array
3014
+ # resp.run_configurations.vpc_config.security_group_ids[0] #=> String
3015
+ # resp.run_configurations.vpc_config.subnet_ids #=> Array
3016
+ # resp.run_configurations.vpc_config.subnet_ids[0] #=> String
3017
+ # resp.run_configurations.vpc_config.vpc_id #=> String
3018
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED"
3019
+ # resp.creation_time #=> Time
3020
+ # resp.tags #=> Hash
3021
+ # resp.tags["TagKey"] #=> String
3022
+ #
3023
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetConfiguration AWS API Documentation
3024
+ #
3025
+ # @overload get_configuration(params = {})
3026
+ # @param [Hash] params ({})
3027
+ def get_configuration(params = {}, options = {})
3028
+ req = build_request(:get_configuration, params)
3029
+ req.send_request(options)
3030
+ end
3031
+
2709
3032
  # Retrieves detailed information from parts of a read set and returns
2710
3033
  # the read set in the same format that it was uploaded. You must have
2711
3034
  # read sets uploaded to your sequence store in order to run this
@@ -3254,6 +3577,7 @@ module Aws::Omics
3254
3577
  # * {Types::GetRunResponse#role_arn #role_arn} => String
3255
3578
  # * {Types::GetRunResponse#name #name} => String
3256
3579
  # * {Types::GetRunResponse#run_group_id #run_group_id} => String
3580
+ # * {Types::GetRunResponse#batch_id #batch_id} => String
3257
3581
  # * {Types::GetRunResponse#priority #priority} => Integer
3258
3582
  # * {Types::GetRunResponse#definition #definition} => String
3259
3583
  # * {Types::GetRunResponse#digest #digest} => String
@@ -3278,6 +3602,9 @@ module Aws::Omics
3278
3602
  # * {Types::GetRunResponse#workflow_owner_id #workflow_owner_id} => String
3279
3603
  # * {Types::GetRunResponse#workflow_version_name #workflow_version_name} => String
3280
3604
  # * {Types::GetRunResponse#workflow_uuid #workflow_uuid} => String
3605
+ # * {Types::GetRunResponse#networking_mode #networking_mode} => String
3606
+ # * {Types::GetRunResponse#configuration #configuration} => Types::ConfigurationDetails
3607
+ # * {Types::GetRunResponse#vpc_config #vpc_config} => Types::VpcConfigResponse
3281
3608
  #
3282
3609
  # @example Request syntax with placeholder values
3283
3610
  #
@@ -3300,6 +3627,7 @@ module Aws::Omics
3300
3627
  # resp.role_arn #=> String
3301
3628
  # resp.name #=> String
3302
3629
  # resp.run_group_id #=> String
3630
+ # resp.batch_id #=> String
3303
3631
  # resp.priority #=> Integer
3304
3632
  # resp.definition #=> String
3305
3633
  # resp.digest #=> String
@@ -3326,6 +3654,15 @@ module Aws::Omics
3326
3654
  # resp.workflow_owner_id #=> String
3327
3655
  # resp.workflow_version_name #=> String
3328
3656
  # resp.workflow_uuid #=> String
3657
+ # resp.networking_mode #=> String, one of "RESTRICTED", "VPC"
3658
+ # resp.configuration.name #=> String
3659
+ # resp.configuration.arn #=> String
3660
+ # resp.configuration.uuid #=> String
3661
+ # resp.vpc_config.security_group_ids #=> Array
3662
+ # resp.vpc_config.security_group_ids[0] #=> String
3663
+ # resp.vpc_config.subnet_ids #=> Array
3664
+ # resp.vpc_config.subnet_ids[0] #=> String
3665
+ # resp.vpc_config.vpc_id #=> String
3329
3666
  #
3330
3667
  #
3331
3668
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -3644,11 +3981,10 @@ module Aws::Omics
3644
3981
  end
3645
3982
 
3646
3983
  # Amazon Web Services HealthOmics variant stores and annotation stores
3647
- # will no longer be open to new customers starting November 7, 2025. If
3648
- # you would like to use variant stores or annotation stores, sign up
3649
- # prior to that date. Existing customers can continue to use the service
3650
- # as normal. For more information, see [ Amazon Web Services HealthOmics
3651
- # variant store and annotation store availability change][1].
3984
+ # are no longer open to new customers. Existing customers can continue
3985
+ # to use the service as normal. For more information, see [ Amazon Web
3986
+ # Services HealthOmics variant store and annotation store availability
3987
+ # change][1].
3652
3988
  #
3653
3989
  # Gets information about a variant import job.
3654
3990
  #
@@ -3712,11 +4048,10 @@ module Aws::Omics
3712
4048
  end
3713
4049
 
3714
4050
  # Amazon Web Services HealthOmics variant stores and annotation stores
3715
- # will no longer be open to new customers starting November 7, 2025. If
3716
- # you would like to use variant stores or annotation stores, sign up
3717
- # prior to that date. Existing customers can continue to use the service
3718
- # as normal. For more information, see [ Amazon Web Services HealthOmics
3719
- # variant store and annotation store availability change][1].
4051
+ # are no longer open to new customers. Existing customers can continue
4052
+ # to use the service as normal. For more information, see [ Amazon Web
4053
+ # Services HealthOmics variant store and annotation store availability
4054
+ # change][1].
3720
4055
  #
3721
4056
  # Gets information about a variant store.
3722
4057
  #
@@ -4015,11 +4350,10 @@ module Aws::Omics
4015
4350
  end
4016
4351
 
4017
4352
  # Amazon Web Services HealthOmics variant stores and annotation stores
4018
- # will no longer be open to new customers starting November 7, 2025. If
4019
- # you would like to use variant stores or annotation stores, sign up
4020
- # prior to that date. Existing customers can continue to use the service
4021
- # as normal. For more information, see [ Amazon Web Services HealthOmics
4022
- # variant store and annotation store availability change][1].
4353
+ # are no longer open to new customers. Existing customers can continue
4354
+ # to use the service as normal. For more information, see [ Amazon Web
4355
+ # Services HealthOmics variant store and annotation store availability
4356
+ # change][1].
4023
4357
  #
4024
4358
  # Retrieves a list of annotation import jobs.
4025
4359
  #
@@ -4144,11 +4478,10 @@ module Aws::Omics
4144
4478
  end
4145
4479
 
4146
4480
  # Amazon Web Services HealthOmics variant stores and annotation stores
4147
- # will no longer be open to new customers starting November 7, 2025. If
4148
- # you would like to use variant stores or annotation stores, sign up
4149
- # prior to that date. Existing customers can continue to use the service
4150
- # as normal. For more information, see [ Amazon Web Services HealthOmics
4151
- # variant store and annotation store availability change][1].
4481
+ # are no longer open to new customers. Existing customers can continue
4482
+ # to use the service as normal. For more information, see [ Amazon Web
4483
+ # Services HealthOmics variant store and annotation store availability
4484
+ # change][1].
4152
4485
  #
4153
4486
  # Retrieves a list of annotation stores.
4154
4487
  #
@@ -4214,6 +4547,104 @@ module Aws::Omics
4214
4547
  req.send_request(options)
4215
4548
  end
4216
4549
 
4550
+ # Returns a list of run batches in your account, with optional filtering
4551
+ # by status, name, or run group. Results are paginated. Only one filter
4552
+ # per call is supported.
4553
+ #
4554
+ # @option params [Integer] :max_items
4555
+ # The maximum number of batches to return. If not specified, defaults to
4556
+ # 100.
4557
+ #
4558
+ # @option params [String] :starting_token
4559
+ # A pagination token returned from a prior `ListBatch` call.
4560
+ #
4561
+ # @option params [String] :status
4562
+ # Filter batches by status.
4563
+ #
4564
+ # @option params [String] :name
4565
+ # Filter batches by name.
4566
+ #
4567
+ # @option params [String] :run_group_id
4568
+ # Filter batches by run group ID.
4569
+ #
4570
+ # @return [Types::ListBatchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4571
+ #
4572
+ # * {Types::ListBatchResponse#items #items} => Array&lt;Types::BatchListItem&gt;
4573
+ # * {Types::ListBatchResponse#next_token #next_token} => String
4574
+ #
4575
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4576
+ #
4577
+ # @example Request syntax with placeholder values
4578
+ #
4579
+ # resp = client.list_batch({
4580
+ # max_items: 1,
4581
+ # starting_token: "ListToken",
4582
+ # status: "PENDING", # accepts PENDING, SUBMITTING, INPROGRESS, STOPPING, CANCELLED, FAILED, PROCESSED, RUNS_DELETING, RUNS_DELETED
4583
+ # name: "BatchName",
4584
+ # run_group_id: "RunGroupId",
4585
+ # })
4586
+ #
4587
+ # @example Response structure
4588
+ #
4589
+ # resp.items #=> Array
4590
+ # resp.items[0].id #=> String
4591
+ # resp.items[0].name #=> String
4592
+ # resp.items[0].status #=> String, one of "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETED"
4593
+ # resp.items[0].created_at #=> Time
4594
+ # resp.items[0].total_runs #=> Integer
4595
+ # resp.items[0].workflow_id #=> String
4596
+ # resp.next_token #=> String
4597
+ #
4598
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListBatch AWS API Documentation
4599
+ #
4600
+ # @overload list_batch(params = {})
4601
+ # @param [Hash] params ({})
4602
+ def list_batch(params = {}, options = {})
4603
+ req = build_request(:list_batch, params)
4604
+ req.send_request(options)
4605
+ end
4606
+
4607
+ # List all configurations for the account.
4608
+ #
4609
+ # @option params [Integer] :max_results
4610
+ # Maximum number of results to return.
4611
+ #
4612
+ # @option params [String] :starting_token
4613
+ # Pagination token for retrieving next page of results.
4614
+ #
4615
+ # @return [Types::ListConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4616
+ #
4617
+ # * {Types::ListConfigurationsResponse#items #items} => Array&lt;Types::ConfigurationListItem&gt;
4618
+ # * {Types::ListConfigurationsResponse#next_token #next_token} => String
4619
+ #
4620
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4621
+ #
4622
+ # @example Request syntax with placeholder values
4623
+ #
4624
+ # resp = client.list_configurations({
4625
+ # max_results: 1,
4626
+ # starting_token: "ConfigurationListToken",
4627
+ # })
4628
+ #
4629
+ # @example Response structure
4630
+ #
4631
+ # resp.items #=> Array
4632
+ # resp.items[0].arn #=> String
4633
+ # resp.items[0].name #=> String
4634
+ # resp.items[0].description #=> String
4635
+ # resp.items[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED"
4636
+ # resp.items[0].creation_time #=> Time
4637
+ # resp.next_token #=> String
4638
+ #
4639
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListConfigurations AWS API Documentation
4640
+ #
4641
+ # @overload list_configurations(params = {})
4642
+ # @param [Hash] params ({})
4643
+ def list_configurations(params = {}, options = {})
4644
+ req = build_request(:list_configurations, params)
4645
+ req.send_request(options)
4646
+ end
4647
+
4217
4648
  # Lists in-progress multipart read set uploads for a sequence store and
4218
4649
  # returns it in a JSON formatted output. Multipart read set uploads are
4219
4650
  # initiated by the `CreateMultipartReadSetUploads` API operation. This
@@ -4937,6 +5368,9 @@ module Aws::Omics
4937
5368
  # @option params [String] :run_group_id
4938
5369
  # Filter the list by run group ID.
4939
5370
  #
5371
+ # @option params [String] :batch_id
5372
+ # Filter by batch ID.
5373
+ #
4940
5374
  # @option params [String] :starting_token
4941
5375
  # Specify the pagination token from a previous request to retrieve the
4942
5376
  # next page of results.
@@ -4959,6 +5393,7 @@ module Aws::Omics
4959
5393
  # resp = client.list_runs({
4960
5394
  # name: "RunName",
4961
5395
  # run_group_id: "RunGroupId",
5396
+ # batch_id: "BatchId",
4962
5397
  # starting_token: "RunListToken",
4963
5398
  # max_results: 1,
4964
5399
  # status: "PENDING", # accepts PENDING, STARTING, RUNNING, STOPPING, COMPLETED, DELETED, CANCELLED, FAILED
@@ -4971,6 +5406,7 @@ module Aws::Omics
4971
5406
  # resp.items[0].id #=> String
4972
5407
  # resp.items[0].status #=> String, one of "PENDING", "STARTING", "RUNNING", "STOPPING", "COMPLETED", "DELETED", "CANCELLED", "FAILED"
4973
5408
  # resp.items[0].workflow_id #=> String
5409
+ # resp.items[0].batch_id #=> String
4974
5410
  # resp.items[0].name #=> String
4975
5411
  # resp.items[0].priority #=> Integer
4976
5412
  # resp.items[0].storage_capacity #=> Integer
@@ -4990,6 +5426,68 @@ module Aws::Omics
4990
5426
  req.send_request(options)
4991
5427
  end
4992
5428
 
5429
+ # Returns a paginated list of individual workflow runs within a specific
5430
+ # batch. Use this operation to map each `runSettingId` to its
5431
+ # HealthOmics-generated `runId`, and to check the submission status of
5432
+ # each run. Only one filter per call is supported.
5433
+ #
5434
+ # @option params [required, String] :batch_id
5435
+ # The identifier portion of the run batch ARN.
5436
+ #
5437
+ # @option params [Integer] :max_items
5438
+ # The maximum number of runs to return.
5439
+ #
5440
+ # @option params [String] :starting_token
5441
+ # A pagination token returned from a prior `ListRunsInBatch` call.
5442
+ #
5443
+ # @option params [String] :submission_status
5444
+ # Filter runs by submission status.
5445
+ #
5446
+ # @option params [String] :run_setting_id
5447
+ # Filter runs by the customer-provided run setting ID.
5448
+ #
5449
+ # @option params [String] :run_id
5450
+ # Filter runs by the HealthOmics-generated run ID.
5451
+ #
5452
+ # @return [Types::ListRunsInBatchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5453
+ #
5454
+ # * {Types::ListRunsInBatchResponse#runs #runs} => Array&lt;Types::RunBatchListItem&gt;
5455
+ # * {Types::ListRunsInBatchResponse#next_token #next_token} => String
5456
+ #
5457
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
5458
+ #
5459
+ # @example Request syntax with placeholder values
5460
+ #
5461
+ # resp = client.list_runs_in_batch({
5462
+ # batch_id: "BatchId", # required
5463
+ # max_items: 1,
5464
+ # starting_token: "ListToken",
5465
+ # submission_status: "SUCCESS", # accepts SUCCESS, FAILED, CANCEL_SUCCESS, CANCEL_FAILED, DELETE_SUCCESS, DELETE_FAILED
5466
+ # run_setting_id: "String",
5467
+ # run_id: "String",
5468
+ # })
5469
+ #
5470
+ # @example Response structure
5471
+ #
5472
+ # resp.runs #=> Array
5473
+ # resp.runs[0].run_setting_id #=> String
5474
+ # resp.runs[0].run_id #=> String
5475
+ # resp.runs[0].run_internal_uuid #=> String
5476
+ # resp.runs[0].run_arn #=> String
5477
+ # resp.runs[0].submission_status #=> String, one of "SUCCESS", "FAILED", "CANCEL_SUCCESS", "CANCEL_FAILED", "DELETE_SUCCESS", "DELETE_FAILED"
5478
+ # resp.runs[0].submission_failure_reason #=> String
5479
+ # resp.runs[0].submission_failure_message #=> String
5480
+ # resp.next_token #=> String
5481
+ #
5482
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListRunsInBatch AWS API Documentation
5483
+ #
5484
+ # @overload list_runs_in_batch(params = {})
5485
+ # @param [Hash] params ({})
5486
+ def list_runs_in_batch(params = {}, options = {})
5487
+ req = build_request(:list_runs_in_batch, params)
5488
+ req.send_request(options)
5489
+ end
5490
+
4993
5491
  # Retrieves a list of sequence stores and returns each sequence store's
4994
5492
  # metadata.
4995
5493
  #
@@ -5150,11 +5648,10 @@ module Aws::Omics
5150
5648
  end
5151
5649
 
5152
5650
  # Amazon Web Services HealthOmics variant stores and annotation stores
5153
- # will no longer be open to new customers starting November 7, 2025. If
5154
- # you would like to use variant stores or annotation stores, sign up
5155
- # prior to that date. Existing customers can continue to use the service
5156
- # as normal. For more information, see [ Amazon Web Services HealthOmics
5157
- # variant store and annotation store availability change][1].
5651
+ # are no longer open to new customers. Existing customers can continue
5652
+ # to use the service as normal. For more information, see [ Amazon Web
5653
+ # Services HealthOmics variant store and annotation store availability
5654
+ # change][1].
5158
5655
  #
5159
5656
  # Retrieves a list of variant import jobs.
5160
5657
  #
@@ -5219,11 +5716,10 @@ module Aws::Omics
5219
5716
  end
5220
5717
 
5221
5718
  # Amazon Web Services HealthOmics variant stores and annotation stores
5222
- # will no longer be open to new customers starting November 7, 2025. If
5223
- # you would like to use variant stores or annotation stores, sign up
5224
- # prior to that date. Existing customers can continue to use the service
5225
- # as normal. For more information, see [ Amazon Web Services HealthOmics
5226
- # variant store and annotation store availability change][1].
5719
+ # are no longer open to new customers. Existing customers can continue
5720
+ # to use the service as normal. For more information, see [ Amazon Web
5721
+ # Services HealthOmics variant store and annotation store availability
5722
+ # change][1].
5227
5723
  #
5228
5724
  # Retrieves a list of variant stores.
5229
5725
  #
@@ -5455,11 +5951,10 @@ module Aws::Omics
5455
5951
  end
5456
5952
 
5457
5953
  # Amazon Web Services HealthOmics variant stores and annotation stores
5458
- # will no longer be open to new customers starting November 7, 2025. If
5459
- # you would like to use variant stores or annotation stores, sign up
5460
- # prior to that date. Existing customers can continue to use the service
5461
- # as normal. For more information, see [ Amazon Web Services HealthOmics
5462
- # variant store and annotation store availability change][1].
5954
+ # are no longer open to new customers. Existing customers can continue
5955
+ # to use the service as normal. For more information, see [ Amazon Web
5956
+ # Services HealthOmics variant store and annotation store availability
5957
+ # change][1].
5463
5958
  #
5464
5959
  # Starts an annotation import job.
5465
5960
  #
@@ -6005,6 +6500,13 @@ module Aws::Omics
6005
6500
  #
6006
6501
  # [1]: https://docs.aws.amazon.com/omics/latest/dev/workflow-versions.html
6007
6502
  #
6503
+ # @option params [String] :networking_mode
6504
+ # Optional configuration for run networking behavior. If not specified,
6505
+ # this will default to RESTRICTED.
6506
+ #
6507
+ # @option params [String] :configuration_name
6508
+ # Optional configuration name to use for the workflow run.
6509
+ #
6008
6510
  # @return [Types::StartRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6009
6511
  #
6010
6512
  # * {Types::StartRunResponse#arn #arn} => String
@@ -6013,6 +6515,8 @@ module Aws::Omics
6013
6515
  # * {Types::StartRunResponse#tags #tags} => Hash&lt;String,String&gt;
6014
6516
  # * {Types::StartRunResponse#uuid #uuid} => String
6015
6517
  # * {Types::StartRunResponse#run_output_uri #run_output_uri} => String
6518
+ # * {Types::StartRunResponse#configuration #configuration} => Types::ConfigurationDetails
6519
+ # * {Types::StartRunResponse#networking_mode #networking_mode} => String
6016
6520
  #
6017
6521
  # @example Request syntax with placeholder values
6018
6522
  #
@@ -6039,6 +6543,8 @@ module Aws::Omics
6039
6543
  # storage_type: "STATIC", # accepts STATIC, DYNAMIC
6040
6544
  # workflow_owner_id: "WorkflowOwnerId",
6041
6545
  # workflow_version_name: "WorkflowVersionName",
6546
+ # networking_mode: "RESTRICTED", # accepts RESTRICTED, VPC
6547
+ # configuration_name: "ConfigurationName",
6042
6548
  # })
6043
6549
  #
6044
6550
  # @example Response structure
@@ -6050,6 +6556,10 @@ module Aws::Omics
6050
6556
  # resp.tags["TagKey"] #=> String
6051
6557
  # resp.uuid #=> String
6052
6558
  # resp.run_output_uri #=> String
6559
+ # resp.configuration.name #=> String
6560
+ # resp.configuration.arn #=> String
6561
+ # resp.configuration.uuid #=> String
6562
+ # resp.networking_mode #=> String
6053
6563
  #
6054
6564
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRun AWS API Documentation
6055
6565
  #
@@ -6060,12 +6570,121 @@ module Aws::Omics
6060
6570
  req.send_request(options)
6061
6571
  end
6062
6572
 
6573
+ # Starts a batch of workflow runs. You can group up to 100,000 runs into
6574
+ # a single batch that share a common configuration defined in
6575
+ # `defaultRunSetting`. Per-run overrides can be provided either inline
6576
+ # via `inlineSettings` (up to 100 runs) or via a JSON file stored in
6577
+ # Amazon S3 via `s3UriSettings` (up to 100,000 runs).
6578
+ #
6579
+ # `StartRunBatch` validates common fields synchronously and returns
6580
+ # immediately with a batch ID and status `PENDING`. Runs are submitted
6581
+ # gradually and asynchronously at a rate governed by your `StartRun`
6582
+ # throughput quota.
6583
+ #
6584
+ # @option params [String] :batch_name
6585
+ # An optional user-friendly name for the run batch.
6586
+ #
6587
+ # @option params [required, String] :request_id
6588
+ # A client token used to deduplicate retry requests and prevent
6589
+ # duplicate batches from being created.
6590
+ #
6591
+ # **A suitable default value is auto-generated.** You should normally
6592
+ # not need to pass this option.**
6593
+ #
6594
+ # @option params [Hash<String,String>] :tags
6595
+ # AWS tags to associate with the batch resource. These tags are not
6596
+ # inherited by individual runs. To tag individual runs, use
6597
+ # `defaultRunSetting.runTags`.
6598
+ #
6599
+ # @option params [required, Types::DefaultRunSetting] :default_run_setting
6600
+ # Shared configuration applied to all runs in the batch. See
6601
+ # `DefaultRunSetting`.
6602
+ #
6603
+ # @option params [required, Types::BatchRunSettings] :batch_run_settings
6604
+ # The individual run configurations. Specify exactly one of
6605
+ # `inlineSettings` or `s3UriSettings`. See `BatchRunSettings`.
6606
+ #
6607
+ # @return [Types::StartRunBatchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6608
+ #
6609
+ # * {Types::StartRunBatchResponse#id #id} => String
6610
+ # * {Types::StartRunBatchResponse#arn #arn} => String
6611
+ # * {Types::StartRunBatchResponse#status #status} => String
6612
+ # * {Types::StartRunBatchResponse#uuid #uuid} => String
6613
+ # * {Types::StartRunBatchResponse#tags #tags} => Hash&lt;String,String&gt;
6614
+ #
6615
+ # @example Request syntax with placeholder values
6616
+ #
6617
+ # resp = client.start_run_batch({
6618
+ # batch_name: "BatchName",
6619
+ # request_id: "BatchRequestId", # required
6620
+ # tags: {
6621
+ # "TagKey" => "TagValue",
6622
+ # },
6623
+ # default_run_setting: { # required
6624
+ # workflow_id: "WorkflowId", # required
6625
+ # workflow_type: "PRIVATE", # accepts PRIVATE, READY2RUN
6626
+ # role_arn: "RunRoleArn", # required
6627
+ # name: "RunName",
6628
+ # cache_id: "NumericIdInArn",
6629
+ # cache_behavior: "CACHE_ON_FAILURE", # accepts CACHE_ON_FAILURE, CACHE_ALWAYS
6630
+ # run_group_id: "RunGroupId",
6631
+ # priority: 1,
6632
+ # parameters: {
6633
+ # },
6634
+ # storage_capacity: 1,
6635
+ # output_uri: "RunOutputUri",
6636
+ # log_level: "OFF", # accepts OFF, FATAL, ERROR, ALL
6637
+ # run_tags: {
6638
+ # "TagKey" => "TagValue",
6639
+ # },
6640
+ # retention_mode: "RETAIN", # accepts RETAIN, REMOVE
6641
+ # storage_type: "STATIC", # accepts STATIC, DYNAMIC
6642
+ # workflow_owner_id: "WorkflowOwnerId",
6643
+ # output_bucket_owner_id: "AwsAccountId",
6644
+ # workflow_version_name: "WorkflowVersionName",
6645
+ # },
6646
+ # batch_run_settings: { # required
6647
+ # inline_settings: [
6648
+ # {
6649
+ # run_setting_id: "RunSettingId", # required
6650
+ # name: "RunName",
6651
+ # output_uri: "RunOutputUri",
6652
+ # priority: 1,
6653
+ # parameters: {
6654
+ # },
6655
+ # output_bucket_owner_id: "AwsAccountId",
6656
+ # run_tags: {
6657
+ # "TagKey" => "TagValue",
6658
+ # },
6659
+ # },
6660
+ # ],
6661
+ # s3_uri_settings: "S3UriSettings",
6662
+ # },
6663
+ # })
6664
+ #
6665
+ # @example Response structure
6666
+ #
6667
+ # resp.id #=> String
6668
+ # resp.arn #=> String
6669
+ # resp.status #=> String, one of "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETED"
6670
+ # resp.uuid #=> String
6671
+ # resp.tags #=> Hash
6672
+ # resp.tags["TagKey"] #=> String
6673
+ #
6674
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRunBatch AWS API Documentation
6675
+ #
6676
+ # @overload start_run_batch(params = {})
6677
+ # @param [Hash] params ({})
6678
+ def start_run_batch(params = {}, options = {})
6679
+ req = build_request(:start_run_batch, params)
6680
+ req.send_request(options)
6681
+ end
6682
+
6063
6683
  # Amazon Web Services HealthOmics variant stores and annotation stores
6064
- # will no longer be open to new customers starting November 7, 2025. If
6065
- # you would like to use variant stores or annotation stores, sign up
6066
- # prior to that date. Existing customers can continue to use the service
6067
- # as normal. For more information, see [ Amazon Web Services HealthOmics
6068
- # variant store and annotation store availability change][1].
6684
+ # are no longer open to new customers. Existing customers can continue
6685
+ # to use the service as normal. For more information, see [ Amazon Web
6686
+ # Services HealthOmics variant store and annotation store availability
6687
+ # change][1].
6069
6688
  #
6070
6689
  # Starts a variant import job.
6071
6690
  #
@@ -6176,11 +6795,10 @@ module Aws::Omics
6176
6795
  end
6177
6796
 
6178
6797
  # Amazon Web Services HealthOmics variant stores and annotation stores
6179
- # will no longer be open to new customers starting November 7, 2025. If
6180
- # you would like to use variant stores or annotation stores, sign up
6181
- # prior to that date. Existing customers can continue to use the service
6182
- # as normal. For more information, see [ Amazon Web Services HealthOmics
6183
- # variant store and annotation store availability change][1].
6798
+ # are no longer open to new customers. Existing customers can continue
6799
+ # to use the service as normal. For more information, see [ Amazon Web
6800
+ # Services HealthOmics variant store and annotation store availability
6801
+ # change][1].
6184
6802
  #
6185
6803
  # Updates an annotation store.
6186
6804
  #
@@ -6483,11 +7101,10 @@ module Aws::Omics
6483
7101
  end
6484
7102
 
6485
7103
  # Amazon Web Services HealthOmics variant stores and annotation stores
6486
- # will no longer be open to new customers starting November 7, 2025. If
6487
- # you would like to use variant stores or annotation stores, sign up
6488
- # prior to that date. Existing customers can continue to use the service
6489
- # as normal. For more information, see [ Amazon Web Services HealthOmics
6490
- # variant store and annotation store availability change][1].
7104
+ # are no longer open to new customers. Existing customers can continue
7105
+ # to use the service as normal. For more information, see [ Amazon Web
7106
+ # Services HealthOmics variant store and annotation store availability
7107
+ # change][1].
6491
7108
  #
6492
7109
  # Updates a variant store.
6493
7110
  #
@@ -6747,7 +7364,7 @@ module Aws::Omics
6747
7364
  tracer: tracer
6748
7365
  )
6749
7366
  context[:gem_name] = 'aws-sdk-omics'
6750
- context[:gem_version] = '1.63.0'
7367
+ context[:gem_version] = '1.65.0'
6751
7368
  Seahorse::Client::Request.new(handlers, context)
6752
7369
  end
6753
7370