aws-sdk-omics 1.13.0 → 1.15.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 +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 +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 35f6308575a435ed867f616f222bdaae61d56c1a9774fd8545aa372d0fead62f
|
4
|
+
data.tar.gz: 5fad2b1252439628a683a9e67e46150c690a8200cdb609585c69cd8478f040b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4f65d603610a24f52cd035a864d4321315fa85d7ed36f960af67938593facaf3f561cc4f2f8faaa4b127682784e4895e4bce90d5275f93456ff1be923051543
|
7
|
+
data.tar.gz: fdae5b7b8f23438d73a5e72ff26db57f146d1ad0e47b9dc003c80bdd0235a158d09a2dfb0b0edd82ee81d3ebe64b2a45c5ef10a2b8d433dfc8ed247ddb1aa57f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.15.0 (2023-09-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.14.0 (2023-08-29)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add RetentionMode support for Runs.
|
13
|
+
|
4
14
|
1.13.0 (2023-08-14)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.15.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.15.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.15.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-
|
11
|
+
date: 2023-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.184.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.184.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|