aws-sdk-omics 1.13.0 → 1.14.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 +16 -4
- data/lib/aws-sdk-omics/client_api.rb +3 -0
- data/lib/aws-sdk-omics/types.rb +14 -4
- data/lib/aws-sdk-omics.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57891ecacd1c07b363d468ced44354277357cc635a867c02007d19b018e4966b
|
4
|
+
data.tar.gz: 1c27392e4f2ae9cf44b18247f7f825659c9f68d4ab8e400f5a79d89924137274
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb8ecb575c1232826e298bbf1765fca39bbf17b9e86cc0ae35ce45544b8669395684edd50307a233ba549b4033cf46872981c1b0cf5765a9fd29ea480e6ae324
|
7
|
+
data.tar.gz: d3dfd2f743587879d97df7236e11c375e3fd16416c8aafbbd2885d1e9800f62103a1731fd60c6586a8d9461a76cbc4fbea8a13a0d8a286a98be20caf88bc6c72
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.14.0
|
data/lib/aws-sdk-omics/client.rb
CHANGED
@@ -2215,6 +2215,7 @@ module Aws::Omics
|
|
2215
2215
|
# * {Types::GetRunResponse#status_message #status_message} => String
|
2216
2216
|
# * {Types::GetRunResponse#tags #tags} => Hash<String,String>
|
2217
2217
|
# * {Types::GetRunResponse#accelerators #accelerators} => String
|
2218
|
+
# * {Types::GetRunResponse#retention_mode #retention_mode} => String
|
2218
2219
|
#
|
2219
2220
|
# @example Request syntax with placeholder values
|
2220
2221
|
#
|
@@ -2250,6 +2251,7 @@ module Aws::Omics
|
|
2250
2251
|
# resp.tags #=> Hash
|
2251
2252
|
# resp.tags["TagKey"] #=> String
|
2252
2253
|
# resp.accelerators #=> String, one of "GPU"
|
2254
|
+
# resp.retention_mode #=> String, one of "RETAIN", "REMOVE"
|
2253
2255
|
#
|
2254
2256
|
#
|
2255
2257
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4119,16 +4121,22 @@ module Aws::Omics
|
|
4119
4121
|
req.send_request(options)
|
4120
4122
|
end
|
4121
4123
|
|
4122
|
-
# Starts a run.
|
4124
|
+
# Starts a workflow run. To duplicate a run, specify the run's ID and a
|
4125
|
+
# role ARN. The remaining parameters are copied from the previous run.
|
4126
|
+
#
|
4127
|
+
# The total number of runs in your account is subject to a quota per
|
4128
|
+
# Region. To avoid needing to delete runs manually, you can set the
|
4129
|
+
# retention mode to `REMOVE`. Runs with this setting are deleted
|
4130
|
+
# automatically when the run quoata is exceeded.
|
4123
4131
|
#
|
4124
4132
|
# @option params [String] :workflow_id
|
4125
4133
|
# The run's workflow ID.
|
4126
4134
|
#
|
4127
4135
|
# @option params [String] :workflow_type
|
4128
|
-
# The run's
|
4136
|
+
# The run's workflow type.
|
4129
4137
|
#
|
4130
4138
|
# @option params [String] :run_id
|
4131
|
-
# The run
|
4139
|
+
# The ID of a run to duplicate.
|
4132
4140
|
#
|
4133
4141
|
# @option params [required, String] :role_arn
|
4134
4142
|
# A service role for the run.
|
@@ -4169,6 +4177,9 @@ module Aws::Omics
|
|
4169
4177
|
# **A suitable default value is auto-generated.** You should normally
|
4170
4178
|
# not need to pass this option.**
|
4171
4179
|
#
|
4180
|
+
# @option params [String] :retention_mode
|
4181
|
+
# The retention mode for the run.
|
4182
|
+
#
|
4172
4183
|
# @return [Types::StartRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4173
4184
|
#
|
4174
4185
|
# * {Types::StartRunResponse#arn #arn} => String
|
@@ -4195,6 +4206,7 @@ module Aws::Omics
|
|
4195
4206
|
# "TagKey" => "TagValue",
|
4196
4207
|
# },
|
4197
4208
|
# request_id: "RunRequestId", # required
|
4209
|
+
# retention_mode: "RETAIN", # accepts RETAIN, REMOVE
|
4198
4210
|
# })
|
4199
4211
|
#
|
4200
4212
|
# @example Response structure
|
@@ -4596,7 +4608,7 @@ module Aws::Omics
|
|
4596
4608
|
params: params,
|
4597
4609
|
config: config)
|
4598
4610
|
context[:gem_name] = 'aws-sdk-omics'
|
4599
|
-
context[:gem_version] = '1.
|
4611
|
+
context[:gem_version] = '1.14.0'
|
4600
4612
|
Seahorse::Client::Request.new(handlers, context)
|
4601
4613
|
end
|
4602
4614
|
|
@@ -366,6 +366,7 @@ module Aws::Omics
|
|
366
366
|
RunResourceDigest = Shapes::StringShape.new(name: 'RunResourceDigest')
|
367
367
|
RunResourceDigestKey = Shapes::StringShape.new(name: 'RunResourceDigestKey')
|
368
368
|
RunResourceDigests = Shapes::MapShape.new(name: 'RunResourceDigests')
|
369
|
+
RunRetentionMode = Shapes::StringShape.new(name: 'RunRetentionMode')
|
369
370
|
RunRoleArn = Shapes::StringShape.new(name: 'RunRoleArn')
|
370
371
|
RunStartedBy = Shapes::StringShape.new(name: 'RunStartedBy')
|
371
372
|
RunStatus = Shapes::StringShape.new(name: 'RunStatus')
|
@@ -1122,6 +1123,7 @@ module Aws::Omics
|
|
1122
1123
|
GetRunResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: RunStatusMessage, location_name: "statusMessage"))
|
1123
1124
|
GetRunResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
1124
1125
|
GetRunResponse.add_member(:accelerators, Shapes::ShapeRef.new(shape: Accelerators, location_name: "accelerators"))
|
1126
|
+
GetRunResponse.add_member(:retention_mode, Shapes::ShapeRef.new(shape: RunRetentionMode, location_name: "retentionMode"))
|
1125
1127
|
GetRunResponse.struct_class = Types::GetRunResponse
|
1126
1128
|
|
1127
1129
|
GetRunTaskRequest.add_member(:id, Shapes::ShapeRef.new(shape: RunId, required: true, location: "uri", location_name: "id"))
|
@@ -1828,6 +1830,7 @@ module Aws::Omics
|
|
1828
1830
|
StartRunRequest.add_member(:log_level, Shapes::ShapeRef.new(shape: RunLogLevel, location_name: "logLevel"))
|
1829
1831
|
StartRunRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
1830
1832
|
StartRunRequest.add_member(:request_id, Shapes::ShapeRef.new(shape: RunRequestId, required: true, location_name: "requestId", metadata: {"idempotencyToken"=>true}))
|
1833
|
+
StartRunRequest.add_member(:retention_mode, Shapes::ShapeRef.new(shape: RunRetentionMode, location_name: "retentionMode"))
|
1831
1834
|
StartRunRequest.struct_class = Types::StartRunRequest
|
1832
1835
|
|
1833
1836
|
StartRunResponse.add_member(:arn, Shapes::ShapeRef.new(shape: RunArn, location_name: "arn"))
|
data/lib/aws-sdk-omics/types.rb
CHANGED
@@ -2632,6 +2632,10 @@ module Aws::Omics
|
|
2632
2632
|
# The computational accelerator used to run the workflow.
|
2633
2633
|
# @return [String]
|
2634
2634
|
#
|
2635
|
+
# @!attribute [rw] retention_mode
|
2636
|
+
# The run's retention mode.
|
2637
|
+
# @return [String]
|
2638
|
+
#
|
2635
2639
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunResponse AWS API Documentation
|
2636
2640
|
#
|
2637
2641
|
class GetRunResponse < Struct.new(
|
@@ -2658,7 +2662,8 @@ module Aws::Omics
|
|
2658
2662
|
:stop_time,
|
2659
2663
|
:status_message,
|
2660
2664
|
:tags,
|
2661
|
-
:accelerators
|
2665
|
+
:accelerators,
|
2666
|
+
:retention_mode)
|
2662
2667
|
SENSITIVE = []
|
2663
2668
|
include Aws::Structure
|
2664
2669
|
end
|
@@ -5657,11 +5662,11 @@ module Aws::Omics
|
|
5657
5662
|
# @return [String]
|
5658
5663
|
#
|
5659
5664
|
# @!attribute [rw] workflow_type
|
5660
|
-
# The run's
|
5665
|
+
# The run's workflow type.
|
5661
5666
|
# @return [String]
|
5662
5667
|
#
|
5663
5668
|
# @!attribute [rw] run_id
|
5664
|
-
# The run
|
5669
|
+
# The ID of a run to duplicate.
|
5665
5670
|
# @return [String]
|
5666
5671
|
#
|
5667
5672
|
# @!attribute [rw] role_arn
|
@@ -5708,6 +5713,10 @@ module Aws::Omics
|
|
5708
5713
|
# not need to pass this option.
|
5709
5714
|
# @return [String]
|
5710
5715
|
#
|
5716
|
+
# @!attribute [rw] retention_mode
|
5717
|
+
# The retention mode for the run.
|
5718
|
+
# @return [String]
|
5719
|
+
#
|
5711
5720
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRunRequest AWS API Documentation
|
5712
5721
|
#
|
5713
5722
|
class StartRunRequest < Struct.new(
|
@@ -5723,7 +5732,8 @@ module Aws::Omics
|
|
5723
5732
|
:output_uri,
|
5724
5733
|
:log_level,
|
5725
5734
|
:tags,
|
5726
|
-
:request_id
|
5735
|
+
:request_id,
|
5736
|
+
:retention_mode)
|
5727
5737
|
SENSITIVE = []
|
5728
5738
|
include Aws::Structure
|
5729
5739
|
end
|
data/lib/aws-sdk-omics.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-omics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-08-
|
11
|
+
date: 2023-08-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|