aws-sdk-omics 1.76.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-omics/client.rb +27 -18
- data/lib/aws-sdk-omics/client_api.rb +4 -0
- data/lib/aws-sdk-omics/types.rb +46 -24
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +6 -3
- data/sig/types.rbs +7 -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,11 @@
|
|
|
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
|
+
|
|
4
9
|
1.76.0 (2026-07-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
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):
|
|
@@ -4601,7 +4604,7 @@ module Aws::Omics
|
|
|
4601
4604
|
# resp = client.list_batch({
|
|
4602
4605
|
# max_items: 1,
|
|
4603
4606
|
# starting_token: "ListToken",
|
|
4604
|
-
# 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
|
|
4605
4608
|
# name: "BatchName",
|
|
4606
4609
|
# run_group_id: "RunGroupId",
|
|
4607
4610
|
# })
|
|
@@ -4611,7 +4614,7 @@ module Aws::Omics
|
|
|
4611
4614
|
# resp.items #=> Array
|
|
4612
4615
|
# resp.items[0].id #=> String
|
|
4613
4616
|
# resp.items[0].name #=> String
|
|
4614
|
-
# 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"
|
|
4615
4618
|
# resp.items[0].created_at #=> Time
|
|
4616
4619
|
# resp.items[0].total_runs #=> Integer
|
|
4617
4620
|
# resp.items[0].workflow_id #=> String
|
|
@@ -6061,9 +6064,9 @@ module Aws::Omics
|
|
|
6061
6064
|
end
|
|
6062
6065
|
|
|
6063
6066
|
# Activates an archived read set and returns its metadata in a JSON
|
|
6064
|
-
# formatted output.
|
|
6065
|
-
# sets after 30 days. To monitor the status of your
|
|
6066
|
-
# 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.
|
|
6067
6070
|
#
|
|
6068
6071
|
# To learn more, see [Activating read sets][1] in the *Amazon Web
|
|
6069
6072
|
# Services HealthOmics User Guide*.
|
|
@@ -6392,8 +6395,8 @@ module Aws::Omics
|
|
|
6392
6395
|
# Web Services HealthOmics, S3, Cloudwatch logs, and EC2. An example
|
|
6393
6396
|
# `roleArn` is
|
|
6394
6397
|
# `arn:aws:iam::123456789012:role/omics-service-role-serviceRole-W8O1XMPL7QZ`.
|
|
6395
|
-
# In this example, the
|
|
6396
|
-
# 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`.
|
|
6397
6400
|
#
|
|
6398
6401
|
# @option params [String] :name
|
|
6399
6402
|
# A name for the run. This is recommended to view and organize runs in
|
|
@@ -6537,6 +6540,10 @@ module Aws::Omics
|
|
|
6537
6540
|
# @option params [String] :configuration_name
|
|
6538
6541
|
# Optional configuration name to use for the workflow run.
|
|
6539
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
|
+
#
|
|
6540
6547
|
# @option params [Hash,Array,String,Numeric,Boolean] :engine_settings
|
|
6541
6548
|
# Engine-specific settings for the workflow run. Use this field to
|
|
6542
6549
|
# specify configuration options that are specific to the workflow engine
|
|
@@ -6586,6 +6593,7 @@ module Aws::Omics
|
|
|
6586
6593
|
# networking_mode: "RESTRICTED", # accepts RESTRICTED, VPC
|
|
6587
6594
|
# scratch_storage_mode: "LOCAL", # accepts LOCAL, SHARED
|
|
6588
6595
|
# configuration_name: "ConfigurationName",
|
|
6596
|
+
# session_policy: "SessionPolicy",
|
|
6589
6597
|
# engine_settings: {
|
|
6590
6598
|
# },
|
|
6591
6599
|
# })
|
|
@@ -6636,8 +6644,8 @@ module Aws::Omics
|
|
|
6636
6644
|
# not need to pass this option.**
|
|
6637
6645
|
#
|
|
6638
6646
|
# @option params [Hash<String,String>] :tags
|
|
6639
|
-
#
|
|
6640
|
-
# 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
|
|
6641
6649
|
# `defaultRunSetting.runTags`.
|
|
6642
6650
|
#
|
|
6643
6651
|
# @option params [required, Types::DefaultRunSetting] :default_run_setting
|
|
@@ -6688,6 +6696,7 @@ module Aws::Omics
|
|
|
6688
6696
|
# workflow_version_name: "WorkflowVersionName",
|
|
6689
6697
|
# networking_mode: "RESTRICTED", # accepts RESTRICTED, VPC
|
|
6690
6698
|
# configuration_name: "ConfigurationName",
|
|
6699
|
+
# session_policy: "SessionPolicy",
|
|
6691
6700
|
# engine_settings: {
|
|
6692
6701
|
# },
|
|
6693
6702
|
# scratch_storage_mode: "LOCAL", # accepts LOCAL, SHARED
|
|
@@ -6717,7 +6726,7 @@ module Aws::Omics
|
|
|
6717
6726
|
#
|
|
6718
6727
|
# resp.id #=> String
|
|
6719
6728
|
# resp.arn #=> String
|
|
6720
|
-
# 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"
|
|
6721
6730
|
# resp.uuid #=> String
|
|
6722
6731
|
# resp.tags #=> Hash
|
|
6723
6732
|
# resp.tags["TagKey"] #=> String
|
|
@@ -7415,7 +7424,7 @@ module Aws::Omics
|
|
|
7415
7424
|
tracer: tracer
|
|
7416
7425
|
)
|
|
7417
7426
|
context[:gem_name] = 'aws-sdk-omics'
|
|
7418
|
-
context[:gem_version] = '1.
|
|
7427
|
+
context[:gem_version] = '1.77.0'
|
|
7419
7428
|
Seahorse::Client::Request.new(handlers, context)
|
|
7420
7429
|
end
|
|
7421
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')
|
|
@@ -1125,6 +1126,7 @@ module Aws::Omics
|
|
|
1125
1126
|
DefaultRunSetting.add_member(:workflow_version_name, Shapes::ShapeRef.new(shape: WorkflowVersionName, location_name: "workflowVersionName"))
|
|
1126
1127
|
DefaultRunSetting.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
|
|
1127
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"))
|
|
1128
1130
|
DefaultRunSetting.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
|
|
1129
1131
|
DefaultRunSetting.add_member(:scratch_storage_mode, Shapes::ShapeRef.new(shape: ScratchStorageMode, location_name: "scratchStorageMode"))
|
|
1130
1132
|
DefaultRunSetting.struct_class = Types::DefaultRunSetting
|
|
@@ -1567,6 +1569,7 @@ module Aws::Omics
|
|
|
1567
1569
|
GetRunResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationDetails, location_name: "configuration"))
|
|
1568
1570
|
GetRunResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfigResponse, location_name: "vpcConfig"))
|
|
1569
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"))
|
|
1570
1573
|
GetRunResponse.struct_class = Types::GetRunResponse
|
|
1571
1574
|
|
|
1572
1575
|
GetRunTaskRequest.add_member(:id, Shapes::ShapeRef.new(shape: RunId, required: true, location: "uri", location_name: "id"))
|
|
@@ -2528,6 +2531,7 @@ module Aws::Omics
|
|
|
2528
2531
|
StartRunRequest.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
|
|
2529
2532
|
StartRunRequest.add_member(:scratch_storage_mode, Shapes::ShapeRef.new(shape: ScratchStorageMode, location_name: "scratchStorageMode"))
|
|
2530
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"))
|
|
2531
2535
|
StartRunRequest.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
|
|
2532
2536
|
StartRunRequest.struct_class = Types::StartRunRequest
|
|
2533
2537
|
|
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
|
|
@@ -5231,13 +5245,14 @@ module Aws::Omics
|
|
|
5231
5245
|
# @return [Hash,Array,String,Numeric,Boolean]
|
|
5232
5246
|
#
|
|
5233
5247
|
# @!attribute [rw] output_bucket_owner_id
|
|
5234
|
-
# The expected
|
|
5235
|
-
# this run.
|
|
5248
|
+
# The expected Amazon Web Services account ID of the owner of the
|
|
5249
|
+
# output S3 bucket for this run.
|
|
5236
5250
|
# @return [String]
|
|
5237
5251
|
#
|
|
5238
5252
|
# @!attribute [rw] run_tags
|
|
5239
|
-
# Per-run
|
|
5240
|
-
# 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.
|
|
5241
5256
|
# @return [Hash<String,String>]
|
|
5242
5257
|
#
|
|
5243
5258
|
# @!attribute [rw] engine_settings
|
|
@@ -8243,9 +8258,9 @@ module Aws::Omics
|
|
|
8243
8258
|
# @return [String]
|
|
8244
8259
|
#
|
|
8245
8260
|
# @!attribute [rw] tags
|
|
8246
|
-
#
|
|
8247
|
-
# inherited by individual runs. To tag individual runs,
|
|
8248
|
-
# `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`.
|
|
8249
8264
|
# @return [Hash<String,String>]
|
|
8250
8265
|
#
|
|
8251
8266
|
# @!attribute [rw] default_run_setting
|
|
@@ -8288,7 +8303,7 @@ module Aws::Omics
|
|
|
8288
8303
|
# @return [String]
|
|
8289
8304
|
#
|
|
8290
8305
|
# @!attribute [rw] tags
|
|
8291
|
-
#
|
|
8306
|
+
# Amazon Web Services tags associated with the run batch.
|
|
8292
8307
|
# @return [Hash<String,String>]
|
|
8293
8308
|
#
|
|
8294
8309
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRunBatchResponse AWS API Documentation
|
|
@@ -8323,8 +8338,9 @@ module Aws::Omics
|
|
|
8323
8338
|
# Web Services HealthOmics, S3, Cloudwatch logs, and EC2. An example
|
|
8324
8339
|
# `roleArn` is
|
|
8325
8340
|
# `arn:aws:iam::123456789012:role/omics-service-role-serviceRole-W8O1XMPL7QZ`.
|
|
8326
|
-
# In this example, the
|
|
8327
|
-
# 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`.
|
|
8328
8344
|
# @return [String]
|
|
8329
8345
|
#
|
|
8330
8346
|
# @!attribute [rw] name
|
|
@@ -8484,6 +8500,11 @@ module Aws::Omics
|
|
|
8484
8500
|
# Optional configuration name to use for the workflow run.
|
|
8485
8501
|
# @return [String]
|
|
8486
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
|
+
#
|
|
8487
8508
|
# @!attribute [rw] engine_settings
|
|
8488
8509
|
# Engine-specific settings for the workflow run. Use this field to
|
|
8489
8510
|
# specify configuration options that are specific to the workflow
|
|
@@ -8515,6 +8536,7 @@ module Aws::Omics
|
|
|
8515
8536
|
:networking_mode,
|
|
8516
8537
|
:scratch_storage_mode,
|
|
8517
8538
|
:configuration_name,
|
|
8539
|
+
:session_policy,
|
|
8518
8540
|
:engine_settings)
|
|
8519
8541
|
SENSITIVE = []
|
|
8520
8542
|
include Aws::Structure
|
|
@@ -9399,8 +9421,8 @@ module Aws::Omics
|
|
|
9399
9421
|
include Aws::Structure
|
|
9400
9422
|
end
|
|
9401
9423
|
|
|
9402
|
-
# The input fails to satisfy the constraints specified by an
|
|
9403
|
-
# service.
|
|
9424
|
+
# The input fails to satisfy the constraints specified by an Amazon Web
|
|
9425
|
+
# Services service.
|
|
9404
9426
|
#
|
|
9405
9427
|
# @!attribute [rw] message
|
|
9406
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: (
|
|
@@ -1226,7 +1227,7 @@ module Aws
|
|
|
1226
1227
|
def list_batch: (
|
|
1227
1228
|
?max_items: ::Integer,
|
|
1228
1229
|
?starting_token: ::String,
|
|
1229
|
-
?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"),
|
|
1230
1231
|
?name: ::String,
|
|
1231
1232
|
?run_group_id: ::String
|
|
1232
1233
|
) -> _ListBatchResponseSuccess
|
|
@@ -1773,6 +1774,7 @@ module Aws
|
|
|
1773
1774
|
?networking_mode: ("RESTRICTED" | "VPC"),
|
|
1774
1775
|
?scratch_storage_mode: ("LOCAL" | "SHARED"),
|
|
1775
1776
|
?configuration_name: ::String,
|
|
1777
|
+
?session_policy: ::String,
|
|
1776
1778
|
?engine_settings: {
|
|
1777
1779
|
}
|
|
1778
1780
|
) -> _StartRunResponseSuccess
|
|
@@ -1782,7 +1784,7 @@ module Aws
|
|
|
1782
1784
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartRunBatchResponse]
|
|
1783
1785
|
def id: () -> ::String
|
|
1784
1786
|
def arn: () -> ::String
|
|
1785
|
-
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")
|
|
1786
1788
|
def uuid: () -> ::String
|
|
1787
1789
|
def tags: () -> ::Hash[::String, ::String]
|
|
1788
1790
|
end
|
|
@@ -1813,6 +1815,7 @@ module Aws
|
|
|
1813
1815
|
workflow_version_name: ::String?,
|
|
1814
1816
|
networking_mode: ("RESTRICTED" | "VPC")?,
|
|
1815
1817
|
configuration_name: ::String?,
|
|
1818
|
+
session_policy: ::String?,
|
|
1816
1819
|
engine_settings: {
|
|
1817
1820
|
}?,
|
|
1818
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
|
|
|
@@ -1432,7 +1434,7 @@ module Aws::Omics
|
|
|
1432
1434
|
class ListBatchRequest
|
|
1433
1435
|
attr_accessor max_items: ::Integer
|
|
1434
1436
|
attr_accessor starting_token: ::String
|
|
1435
|
-
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")
|
|
1436
1438
|
attr_accessor name: ::String
|
|
1437
1439
|
attr_accessor run_group_id: ::String
|
|
1438
1440
|
SENSITIVE: []
|
|
@@ -2232,7 +2234,7 @@ module Aws::Omics
|
|
|
2232
2234
|
class StartRunBatchResponse
|
|
2233
2235
|
attr_accessor id: ::String
|
|
2234
2236
|
attr_accessor arn: ::String
|
|
2235
|
-
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")
|
|
2236
2238
|
attr_accessor uuid: ::String
|
|
2237
2239
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
2238
2240
|
SENSITIVE: []
|
|
@@ -2261,6 +2263,7 @@ module Aws::Omics
|
|
|
2261
2263
|
attr_accessor networking_mode: ("RESTRICTED" | "VPC")
|
|
2262
2264
|
attr_accessor scratch_storage_mode: ("LOCAL" | "SHARED")
|
|
2263
2265
|
attr_accessor configuration_name: ::String
|
|
2266
|
+
attr_accessor session_policy: ::String
|
|
2264
2267
|
attr_accessor engine_settings: untyped
|
|
2265
2268
|
SENSITIVE: []
|
|
2266
2269
|
end
|