aws-sdk-omics 1.64.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-omics/client.rb +213 -1
- data/lib/aws-sdk-omics/client_api.rb +198 -0
- data/lib/aws-sdk-omics/types.rb +358 -3
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +69 -1
- data/sig/types.rbs +101 -0
- 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: d453f282af8ed9fd310351b61cd55339e117c1c415c405296c135b2ca9aaf4aa
|
|
4
|
+
data.tar.gz: d6b02a3198cdb839b8d71418a1623b8871a5e3bcc2eca6498d927c886fd445b4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db3e4ec1645a2c1a386c39998af1dfd2b4c99468330555753320606b1ad0d5627a460584373d87a44e78f1c68d492f2942cb82a09f4ff346f9f60eaff93752b4
|
|
7
|
+
data.tar.gz: cd8dc677ed7c85de29646169c0040662e89b102a2e45842c0020acf51b7da6633276a1e3cdbec47070473c97fd75aa72abd1c2d0a54133c49b5bf7f9624fc46b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.65.0 (2026-03-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* 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.
|
|
8
|
+
|
|
4
9
|
1.64.0 (2026-03-23)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.65.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.
|
|
@@ -2885,6 +2982,53 @@ module Aws::Omics
|
|
|
2885
2982
|
req.send_request(options)
|
|
2886
2983
|
end
|
|
2887
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<String,String>
|
|
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
|
+
|
|
2888
3032
|
# Retrieves detailed information from parts of a read set and returns
|
|
2889
3033
|
# the read set in the same format that it was uploaded. You must have
|
|
2890
3034
|
# read sets uploaded to your sequence store in order to run this
|
|
@@ -3458,6 +3602,9 @@ module Aws::Omics
|
|
|
3458
3602
|
# * {Types::GetRunResponse#workflow_owner_id #workflow_owner_id} => String
|
|
3459
3603
|
# * {Types::GetRunResponse#workflow_version_name #workflow_version_name} => String
|
|
3460
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
|
|
3461
3608
|
#
|
|
3462
3609
|
# @example Request syntax with placeholder values
|
|
3463
3610
|
#
|
|
@@ -3507,6 +3654,15 @@ module Aws::Omics
|
|
|
3507
3654
|
# resp.workflow_owner_id #=> String
|
|
3508
3655
|
# resp.workflow_version_name #=> String
|
|
3509
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
|
|
3510
3666
|
#
|
|
3511
3667
|
#
|
|
3512
3668
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -4448,6 +4604,47 @@ module Aws::Omics
|
|
|
4448
4604
|
req.send_request(options)
|
|
4449
4605
|
end
|
|
4450
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<Types::ConfigurationListItem>
|
|
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
|
+
|
|
4451
4648
|
# Lists in-progress multipart read set uploads for a sequence store and
|
|
4452
4649
|
# returns it in a JSON formatted output. Multipart read set uploads are
|
|
4453
4650
|
# initiated by the `CreateMultipartReadSetUploads` API operation. This
|
|
@@ -6303,6 +6500,13 @@ module Aws::Omics
|
|
|
6303
6500
|
#
|
|
6304
6501
|
# [1]: https://docs.aws.amazon.com/omics/latest/dev/workflow-versions.html
|
|
6305
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
|
+
#
|
|
6306
6510
|
# @return [Types::StartRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6307
6511
|
#
|
|
6308
6512
|
# * {Types::StartRunResponse#arn #arn} => String
|
|
@@ -6311,6 +6515,8 @@ module Aws::Omics
|
|
|
6311
6515
|
# * {Types::StartRunResponse#tags #tags} => Hash<String,String>
|
|
6312
6516
|
# * {Types::StartRunResponse#uuid #uuid} => String
|
|
6313
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
|
|
6314
6520
|
#
|
|
6315
6521
|
# @example Request syntax with placeholder values
|
|
6316
6522
|
#
|
|
@@ -6337,6 +6543,8 @@ module Aws::Omics
|
|
|
6337
6543
|
# storage_type: "STATIC", # accepts STATIC, DYNAMIC
|
|
6338
6544
|
# workflow_owner_id: "WorkflowOwnerId",
|
|
6339
6545
|
# workflow_version_name: "WorkflowVersionName",
|
|
6546
|
+
# networking_mode: "RESTRICTED", # accepts RESTRICTED, VPC
|
|
6547
|
+
# configuration_name: "ConfigurationName",
|
|
6340
6548
|
# })
|
|
6341
6549
|
#
|
|
6342
6550
|
# @example Response structure
|
|
@@ -6348,6 +6556,10 @@ module Aws::Omics
|
|
|
6348
6556
|
# resp.tags["TagKey"] #=> String
|
|
6349
6557
|
# resp.uuid #=> String
|
|
6350
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
|
|
6351
6563
|
#
|
|
6352
6564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRun AWS API Documentation
|
|
6353
6565
|
#
|
|
@@ -7152,7 +7364,7 @@ module Aws::Omics
|
|
|
7152
7364
|
tracer: tracer
|
|
7153
7365
|
)
|
|
7154
7366
|
context[:gem_name] = 'aws-sdk-omics'
|
|
7155
|
-
context[:gem_version] = '1.
|
|
7367
|
+
context[:gem_version] = '1.65.0'
|
|
7156
7368
|
Seahorse::Client::Request.new(handlers, context)
|
|
7157
7369
|
end
|
|
7158
7370
|
|