aws-sdk-omics 1.73.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-omics/client.rb +12 -1
- data/lib/aws-sdk-omics/client_api.rb +4 -0
- data/lib/aws-sdk-omics/types.rb +25 -1
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +4 -1
- data/sig/types.rbs +3 -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
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
|
|
@@ -6522,6 +6525,12 @@ module Aws::Omics
|
|
|
6522
6525
|
# Optional configuration for run networking behavior. If not specified,
|
|
6523
6526
|
# this will default to RESTRICTED.
|
|
6524
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
|
+
#
|
|
6525
6534
|
# @option params [String] :configuration_name
|
|
6526
6535
|
# Optional configuration name to use for the workflow run.
|
|
6527
6536
|
#
|
|
@@ -6572,6 +6581,7 @@ module Aws::Omics
|
|
|
6572
6581
|
# workflow_owner_id: "WorkflowOwnerId",
|
|
6573
6582
|
# workflow_version_name: "WorkflowVersionName",
|
|
6574
6583
|
# networking_mode: "RESTRICTED", # accepts RESTRICTED, VPC
|
|
6584
|
+
# scratch_storage_mode: "LOCAL", # accepts LOCAL, SHARED
|
|
6575
6585
|
# configuration_name: "ConfigurationName",
|
|
6576
6586
|
# engine_settings: {
|
|
6577
6587
|
# },
|
|
@@ -6677,6 +6687,7 @@ module Aws::Omics
|
|
|
6677
6687
|
# configuration_name: "ConfigurationName",
|
|
6678
6688
|
# engine_settings: {
|
|
6679
6689
|
# },
|
|
6690
|
+
# scratch_storage_mode: "LOCAL", # accepts LOCAL, SHARED
|
|
6680
6691
|
# },
|
|
6681
6692
|
# batch_run_settings: { # required
|
|
6682
6693
|
# inline_settings: [
|
|
@@ -7401,7 +7412,7 @@ module Aws::Omics
|
|
|
7401
7412
|
tracer: tracer
|
|
7402
7413
|
)
|
|
7403
7414
|
context[:gem_name] = 'aws-sdk-omics'
|
|
7404
|
-
context[:gem_version] = '1.
|
|
7415
|
+
context[:gem_version] = '1.74.0'
|
|
7405
7416
|
Seahorse::Client::Request.new(handlers, context)
|
|
7406
7417
|
end
|
|
7407
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"))
|
|
@@ -2521,6 +2524,7 @@ module Aws::Omics
|
|
|
2521
2524
|
StartRunRequest.add_member(:workflow_owner_id, Shapes::ShapeRef.new(shape: WorkflowOwnerId, location_name: "workflowOwnerId"))
|
|
2522
2525
|
StartRunRequest.add_member(:workflow_version_name, Shapes::ShapeRef.new(shape: WorkflowVersionName, location_name: "workflowVersionName"))
|
|
2523
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"))
|
|
2524
2528
|
StartRunRequest.add_member(:configuration_name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "configurationName"))
|
|
2525
2529
|
StartRunRequest.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
|
|
2526
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)
|
|
@@ -8452,6 +8468,13 @@ module Aws::Omics
|
|
|
8452
8468
|
# specified, this will default to RESTRICTED.
|
|
8453
8469
|
# @return [String]
|
|
8454
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
|
+
#
|
|
8455
8478
|
# @!attribute [rw] configuration_name
|
|
8456
8479
|
# Optional configuration name to use for the workflow run.
|
|
8457
8480
|
# @return [String]
|
|
@@ -8485,6 +8508,7 @@ module Aws::Omics
|
|
|
8485
8508
|
:workflow_owner_id,
|
|
8486
8509
|
:workflow_version_name,
|
|
8487
8510
|
:networking_mode,
|
|
8511
|
+
:scratch_storage_mode,
|
|
8488
8512
|
:configuration_name,
|
|
8489
8513
|
:engine_settings)
|
|
8490
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
|
|
@@ -2256,6 +2258,7 @@ module Aws::Omics
|
|
|
2256
2258
|
attr_accessor workflow_owner_id: ::String
|
|
2257
2259
|
attr_accessor workflow_version_name: ::String
|
|
2258
2260
|
attr_accessor networking_mode: ("RESTRICTED" | "VPC")
|
|
2261
|
+
attr_accessor scratch_storage_mode: ("LOCAL" | "SHARED")
|
|
2259
2262
|
attr_accessor configuration_name: ::String
|
|
2260
2263
|
attr_accessor engine_settings: untyped
|
|
2261
2264
|
SENSITIVE: []
|