aws-sdk-omics 1.70.0 → 1.71.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: 589bcc32ed4c2ce099369e6ccb6c3150f34457e866bd0279f1d0e221c8a40b45
4
- data.tar.gz: 91f74029e4cfc3cda4e689fdcc03c0970f58df9bb993d6544145bf5617079f2d
3
+ metadata.gz: fbfcc47a58e975c117f5cdb32db1ed4db36d73e3ed63432a3168357b258d70d0
4
+ data.tar.gz: 7baf5086f5a437a2224d2005a7ccc174e3566fa6728d281730dd7a5465c37bdc
5
5
  SHA512:
6
- metadata.gz: 8cb2ad0e2d69a41ff709f41caad49d1ee946d1eaf4f9dcf30c6dc29e489f0bf2e5c3caf90e7bc466804c5e22db5be8305f573fe7ddf70868708f11cad80b7238
7
- data.tar.gz: e2ba671a47a0a1d9f389d9466dce5ad6c74c14b03c598d51acd80f8c2d2ea80f9c00acffc268f76c568c2d50d0f572ce8e123846f7447dc77b59db41a9edfd09
6
+ metadata.gz: d9b5c948e24d542b0d8d4bdf773bcf9d66081152ee7d95fe48fa4b749c39e7c0455b4d89a3d30e9409f101e6c6a73cae1cf3f4b888d18f31e95e98b7ee119123
7
+ data.tar.gz: ec764c098dcedc822fb824657fd82c4f3d3a352473f89456a102503ea4c540152218fc9138160f32afe023a04247d9d39708c81eefd588c4e8e10c16cbf264fb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.71.0 (2026-05-29)
5
+ ------------------
6
+
7
+ * Feature - Add engineSettings to StartRun and GetRun. Add profiles and profileParameterTemplates to GetWorkflow and GetWorkflowVersion.
8
+
4
9
  1.70.0 (2026-05-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.0
1
+ 1.71.0
@@ -3605,6 +3605,7 @@ module Aws::Omics
3605
3605
  # * {Types::GetRunResponse#networking_mode #networking_mode} => String
3606
3606
  # * {Types::GetRunResponse#configuration #configuration} => Types::ConfigurationDetails
3607
3607
  # * {Types::GetRunResponse#vpc_config #vpc_config} => Types::VpcConfigResponse
3608
+ # * {Types::GetRunResponse#engine_settings #engine_settings} => Hash,Array,String,Numeric,Boolean
3608
3609
  #
3609
3610
  # @example Request syntax with placeholder values
3610
3611
  #
@@ -4164,6 +4165,8 @@ module Aws::Omics
4164
4165
  # * {Types::GetWorkflowResponse#readme #readme} => String
4165
4166
  # * {Types::GetWorkflowResponse#definition_repository_details #definition_repository_details} => Types::DefinitionRepositoryDetails
4166
4167
  # * {Types::GetWorkflowResponse#readme_path #readme_path} => String
4168
+ # * {Types::GetWorkflowResponse#profiles #profiles} => Array<String>
4169
+ # * {Types::GetWorkflowResponse#profile_parameter_templates #profile_parameter_templates} => Hash<String,Hash<String,Types::WorkflowParameter>>
4167
4170
  #
4168
4171
  # @example Request syntax with placeholder values
4169
4172
  #
@@ -4215,6 +4218,12 @@ module Aws::Omics
4215
4218
  # resp.definition_repository_details.provider_type #=> String
4216
4219
  # resp.definition_repository_details.provider_endpoint #=> String
4217
4220
  # resp.readme_path #=> String
4221
+ # resp.profiles #=> Array
4222
+ # resp.profiles[0] #=> String
4223
+ # resp.profile_parameter_templates #=> Hash
4224
+ # resp.profile_parameter_templates["WorkflowProfileName"] #=> Hash
4225
+ # resp.profile_parameter_templates["WorkflowProfileName"]["WorkflowParameterName"].description #=> String
4226
+ # resp.profile_parameter_templates["WorkflowProfileName"]["WorkflowParameterName"].optional #=> Boolean
4218
4227
  #
4219
4228
  #
4220
4229
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4281,6 +4290,8 @@ module Aws::Omics
4281
4290
  # * {Types::GetWorkflowVersionResponse#readme #readme} => String
4282
4291
  # * {Types::GetWorkflowVersionResponse#definition_repository_details #definition_repository_details} => Types::DefinitionRepositoryDetails
4283
4292
  # * {Types::GetWorkflowVersionResponse#readme_path #readme_path} => String
4293
+ # * {Types::GetWorkflowVersionResponse#profiles #profiles} => Array<String>
4294
+ # * {Types::GetWorkflowVersionResponse#profile_parameter_templates #profile_parameter_templates} => Hash<String,Hash<String,Types::WorkflowParameter>>
4284
4295
  #
4285
4296
  # @example Request syntax with placeholder values
4286
4297
  #
@@ -4334,6 +4345,12 @@ module Aws::Omics
4334
4345
  # resp.definition_repository_details.provider_type #=> String
4335
4346
  # resp.definition_repository_details.provider_endpoint #=> String
4336
4347
  # resp.readme_path #=> String
4348
+ # resp.profiles #=> Array
4349
+ # resp.profiles[0] #=> String
4350
+ # resp.profile_parameter_templates #=> Hash
4351
+ # resp.profile_parameter_templates["WorkflowProfileName"] #=> Hash
4352
+ # resp.profile_parameter_templates["WorkflowProfileName"]["WorkflowParameterName"].description #=> String
4353
+ # resp.profile_parameter_templates["WorkflowProfileName"]["WorkflowParameterName"].optional #=> Boolean
4337
4354
  #
4338
4355
  #
4339
4356
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -6507,6 +6524,16 @@ module Aws::Omics
6507
6524
  # @option params [String] :configuration_name
6508
6525
  # Optional configuration name to use for the workflow run.
6509
6526
  #
6527
+ # @option params [Hash,Array,String,Numeric,Boolean] :engine_settings
6528
+ # Engine-specific settings for the workflow run. Use this field to
6529
+ # specify configuration options that are specific to the workflow engine
6530
+ # (for example, Nextflow profiles).
6531
+ #
6532
+ # Document type used to carry open content
6533
+ # (Hash,Array,String,Numeric,Boolean). A document type value is
6534
+ # serialized using the same format as its surroundings and requires no
6535
+ # additional encoding or escaping.
6536
+ #
6510
6537
  # @return [Types::StartRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6511
6538
  #
6512
6539
  # * {Types::StartRunResponse#arn #arn} => String
@@ -6545,6 +6572,8 @@ module Aws::Omics
6545
6572
  # workflow_version_name: "WorkflowVersionName",
6546
6573
  # networking_mode: "RESTRICTED", # accepts RESTRICTED, VPC
6547
6574
  # configuration_name: "ConfigurationName",
6575
+ # engine_settings: {
6576
+ # },
6548
6577
  # })
6549
6578
  #
6550
6579
  # @example Response structure
@@ -7367,7 +7396,7 @@ module Aws::Omics
7367
7396
  tracer: tracer
7368
7397
  )
7369
7398
  context[:gem_name] = 'aws-sdk-omics'
7370
- context[:gem_version] = '1.70.0'
7399
+ context[:gem_version] = '1.71.0'
7371
7400
  Seahorse::Client::Request.new(handlers, context)
7372
7401
  end
7373
7402
 
@@ -160,6 +160,7 @@ module Aws::Omics
160
160
  Encoding = Shapes::StringShape.new(name: 'Encoding')
161
161
  EncryptionType = Shapes::StringShape.new(name: 'EncryptionType')
162
162
  EngineLogStream = Shapes::StringShape.new(name: 'EngineLogStream')
163
+ EngineSettings = Shapes::DocumentShape.new(name: 'EngineSettings', document: true)
163
164
  EngineVersion = Shapes::StringShape.new(name: 'EngineVersion')
164
165
  EscapeChar = Shapes::StringShape.new(name: 'EscapeChar')
165
166
  EscapeQuotes = Shapes::BooleanShape.new(name: 'EscapeQuotes')
@@ -679,6 +680,9 @@ module Aws::Omics
679
680
  WorkflowParameterDescription = Shapes::StringShape.new(name: 'WorkflowParameterDescription')
680
681
  WorkflowParameterName = Shapes::StringShape.new(name: 'WorkflowParameterName')
681
682
  WorkflowParameterTemplate = Shapes::MapShape.new(name: 'WorkflowParameterTemplate')
683
+ WorkflowProfileList = Shapes::ListShape.new(name: 'WorkflowProfileList')
684
+ WorkflowProfileName = Shapes::StringShape.new(name: 'WorkflowProfileName')
685
+ WorkflowProfileParameterTemplates = Shapes::MapShape.new(name: 'WorkflowProfileParameterTemplates')
682
686
  WorkflowRequestId = Shapes::StringShape.new(name: 'WorkflowRequestId')
683
687
  WorkflowStatus = Shapes::StringShape.new(name: 'WorkflowStatus')
684
688
  WorkflowStatusMessage = Shapes::StringShape.new(name: 'WorkflowStatusMessage')
@@ -1557,6 +1561,7 @@ module Aws::Omics
1557
1561
  GetRunResponse.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
1558
1562
  GetRunResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationDetails, location_name: "configuration"))
1559
1563
  GetRunResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfigResponse, location_name: "vpcConfig"))
1564
+ GetRunResponse.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
1560
1565
  GetRunResponse.struct_class = Types::GetRunResponse
1561
1566
 
1562
1567
  GetRunTaskRequest.add_member(:id, Shapes::ShapeRef.new(shape: RunId, required: true, location: "uri", location_name: "id"))
@@ -1677,6 +1682,8 @@ module Aws::Omics
1677
1682
  GetWorkflowResponse.add_member(:readme, Shapes::ShapeRef.new(shape: ReadmeS3PresignedUrl, location_name: "readme"))
1678
1683
  GetWorkflowResponse.add_member(:definition_repository_details, Shapes::ShapeRef.new(shape: DefinitionRepositoryDetails, location_name: "definitionRepositoryDetails"))
1679
1684
  GetWorkflowResponse.add_member(:readme_path, Shapes::ShapeRef.new(shape: ReadmePath, location_name: "readmePath"))
1685
+ GetWorkflowResponse.add_member(:profiles, Shapes::ShapeRef.new(shape: WorkflowProfileList, location_name: "profiles"))
1686
+ GetWorkflowResponse.add_member(:profile_parameter_templates, Shapes::ShapeRef.new(shape: WorkflowProfileParameterTemplates, location_name: "profileParameterTemplates"))
1680
1687
  GetWorkflowResponse.struct_class = Types::GetWorkflowResponse
1681
1688
 
1682
1689
  GetWorkflowVersionRequest.add_member(:workflow_id, Shapes::ShapeRef.new(shape: WorkflowId, required: true, location: "uri", location_name: "workflowId"))
@@ -1710,6 +1717,8 @@ module Aws::Omics
1710
1717
  GetWorkflowVersionResponse.add_member(:readme, Shapes::ShapeRef.new(shape: ReadmeS3PresignedUrl, location_name: "readme"))
1711
1718
  GetWorkflowVersionResponse.add_member(:definition_repository_details, Shapes::ShapeRef.new(shape: DefinitionRepositoryDetails, location_name: "definitionRepositoryDetails"))
1712
1719
  GetWorkflowVersionResponse.add_member(:readme_path, Shapes::ShapeRef.new(shape: ReadmePath, location_name: "readmePath"))
1720
+ GetWorkflowVersionResponse.add_member(:profiles, Shapes::ShapeRef.new(shape: WorkflowProfileList, location_name: "profiles"))
1721
+ GetWorkflowVersionResponse.add_member(:profile_parameter_templates, Shapes::ShapeRef.new(shape: WorkflowProfileParameterTemplates, location_name: "profileParameterTemplates"))
1713
1722
  GetWorkflowVersionResponse.struct_class = Types::GetWorkflowVersionResponse
1714
1723
 
1715
1724
  ImageDetails.add_member(:image, Shapes::ShapeRef.new(shape: Uri, location_name: "image"))
@@ -2510,6 +2519,7 @@ module Aws::Omics
2510
2519
  StartRunRequest.add_member(:workflow_version_name, Shapes::ShapeRef.new(shape: WorkflowVersionName, location_name: "workflowVersionName"))
2511
2520
  StartRunRequest.add_member(:networking_mode, Shapes::ShapeRef.new(shape: NetworkingMode, location_name: "networkingMode"))
2512
2521
  StartRunRequest.add_member(:configuration_name, Shapes::ShapeRef.new(shape: ConfigurationName, location_name: "configurationName"))
2522
+ StartRunRequest.add_member(:engine_settings, Shapes::ShapeRef.new(shape: EngineSettings, location_name: "engineSettings"))
2513
2523
  StartRunRequest.struct_class = Types::StartRunRequest
2514
2524
 
2515
2525
  StartRunResponse.add_member(:arn, Shapes::ShapeRef.new(shape: RunArn, location_name: "arn"))
@@ -2816,6 +2826,11 @@ module Aws::Omics
2816
2826
  WorkflowParameterTemplate.key = Shapes::ShapeRef.new(shape: WorkflowParameterName)
2817
2827
  WorkflowParameterTemplate.value = Shapes::ShapeRef.new(shape: WorkflowParameter)
2818
2828
 
2829
+ WorkflowProfileList.member = Shapes::ShapeRef.new(shape: WorkflowProfileName)
2830
+
2831
+ WorkflowProfileParameterTemplates.key = Shapes::ShapeRef.new(shape: WorkflowProfileName)
2832
+ WorkflowProfileParameterTemplates.value = Shapes::ShapeRef.new(shape: WorkflowParameterTemplate)
2833
+
2819
2834
  WorkflowVersionList.member = Shapes::ShapeRef.new(shape: WorkflowVersionListItem)
2820
2835
 
2821
2836
  WorkflowVersionListItem.add_member(:arn, Shapes::ShapeRef.new(shape: WorkflowVersionArn, location_name: "arn"))
@@ -4066,6 +4066,10 @@ module Aws::Omics
4066
4066
  # VPC configuration for the workflow run.
4067
4067
  # @return [Types::VpcConfigResponse]
4068
4068
  #
4069
+ # @!attribute [rw] engine_settings
4070
+ # The engine-specific settings for the workflow run.
4071
+ # @return [Hash,Array,String,Numeric,Boolean]
4072
+ #
4069
4073
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunResponse AWS API Documentation
4070
4074
  #
4071
4075
  class GetRunResponse < Struct.new(
@@ -4108,7 +4112,8 @@ module Aws::Omics
4108
4112
  :workflow_uuid,
4109
4113
  :networking_mode,
4110
4114
  :configuration,
4111
- :vpc_config)
4115
+ :vpc_config,
4116
+ :engine_settings)
4112
4117
  SENSITIVE = []
4113
4118
  include Aws::Structure
4114
4119
  end
@@ -4653,6 +4658,18 @@ module Aws::Omics
4653
4658
  # directory of the repository will be used.
4654
4659
  # @return [String]
4655
4660
  #
4661
+ # @!attribute [rw] profiles
4662
+ # The list of Nextflow profiles that are available for this workflow.
4663
+ # Profiles allow you to select predefined configuration settings at
4664
+ # runtime.
4665
+ # @return [Array<String>]
4666
+ #
4667
+ # @!attribute [rw] profile_parameter_templates
4668
+ # A mapping of profile names to their parameter templates. Each
4669
+ # profile defines its own set of parameters that you can use when
4670
+ # starting a run with that profile.
4671
+ # @return [Hash<String,Hash<String,Types::WorkflowParameter>>]
4672
+ #
4656
4673
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetWorkflowResponse AWS API Documentation
4657
4674
  #
4658
4675
  class GetWorkflowResponse < Struct.new(
@@ -4678,7 +4695,9 @@ module Aws::Omics
4678
4695
  :container_registry_map,
4679
4696
  :readme,
4680
4697
  :definition_repository_details,
4681
- :readme_path)
4698
+ :readme_path,
4699
+ :profiles,
4700
+ :profile_parameter_templates)
4682
4701
  SENSITIVE = []
4683
4702
  include Aws::Structure
4684
4703
  end
@@ -4819,6 +4838,18 @@ module Aws::Omics
4819
4838
  # root directory of the repository will be used.
4820
4839
  # @return [String]
4821
4840
  #
4841
+ # @!attribute [rw] profiles
4842
+ # The list of Nextflow profiles that are available for this workflow
4843
+ # version. Profiles allow you to select predefined configuration
4844
+ # settings at runtime.
4845
+ # @return [Array<String>]
4846
+ #
4847
+ # @!attribute [rw] profile_parameter_templates
4848
+ # A mapping of profile names to their parameter templates. Each
4849
+ # profile defines its own set of parameters that you can use when
4850
+ # starting a run with that profile.
4851
+ # @return [Hash<String,Hash<String,Types::WorkflowParameter>>]
4852
+ #
4822
4853
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetWorkflowVersionResponse AWS API Documentation
4823
4854
  #
4824
4855
  class GetWorkflowVersionResponse < Struct.new(
@@ -4845,7 +4876,9 @@ module Aws::Omics
4845
4876
  :container_registry_map,
4846
4877
  :readme,
4847
4878
  :definition_repository_details,
4848
- :readme_path)
4879
+ :readme_path,
4880
+ :profiles,
4881
+ :profile_parameter_templates)
4849
4882
  SENSITIVE = []
4850
4883
  include Aws::Structure
4851
4884
  end
@@ -8403,6 +8436,12 @@ module Aws::Omics
8403
8436
  # Optional configuration name to use for the workflow run.
8404
8437
  # @return [String]
8405
8438
  #
8439
+ # @!attribute [rw] engine_settings
8440
+ # Engine-specific settings for the workflow run. Use this field to
8441
+ # specify configuration options that are specific to the workflow
8442
+ # engine (for example, Nextflow profiles).
8443
+ # @return [Hash,Array,String,Numeric,Boolean]
8444
+ #
8406
8445
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRunRequest AWS API Documentation
8407
8446
  #
8408
8447
  class StartRunRequest < Struct.new(
@@ -8426,7 +8465,8 @@ module Aws::Omics
8426
8465
  :workflow_owner_id,
8427
8466
  :workflow_version_name,
8428
8467
  :networking_mode,
8429
- :configuration_name)
8468
+ :configuration_name,
8469
+ :engine_settings)
8430
8470
  SENSITIVE = []
8431
8471
  include Aws::Structure
8432
8472
  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.70.0'
58
+ GEM_VERSION = '1.71.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -931,6 +931,7 @@ module Aws
931
931
  def networking_mode: () -> ("RESTRICTED" | "VPC")
932
932
  def configuration: () -> Types::ConfigurationDetails
933
933
  def vpc_config: () -> Types::VpcConfigResponse
934
+ def engine_settings: () -> untyped
934
935
  end
935
936
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run-instance_method
936
937
  def get_run: (
@@ -1114,6 +1115,8 @@ module Aws
1114
1115
  def readme: () -> ::String
1115
1116
  def definition_repository_details: () -> Types::DefinitionRepositoryDetails
1116
1117
  def readme_path: () -> ::String
1118
+ def profiles: () -> ::Array[::String]
1119
+ def profile_parameter_templates: () -> ::Hash[::String, ::Hash[::String, Types::WorkflowParameter]]
1117
1120
  end
1118
1121
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_workflow-instance_method
1119
1122
  def get_workflow: (
@@ -1150,6 +1153,8 @@ module Aws
1150
1153
  def readme: () -> ::String
1151
1154
  def definition_repository_details: () -> Types::DefinitionRepositoryDetails
1152
1155
  def readme_path: () -> ::String
1156
+ def profiles: () -> ::Array[::String]
1157
+ def profile_parameter_templates: () -> ::Hash[::String, ::Hash[::String, Types::WorkflowParameter]]
1153
1158
  end
1154
1159
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_workflow_version-instance_method
1155
1160
  def get_workflow_version: (
@@ -1764,7 +1769,9 @@ module Aws
1764
1769
  ?workflow_owner_id: ::String,
1765
1770
  ?workflow_version_name: ::String,
1766
1771
  ?networking_mode: ("RESTRICTED" | "VPC"),
1767
- ?configuration_name: ::String
1772
+ ?configuration_name: ::String,
1773
+ ?engine_settings: {
1774
+ }
1768
1775
  ) -> _StartRunResponseSuccess
1769
1776
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRunResponseSuccess
1770
1777
 
data/sig/types.rbs CHANGED
@@ -1083,6 +1083,7 @@ module Aws::Omics
1083
1083
  attr_accessor networking_mode: ("RESTRICTED" | "VPC")
1084
1084
  attr_accessor configuration: Types::ConfigurationDetails
1085
1085
  attr_accessor vpc_config: Types::VpcConfigResponse
1086
+ attr_accessor engine_settings: untyped
1086
1087
  SENSITIVE: []
1087
1088
  end
1088
1089
 
@@ -1231,6 +1232,8 @@ module Aws::Omics
1231
1232
  attr_accessor readme: ::String
1232
1233
  attr_accessor definition_repository_details: Types::DefinitionRepositoryDetails
1233
1234
  attr_accessor readme_path: ::String
1235
+ attr_accessor profiles: ::Array[::String]
1236
+ attr_accessor profile_parameter_templates: ::Hash[::String, ::Hash[::String, Types::WorkflowParameter]]
1234
1237
  SENSITIVE: []
1235
1238
  end
1236
1239
 
@@ -1268,6 +1271,8 @@ module Aws::Omics
1268
1271
  attr_accessor readme: ::String
1269
1272
  attr_accessor definition_repository_details: Types::DefinitionRepositoryDetails
1270
1273
  attr_accessor readme_path: ::String
1274
+ attr_accessor profiles: ::Array[::String]
1275
+ attr_accessor profile_parameter_templates: ::Hash[::String, ::Hash[::String, Types::WorkflowParameter]]
1271
1276
  SENSITIVE: []
1272
1277
  end
1273
1278
 
@@ -2249,6 +2254,7 @@ module Aws::Omics
2249
2254
  attr_accessor workflow_version_name: ::String
2250
2255
  attr_accessor networking_mode: ("RESTRICTED" | "VPC")
2251
2256
  attr_accessor configuration_name: ::String
2257
+ attr_accessor engine_settings: untyped
2252
2258
  SENSITIVE: []
2253
2259
  end
2254
2260
 
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.70.0
4
+ version: 1.71.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services