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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-omics/client.rb +2 -1
- data/lib/aws-sdk-omics/client_api.rb +1 -0
- data/lib/aws-sdk-omics/types.rb +6 -1
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b34e6a9b94ec5ec7e4fdacddeb2f7e65bbd2aa13144dce56e632d26f62265aeb
|
|
4
|
+
data.tar.gz: '086b143094a7fd9daccee19fd11f307e24dc6fc94c295f137792cc3e45d36b51'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50ecfd3492c21977cdb331d27e019ff24acb659234798308434d9ac7678a5da10bfd590264b1c021523f14eceefaa8fcc2d2af078c5a6d32b00d4f5d0063f4f9
|
|
7
|
+
data.tar.gz: d80116c8dc17355b6e2ae13f58277892db4ae90023b9e6141772c3824479f05b31c8bf16fcc1e891790aadba06848caf506142120295f72780a6a35f5c317339
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.73.0
|
data/lib/aws-sdk-omics/client.rb
CHANGED
|
@@ -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.
|
|
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"))
|
data/lib/aws-sdk-omics/types.rb
CHANGED
|
@@ -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
data/sig/types.rbs
CHANGED