aws-sdk-omics 1.75.0 → 1.76.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec3e162fded7e80bbd14d01731cb17f3400f94708c58d8c3b7de02904416ae4d
4
- data.tar.gz: c1be43d0ae211ad676bc29f2aca6a744de1b2a4bf972d48c9d4c4b6b1207818f
3
+ metadata.gz: 9ab0f75a0b116c9edd8a175d9a51cc2687f34d7c5099a8fab6dd0f2127c5553d
4
+ data.tar.gz: 10a6b679f93c57204f436fec4dd2f14bc0fd05b7edf8ea89b5f7154b9549998d
5
5
  SHA512:
6
- metadata.gz: eeb8d778a01a978ee2ae53bf1baaa93def349ad6e9ae96862b58c164ab31ed7fceaa42f486099e94556f94b3ca25625cc194a68a4dd1ef70a5d79f17b272c487
7
- data.tar.gz: d51bacaae608b0134c6e9dd12be4e17f406b19354aada8adeb8d6a5e4da8c08f17799ee1bda75c56c77ec48cc830feb36c9f10e3e106d5559c9109388206f837
6
+ metadata.gz: 2c93c237cfa54e438685b66e5cfd45b7ccd693544a5588ed0cfe8a68044cca042e545d7f1b4d0e94a2de91203425b38b57c3ce33eefcc5e1eb43c4f5d01fb70a
7
+ data.tar.gz: 9e0637f6e2b8690819fcd1cbbad53e4e31698be4b00a820c4e96adc1aa0b8383da1ff4a1c993d8aea0c3f5f35d911f784c81a312f46d79f656a597f1bde07bf8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.76.0 (2026-07-16)
5
+ ------------------
6
+
7
+ * Feature - Adds support for returning the task UUID (universally unique identifier) in GetRunTask and ListRunTasks responses
8
+
4
9
  1.75.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.75.0
1
+ 1.76.0
@@ -3810,6 +3810,7 @@ module Aws::Omics
3810
3810
  # * {Types::GetRunTaskResponse#instance_type #instance_type} => String
3811
3811
  # * {Types::GetRunTaskResponse#failure_reason #failure_reason} => String
3812
3812
  # * {Types::GetRunTaskResponse#image_details #image_details} => Types::ImageDetails
3813
+ # * {Types::GetRunTaskResponse#uuid #uuid} => String
3813
3814
  #
3814
3815
  # @example Request syntax with placeholder values
3815
3816
  #
@@ -3838,6 +3839,7 @@ module Aws::Omics
3838
3839
  # resp.image_details.image #=> String
3839
3840
  # resp.image_details.image_digest #=> String
3840
3841
  # resp.image_details.source_image #=> String
3842
+ # resp.uuid #=> String
3841
3843
  #
3842
3844
  #
3843
3845
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -5358,6 +5360,7 @@ module Aws::Omics
5358
5360
  # resp.items[0].stop_time #=> Time
5359
5361
  # resp.items[0].gpus #=> Integer
5360
5362
  # resp.items[0].instance_type #=> String
5363
+ # resp.items[0].uuid #=> String
5361
5364
  # resp.next_token #=> String
5362
5365
  #
5363
5366
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListRunTasks AWS API Documentation
@@ -7412,7 +7415,7 @@ module Aws::Omics
7412
7415
  tracer: tracer
7413
7416
  )
7414
7417
  context[:gem_name] = 'aws-sdk-omics'
7415
- context[:gem_version] = '1.75.0'
7418
+ context[:gem_version] = '1.76.0'
7416
7419
  Seahorse::Client::Request.new(handlers, context)
7417
7420
  end
7418
7421
 
@@ -602,6 +602,7 @@ module Aws::Omics
602
602
  TaskStatus = Shapes::StringShape.new(name: 'TaskStatus')
603
603
  TaskStatusMessage = Shapes::StringShape.new(name: 'TaskStatusMessage')
604
604
  TaskTimestamp = Shapes::TimestampShape.new(name: 'TaskTimestamp', timestampFormat: "iso8601")
605
+ TaskUuid = Shapes::StringShape.new(name: 'TaskUuid')
605
606
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
606
607
  TsvOptions = Shapes::StructureShape.new(name: 'TsvOptions')
607
608
  TsvStoreOptions = Shapes::StructureShape.new(name: 'TsvStoreOptions')
@@ -1588,6 +1589,7 @@ module Aws::Omics
1588
1589
  GetRunTaskResponse.add_member(:instance_type, Shapes::ShapeRef.new(shape: TaskInstanceType, location_name: "instanceType"))
1589
1590
  GetRunTaskResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: TaskFailureReason, location_name: "failureReason"))
1590
1591
  GetRunTaskResponse.add_member(:image_details, Shapes::ShapeRef.new(shape: ImageDetails, location_name: "imageDetails"))
1592
+ GetRunTaskResponse.add_member(:uuid, Shapes::ShapeRef.new(shape: TaskUuid, location_name: "uuid"))
1591
1593
  GetRunTaskResponse.struct_class = Types::GetRunTaskResponse
1592
1594
 
1593
1595
  GetS3AccessPolicyRequest.add_member(:s3_access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, required: true, location: "uri", location_name: "s3AccessPointArn"))
@@ -2596,6 +2598,7 @@ module Aws::Omics
2596
2598
  TaskListItem.add_member(:stop_time, Shapes::ShapeRef.new(shape: TaskTimestamp, location_name: "stopTime"))
2597
2599
  TaskListItem.add_member(:gpus, Shapes::ShapeRef.new(shape: TaskListItemGpusInteger, location_name: "gpus"))
2598
2600
  TaskListItem.add_member(:instance_type, Shapes::ShapeRef.new(shape: TaskInstanceType, location_name: "instanceType"))
2601
+ TaskListItem.add_member(:uuid, Shapes::ShapeRef.new(shape: TaskUuid, location_name: "uuid"))
2599
2602
  TaskListItem.struct_class = Types::TaskListItem
2600
2603
 
2601
2604
  ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
@@ -4223,6 +4223,10 @@ module Aws::Omics
4223
4223
  # Details about the container image that this task uses.
4224
4224
  # @return [Types::ImageDetails]
4225
4225
  #
4226
+ # @!attribute [rw] uuid
4227
+ # The universally unique identifier (UUID) for the workflow task.
4228
+ # @return [String]
4229
+ #
4226
4230
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunTaskResponse AWS API Documentation
4227
4231
  #
4228
4232
  class GetRunTaskResponse < Struct.new(
@@ -4241,7 +4245,8 @@ module Aws::Omics
4241
4245
  :gpus,
4242
4246
  :instance_type,
4243
4247
  :failure_reason,
4244
- :image_details)
4248
+ :image_details,
4249
+ :uuid)
4245
4250
  SENSITIVE = []
4246
4251
  include Aws::Structure
4247
4252
  end
@@ -8746,6 +8751,10 @@ module Aws::Omics
8746
8751
  # The instance type for a task.
8747
8752
  # @return [String]
8748
8753
  #
8754
+ # @!attribute [rw] uuid
8755
+ # The universally unique identifier (UUID) for the workflow task.
8756
+ # @return [String]
8757
+ #
8749
8758
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/TaskListItem AWS API Documentation
8750
8759
  #
8751
8760
  class TaskListItem < Struct.new(
@@ -8760,7 +8769,8 @@ module Aws::Omics
8760
8769
  :start_time,
8761
8770
  :stop_time,
8762
8771
  :gpus,
8763
- :instance_type)
8772
+ :instance_type,
8773
+ :uuid)
8764
8774
  SENSITIVE = []
8765
8775
  include Aws::Structure
8766
8776
  end
data/lib/aws-sdk-omics.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::Omics
55
55
  autoload :EndpointProvider, 'aws-sdk-omics/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-omics/endpoints'
57
57
 
58
- GEM_VERSION = '1.75.0'
58
+ GEM_VERSION = '1.76.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -996,6 +996,7 @@ module Aws
996
996
  def instance_type: () -> ::String
997
997
  def failure_reason: () -> ::String
998
998
  def image_details: () -> Types::ImageDetails
999
+ def uuid: () -> ::String
999
1000
  end
1000
1001
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run_task-instance_method
1001
1002
  def get_run_task: (
data/sig/types.rbs CHANGED
@@ -1113,6 +1113,7 @@ module Aws::Omics
1113
1113
  attr_accessor instance_type: ::String
1114
1114
  attr_accessor failure_reason: ::String
1115
1115
  attr_accessor image_details: Types::ImageDetails
1116
+ attr_accessor uuid: ::String
1116
1117
  SENSITIVE: []
1117
1118
  end
1118
1119
 
@@ -2334,6 +2335,7 @@ module Aws::Omics
2334
2335
  attr_accessor stop_time: ::Time
2335
2336
  attr_accessor gpus: ::Integer
2336
2337
  attr_accessor instance_type: ::String
2338
+ attr_accessor uuid: ::String
2337
2339
  SENSITIVE: []
2338
2340
  end
2339
2341
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-omics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.75.0
4
+ version: 1.76.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services