aws-sdk-omics 1.75.0 → 1.77.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 +30 -18
- data/lib/aws-sdk-omics/client_api.rb +7 -0
- data/lib/aws-sdk-omics/types.rb +58 -26
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +7 -3
- data/sig/types.rbs +9 -4
- 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: 06fe846b2eed20a9b86e09dec2aaec57ccb03ad180828ce9172251e5e68dacd3
|
|
4
|
+
data.tar.gz: 64cb15a2686c42e28be48ad066e9cb6214e3f0b7b3de43f2bb6555dac5f03e24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb0f2761ddf873640a5f4b55133ff8132798dc3cf03b03a3669c3dc0a25a62eca03df6037db7805d18d7983e671debacc5bbf24a5f633f3de895bc25a218fa1c
|
|
7
|
+
data.tar.gz: 15d5e4f25f04b2da56a5a0755b770f1ae7351daa8ac2f30eccd28c7a348e14828990139a99ec52a869662a16bb9b8fdc04f08fec0d40072ef7cfda886269a0ee
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.77.0 (2026-09-08)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for session policies in AWS HealthOmics Workflows, allowing customers to scope down IAM permissions for individual workflow runs without modifying the service role.
|
|
8
|
+
|
|
9
|
+
1.76.0 (2026-07-16)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for returning the task UUID (universally unique identifier) in GetRunTask and ListRunTasks responses
|
|
13
|
+
|
|
4
14
|
1.75.0 (2026-07-09)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.77.0
|
data/lib/aws-sdk-omics/client.rb
CHANGED
|
@@ -1505,8 +1505,8 @@ module Aws::Omics
|
|
|
1505
1505
|
end
|
|
1506
1506
|
|
|
1507
1507
|
# Creates a cross-account shared resource. The resource owner makes an
|
|
1508
|
-
# offer to share the resource with the principal subscriber (an
|
|
1509
|
-
# with a different account than the resource owner).
|
|
1508
|
+
# offer to share the resource with the principal subscriber (an Amazon
|
|
1509
|
+
# Web Services user with a different account than the resource owner).
|
|
1510
1510
|
#
|
|
1511
1511
|
# The following resources support cross-account sharing:
|
|
1512
1512
|
#
|
|
@@ -2226,10 +2226,10 @@ module Aws::Omics
|
|
|
2226
2226
|
# runs, call `DeleteRunBatch` before calling `DeleteBatch`.
|
|
2227
2227
|
#
|
|
2228
2228
|
# `DeleteBatch` requires the batch to be in a terminal state:
|
|
2229
|
-
# `PROCESSED`, `FAILED`, `CANCELLED`,
|
|
2230
|
-
# `DeleteBatch` completes, the batch metadata is
|
|
2231
|
-
# You cannot call `GetBatch`, `ListRunsInBatch`,
|
|
2232
|
-
# `CancelRunBatch` on a deleted batch.
|
|
2229
|
+
# `PROCESSED`, `FAILED`, `CANCELLED`, `RUNS_DELETE_FAILED`, or
|
|
2230
|
+
# `RUNS_DELETED`. After `DeleteBatch` completes, the batch metadata is
|
|
2231
|
+
# no longer accessible. You cannot call `GetBatch`, `ListRunsInBatch`,
|
|
2232
|
+
# `DeleteRunBatch`, or `CancelRunBatch` on a deleted batch.
|
|
2233
2233
|
#
|
|
2234
2234
|
# @option params [required, String] :batch_id
|
|
2235
2235
|
# The identifier portion of the run batch ARN.
|
|
@@ -2928,7 +2928,7 @@ module Aws::Omics
|
|
|
2928
2928
|
# resp.arn #=> String
|
|
2929
2929
|
# resp.uuid #=> String
|
|
2930
2930
|
# resp.name #=> String
|
|
2931
|
-
# resp.status #=> String, one of "CREATING", "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETED"
|
|
2931
|
+
# resp.status #=> String, one of "CREATING", "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETE_FAILED", "RUNS_DELETED"
|
|
2932
2932
|
# resp.tags #=> Hash
|
|
2933
2933
|
# resp.tags["TagKey"] #=> String
|
|
2934
2934
|
# resp.total_runs #=> Integer
|
|
@@ -2952,6 +2952,7 @@ module Aws::Omics
|
|
|
2952
2952
|
# resp.default_run_setting.workflow_version_name #=> String
|
|
2953
2953
|
# resp.default_run_setting.networking_mode #=> String, one of "RESTRICTED", "VPC"
|
|
2954
2954
|
# resp.default_run_setting.configuration_name #=> String
|
|
2955
|
+
# resp.default_run_setting.session_policy #=> String
|
|
2955
2956
|
# resp.default_run_setting.scratch_storage_mode #=> String, one of "LOCAL", "SHARED"
|
|
2956
2957
|
# resp.submission_summary.successful_start_submission_count #=> Integer
|
|
2957
2958
|
# resp.submission_summary.failed_start_submission_count #=> Integer
|
|
@@ -3608,6 +3609,7 @@ module Aws::Omics
|
|
|
3608
3609
|
# * {Types::GetRunResponse#configuration #configuration} => Types::ConfigurationDetails
|
|
3609
3610
|
# * {Types::GetRunResponse#vpc_config #vpc_config} => Types::VpcConfigResponse
|
|
3610
3611
|
# * {Types::GetRunResponse#engine_settings #engine_settings} => Hash,Array,String,Numeric,Boolean
|
|
3612
|
+
# * {Types::GetRunResponse#session_policy #session_policy} => String
|
|
3611
3613
|
#
|
|
3612
3614
|
# @example Request syntax with placeholder values
|
|
3613
3615
|
#
|
|
@@ -3667,6 +3669,7 @@ module Aws::Omics
|
|
|
3667
3669
|
# resp.vpc_config.subnet_ids #=> Array
|
|
3668
3670
|
# resp.vpc_config.subnet_ids[0] #=> String
|
|
3669
3671
|
# resp.vpc_config.vpc_id #=> String
|
|
3672
|
+
# resp.session_policy #=> String
|
|
3670
3673
|
#
|
|
3671
3674
|
#
|
|
3672
3675
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -3810,6 +3813,7 @@ module Aws::Omics
|
|
|
3810
3813
|
# * {Types::GetRunTaskResponse#instance_type #instance_type} => String
|
|
3811
3814
|
# * {Types::GetRunTaskResponse#failure_reason #failure_reason} => String
|
|
3812
3815
|
# * {Types::GetRunTaskResponse#image_details #image_details} => Types::ImageDetails
|
|
3816
|
+
# * {Types::GetRunTaskResponse#uuid #uuid} => String
|
|
3813
3817
|
#
|
|
3814
3818
|
# @example Request syntax with placeholder values
|
|
3815
3819
|
#
|
|
@@ -3838,6 +3842,7 @@ module Aws::Omics
|
|
|
3838
3842
|
# resp.image_details.image #=> String
|
|
3839
3843
|
# resp.image_details.image_digest #=> String
|
|
3840
3844
|
# resp.image_details.source_image #=> String
|
|
3845
|
+
# resp.uuid #=> String
|
|
3841
3846
|
#
|
|
3842
3847
|
#
|
|
3843
3848
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -4599,7 +4604,7 @@ module Aws::Omics
|
|
|
4599
4604
|
# resp = client.list_batch({
|
|
4600
4605
|
# max_items: 1,
|
|
4601
4606
|
# starting_token: "ListToken",
|
|
4602
|
-
# status: "CREATING", # accepts CREATING, PENDING, SUBMITTING, INPROGRESS, STOPPING, CANCELLED, FAILED, PROCESSED, RUNS_DELETING, RUNS_DELETED
|
|
4607
|
+
# status: "CREATING", # accepts CREATING, PENDING, SUBMITTING, INPROGRESS, STOPPING, CANCELLED, FAILED, PROCESSED, RUNS_DELETING, RUNS_DELETE_FAILED, RUNS_DELETED
|
|
4603
4608
|
# name: "BatchName",
|
|
4604
4609
|
# run_group_id: "RunGroupId",
|
|
4605
4610
|
# })
|
|
@@ -4609,7 +4614,7 @@ module Aws::Omics
|
|
|
4609
4614
|
# resp.items #=> Array
|
|
4610
4615
|
# resp.items[0].id #=> String
|
|
4611
4616
|
# resp.items[0].name #=> String
|
|
4612
|
-
# resp.items[0].status #=> String, one of "CREATING", "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETED"
|
|
4617
|
+
# resp.items[0].status #=> String, one of "CREATING", "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETE_FAILED", "RUNS_DELETED"
|
|
4613
4618
|
# resp.items[0].created_at #=> Time
|
|
4614
4619
|
# resp.items[0].total_runs #=> Integer
|
|
4615
4620
|
# resp.items[0].workflow_id #=> String
|
|
@@ -5358,6 +5363,7 @@ module Aws::Omics
|
|
|
5358
5363
|
# resp.items[0].stop_time #=> Time
|
|
5359
5364
|
# resp.items[0].gpus #=> Integer
|
|
5360
5365
|
# resp.items[0].instance_type #=> String
|
|
5366
|
+
# resp.items[0].uuid #=> String
|
|
5361
5367
|
# resp.next_token #=> String
|
|
5362
5368
|
#
|
|
5363
5369
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListRunTasks AWS API Documentation
|
|
@@ -6058,9 +6064,9 @@ module Aws::Omics
|
|
|
6058
6064
|
end
|
|
6059
6065
|
|
|
6060
6066
|
# Activates an archived read set and returns its metadata in a JSON
|
|
6061
|
-
# formatted output.
|
|
6062
|
-
# sets after 30 days. To monitor the status of your
|
|
6063
|
-
# job, use the `GetReadSetActivationJob` operation.
|
|
6067
|
+
# formatted output. Amazon Web Services HealthOmics automatically
|
|
6068
|
+
# archives unused read sets after 30 days. To monitor the status of your
|
|
6069
|
+
# read set activation job, use the `GetReadSetActivationJob` operation.
|
|
6064
6070
|
#
|
|
6065
6071
|
# To learn more, see [Activating read sets][1] in the *Amazon Web
|
|
6066
6072
|
# Services HealthOmics User Guide*.
|
|
@@ -6389,8 +6395,8 @@ module Aws::Omics
|
|
|
6389
6395
|
# Web Services HealthOmics, S3, Cloudwatch logs, and EC2. An example
|
|
6390
6396
|
# `roleArn` is
|
|
6391
6397
|
# `arn:aws:iam::123456789012:role/omics-service-role-serviceRole-W8O1XMPL7QZ`.
|
|
6392
|
-
# In this example, the
|
|
6393
|
-
# name is `omics-service-role-serviceRole-W8O1XMPL7QZ`.
|
|
6398
|
+
# In this example, the Amazon Web Services account ID is `123456789012`
|
|
6399
|
+
# and the role name is `omics-service-role-serviceRole-W8O1XMPL7QZ`.
|
|
6394
6400
|
#
|
|
6395
6401
|
# @option params [String] :name
|
|
6396
6402
|
# A name for the run. This is recommended to view and organize runs in
|
|
@@ -6534,6 +6540,10 @@ module Aws::Omics
|
|
|
6534
6540
|
# @option params [String] :configuration_name
|
|
6535
6541
|
# Optional configuration name to use for the workflow run.
|
|
6536
6542
|
#
|
|
6543
|
+
# @option params [String] :session_policy
|
|
6544
|
+
# Optional inline policy json for scoping down permissions via a session
|
|
6545
|
+
# policy on the IAM role provided in the roleArn parameter.
|
|
6546
|
+
#
|
|
6537
6547
|
# @option params [Hash,Array,String,Numeric,Boolean] :engine_settings
|
|
6538
6548
|
# Engine-specific settings for the workflow run. Use this field to
|
|
6539
6549
|
# specify configuration options that are specific to the workflow engine
|
|
@@ -6583,6 +6593,7 @@ module Aws::Omics
|
|
|
6583
6593
|
# networking_mode: "RESTRICTED", # accepts RESTRICTED, VPC
|
|
6584
6594
|
# scratch_storage_mode: "LOCAL", # accepts LOCAL, SHARED
|
|
6585
6595
|
# configuration_name: "ConfigurationName",
|
|
6596
|
+
# session_policy: "SessionPolicy",
|
|
6586
6597
|
# engine_settings: {
|
|
6587
6598
|
# },
|
|
6588
6599
|
# })
|
|
@@ -6633,8 +6644,8 @@ module Aws::Omics
|
|
|
6633
6644
|
# not need to pass this option.**
|
|
6634
6645
|
#
|
|
6635
6646
|
# @option params [Hash<String,String>] :tags
|
|
6636
|
-
#
|
|
6637
|
-
# inherited by individual runs. To tag individual runs, use
|
|
6647
|
+
# Amazon Web Services tags to associate with the batch resource. These
|
|
6648
|
+
# tags are not inherited by individual runs. To tag individual runs, use
|
|
6638
6649
|
# `defaultRunSetting.runTags`.
|
|
6639
6650
|
#
|
|
6640
6651
|
# @option params [required, Types::DefaultRunSetting] :default_run_setting
|
|
@@ -6685,6 +6696,7 @@ module Aws::Omics
|
|
|
6685
6696
|
# workflow_version_name: "WorkflowVersionName",
|
|
6686
6697
|
# networking_mode: "RESTRICTED", # accepts RESTRICTED, VPC
|
|
6687
6698
|
# configuration_name: "ConfigurationName",
|
|
6699
|
+
# session_policy: "SessionPolicy",
|
|
6688
6700
|
# engine_settings: {
|
|
6689
6701
|
# },
|
|
6690
6702
|
# scratch_storage_mode: "LOCAL", # accepts LOCAL, SHARED
|
|
@@ -6714,7 +6726,7 @@ module Aws::Omics
|
|
|
6714
6726
|
#
|
|
6715
6727
|
# resp.id #=> String
|
|
6716
6728
|
# resp.arn #=> String
|
|
6717
|
-
# resp.status #=> String, one of "CREATING", "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETED"
|
|
6729
|
+
# resp.status #=> String, one of "CREATING", "PENDING", "SUBMITTING", "INPROGRESS", "STOPPING", "CANCELLED", "FAILED", "PROCESSED", "RUNS_DELETING", "RUNS_DELETE_FAILED", "RUNS_DELETED"
|
|
6718
6730
|
# resp.uuid #=> String
|
|
6719
6731
|
# resp.tags #=> Hash
|
|
6720
6732
|
# resp.tags["TagKey"] #=> String
|
|
@@ -7412,7 +7424,7 @@ module Aws::Omics
|
|
|
7412
7424
|
tracer: tracer
|
|
7413
7425
|
)
|
|
7414
7426
|
context[:gem_name] = 'aws-sdk-omics'
|
|
7415
|
-
context[:gem_version] = '1.
|
|
7427
|
+
context[:gem_version] = '1.77.0'
|
|
7416
7428
|
Seahorse::Client::Request.new(handlers, context)
|
|
7417
7429
|
end
|
|
7418
7430
|
|
|
@@ -525,6 +525,7 @@ module Aws::Omics
|
|
|
525
525
|
SequenceStoreStatus = Shapes::StringShape.new(name: 'SequenceStoreStatus')
|
|
526
526
|
SequenceStoreStatusMessage = Shapes::StringShape.new(name: 'SequenceStoreStatusMessage')
|
|
527
527
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
528
|
+
SessionPolicy = Shapes::StringShape.new(name: 'SessionPolicy')
|
|
528
529
|
ShareDetails = Shapes::StructureShape.new(name: 'ShareDetails')
|
|
529
530
|
ShareDetailsList = Shapes::ListShape.new(name: 'ShareDetailsList')
|
|
530
531
|
ShareName = Shapes::StringShape.new(name: 'ShareName')
|
|
@@ -602,6 +603,7 @@ module Aws::Omics
|
|
|
602
603
|
TaskStatus = Shapes::StringShape.new(name: 'TaskStatus')
|
|
603
604
|
TaskStatusMessage = Shapes::StringShape.new(name: 'TaskStatusMessage')
|
|
604
605
|
TaskTimestamp = Shapes::TimestampShape.new(name: 'TaskTimestamp', timestampFormat: "iso8601")
|
|
606
|
+
TaskUuid = Shapes::StringShape.new(name: 'TaskUuid')
|
|
605
607
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
|
606
608
|
TsvOptions = Shapes::StructureShape.new(name: 'TsvOptions')
|
|
607
609
|
TsvStoreOptions = Shapes::StructureShape.new(name: 'TsvStoreOptions')
|
|
@@ -1124,6 +1126,7 @@ module Aws::Omics
|
|
|
1124
1126
|
DefaultRunSetting.add_member(:workflow_version_name, Shapes::ShapeRef.new(shape: WorkflowVersionName, location_name: "workflowVersionName"))
|
|
1125
1127
|
DefaultRunSetting.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
|
|
1126
1128
|
DefaultRunSetting.add_member(:configuration_name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "configurationName"))
|
|
1129
|
+
DefaultRunSetting.add_member(:session_policy, Shapes::ShapeRef.new(shape: SessionPolicy, location_name: "sessionPolicy"))
|
|
1127
1130
|
DefaultRunSetting.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
|
|
1128
1131
|
DefaultRunSetting.add_member(:scratch_storage_mode, Shapes::ShapeRef.new(shape: ScratchStorageMode, location_name: "scratchStorageMode"))
|
|
1129
1132
|
DefaultRunSetting.struct_class = Types::DefaultRunSetting
|
|
@@ -1566,6 +1569,7 @@ module Aws::Omics
|
|
|
1566
1569
|
GetRunResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationDetails, location_name: "configuration"))
|
|
1567
1570
|
GetRunResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfigResponse, location_name: "vpcConfig"))
|
|
1568
1571
|
GetRunResponse.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
|
|
1572
|
+
GetRunResponse.add_member(:session_policy, Shapes::ShapeRef.new(shape: SessionPolicy, location_name: "sessionPolicy"))
|
|
1569
1573
|
GetRunResponse.struct_class = Types::GetRunResponse
|
|
1570
1574
|
|
|
1571
1575
|
GetRunTaskRequest.add_member(:id, Shapes::ShapeRef.new(shape: RunId, required: true, location: "uri", location_name: "id"))
|
|
@@ -1588,6 +1592,7 @@ module Aws::Omics
|
|
|
1588
1592
|
GetRunTaskResponse.add_member(:instance_type, Shapes::ShapeRef.new(shape: TaskInstanceType, location_name: "instanceType"))
|
|
1589
1593
|
GetRunTaskResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: TaskFailureReason, location_name: "failureReason"))
|
|
1590
1594
|
GetRunTaskResponse.add_member(:image_details, Shapes::ShapeRef.new(shape: ImageDetails, location_name: "imageDetails"))
|
|
1595
|
+
GetRunTaskResponse.add_member(:uuid, Shapes::ShapeRef.new(shape: TaskUuid, location_name: "uuid"))
|
|
1591
1596
|
GetRunTaskResponse.struct_class = Types::GetRunTaskResponse
|
|
1592
1597
|
|
|
1593
1598
|
GetS3AccessPolicyRequest.add_member(:s3_access_point_arn, Shapes::ShapeRef.new(shape: S3AccessPointArn, required: true, location: "uri", location_name: "s3AccessPointArn"))
|
|
@@ -2526,6 +2531,7 @@ module Aws::Omics
|
|
|
2526
2531
|
StartRunRequest.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
|
|
2527
2532
|
StartRunRequest.add_member(:scratch_storage_mode, Shapes::ShapeRef.new(shape: ScratchStorageMode, location_name: "scratchStorageMode"))
|
|
2528
2533
|
StartRunRequest.add_member(:configuration_name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "configurationName"))
|
|
2534
|
+
StartRunRequest.add_member(:session_policy, Shapes::ShapeRef.new(shape: SessionPolicy, location_name: "sessionPolicy"))
|
|
2529
2535
|
StartRunRequest.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
|
|
2530
2536
|
StartRunRequest.struct_class = Types::StartRunRequest
|
|
2531
2537
|
|
|
@@ -2596,6 +2602,7 @@ module Aws::Omics
|
|
|
2596
2602
|
TaskListItem.add_member(:stop_time, Shapes::ShapeRef.new(shape: TaskTimestamp, location_name: "stopTime"))
|
|
2597
2603
|
TaskListItem.add_member(:gpus, Shapes::ShapeRef.new(shape: TaskListItemGpusInteger, location_name: "gpus"))
|
|
2598
2604
|
TaskListItem.add_member(:instance_type, Shapes::ShapeRef.new(shape: TaskInstanceType, location_name: "instanceType"))
|
|
2605
|
+
TaskListItem.add_member(:uuid, Shapes::ShapeRef.new(shape: TaskUuid, location_name: "uuid"))
|
|
2599
2606
|
TaskListItem.struct_class = Types::TaskListItem
|
|
2600
2607
|
|
|
2601
2608
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
data/lib/aws-sdk-omics/types.rb
CHANGED
|
@@ -2048,9 +2048,9 @@ module Aws::Omics
|
|
|
2048
2048
|
#
|
|
2049
2049
|
# @!attribute [rw] role_arn
|
|
2050
2050
|
# The IAM role ARN that grants HealthOmics permissions to access
|
|
2051
|
-
# required
|
|
2052
|
-
# must have the same permissions required for
|
|
2053
|
-
# calls.
|
|
2051
|
+
# required Amazon Web Services resources such as Amazon S3 and
|
|
2052
|
+
# CloudWatch. The role must have the same permissions required for
|
|
2053
|
+
# individual `StartRun` calls.
|
|
2054
2054
|
# @return [String]
|
|
2055
2055
|
#
|
|
2056
2056
|
# @!attribute [rw] name
|
|
@@ -2099,8 +2099,9 @@ module Aws::Omics
|
|
|
2099
2099
|
# @return [String]
|
|
2100
2100
|
#
|
|
2101
2101
|
# @!attribute [rw] run_tags
|
|
2102
|
-
#
|
|
2103
|
-
# `runTags`; run-specific values take precedence when
|
|
2102
|
+
# Amazon Web Services tags to associate with each workflow run. Merged
|
|
2103
|
+
# with per-run `runTags`; run-specific values take precedence when
|
|
2104
|
+
# keys overlap.
|
|
2104
2105
|
# @return [Hash<String,String>]
|
|
2105
2106
|
#
|
|
2106
2107
|
# @!attribute [rw] retention_mode
|
|
@@ -2112,13 +2113,13 @@ module Aws::Omics
|
|
|
2112
2113
|
# @return [String]
|
|
2113
2114
|
#
|
|
2114
2115
|
# @!attribute [rw] workflow_owner_id
|
|
2115
|
-
# The
|
|
2116
|
-
# workflow sharing.
|
|
2116
|
+
# The Amazon Web Services account ID of the workflow owner, used for
|
|
2117
|
+
# cross-account workflow sharing.
|
|
2117
2118
|
# @return [String]
|
|
2118
2119
|
#
|
|
2119
2120
|
# @!attribute [rw] output_bucket_owner_id
|
|
2120
|
-
# The expected
|
|
2121
|
-
# Can be overridden per run.
|
|
2121
|
+
# The expected Amazon Web Services account ID of the owner of the
|
|
2122
|
+
# output S3 bucket. Can be overridden per run.
|
|
2122
2123
|
# @return [String]
|
|
2123
2124
|
#
|
|
2124
2125
|
# @!attribute [rw] workflow_version_name
|
|
@@ -2134,6 +2135,11 @@ module Aws::Omics
|
|
|
2134
2135
|
# Optional configuration name to use for the workflow run.
|
|
2135
2136
|
# @return [String]
|
|
2136
2137
|
#
|
|
2138
|
+
# @!attribute [rw] session_policy
|
|
2139
|
+
# Optional inline policy json for scoping down permissions via a
|
|
2140
|
+
# session policy on the IAM role provided in the roleArn parameter.
|
|
2141
|
+
# @return [String]
|
|
2142
|
+
#
|
|
2137
2143
|
# @!attribute [rw] engine_settings
|
|
2138
2144
|
# Engine-specific settings for the workflow run. Use this field to
|
|
2139
2145
|
# specify configuration options that are specific to the workflow
|
|
@@ -2170,6 +2176,7 @@ module Aws::Omics
|
|
|
2170
2176
|
:workflow_version_name,
|
|
2171
2177
|
:networking_mode,
|
|
2172
2178
|
:configuration_name,
|
|
2179
|
+
:session_policy,
|
|
2173
2180
|
:engine_settings,
|
|
2174
2181
|
:scratch_storage_mode)
|
|
2175
2182
|
SENSITIVE = []
|
|
@@ -3059,11 +3066,12 @@ module Aws::Omics
|
|
|
3059
3066
|
# (submitting runs), `INPROGRESS` (runs executing), `STOPPING`
|
|
3060
3067
|
# (cancellation in progress), `PROCESSED` (all runs completed),
|
|
3061
3068
|
# `CANCELLED` (batch cancelled), `FAILED` (batch failed),
|
|
3062
|
-
# `RUNS_DELETING` (deleting runs), `
|
|
3069
|
+
# `RUNS_DELETING` (deleting runs), `RUNS_DELETE_FAILED` (run deletion
|
|
3070
|
+
# failed for some or all runs), `RUNS_DELETED` (runs deleted).
|
|
3063
3071
|
# @return [String]
|
|
3064
3072
|
#
|
|
3065
3073
|
# @!attribute [rw] tags
|
|
3066
|
-
#
|
|
3074
|
+
# Amazon Web Services tags associated with the run batch.
|
|
3067
3075
|
# @return [Hash<String,String>]
|
|
3068
3076
|
#
|
|
3069
3077
|
# @!attribute [rw] total_runs
|
|
@@ -4092,6 +4100,11 @@ module Aws::Omics
|
|
|
4092
4100
|
# The engine-specific settings for the workflow run.
|
|
4093
4101
|
# @return [Hash,Array,String,Numeric,Boolean]
|
|
4094
4102
|
#
|
|
4103
|
+
# @!attribute [rw] session_policy
|
|
4104
|
+
# Inline policy json for scoping down permissions via a session policy
|
|
4105
|
+
# on the IAM role.
|
|
4106
|
+
# @return [String]
|
|
4107
|
+
#
|
|
4095
4108
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunResponse AWS API Documentation
|
|
4096
4109
|
#
|
|
4097
4110
|
class GetRunResponse < Struct.new(
|
|
@@ -4136,7 +4149,8 @@ module Aws::Omics
|
|
|
4136
4149
|
:scratch_storage_mode,
|
|
4137
4150
|
:configuration,
|
|
4138
4151
|
:vpc_config,
|
|
4139
|
-
:engine_settings
|
|
4152
|
+
:engine_settings,
|
|
4153
|
+
:session_policy)
|
|
4140
4154
|
SENSITIVE = []
|
|
4141
4155
|
include Aws::Structure
|
|
4142
4156
|
end
|
|
@@ -4223,6 +4237,10 @@ module Aws::Omics
|
|
|
4223
4237
|
# Details about the container image that this task uses.
|
|
4224
4238
|
# @return [Types::ImageDetails]
|
|
4225
4239
|
#
|
|
4240
|
+
# @!attribute [rw] uuid
|
|
4241
|
+
# The universally unique identifier (UUID) for the workflow task.
|
|
4242
|
+
# @return [String]
|
|
4243
|
+
#
|
|
4226
4244
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunTaskResponse AWS API Documentation
|
|
4227
4245
|
#
|
|
4228
4246
|
class GetRunTaskResponse < Struct.new(
|
|
@@ -4241,7 +4259,8 @@ module Aws::Omics
|
|
|
4241
4259
|
:gpus,
|
|
4242
4260
|
:instance_type,
|
|
4243
4261
|
:failure_reason,
|
|
4244
|
-
:image_details
|
|
4262
|
+
:image_details,
|
|
4263
|
+
:uuid)
|
|
4245
4264
|
SENSITIVE = []
|
|
4246
4265
|
include Aws::Structure
|
|
4247
4266
|
end
|
|
@@ -5226,13 +5245,14 @@ module Aws::Omics
|
|
|
5226
5245
|
# @return [Hash,Array,String,Numeric,Boolean]
|
|
5227
5246
|
#
|
|
5228
5247
|
# @!attribute [rw] output_bucket_owner_id
|
|
5229
|
-
# The expected
|
|
5230
|
-
# this run.
|
|
5248
|
+
# The expected Amazon Web Services account ID of the owner of the
|
|
5249
|
+
# output S3 bucket for this run.
|
|
5231
5250
|
# @return [String]
|
|
5232
5251
|
#
|
|
5233
5252
|
# @!attribute [rw] run_tags
|
|
5234
|
-
# Per-run
|
|
5235
|
-
# this object take precedence
|
|
5253
|
+
# Per-run Amazon Web Services tags. Merged with
|
|
5254
|
+
# `defaultRunSetting.runTags`; values in this object take precedence
|
|
5255
|
+
# when keys overlap.
|
|
5236
5256
|
# @return [Hash<String,String>]
|
|
5237
5257
|
#
|
|
5238
5258
|
# @!attribute [rw] engine_settings
|
|
@@ -8238,9 +8258,9 @@ module Aws::Omics
|
|
|
8238
8258
|
# @return [String]
|
|
8239
8259
|
#
|
|
8240
8260
|
# @!attribute [rw] tags
|
|
8241
|
-
#
|
|
8242
|
-
# inherited by individual runs. To tag individual runs,
|
|
8243
|
-
# `defaultRunSetting.runTags`.
|
|
8261
|
+
# Amazon Web Services tags to associate with the batch resource. These
|
|
8262
|
+
# tags are not inherited by individual runs. To tag individual runs,
|
|
8263
|
+
# use `defaultRunSetting.runTags`.
|
|
8244
8264
|
# @return [Hash<String,String>]
|
|
8245
8265
|
#
|
|
8246
8266
|
# @!attribute [rw] default_run_setting
|
|
@@ -8283,7 +8303,7 @@ module Aws::Omics
|
|
|
8283
8303
|
# @return [String]
|
|
8284
8304
|
#
|
|
8285
8305
|
# @!attribute [rw] tags
|
|
8286
|
-
#
|
|
8306
|
+
# Amazon Web Services tags associated with the run batch.
|
|
8287
8307
|
# @return [Hash<String,String>]
|
|
8288
8308
|
#
|
|
8289
8309
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRunBatchResponse AWS API Documentation
|
|
@@ -8318,8 +8338,9 @@ module Aws::Omics
|
|
|
8318
8338
|
# Web Services HealthOmics, S3, Cloudwatch logs, and EC2. An example
|
|
8319
8339
|
# `roleArn` is
|
|
8320
8340
|
# `arn:aws:iam::123456789012:role/omics-service-role-serviceRole-W8O1XMPL7QZ`.
|
|
8321
|
-
# In this example, the
|
|
8322
|
-
# name is
|
|
8341
|
+
# In this example, the Amazon Web Services account ID is
|
|
8342
|
+
# `123456789012` and the role name is
|
|
8343
|
+
# `omics-service-role-serviceRole-W8O1XMPL7QZ`.
|
|
8323
8344
|
# @return [String]
|
|
8324
8345
|
#
|
|
8325
8346
|
# @!attribute [rw] name
|
|
@@ -8479,6 +8500,11 @@ module Aws::Omics
|
|
|
8479
8500
|
# Optional configuration name to use for the workflow run.
|
|
8480
8501
|
# @return [String]
|
|
8481
8502
|
#
|
|
8503
|
+
# @!attribute [rw] session_policy
|
|
8504
|
+
# Optional inline policy json for scoping down permissions via a
|
|
8505
|
+
# session policy on the IAM role provided in the roleArn parameter.
|
|
8506
|
+
# @return [String]
|
|
8507
|
+
#
|
|
8482
8508
|
# @!attribute [rw] engine_settings
|
|
8483
8509
|
# Engine-specific settings for the workflow run. Use this field to
|
|
8484
8510
|
# specify configuration options that are specific to the workflow
|
|
@@ -8510,6 +8536,7 @@ module Aws::Omics
|
|
|
8510
8536
|
:networking_mode,
|
|
8511
8537
|
:scratch_storage_mode,
|
|
8512
8538
|
:configuration_name,
|
|
8539
|
+
:session_policy,
|
|
8513
8540
|
:engine_settings)
|
|
8514
8541
|
SENSITIVE = []
|
|
8515
8542
|
include Aws::Structure
|
|
@@ -8746,6 +8773,10 @@ module Aws::Omics
|
|
|
8746
8773
|
# The instance type for a task.
|
|
8747
8774
|
# @return [String]
|
|
8748
8775
|
#
|
|
8776
|
+
# @!attribute [rw] uuid
|
|
8777
|
+
# The universally unique identifier (UUID) for the workflow task.
|
|
8778
|
+
# @return [String]
|
|
8779
|
+
#
|
|
8749
8780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/TaskListItem AWS API Documentation
|
|
8750
8781
|
#
|
|
8751
8782
|
class TaskListItem < Struct.new(
|
|
@@ -8760,7 +8791,8 @@ module Aws::Omics
|
|
|
8760
8791
|
:start_time,
|
|
8761
8792
|
:stop_time,
|
|
8762
8793
|
:gpus,
|
|
8763
|
-
:instance_type
|
|
8794
|
+
:instance_type,
|
|
8795
|
+
:uuid)
|
|
8764
8796
|
SENSITIVE = []
|
|
8765
8797
|
include Aws::Structure
|
|
8766
8798
|
end
|
|
@@ -9389,8 +9421,8 @@ module Aws::Omics
|
|
|
9389
9421
|
include Aws::Structure
|
|
9390
9422
|
end
|
|
9391
9423
|
|
|
9392
|
-
# The input fails to satisfy the constraints specified by an
|
|
9393
|
-
# service.
|
|
9424
|
+
# The input fails to satisfy the constraints specified by an Amazon Web
|
|
9425
|
+
# Services service.
|
|
9394
9426
|
#
|
|
9395
9427
|
# @!attribute [rw] message
|
|
9396
9428
|
# @return [String]
|
data/lib/aws-sdk-omics.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -692,7 +692,7 @@ module Aws
|
|
|
692
692
|
def arn: () -> ::String
|
|
693
693
|
def uuid: () -> ::String
|
|
694
694
|
def name: () -> ::String
|
|
695
|
-
def status: () -> ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED")
|
|
695
|
+
def status: () -> ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETE_FAILED" | "RUNS_DELETED")
|
|
696
696
|
def tags: () -> ::Hash[::String, ::String]
|
|
697
697
|
def total_runs: () -> ::Integer
|
|
698
698
|
def default_run_setting: () -> Types::DefaultRunSetting
|
|
@@ -933,6 +933,7 @@ module Aws
|
|
|
933
933
|
def configuration: () -> Types::ConfigurationDetails
|
|
934
934
|
def vpc_config: () -> Types::VpcConfigResponse
|
|
935
935
|
def engine_settings: () -> untyped
|
|
936
|
+
def session_policy: () -> ::String
|
|
936
937
|
end
|
|
937
938
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run-instance_method
|
|
938
939
|
def get_run: (
|
|
@@ -996,6 +997,7 @@ module Aws
|
|
|
996
997
|
def instance_type: () -> ::String
|
|
997
998
|
def failure_reason: () -> ::String
|
|
998
999
|
def image_details: () -> Types::ImageDetails
|
|
1000
|
+
def uuid: () -> ::String
|
|
999
1001
|
end
|
|
1000
1002
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run_task-instance_method
|
|
1001
1003
|
def get_run_task: (
|
|
@@ -1225,7 +1227,7 @@ module Aws
|
|
|
1225
1227
|
def list_batch: (
|
|
1226
1228
|
?max_items: ::Integer,
|
|
1227
1229
|
?starting_token: ::String,
|
|
1228
|
-
?status: ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED"),
|
|
1230
|
+
?status: ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETE_FAILED" | "RUNS_DELETED"),
|
|
1229
1231
|
?name: ::String,
|
|
1230
1232
|
?run_group_id: ::String
|
|
1231
1233
|
) -> _ListBatchResponseSuccess
|
|
@@ -1772,6 +1774,7 @@ module Aws
|
|
|
1772
1774
|
?networking_mode: ("RESTRICTED" | "VPC"),
|
|
1773
1775
|
?scratch_storage_mode: ("LOCAL" | "SHARED"),
|
|
1774
1776
|
?configuration_name: ::String,
|
|
1777
|
+
?session_policy: ::String,
|
|
1775
1778
|
?engine_settings: {
|
|
1776
1779
|
}
|
|
1777
1780
|
) -> _StartRunResponseSuccess
|
|
@@ -1781,7 +1784,7 @@ module Aws
|
|
|
1781
1784
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartRunBatchResponse]
|
|
1782
1785
|
def id: () -> ::String
|
|
1783
1786
|
def arn: () -> ::String
|
|
1784
|
-
def status: () -> ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED")
|
|
1787
|
+
def status: () -> ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETE_FAILED" | "RUNS_DELETED")
|
|
1785
1788
|
def uuid: () -> ::String
|
|
1786
1789
|
def tags: () -> ::Hash[::String, ::String]
|
|
1787
1790
|
end
|
|
@@ -1812,6 +1815,7 @@ module Aws
|
|
|
1812
1815
|
workflow_version_name: ::String?,
|
|
1813
1816
|
networking_mode: ("RESTRICTED" | "VPC")?,
|
|
1814
1817
|
configuration_name: ::String?,
|
|
1818
|
+
session_policy: ::String?,
|
|
1815
1819
|
engine_settings: {
|
|
1816
1820
|
}?,
|
|
1817
1821
|
scratch_storage_mode: ("LOCAL" | "SHARED")?
|
data/sig/types.rbs
CHANGED
|
@@ -125,7 +125,7 @@ module Aws::Omics
|
|
|
125
125
|
class BatchListItem
|
|
126
126
|
attr_accessor id: ::String
|
|
127
127
|
attr_accessor name: ::String
|
|
128
|
-
attr_accessor status: ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED")
|
|
128
|
+
attr_accessor status: ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETE_FAILED" | "RUNS_DELETED")
|
|
129
129
|
attr_accessor created_at: ::Time
|
|
130
130
|
attr_accessor total_runs: ::Integer
|
|
131
131
|
attr_accessor workflow_id: ::String
|
|
@@ -521,6 +521,7 @@ module Aws::Omics
|
|
|
521
521
|
attr_accessor workflow_version_name: ::String
|
|
522
522
|
attr_accessor networking_mode: ("RESTRICTED" | "VPC")
|
|
523
523
|
attr_accessor configuration_name: ::String
|
|
524
|
+
attr_accessor session_policy: ::String
|
|
524
525
|
attr_accessor engine_settings: untyped
|
|
525
526
|
attr_accessor scratch_storage_mode: ("LOCAL" | "SHARED")
|
|
526
527
|
SENSITIVE: []
|
|
@@ -808,7 +809,7 @@ module Aws::Omics
|
|
|
808
809
|
attr_accessor arn: ::String
|
|
809
810
|
attr_accessor uuid: ::String
|
|
810
811
|
attr_accessor name: ::String
|
|
811
|
-
attr_accessor status: ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED")
|
|
812
|
+
attr_accessor status: ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETE_FAILED" | "RUNS_DELETED")
|
|
812
813
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
813
814
|
attr_accessor total_runs: ::Integer
|
|
814
815
|
attr_accessor default_run_setting: Types::DefaultRunSetting
|
|
@@ -1087,6 +1088,7 @@ module Aws::Omics
|
|
|
1087
1088
|
attr_accessor configuration: Types::ConfigurationDetails
|
|
1088
1089
|
attr_accessor vpc_config: Types::VpcConfigResponse
|
|
1089
1090
|
attr_accessor engine_settings: untyped
|
|
1091
|
+
attr_accessor session_policy: ::String
|
|
1090
1092
|
SENSITIVE: []
|
|
1091
1093
|
end
|
|
1092
1094
|
|
|
@@ -1113,6 +1115,7 @@ module Aws::Omics
|
|
|
1113
1115
|
attr_accessor instance_type: ::String
|
|
1114
1116
|
attr_accessor failure_reason: ::String
|
|
1115
1117
|
attr_accessor image_details: Types::ImageDetails
|
|
1118
|
+
attr_accessor uuid: ::String
|
|
1116
1119
|
SENSITIVE: []
|
|
1117
1120
|
end
|
|
1118
1121
|
|
|
@@ -1431,7 +1434,7 @@ module Aws::Omics
|
|
|
1431
1434
|
class ListBatchRequest
|
|
1432
1435
|
attr_accessor max_items: ::Integer
|
|
1433
1436
|
attr_accessor starting_token: ::String
|
|
1434
|
-
attr_accessor status: ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED")
|
|
1437
|
+
attr_accessor status: ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETE_FAILED" | "RUNS_DELETED")
|
|
1435
1438
|
attr_accessor name: ::String
|
|
1436
1439
|
attr_accessor run_group_id: ::String
|
|
1437
1440
|
SENSITIVE: []
|
|
@@ -2231,7 +2234,7 @@ module Aws::Omics
|
|
|
2231
2234
|
class StartRunBatchResponse
|
|
2232
2235
|
attr_accessor id: ::String
|
|
2233
2236
|
attr_accessor arn: ::String
|
|
2234
|
-
attr_accessor status: ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED")
|
|
2237
|
+
attr_accessor status: ("CREATING" | "PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETE_FAILED" | "RUNS_DELETED")
|
|
2235
2238
|
attr_accessor uuid: ::String
|
|
2236
2239
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
2237
2240
|
SENSITIVE: []
|
|
@@ -2260,6 +2263,7 @@ module Aws::Omics
|
|
|
2260
2263
|
attr_accessor networking_mode: ("RESTRICTED" | "VPC")
|
|
2261
2264
|
attr_accessor scratch_storage_mode: ("LOCAL" | "SHARED")
|
|
2262
2265
|
attr_accessor configuration_name: ::String
|
|
2266
|
+
attr_accessor session_policy: ::String
|
|
2263
2267
|
attr_accessor engine_settings: untyped
|
|
2264
2268
|
SENSITIVE: []
|
|
2265
2269
|
end
|
|
@@ -2334,6 +2338,7 @@ module Aws::Omics
|
|
|
2334
2338
|
attr_accessor stop_time: ::Time
|
|
2335
2339
|
attr_accessor gpus: ::Integer
|
|
2336
2340
|
attr_accessor instance_type: ::String
|
|
2341
|
+
attr_accessor uuid: ::String
|
|
2337
2342
|
SENSITIVE: []
|
|
2338
2343
|
end
|
|
2339
2344
|
|