aws-sdk-omics 1.72.0 → 1.73.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: 6e7ac489105ab762cc39df626e4bca1cf7f46f2c936087b2df37245b9927da63
4
- data.tar.gz: 7a9dc2b57f77d573f9365c241c1ff34d9b88b0bd393827d142e9fb45a5304f52
3
+ metadata.gz: b34e6a9b94ec5ec7e4fdacddeb2f7e65bbd2aa13144dce56e632d26f62265aeb
4
+ data.tar.gz: '086b143094a7fd9daccee19fd11f307e24dc6fc94c295f137792cc3e45d36b51'
5
5
  SHA512:
6
- metadata.gz: 1e930748f54ef29cce4690bb80257b8cfbfccc6e2813b8590fd4b195f416aa12d309abd3a72e186ecd3306996ee416a154a83a735804a2f04da60216d87d46c6
7
- data.tar.gz: cb64716e8ceba0cf9c43ae7205759ded6ed8ccb54ea07ab0d92eca7d0dc3e003c4aeff88bde79447e3b7fe8df21f298f3ab8d5ff1256532d6c5c1bd807e35eec
6
+ metadata.gz: 50ecfd3492c21977cdb331d27e019ff24acb659234798308434d9ac7678a5da10bfd590264b1c021523f14eceefaa8fcc2d2af078c5a6d32b00d4f5d0063f4f9
7
+ data.tar.gz: d80116c8dc17355b6e2ae13f58277892db4ae90023b9e6141772c3824479f05b31c8bf16fcc1e891790aadba06848caf506142120295f72780a6a35f5c317339
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.73.0 (2026-06-11)
5
+ ------------------
6
+
7
+ * Feature - Adds support for workflowName in the ListRuns API response.
8
+
4
9
  1.72.0 (2026-06-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.72.0
1
+ 1.73.0
@@ -5432,6 +5432,7 @@ module Aws::Omics
5432
5432
  # resp.items[0].stop_time #=> Time
5433
5433
  # resp.items[0].storage_type #=> String, one of "STATIC", "DYNAMIC"
5434
5434
  # resp.items[0].workflow_version_name #=> String
5435
+ # resp.items[0].workflow_name #=> String
5435
5436
  # resp.next_token #=> String
5436
5437
  #
5437
5438
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListRuns AWS API Documentation
@@ -7400,7 +7401,7 @@ module Aws::Omics
7400
7401
  tracer: tracer
7401
7402
  )
7402
7403
  context[:gem_name] = 'aws-sdk-omics'
7403
- context[:gem_version] = '1.72.0'
7404
+ context[:gem_version] = '1.73.0'
7404
7405
  Seahorse::Client::Request.new(handlers, context)
7405
7406
  end
7406
7407
 
@@ -2305,6 +2305,7 @@ module Aws::Omics
2305
2305
  RunListItem.add_member(:stop_time, Shapes::ShapeRef.new(shape: RunTimestamp, location_name: "stopTime"))
2306
2306
  RunListItem.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "storageType"))
2307
2307
  RunListItem.add_member(:workflow_version_name, Shapes::ShapeRef.new(shape: WorkflowVersionName, location_name: "workflowVersionName"))
2308
+ RunListItem.add_member(:workflow_name, Shapes::ShapeRef.new(shape: WorkflowName, location_name: "workflowName"))
2308
2309
  RunListItem.struct_class = Types::RunListItem
2309
2310
 
2310
2311
  RunLogLocation.add_member(:engine_log_stream, Shapes::ShapeRef.new(shape: EngineLogStream, location_name: "engineLogStream"))
@@ -7424,6 +7424,10 @@ module Aws::Omics
7424
7424
  # The name of the workflow version.
7425
7425
  # @return [String]
7426
7426
  #
7427
+ # @!attribute [rw] workflow_name
7428
+ # The name of the workflow.
7429
+ # @return [String]
7430
+ #
7427
7431
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/RunListItem AWS API Documentation
7428
7432
  #
7429
7433
  class RunListItem < Struct.new(
@@ -7439,7 +7443,8 @@ module Aws::Omics
7439
7443
  :start_time,
7440
7444
  :stop_time,
7441
7445
  :storage_type,
7442
- :workflow_version_name)
7446
+ :workflow_version_name,
7447
+ :workflow_name)
7443
7448
  SENSITIVE = []
7444
7449
  include Aws::Structure
7445
7450
  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.72.0'
58
+ GEM_VERSION = '1.73.0'
59
59
 
60
60
  end
61
61
 
data/sig/types.rbs CHANGED
@@ -2004,6 +2004,7 @@ module Aws::Omics
2004
2004
  attr_accessor stop_time: ::Time
2005
2005
  attr_accessor storage_type: ("STATIC" | "DYNAMIC")
2006
2006
  attr_accessor workflow_version_name: ::String
2007
+ attr_accessor workflow_name: ::String
2007
2008
  SENSITIVE: []
2008
2009
  end
2009
2010
 
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.72.0
4
+ version: 1.73.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services