aws-sdk-omics 1.64.0 → 1.66.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-omics/client.rb +225 -8
- data/lib/aws-sdk-omics/client_api.rb +200 -0
- data/lib/aws-sdk-omics/types.rb +378 -6
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +75 -5
- data/sig/types.rbs +107 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8dec719f126359c11c753d16746e7186844678c453086608081c441ac9a301d4
|
|
4
|
+
data.tar.gz: a75b76c3f98ae894c74a7afbffb16a97a3dd410aeb500fee6ab440c46ca421c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: af187a26ccc1c873d44e87fcb18081975c2adb88f0e2dc50bcaf0561fabac65a08e90e6958be32ce2960684df5eab3d39b041f63108d876be1c01b2967194d0d
|
|
7
|
+
data.tar.gz: 4cab94ffcae6c0eda735b56a7f83f88fb0b04b1ec29d7a12f476584c1b651028d4a6909c547cac1d5c3d18f10a5c8a8730a57a624b3fb1fa3250e9a9236b548c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.66.0 (2026-04-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Enable Public Internet or VPC configuration to BatchRun
|
|
8
|
+
|
|
9
|
+
1.65.0 (2026-03-27)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - AWS HealthOmics now supports VPC networking, allowing users to connect runs to external resources with NAT gateway, AWS VPC resources, and more. New Configuration APIs support configuring VPC settings. StartRun API now accepts networkingMode and configurationName parameters to enable VPC networking.
|
|
13
|
+
|
|
4
14
|
1.64.0 (2026-03-23)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.66.0
|
data/lib/aws-sdk-omics/client.rb
CHANGED
|
@@ -930,6 +930,81 @@ module Aws::Omics
|
|
|
930
930
|
req.send_request(options)
|
|
931
931
|
end
|
|
932
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<String,String>
|
|
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
|
+
|
|
933
1008
|
# Initiates a multipart read set upload for uploading partitioned source
|
|
934
1009
|
# files into a sequence store. You can directly import source files from
|
|
935
1010
|
# an EC2 instance and other local compute, or from an S3 bucket. To
|
|
@@ -2178,6 +2253,28 @@ module Aws::Omics
|
|
|
2178
2253
|
req.send_request(options)
|
|
2179
2254
|
end
|
|
2180
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
|
+
|
|
2181
2278
|
# Deletes a reference genome and returns a response with no body if the
|
|
2182
2279
|
# operation is successful. The read set associated with the reference
|
|
2183
2280
|
# genome must first be deleted before deleting the reference genome.
|
|
@@ -2833,7 +2930,7 @@ module Aws::Omics
|
|
|
2833
2930
|
# resp.arn #=> String
|
|
2834
2931
|
# resp.uuid #=> String
|
|
2835
2932
|
# resp.name #=> String
|
|
2836
|
-
# resp.status #=> String, one of "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETED"
|
|
2933
|
+
# resp.status #=> String, one of "CREATING", "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETED"
|
|
2837
2934
|
# resp.tags #=> Hash
|
|
2838
2935
|
# resp.tags["TagKey"] #=> String
|
|
2839
2936
|
# resp.total_runs #=> Integer
|
|
@@ -2855,6 +2952,8 @@ module Aws::Omics
|
|
|
2855
2952
|
# resp.default_run_setting.workflow_owner_id #=> String
|
|
2856
2953
|
# resp.default_run_setting.output_bucket_owner_id #=> String
|
|
2857
2954
|
# resp.default_run_setting.workflow_version_name #=> String
|
|
2955
|
+
# resp.default_run_setting.networking_mode #=> String, one of "RESTRICTED", "VPC"
|
|
2956
|
+
# resp.default_run_setting.configuration_name #=> String
|
|
2858
2957
|
# resp.submission_summary.successful_start_submission_count #=> Integer
|
|
2859
2958
|
# resp.submission_summary.failed_start_submission_count #=> Integer
|
|
2860
2959
|
# resp.submission_summary.pending_start_submission_count #=> Integer
|
|
@@ -2885,6 +2984,53 @@ module Aws::Omics
|
|
|
2885
2984
|
req.send_request(options)
|
|
2886
2985
|
end
|
|
2887
2986
|
|
|
2987
|
+
# Retrieve configuration details for specified name.
|
|
2988
|
+
#
|
|
2989
|
+
# @option params [required, String] :name
|
|
2990
|
+
# Configuration name to retrieve.
|
|
2991
|
+
#
|
|
2992
|
+
# @return [Types::GetConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2993
|
+
#
|
|
2994
|
+
# * {Types::GetConfigurationResponse#arn #arn} => String
|
|
2995
|
+
# * {Types::GetConfigurationResponse#uuid #uuid} => String
|
|
2996
|
+
# * {Types::GetConfigurationResponse#name #name} => String
|
|
2997
|
+
# * {Types::GetConfigurationResponse#description #description} => String
|
|
2998
|
+
# * {Types::GetConfigurationResponse#run_configurations #run_configurations} => Types::RunConfigurationsResponse
|
|
2999
|
+
# * {Types::GetConfigurationResponse#status #status} => String
|
|
3000
|
+
# * {Types::GetConfigurationResponse#creation_time #creation_time} => Time
|
|
3001
|
+
# * {Types::GetConfigurationResponse#tags #tags} => Hash<String,String>
|
|
3002
|
+
#
|
|
3003
|
+
# @example Request syntax with placeholder values
|
|
3004
|
+
#
|
|
3005
|
+
# resp = client.get_configuration({
|
|
3006
|
+
# name: "ConfigurationName", # required
|
|
3007
|
+
# })
|
|
3008
|
+
#
|
|
3009
|
+
# @example Response structure
|
|
3010
|
+
#
|
|
3011
|
+
# resp.arn #=> String
|
|
3012
|
+
# resp.uuid #=> String
|
|
3013
|
+
# resp.name #=> String
|
|
3014
|
+
# resp.description #=> String
|
|
3015
|
+
# resp.run_configurations.vpc_config.security_group_ids #=> Array
|
|
3016
|
+
# resp.run_configurations.vpc_config.security_group_ids[0] #=> String
|
|
3017
|
+
# resp.run_configurations.vpc_config.subnet_ids #=> Array
|
|
3018
|
+
# resp.run_configurations.vpc_config.subnet_ids[0] #=> String
|
|
3019
|
+
# resp.run_configurations.vpc_config.vpc_id #=> String
|
|
3020
|
+
# resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED"
|
|
3021
|
+
# resp.creation_time #=> Time
|
|
3022
|
+
# resp.tags #=> Hash
|
|
3023
|
+
# resp.tags["TagKey"] #=> String
|
|
3024
|
+
#
|
|
3025
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetConfiguration AWS API Documentation
|
|
3026
|
+
#
|
|
3027
|
+
# @overload get_configuration(params = {})
|
|
3028
|
+
# @param [Hash] params ({})
|
|
3029
|
+
def get_configuration(params = {}, options = {})
|
|
3030
|
+
req = build_request(:get_configuration, params)
|
|
3031
|
+
req.send_request(options)
|
|
3032
|
+
end
|
|
3033
|
+
|
|
2888
3034
|
# Retrieves detailed information from parts of a read set and returns
|
|
2889
3035
|
# the read set in the same format that it was uploaded. You must have
|
|
2890
3036
|
# read sets uploaded to your sequence store in order to run this
|
|
@@ -3458,6 +3604,9 @@ module Aws::Omics
|
|
|
3458
3604
|
# * {Types::GetRunResponse#workflow_owner_id #workflow_owner_id} => String
|
|
3459
3605
|
# * {Types::GetRunResponse#workflow_version_name #workflow_version_name} => String
|
|
3460
3606
|
# * {Types::GetRunResponse#workflow_uuid #workflow_uuid} => String
|
|
3607
|
+
# * {Types::GetRunResponse#networking_mode #networking_mode} => String
|
|
3608
|
+
# * {Types::GetRunResponse#configuration #configuration} => Types::ConfigurationDetails
|
|
3609
|
+
# * {Types::GetRunResponse#vpc_config #vpc_config} => Types::VpcConfigResponse
|
|
3461
3610
|
#
|
|
3462
3611
|
# @example Request syntax with placeholder values
|
|
3463
3612
|
#
|
|
@@ -3507,6 +3656,15 @@ module Aws::Omics
|
|
|
3507
3656
|
# resp.workflow_owner_id #=> String
|
|
3508
3657
|
# resp.workflow_version_name #=> String
|
|
3509
3658
|
# resp.workflow_uuid #=> String
|
|
3659
|
+
# resp.networking_mode #=> String, one of "RESTRICTED", "VPC"
|
|
3660
|
+
# resp.configuration.name #=> String
|
|
3661
|
+
# resp.configuration.arn #=> String
|
|
3662
|
+
# resp.configuration.uuid #=> String
|
|
3663
|
+
# resp.vpc_config.security_group_ids #=> Array
|
|
3664
|
+
# resp.vpc_config.security_group_ids[0] #=> String
|
|
3665
|
+
# resp.vpc_config.subnet_ids #=> Array
|
|
3666
|
+
# resp.vpc_config.subnet_ids[0] #=> String
|
|
3667
|
+
# resp.vpc_config.vpc_id #=> String
|
|
3510
3668
|
#
|
|
3511
3669
|
#
|
|
3512
3670
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -4423,7 +4581,7 @@ module Aws::Omics
|
|
|
4423
4581
|
# resp = client.list_batch({
|
|
4424
4582
|
# max_items: 1,
|
|
4425
4583
|
# starting_token: "ListToken",
|
|
4426
|
-
# status: "
|
|
4584
|
+
# status: "CREATING", # accepts CREATING, PENDING, SUBMITTING, INPROGRESS, STOPPING, CANCELLED, FAILED, PROCESSED, RUNS_DELETING, RUNS_DELETED
|
|
4427
4585
|
# name: "BatchName",
|
|
4428
4586
|
# run_group_id: "RunGroupId",
|
|
4429
4587
|
# })
|
|
@@ -4433,7 +4591,7 @@ module Aws::Omics
|
|
|
4433
4591
|
# resp.items #=> Array
|
|
4434
4592
|
# resp.items[0].id #=> String
|
|
4435
4593
|
# resp.items[0].name #=> String
|
|
4436
|
-
# resp.items[0].status #=> String, one of "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETED"
|
|
4594
|
+
# resp.items[0].status #=> String, one of "CREATING", "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETED"
|
|
4437
4595
|
# resp.items[0].created_at #=> Time
|
|
4438
4596
|
# resp.items[0].total_runs #=> Integer
|
|
4439
4597
|
# resp.items[0].workflow_id #=> String
|
|
@@ -4448,6 +4606,47 @@ module Aws::Omics
|
|
|
4448
4606
|
req.send_request(options)
|
|
4449
4607
|
end
|
|
4450
4608
|
|
|
4609
|
+
# List all configurations for the account.
|
|
4610
|
+
#
|
|
4611
|
+
# @option params [Integer] :max_results
|
|
4612
|
+
# Maximum number of results to return.
|
|
4613
|
+
#
|
|
4614
|
+
# @option params [String] :starting_token
|
|
4615
|
+
# Pagination token for retrieving next page of results.
|
|
4616
|
+
#
|
|
4617
|
+
# @return [Types::ListConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4618
|
+
#
|
|
4619
|
+
# * {Types::ListConfigurationsResponse#items #items} => Array<Types::ConfigurationListItem>
|
|
4620
|
+
# * {Types::ListConfigurationsResponse#next_token #next_token} => String
|
|
4621
|
+
#
|
|
4622
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
4623
|
+
#
|
|
4624
|
+
# @example Request syntax with placeholder values
|
|
4625
|
+
#
|
|
4626
|
+
# resp = client.list_configurations({
|
|
4627
|
+
# max_results: 1,
|
|
4628
|
+
# starting_token: "ConfigurationListToken",
|
|
4629
|
+
# })
|
|
4630
|
+
#
|
|
4631
|
+
# @example Response structure
|
|
4632
|
+
#
|
|
4633
|
+
# resp.items #=> Array
|
|
4634
|
+
# resp.items[0].arn #=> String
|
|
4635
|
+
# resp.items[0].name #=> String
|
|
4636
|
+
# resp.items[0].description #=> String
|
|
4637
|
+
# resp.items[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "DELETED", "FAILED"
|
|
4638
|
+
# resp.items[0].creation_time #=> Time
|
|
4639
|
+
# resp.next_token #=> String
|
|
4640
|
+
#
|
|
4641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListConfigurations AWS API Documentation
|
|
4642
|
+
#
|
|
4643
|
+
# @overload list_configurations(params = {})
|
|
4644
|
+
# @param [Hash] params ({})
|
|
4645
|
+
def list_configurations(params = {}, options = {})
|
|
4646
|
+
req = build_request(:list_configurations, params)
|
|
4647
|
+
req.send_request(options)
|
|
4648
|
+
end
|
|
4649
|
+
|
|
4451
4650
|
# Lists in-progress multipart read set uploads for a sequence store and
|
|
4452
4651
|
# returns it in a JSON formatted output. Multipart read set uploads are
|
|
4453
4652
|
# initiated by the `CreateMultipartReadSetUploads` API operation. This
|
|
@@ -6303,6 +6502,13 @@ module Aws::Omics
|
|
|
6303
6502
|
#
|
|
6304
6503
|
# [1]: https://docs.aws.amazon.com/omics/latest/dev/workflow-versions.html
|
|
6305
6504
|
#
|
|
6505
|
+
# @option params [String] :networking_mode
|
|
6506
|
+
# Optional configuration for run networking behavior. If not specified,
|
|
6507
|
+
# this will default to RESTRICTED.
|
|
6508
|
+
#
|
|
6509
|
+
# @option params [String] :configuration_name
|
|
6510
|
+
# Optional configuration name to use for the workflow run.
|
|
6511
|
+
#
|
|
6306
6512
|
# @return [Types::StartRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6307
6513
|
#
|
|
6308
6514
|
# * {Types::StartRunResponse#arn #arn} => String
|
|
@@ -6311,6 +6517,8 @@ module Aws::Omics
|
|
|
6311
6517
|
# * {Types::StartRunResponse#tags #tags} => Hash<String,String>
|
|
6312
6518
|
# * {Types::StartRunResponse#uuid #uuid} => String
|
|
6313
6519
|
# * {Types::StartRunResponse#run_output_uri #run_output_uri} => String
|
|
6520
|
+
# * {Types::StartRunResponse#configuration #configuration} => Types::ConfigurationDetails
|
|
6521
|
+
# * {Types::StartRunResponse#networking_mode #networking_mode} => String
|
|
6314
6522
|
#
|
|
6315
6523
|
# @example Request syntax with placeholder values
|
|
6316
6524
|
#
|
|
@@ -6337,6 +6545,8 @@ module Aws::Omics
|
|
|
6337
6545
|
# storage_type: "STATIC", # accepts STATIC, DYNAMIC
|
|
6338
6546
|
# workflow_owner_id: "WorkflowOwnerId",
|
|
6339
6547
|
# workflow_version_name: "WorkflowVersionName",
|
|
6548
|
+
# networking_mode: "RESTRICTED", # accepts RESTRICTED, VPC
|
|
6549
|
+
# configuration_name: "ConfigurationName",
|
|
6340
6550
|
# })
|
|
6341
6551
|
#
|
|
6342
6552
|
# @example Response structure
|
|
@@ -6348,6 +6558,10 @@ module Aws::Omics
|
|
|
6348
6558
|
# resp.tags["TagKey"] #=> String
|
|
6349
6559
|
# resp.uuid #=> String
|
|
6350
6560
|
# resp.run_output_uri #=> String
|
|
6561
|
+
# resp.configuration.name #=> String
|
|
6562
|
+
# resp.configuration.arn #=> String
|
|
6563
|
+
# resp.configuration.uuid #=> String
|
|
6564
|
+
# resp.networking_mode #=> String
|
|
6351
6565
|
#
|
|
6352
6566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRun AWS API Documentation
|
|
6353
6567
|
#
|
|
@@ -6365,9 +6579,10 @@ module Aws::Omics
|
|
|
6365
6579
|
# Amazon S3 via `s3UriSettings` (up to 100,000 runs).
|
|
6366
6580
|
#
|
|
6367
6581
|
# `StartRunBatch` validates common fields synchronously and returns
|
|
6368
|
-
# immediately with a batch ID and status `
|
|
6369
|
-
#
|
|
6370
|
-
#
|
|
6582
|
+
# immediately with a batch ID and status `CREATING`. The batch
|
|
6583
|
+
# transitions to `PENDING` once initial setup completes. Runs are then
|
|
6584
|
+
# submitted gradually and asynchronously at a rate governed by your
|
|
6585
|
+
# `StartRun` throughput quota.
|
|
6371
6586
|
#
|
|
6372
6587
|
# @option params [String] :batch_name
|
|
6373
6588
|
# An optional user-friendly name for the run batch.
|
|
@@ -6430,6 +6645,8 @@ module Aws::Omics
|
|
|
6430
6645
|
# workflow_owner_id: "WorkflowOwnerId",
|
|
6431
6646
|
# output_bucket_owner_id: "AwsAccountId",
|
|
6432
6647
|
# workflow_version_name: "WorkflowVersionName",
|
|
6648
|
+
# networking_mode: "RESTRICTED", # accepts RESTRICTED, VPC
|
|
6649
|
+
# configuration_name: "ConfigurationName",
|
|
6433
6650
|
# },
|
|
6434
6651
|
# batch_run_settings: { # required
|
|
6435
6652
|
# inline_settings: [
|
|
@@ -6454,7 +6671,7 @@ module Aws::Omics
|
|
|
6454
6671
|
#
|
|
6455
6672
|
# resp.id #=> String
|
|
6456
6673
|
# resp.arn #=> String
|
|
6457
|
-
# resp.status #=> String, one of "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETED"
|
|
6674
|
+
# resp.status #=> String, one of "CREATING", "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETED"
|
|
6458
6675
|
# resp.uuid #=> String
|
|
6459
6676
|
# resp.tags #=> Hash
|
|
6460
6677
|
# resp.tags["TagKey"] #=> String
|
|
@@ -7152,7 +7369,7 @@ module Aws::Omics
|
|
|
7152
7369
|
tracer: tracer
|
|
7153
7370
|
)
|
|
7154
7371
|
context[:gem_name] = 'aws-sdk-omics'
|
|
7155
|
-
context[:gem_version] = '1.
|
|
7372
|
+
context[:gem_version] = '1.66.0'
|
|
7156
7373
|
Seahorse::Client::Request.new(handlers, context)
|
|
7157
7374
|
end
|
|
7158
7375
|
|