aws-sdk-omics 1.71.0 → 1.72.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fbfcc47a58e975c117f5cdb32db1ed4db36d73e3ed63432a3168357b258d70d0
4
- data.tar.gz: 7baf5086f5a437a2224d2005a7ccc174e3566fa6728d281730dd7a5465c37bdc
3
+ metadata.gz: 6e7ac489105ab762cc39df626e4bca1cf7f46f2c936087b2df37245b9927da63
4
+ data.tar.gz: 7a9dc2b57f77d573f9365c241c1ff34d9b88b0bd393827d142e9fb45a5304f52
5
5
  SHA512:
6
- metadata.gz: d9b5c948e24d542b0d8d4bdf773bcf9d66081152ee7d95fe48fa4b749c39e7c0455b4d89a3d30e9409f101e6c6a73cae1cf3f4b888d18f31e95e98b7ee119123
7
- data.tar.gz: ec764c098dcedc822fb824657fd82c4f3d3a352473f89456a102503ea4c540152218fc9138160f32afe023a04247d9d39708c81eefd588c4e8e10c16cbf264fb
6
+ metadata.gz: 1e930748f54ef29cce4690bb80257b8cfbfccc6e2813b8590fd4b195f416aa12d309abd3a72e186ecd3306996ee416a154a83a735804a2f04da60216d87d46c6
7
+ data.tar.gz: cb64716e8ceba0cf9c43ae7205759ded6ed8ccb54ea07ab0d92eca7d0dc3e003c4aeff88bde79447e3b7fe8df21f298f3ab8d5ff1256532d6c5c1bd807e35eec
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.72.0 (2026-06-08)
5
+ ------------------
6
+
7
+ * Feature - StartRunBatch API - Add EngineSettings
8
+
4
9
  1.71.0 (2026-05-29)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.71.0
1
+ 1.72.0
@@ -6674,6 +6674,8 @@ module Aws::Omics
6674
6674
  # workflow_version_name: "WorkflowVersionName",
6675
6675
  # networking_mode: "RESTRICTED", # accepts RESTRICTED, VPC
6676
6676
  # configuration_name: "ConfigurationName",
6677
+ # engine_settings: {
6678
+ # },
6677
6679
  # },
6678
6680
  # batch_run_settings: { # required
6679
6681
  # inline_settings: [
@@ -6688,6 +6690,8 @@ module Aws::Omics
6688
6690
  # run_tags: {
6689
6691
  # "TagKey" => "TagValue",
6690
6692
  # },
6693
+ # engine_settings: {
6694
+ # },
6691
6695
  # },
6692
6696
  # ],
6693
6697
  # s3_uri_settings: "S3UriSettings",
@@ -7396,7 +7400,7 @@ module Aws::Omics
7396
7400
  tracer: tracer
7397
7401
  )
7398
7402
  context[:gem_name] = 'aws-sdk-omics'
7399
- context[:gem_version] = '1.71.0'
7403
+ context[:gem_version] = '1.72.0'
7400
7404
  Seahorse::Client::Request.new(handlers, context)
7401
7405
  end
7402
7406
 
@@ -1123,6 +1123,7 @@ module Aws::Omics
1123
1123
  DefaultRunSetting.add_member(:workflow_version_name, Shapes::ShapeRef.new(shape: WorkflowVersionName, location_name: "workflowVersionName"))
1124
1124
  DefaultRunSetting.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
1125
1125
  DefaultRunSetting.add_member(:configuration_name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "configurationName"))
1126
+ DefaultRunSetting.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
1126
1127
  DefaultRunSetting.struct_class = Types::DefaultRunSetting
1127
1128
 
1128
1129
  DefinitionRepository.add_member(:connection_arn, Shapes::ShapeRef.new(shape: ConnectionArn, required: true, location_name: "connectionArn"))
@@ -1796,6 +1797,7 @@ module Aws::Omics
1796
1797
  InlineSetting.add_member(:parameters, Shapes::ShapeRef.new(shape: RunParameters, location_name: "parameters"))
1797
1798
  InlineSetting.add_member(:output_bucket_owner_id, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "outputBucketOwnerId"))
1798
1799
  InlineSetting.add_member(:run_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "runTags"))
1800
+ InlineSetting.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
1799
1801
  InlineSetting.struct_class = Types::InlineSetting
1800
1802
 
1801
1803
  InlineSettings.member = Shapes::ShapeRef.new(shape: InlineSetting)
@@ -2134,6 +2134,12 @@ module Aws::Omics
2134
2134
  # Optional configuration name to use for the workflow run.
2135
2135
  # @return [String]
2136
2136
  #
2137
+ # @!attribute [rw] engine_settings
2138
+ # Engine-specific settings for the workflow run. Use this field to
2139
+ # specify configuration options that are specific to the workflow
2140
+ # engine (for example, Nextflow profiles).
2141
+ # @return [Hash,Array,String,Numeric,Boolean]
2142
+ #
2137
2143
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DefaultRunSetting AWS API Documentation
2138
2144
  #
2139
2145
  class DefaultRunSetting < Struct.new(
@@ -2156,7 +2162,8 @@ module Aws::Omics
2156
2162
  :output_bucket_owner_id,
2157
2163
  :workflow_version_name,
2158
2164
  :networking_mode,
2159
- :configuration_name)
2165
+ :configuration_name,
2166
+ :engine_settings)
2160
2167
  SENSITIVE = []
2161
2168
  include Aws::Structure
2162
2169
  end
@@ -5212,6 +5219,13 @@ module Aws::Omics
5212
5219
  # this object take precedence when keys overlap.
5213
5220
  # @return [Hash<String,String>]
5214
5221
  #
5222
+ # @!attribute [rw] engine_settings
5223
+ # Per-run engine-specific settings. Use this field to specify
5224
+ # configuration options that are specific to the workflow engine (for
5225
+ # example, Nextflow profiles). Overrides
5226
+ # `defaultRunSetting.engineSettings` for this run.
5227
+ # @return [Hash,Array,String,Numeric,Boolean]
5228
+ #
5215
5229
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/InlineSetting AWS API Documentation
5216
5230
  #
5217
5231
  class InlineSetting < Struct.new(
@@ -5221,7 +5235,8 @@ module Aws::Omics
5221
5235
  :priority,
5222
5236
  :parameters,
5223
5237
  :output_bucket_owner_id,
5224
- :run_tags)
5238
+ :run_tags,
5239
+ :engine_settings)
5225
5240
  SENSITIVE = []
5226
5241
  include Aws::Structure
5227
5242
  end
data/lib/aws-sdk-omics.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::Omics
55
55
  autoload :EndpointProvider, 'aws-sdk-omics/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-omics/endpoints'
57
57
 
58
- GEM_VERSION = '1.71.0'
58
+ GEM_VERSION = '1.72.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1809,7 +1809,9 @@ module Aws
1809
1809
  output_bucket_owner_id: ::String?,
1810
1810
  workflow_version_name: ::String?,
1811
1811
  networking_mode: ("RESTRICTED" | "VPC")?,
1812
- configuration_name: ::String?
1812
+ configuration_name: ::String?,
1813
+ engine_settings: {
1814
+ }?
1813
1815
  },
1814
1816
  batch_run_settings: {
1815
1817
  inline_settings: Array[
@@ -1821,7 +1823,9 @@ module Aws
1821
1823
  parameters: {
1822
1824
  }?,
1823
1825
  output_bucket_owner_id: ::String?,
1824
- run_tags: Hash[::String, ::String]?
1826
+ run_tags: Hash[::String, ::String]?,
1827
+ engine_settings: {
1828
+ }?
1825
1829
  }
1826
1830
  ]?,
1827
1831
  s3_uri_settings: ::String?
data/sig/types.rbs CHANGED
@@ -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 engine_settings: untyped
524
525
  SENSITIVE: []
525
526
  end
526
527
 
@@ -1358,6 +1359,7 @@ module Aws::Omics
1358
1359
  attr_accessor parameters: untyped
1359
1360
  attr_accessor output_bucket_owner_id: ::String
1360
1361
  attr_accessor run_tags: ::Hash[::String, ::String]
1362
+ attr_accessor engine_settings: untyped
1361
1363
  SENSITIVE: []
1362
1364
  end
1363
1365
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-omics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.71.0
4
+ version: 1.72.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services