aws-sdk-omics 1.72.0 → 1.74.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 +13 -1
- data/lib/aws-sdk-omics/client_api.rb +5 -0
- data/lib/aws-sdk-omics/types.rb +31 -2
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +4 -1
- data/sig/types.rbs +4 -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: e591c451f4c63df78dc15d39d5971350ce5fa2c84725950aa25249912359264c
|
|
4
|
+
data.tar.gz: ef289c8edaea6d05b3a3f778a2c422c39c30adc9ab2cfb9b866d67b6323d2746
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5504cc292e8e5eaef2d648305d3ca79d7f2585c856ce4f38c6e4b437892807d56e78788ad29842896fc48db24270d80edc167e942321a0ad54711311984a932b
|
|
7
|
+
data.tar.gz: 3a2a4ba20e453cf7b720c2b236e350fba8d576bff471202785681883921a77d029c78509cfabea88339f4a9ce076b231e7b091ed73c82df98e39a64226210fac
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.74.0 (2026-06-22)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for scratch ephemeral storage mounted at tmp
|
|
8
|
+
|
|
9
|
+
1.73.0 (2026-06-11)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for workflowName in the ListRuns API response.
|
|
13
|
+
|
|
4
14
|
1.72.0 (2026-06-08)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.74.0
|
data/lib/aws-sdk-omics/client.rb
CHANGED
|
@@ -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.scratch_storage_mode #=> String, one of "LOCAL", "SHARED"
|
|
2955
2956
|
# resp.submission_summary.successful_start_submission_count #=> Integer
|
|
2956
2957
|
# resp.submission_summary.failed_start_submission_count #=> Integer
|
|
2957
2958
|
# resp.submission_summary.pending_start_submission_count #=> Integer
|
|
@@ -3603,6 +3604,7 @@ module Aws::Omics
|
|
|
3603
3604
|
# * {Types::GetRunResponse#workflow_version_name #workflow_version_name} => String
|
|
3604
3605
|
# * {Types::GetRunResponse#workflow_uuid #workflow_uuid} => String
|
|
3605
3606
|
# * {Types::GetRunResponse#networking_mode #networking_mode} => String
|
|
3607
|
+
# * {Types::GetRunResponse#scratch_storage_mode #scratch_storage_mode} => String
|
|
3606
3608
|
# * {Types::GetRunResponse#configuration #configuration} => Types::ConfigurationDetails
|
|
3607
3609
|
# * {Types::GetRunResponse#vpc_config #vpc_config} => Types::VpcConfigResponse
|
|
3608
3610
|
# * {Types::GetRunResponse#engine_settings #engine_settings} => Hash,Array,String,Numeric,Boolean
|
|
@@ -3656,6 +3658,7 @@ module Aws::Omics
|
|
|
3656
3658
|
# resp.workflow_version_name #=> String
|
|
3657
3659
|
# resp.workflow_uuid #=> String
|
|
3658
3660
|
# resp.networking_mode #=> String, one of "RESTRICTED", "VPC"
|
|
3661
|
+
# resp.scratch_storage_mode #=> String, one of "LOCAL", "SHARED"
|
|
3659
3662
|
# resp.configuration.name #=> String
|
|
3660
3663
|
# resp.configuration.arn #=> String
|
|
3661
3664
|
# resp.configuration.uuid #=> String
|
|
@@ -5432,6 +5435,7 @@ module Aws::Omics
|
|
|
5432
5435
|
# resp.items[0].stop_time #=> Time
|
|
5433
5436
|
# resp.items[0].storage_type #=> String, one of "STATIC", "DYNAMIC"
|
|
5434
5437
|
# resp.items[0].workflow_version_name #=> String
|
|
5438
|
+
# resp.items[0].workflow_name #=> String
|
|
5435
5439
|
# resp.next_token #=> String
|
|
5436
5440
|
#
|
|
5437
5441
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListRuns AWS API Documentation
|
|
@@ -6521,6 +6525,12 @@ module Aws::Omics
|
|
|
6521
6525
|
# Optional configuration for run networking behavior. If not specified,
|
|
6522
6526
|
# this will default to RESTRICTED.
|
|
6523
6527
|
#
|
|
6528
|
+
# @option params [String] :scratch_storage_mode
|
|
6529
|
+
# Optional configuration for enabling scratch ephemeral storage mounted
|
|
6530
|
+
# at /tmp. If not specified, this will default to SHARED. This
|
|
6531
|
+
# configuration is applicable only for CPU tasks. For tasks using GPUs,
|
|
6532
|
+
# scratch storage is always LOCAL.
|
|
6533
|
+
#
|
|
6524
6534
|
# @option params [String] :configuration_name
|
|
6525
6535
|
# Optional configuration name to use for the workflow run.
|
|
6526
6536
|
#
|
|
@@ -6571,6 +6581,7 @@ module Aws::Omics
|
|
|
6571
6581
|
# workflow_owner_id: "WorkflowOwnerId",
|
|
6572
6582
|
# workflow_version_name: "WorkflowVersionName",
|
|
6573
6583
|
# networking_mode: "RESTRICTED", # accepts RESTRICTED, VPC
|
|
6584
|
+
# scratch_storage_mode: "LOCAL", # accepts LOCAL, SHARED
|
|
6574
6585
|
# configuration_name: "ConfigurationName",
|
|
6575
6586
|
# engine_settings: {
|
|
6576
6587
|
# },
|
|
@@ -6676,6 +6687,7 @@ module Aws::Omics
|
|
|
6676
6687
|
# configuration_name: "ConfigurationName",
|
|
6677
6688
|
# engine_settings: {
|
|
6678
6689
|
# },
|
|
6690
|
+
# scratch_storage_mode: "LOCAL", # accepts LOCAL, SHARED
|
|
6679
6691
|
# },
|
|
6680
6692
|
# batch_run_settings: { # required
|
|
6681
6693
|
# inline_settings: [
|
|
@@ -7400,7 +7412,7 @@ module Aws::Omics
|
|
|
7400
7412
|
tracer: tracer
|
|
7401
7413
|
)
|
|
7402
7414
|
context[:gem_name] = 'aws-sdk-omics'
|
|
7403
|
-
context[:gem_version] = '1.
|
|
7415
|
+
context[:gem_version] = '1.74.0'
|
|
7404
7416
|
Seahorse::Client::Request.new(handlers, context)
|
|
7405
7417
|
end
|
|
7406
7418
|
|
|
@@ -509,6 +509,7 @@ module Aws::Omics
|
|
|
509
509
|
SchemaItem = Shapes::MapShape.new(name: 'SchemaItem')
|
|
510
510
|
SchemaItemKeyString = Shapes::StringShape.new(name: 'SchemaItemKeyString')
|
|
511
511
|
SchemaValueType = Shapes::StringShape.new(name: 'SchemaValueType')
|
|
512
|
+
ScratchStorageMode = Shapes::StringShape.new(name: 'ScratchStorageMode')
|
|
512
513
|
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
|
513
514
|
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
|
514
515
|
Separator = Shapes::StringShape.new(name: 'Separator')
|
|
@@ -1124,6 +1125,7 @@ module Aws::Omics
|
|
|
1124
1125
|
DefaultRunSetting.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
|
|
1125
1126
|
DefaultRunSetting.add_member(:configuration_name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "configurationName"))
|
|
1126
1127
|
DefaultRunSetting.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
|
|
1128
|
+
DefaultRunSetting.add_member(:scratch_storage_mode, Shapes::ShapeRef.new(shape: ScratchStorageMode, location_name: "scratchStorageMode"))
|
|
1127
1129
|
DefaultRunSetting.struct_class = Types::DefaultRunSetting
|
|
1128
1130
|
|
|
1129
1131
|
DefinitionRepository.add_member(:connection_arn, Shapes::ShapeRef.new(shape: ConnectionArn, required: true, location_name: "connectionArn"))
|
|
@@ -1560,6 +1562,7 @@ module Aws::Omics
|
|
|
1560
1562
|
GetRunResponse.add_member(:workflow_version_name, Shapes::ShapeRef.new(shape: WorkflowVersionName, location_name: "workflowVersionName"))
|
|
1561
1563
|
GetRunResponse.add_member(:workflow_uuid, Shapes::ShapeRef.new(shape: WorkflowUuid, location_name: "workflowUuid"))
|
|
1562
1564
|
GetRunResponse.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
|
|
1565
|
+
GetRunResponse.add_member(:scratch_storage_mode, Shapes::ShapeRef.new(shape: ScratchStorageMode, location_name: "scratchStorageMode"))
|
|
1563
1566
|
GetRunResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationDetails, location_name: "configuration"))
|
|
1564
1567
|
GetRunResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfigResponse, location_name: "vpcConfig"))
|
|
1565
1568
|
GetRunResponse.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
|
|
@@ -2305,6 +2308,7 @@ module Aws::Omics
|
|
|
2305
2308
|
RunListItem.add_member(:stop_time, Shapes::ShapeRef.new(shape: RunTimestamp, location_name: "stopTime"))
|
|
2306
2309
|
RunListItem.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "storageType"))
|
|
2307
2310
|
RunListItem.add_member(:workflow_version_name, Shapes::ShapeRef.new(shape: WorkflowVersionName, location_name: "workflowVersionName"))
|
|
2311
|
+
RunListItem.add_member(:workflow_name, Shapes::ShapeRef.new(shape: WorkflowName, location_name: "workflowName"))
|
|
2308
2312
|
RunListItem.struct_class = Types::RunListItem
|
|
2309
2313
|
|
|
2310
2314
|
RunLogLocation.add_member(:engine_log_stream, Shapes::ShapeRef.new(shape: EngineLogStream, location_name: "engineLogStream"))
|
|
@@ -2520,6 +2524,7 @@ module Aws::Omics
|
|
|
2520
2524
|
StartRunRequest.add_member(:workflow_owner_id, Shapes::ShapeRef.new(shape: WorkflowOwnerId, location_name: "workflowOwnerId"))
|
|
2521
2525
|
StartRunRequest.add_member(:workflow_version_name, Shapes::ShapeRef.new(shape: WorkflowVersionName, location_name: "workflowVersionName"))
|
|
2522
2526
|
StartRunRequest.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
|
|
2527
|
+
StartRunRequest.add_member(:scratch_storage_mode, Shapes::ShapeRef.new(shape: ScratchStorageMode, location_name: "scratchStorageMode"))
|
|
2523
2528
|
StartRunRequest.add_member(:configuration_name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "configurationName"))
|
|
2524
2529
|
StartRunRequest.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
|
|
2525
2530
|
StartRunRequest.struct_class = Types::StartRunRequest
|
data/lib/aws-sdk-omics/types.rb
CHANGED
|
@@ -2140,6 +2140,13 @@ module Aws::Omics
|
|
|
2140
2140
|
# engine (for example, Nextflow profiles).
|
|
2141
2141
|
# @return [Hash,Array,String,Numeric,Boolean]
|
|
2142
2142
|
#
|
|
2143
|
+
# @!attribute [rw] scratch_storage_mode
|
|
2144
|
+
# Optional configuration for enabling scratch ephemeral storage
|
|
2145
|
+
# mounted at /tmp. If not specified, this will default to SHARED. This
|
|
2146
|
+
# configuration is applicable only for CPU tasks. For tasks using
|
|
2147
|
+
# GPUs, scratch storage is always LOCAL.
|
|
2148
|
+
# @return [String]
|
|
2149
|
+
#
|
|
2143
2150
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DefaultRunSetting AWS API Documentation
|
|
2144
2151
|
#
|
|
2145
2152
|
class DefaultRunSetting < Struct.new(
|
|
@@ -2163,7 +2170,8 @@ module Aws::Omics
|
|
|
2163
2170
|
:workflow_version_name,
|
|
2164
2171
|
:networking_mode,
|
|
2165
2172
|
:configuration_name,
|
|
2166
|
-
:engine_settings
|
|
2173
|
+
:engine_settings,
|
|
2174
|
+
:scratch_storage_mode)
|
|
2167
2175
|
SENSITIVE = []
|
|
2168
2176
|
include Aws::Structure
|
|
2169
2177
|
end
|
|
@@ -4065,6 +4073,13 @@ module Aws::Omics
|
|
|
4065
4073
|
# default to RESTRICTED.
|
|
4066
4074
|
# @return [String]
|
|
4067
4075
|
#
|
|
4076
|
+
# @!attribute [rw] scratch_storage_mode
|
|
4077
|
+
# Optional configuration for enabling scratch ephemeral storage
|
|
4078
|
+
# mounted at /tmp. If absent, this will default to SHARED. This
|
|
4079
|
+
# configuration is applicable only for CPU tasks. For tasks using
|
|
4080
|
+
# GPUs, scratch storage is always LOCAL.
|
|
4081
|
+
# @return [String]
|
|
4082
|
+
#
|
|
4068
4083
|
# @!attribute [rw] configuration
|
|
4069
4084
|
# Configuration details for the workflow run.
|
|
4070
4085
|
# @return [Types::ConfigurationDetails]
|
|
@@ -4118,6 +4133,7 @@ module Aws::Omics
|
|
|
4118
4133
|
:workflow_version_name,
|
|
4119
4134
|
:workflow_uuid,
|
|
4120
4135
|
:networking_mode,
|
|
4136
|
+
:scratch_storage_mode,
|
|
4121
4137
|
:configuration,
|
|
4122
4138
|
:vpc_config,
|
|
4123
4139
|
:engine_settings)
|
|
@@ -7424,6 +7440,10 @@ module Aws::Omics
|
|
|
7424
7440
|
# The name of the workflow version.
|
|
7425
7441
|
# @return [String]
|
|
7426
7442
|
#
|
|
7443
|
+
# @!attribute [rw] workflow_name
|
|
7444
|
+
# The name of the workflow.
|
|
7445
|
+
# @return [String]
|
|
7446
|
+
#
|
|
7427
7447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/RunListItem AWS API Documentation
|
|
7428
7448
|
#
|
|
7429
7449
|
class RunListItem < Struct.new(
|
|
@@ -7439,7 +7459,8 @@ module Aws::Omics
|
|
|
7439
7459
|
:start_time,
|
|
7440
7460
|
:stop_time,
|
|
7441
7461
|
:storage_type,
|
|
7442
|
-
:workflow_version_name
|
|
7462
|
+
:workflow_version_name,
|
|
7463
|
+
:workflow_name)
|
|
7443
7464
|
SENSITIVE = []
|
|
7444
7465
|
include Aws::Structure
|
|
7445
7466
|
end
|
|
@@ -8447,6 +8468,13 @@ module Aws::Omics
|
|
|
8447
8468
|
# specified, this will default to RESTRICTED.
|
|
8448
8469
|
# @return [String]
|
|
8449
8470
|
#
|
|
8471
|
+
# @!attribute [rw] scratch_storage_mode
|
|
8472
|
+
# Optional configuration for enabling scratch ephemeral storage
|
|
8473
|
+
# mounted at /tmp. If not specified, this will default to SHARED. This
|
|
8474
|
+
# configuration is applicable only for CPU tasks. For tasks using
|
|
8475
|
+
# GPUs, scratch storage is always LOCAL.
|
|
8476
|
+
# @return [String]
|
|
8477
|
+
#
|
|
8450
8478
|
# @!attribute [rw] configuration_name
|
|
8451
8479
|
# Optional configuration name to use for the workflow run.
|
|
8452
8480
|
# @return [String]
|
|
@@ -8480,6 +8508,7 @@ module Aws::Omics
|
|
|
8480
8508
|
:workflow_owner_id,
|
|
8481
8509
|
:workflow_version_name,
|
|
8482
8510
|
:networking_mode,
|
|
8511
|
+
:scratch_storage_mode,
|
|
8483
8512
|
:configuration_name,
|
|
8484
8513
|
:engine_settings)
|
|
8485
8514
|
SENSITIVE = []
|
data/lib/aws-sdk-omics.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -929,6 +929,7 @@ module Aws
|
|
|
929
929
|
def workflow_version_name: () -> ::String
|
|
930
930
|
def workflow_uuid: () -> ::String
|
|
931
931
|
def networking_mode: () -> ("RESTRICTED" | "VPC")
|
|
932
|
+
def scratch_storage_mode: () -> ("LOCAL" | "SHARED")
|
|
932
933
|
def configuration: () -> Types::ConfigurationDetails
|
|
933
934
|
def vpc_config: () -> Types::VpcConfigResponse
|
|
934
935
|
def engine_settings: () -> untyped
|
|
@@ -1769,6 +1770,7 @@ module Aws
|
|
|
1769
1770
|
?workflow_owner_id: ::String,
|
|
1770
1771
|
?workflow_version_name: ::String,
|
|
1771
1772
|
?networking_mode: ("RESTRICTED" | "VPC"),
|
|
1773
|
+
?scratch_storage_mode: ("LOCAL" | "SHARED"),
|
|
1772
1774
|
?configuration_name: ::String,
|
|
1773
1775
|
?engine_settings: {
|
|
1774
1776
|
}
|
|
@@ -1811,7 +1813,8 @@ module Aws
|
|
|
1811
1813
|
networking_mode: ("RESTRICTED" | "VPC")?,
|
|
1812
1814
|
configuration_name: ::String?,
|
|
1813
1815
|
engine_settings: {
|
|
1814
|
-
}
|
|
1816
|
+
}?,
|
|
1817
|
+
scratch_storage_mode: ("LOCAL" | "SHARED")?
|
|
1815
1818
|
},
|
|
1816
1819
|
batch_run_settings: {
|
|
1817
1820
|
inline_settings: Array[
|
data/sig/types.rbs
CHANGED
|
@@ -522,6 +522,7 @@ module Aws::Omics
|
|
|
522
522
|
attr_accessor networking_mode: ("RESTRICTED" | "VPC")
|
|
523
523
|
attr_accessor configuration_name: ::String
|
|
524
524
|
attr_accessor engine_settings: untyped
|
|
525
|
+
attr_accessor scratch_storage_mode: ("LOCAL" | "SHARED")
|
|
525
526
|
SENSITIVE: []
|
|
526
527
|
end
|
|
527
528
|
|
|
@@ -1082,6 +1083,7 @@ module Aws::Omics
|
|
|
1082
1083
|
attr_accessor workflow_version_name: ::String
|
|
1083
1084
|
attr_accessor workflow_uuid: ::String
|
|
1084
1085
|
attr_accessor networking_mode: ("RESTRICTED" | "VPC")
|
|
1086
|
+
attr_accessor scratch_storage_mode: ("LOCAL" | "SHARED")
|
|
1085
1087
|
attr_accessor configuration: Types::ConfigurationDetails
|
|
1086
1088
|
attr_accessor vpc_config: Types::VpcConfigResponse
|
|
1087
1089
|
attr_accessor engine_settings: untyped
|
|
@@ -2004,6 +2006,7 @@ module Aws::Omics
|
|
|
2004
2006
|
attr_accessor stop_time: ::Time
|
|
2005
2007
|
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
|
2006
2008
|
attr_accessor workflow_version_name: ::String
|
|
2009
|
+
attr_accessor workflow_name: ::String
|
|
2007
2010
|
SENSITIVE: []
|
|
2008
2011
|
end
|
|
2009
2012
|
|
|
@@ -2255,6 +2258,7 @@ module Aws::Omics
|
|
|
2255
2258
|
attr_accessor workflow_owner_id: ::String
|
|
2256
2259
|
attr_accessor workflow_version_name: ::String
|
|
2257
2260
|
attr_accessor networking_mode: ("RESTRICTED" | "VPC")
|
|
2261
|
+
attr_accessor scratch_storage_mode: ("LOCAL" | "SHARED")
|
|
2258
2262
|
attr_accessor configuration_name: ::String
|
|
2259
2263
|
attr_accessor engine_settings: untyped
|
|
2260
2264
|
SENSITIVE: []
|