aws-sdk-omics 1.17.0 → 1.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83397950ab4fa1db29510270d3f2dd0d254714b61f336618f289bd8e85afd85a
4
- data.tar.gz: 7796442786eefd9893653ab630f6d054a37df0b4cf29b09d4a7b62be4901c1eb
3
+ metadata.gz: cfdb3d0d7ce867e287479d0931ae03f53ac402e8e96651baaf187f07bf20d4a5
4
+ data.tar.gz: bbd751af393a0998fa9cfd3777a0bee837c103c9b74bedb11d24ea3701921faa
5
5
  SHA512:
6
- metadata.gz: fb48a849d2367e3b78890372faa538b166b29491bc3a0a0284ea7077403f7e8a50824afe49d58db231c6dcefe66580fddd8bbb04200535efa0f733a8dc7cfe5f
7
- data.tar.gz: 92cee8d6d53c08813341aa2d273c733101a59a54da6768e85e10c12cba0e74dab4d8cfea2bc7ab27e79dce4cf41fef462101d4f2d7254be23c46b8775ae459a4
6
+ metadata.gz: c19f3054a116ef6cf204339d9accba0af5521749b4501fe93f8c2bb8b53bc4a8427b55e07c38c24aeee2873bc85732b6f8923e861692a77ceee092b58944bb8f
7
+ data.tar.gz: 7c01c8465fb9a7fe68f3d926c99f90b2ec395628a3637cd0c952001cb16598abdab4666db94ca9f7a84ead033482987031cd83c1612ee6984fca70226fff5d73
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.0 (2023-11-08)
5
+ ------------------
6
+
7
+ * Feature - Adding Run UUID and Run Output URI: GetRun and StartRun API response has two new fields "uuid" and "runOutputUri".
8
+
4
9
  1.17.0 (2023-10-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
1
+ 1.18.0
@@ -2222,6 +2222,8 @@ module Aws::Omics
2222
2222
  # * {Types::GetRunResponse#retention_mode #retention_mode} => String
2223
2223
  # * {Types::GetRunResponse#failure_reason #failure_reason} => String
2224
2224
  # * {Types::GetRunResponse#log_location #log_location} => Types::RunLogLocation
2225
+ # * {Types::GetRunResponse#uuid #uuid} => String
2226
+ # * {Types::GetRunResponse#run_output_uri #run_output_uri} => String
2225
2227
  #
2226
2228
  # @example Request syntax with placeholder values
2227
2229
  #
@@ -2261,6 +2263,8 @@ module Aws::Omics
2261
2263
  # resp.failure_reason #=> String
2262
2264
  # resp.log_location.engine_log_stream #=> String
2263
2265
  # resp.log_location.run_log_stream #=> String
2266
+ # resp.uuid #=> String
2267
+ # resp.run_output_uri #=> String
2264
2268
  #
2265
2269
  #
2266
2270
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4200,6 +4204,8 @@ module Aws::Omics
4200
4204
  # * {Types::StartRunResponse#id #id} => String
4201
4205
  # * {Types::StartRunResponse#status #status} => String
4202
4206
  # * {Types::StartRunResponse#tags #tags} => Hash<String,String>
4207
+ # * {Types::StartRunResponse#uuid #uuid} => String
4208
+ # * {Types::StartRunResponse#run_output_uri #run_output_uri} => String
4203
4209
  #
4204
4210
  # @example Request syntax with placeholder values
4205
4211
  #
@@ -4230,6 +4236,8 @@ module Aws::Omics
4230
4236
  # resp.status #=> String, one of "PENDING", "STARTING", "RUNNING", "STOPPING", "COMPLETED", "DELETED", "CANCELLED", "FAILED"
4231
4237
  # resp.tags #=> Hash
4232
4238
  # resp.tags["TagKey"] #=> String
4239
+ # resp.uuid #=> String
4240
+ # resp.run_output_uri #=> String
4233
4241
  #
4234
4242
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRun AWS API Documentation
4235
4243
  #
@@ -4622,7 +4630,7 @@ module Aws::Omics
4622
4630
  params: params,
4623
4631
  config: config)
4624
4632
  context[:gem_name] = 'aws-sdk-omics'
4625
- context[:gem_version] = '1.17.0'
4633
+ context[:gem_version] = '1.18.0'
4626
4634
  Seahorse::Client::Request.new(handlers, context)
4627
4635
  end
4628
4636
 
@@ -378,6 +378,7 @@ module Aws::Omics
378
378
  RunStatus = Shapes::StringShape.new(name: 'RunStatus')
379
379
  RunStatusMessage = Shapes::StringShape.new(name: 'RunStatusMessage')
380
380
  RunTimestamp = Shapes::TimestampShape.new(name: 'RunTimestamp', timestampFormat: "iso8601")
381
+ RunUuid = Shapes::StringShape.new(name: 'RunUuid')
381
382
  S3Destination = Shapes::StringShape.new(name: 'S3Destination')
382
383
  S3Uri = Shapes::StringShape.new(name: 'S3Uri')
383
384
  SampleId = Shapes::StringShape.new(name: 'SampleId')
@@ -1139,6 +1140,8 @@ module Aws::Omics
1139
1140
  GetRunResponse.add_member(:retention_mode, Shapes::ShapeRef.new(shape: RunRetentionMode, location_name: "retentionMode"))
1140
1141
  GetRunResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: RunFailureReason, location_name: "failureReason"))
1141
1142
  GetRunResponse.add_member(:log_location, Shapes::ShapeRef.new(shape: RunLogLocation, location_name: "logLocation"))
1143
+ GetRunResponse.add_member(:uuid, Shapes::ShapeRef.new(shape: RunUuid, location_name: "uuid"))
1144
+ GetRunResponse.add_member(:run_output_uri, Shapes::ShapeRef.new(shape: RunOutputUri, location_name: "runOutputUri"))
1142
1145
  GetRunResponse.struct_class = Types::GetRunResponse
1143
1146
 
1144
1147
  GetRunTaskRequest.add_member(:id, Shapes::ShapeRef.new(shape: RunId, required: true, location: "uri", location_name: "id"))
@@ -1858,6 +1861,8 @@ module Aws::Omics
1858
1861
  StartRunResponse.add_member(:id, Shapes::ShapeRef.new(shape: RunId, location_name: "id"))
1859
1862
  StartRunResponse.add_member(:status, Shapes::ShapeRef.new(shape: RunStatus, location_name: "status"))
1860
1863
  StartRunResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1864
+ StartRunResponse.add_member(:uuid, Shapes::ShapeRef.new(shape: RunUuid, location_name: "uuid"))
1865
+ StartRunResponse.add_member(:run_output_uri, Shapes::ShapeRef.new(shape: RunOutputUri, location_name: "runOutputUri"))
1861
1866
  StartRunResponse.struct_class = Types::StartRunResponse
1862
1867
 
1863
1868
  StartVariantImportRequest.add_member(:destination_name, Shapes::ShapeRef.new(shape: StoreName, required: true, location_name: "destinationName"))
@@ -2675,6 +2675,14 @@ module Aws::Omics
2675
2675
  # The location of the run log.
2676
2676
  # @return [Types::RunLogLocation]
2677
2677
  #
2678
+ # @!attribute [rw] uuid
2679
+ # The universally unique identifier for a run.
2680
+ # @return [String]
2681
+ #
2682
+ # @!attribute [rw] run_output_uri
2683
+ # The destination for workflow outputs.
2684
+ # @return [String]
2685
+ #
2678
2686
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunResponse AWS API Documentation
2679
2687
  #
2680
2688
  class GetRunResponse < Struct.new(
@@ -2704,7 +2712,9 @@ module Aws::Omics
2704
2712
  :accelerators,
2705
2713
  :retention_mode,
2706
2714
  :failure_reason,
2707
- :log_location)
2715
+ :log_location,
2716
+ :uuid,
2717
+ :run_output_uri)
2708
2718
  SENSITIVE = []
2709
2719
  include Aws::Structure
2710
2720
  end
@@ -5825,13 +5835,23 @@ module Aws::Omics
5825
5835
  # The run's tags.
5826
5836
  # @return [Hash<String,String>]
5827
5837
  #
5838
+ # @!attribute [rw] uuid
5839
+ # The universally unique identifier for a run.
5840
+ # @return [String]
5841
+ #
5842
+ # @!attribute [rw] run_output_uri
5843
+ # The destination for workflow outputs.
5844
+ # @return [String]
5845
+ #
5828
5846
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRunResponse AWS API Documentation
5829
5847
  #
5830
5848
  class StartRunResponse < Struct.new(
5831
5849
  :arn,
5832
5850
  :id,
5833
5851
  :status,
5834
- :tags)
5852
+ :tags,
5853
+ :uuid,
5854
+ :run_output_uri)
5835
5855
  SENSITIVE = []
5836
5856
  include Aws::Structure
5837
5857
  end
data/lib/aws-sdk-omics.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-omics/customizations'
53
53
  # @!group service
54
54
  module Aws::Omics
55
55
 
56
- GEM_VERSION = '1.17.0'
56
+ GEM_VERSION = '1.18.0'
57
57
 
58
58
  end
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.17.0
4
+ version: 1.18.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-10-19 00:00:00.000000000 Z
11
+ date: 2023-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core