aws-sdk-omics 1.16.0 → 1.17.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: 6318a5e9fceeed9abe8affcfc6739af422c577e99c405f6d4a7b30f092318020
4
- data.tar.gz: 5c0918e27cc128ce2cab30fbd626ab101a9df9d615ca02ea73abfea1d8c34a41
3
+ metadata.gz: 83397950ab4fa1db29510270d3f2dd0d254714b61f336618f289bd8e85afd85a
4
+ data.tar.gz: 7796442786eefd9893653ab630f6d054a37df0b4cf29b09d4a7b62be4901c1eb
5
5
  SHA512:
6
- metadata.gz: fc9ae333342262ab54192688fb1eead96ecabc6f0dd2c23b77f5ea5cafe3caceffcea731bb04b3dd0e40fd23bdf136e6247decd2012a91fb7a3c4add635bdad4
7
- data.tar.gz: 289696acb851da25dce7fcb989e2a61f2c5d64764e6b527f0596a8fa7b05ee07dab4ea75db9472f0c6201d2e6c70f4bda68cb979133d1e27505394712873ff1c
6
+ metadata.gz: fb48a849d2367e3b78890372faa538b166b29491bc3a0a0284ea7077403f7e8a50824afe49d58db231c6dcefe66580fddd8bbb04200535efa0f733a8dc7cfe5f
7
+ data.tar.gz: 92cee8d6d53c08813341aa2d273c733101a59a54da6768e85e10c12cba0e74dab4d8cfea2bc7ab27e79dce4cf41fef462101d4f2d7254be23c46b8775ae459a4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.17.0 (2023-10-19)
5
+ ------------------
6
+
7
+ * Feature - This change enables customers to retrieve failure reasons with detailed status messages for their failed runs
8
+
4
9
  1.16.0 (2023-10-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.17.0
@@ -2220,6 +2220,8 @@ module Aws::Omics
2220
2220
  # * {Types::GetRunResponse#tags #tags} => Hash<String,String>
2221
2221
  # * {Types::GetRunResponse#accelerators #accelerators} => String
2222
2222
  # * {Types::GetRunResponse#retention_mode #retention_mode} => String
2223
+ # * {Types::GetRunResponse#failure_reason #failure_reason} => String
2224
+ # * {Types::GetRunResponse#log_location #log_location} => Types::RunLogLocation
2223
2225
  #
2224
2226
  # @example Request syntax with placeholder values
2225
2227
  #
@@ -2256,6 +2258,9 @@ module Aws::Omics
2256
2258
  # resp.tags["TagKey"] #=> String
2257
2259
  # resp.accelerators #=> String, one of "GPU"
2258
2260
  # resp.retention_mode #=> String, one of "RETAIN", "REMOVE"
2261
+ # resp.failure_reason #=> String
2262
+ # resp.log_location.engine_log_stream #=> String
2263
+ # resp.log_location.run_log_stream #=> String
2259
2264
  #
2260
2265
  #
2261
2266
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2320,7 +2325,7 @@ module Aws::Omics
2320
2325
  # Gets information about a workflow run task.
2321
2326
  #
2322
2327
  # @option params [required, String] :id
2323
- # The task's ID.
2328
+ # The workflow run ID.
2324
2329
  #
2325
2330
  # @option params [required, String] :task_id
2326
2331
  # The task's ID.
@@ -2339,6 +2344,7 @@ module Aws::Omics
2339
2344
  # * {Types::GetRunTaskResponse#log_stream #log_stream} => String
2340
2345
  # * {Types::GetRunTaskResponse#gpus #gpus} => Integer
2341
2346
  # * {Types::GetRunTaskResponse#instance_type #instance_type} => String
2347
+ # * {Types::GetRunTaskResponse#failure_reason #failure_reason} => String
2342
2348
  #
2343
2349
  # @example Request syntax with placeholder values
2344
2350
  #
@@ -2361,6 +2367,7 @@ module Aws::Omics
2361
2367
  # resp.log_stream #=> String
2362
2368
  # resp.gpus #=> Integer
2363
2369
  # resp.instance_type #=> String
2370
+ # resp.failure_reason #=> String
2364
2371
  #
2365
2372
  #
2366
2373
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4615,7 +4622,7 @@ module Aws::Omics
4615
4622
  params: params,
4616
4623
  config: config)
4617
4624
  context[:gem_name] = 'aws-sdk-omics'
4618
- context[:gem_version] = '1.16.0'
4625
+ context[:gem_version] = '1.17.0'
4619
4626
  Seahorse::Client::Request.new(handlers, context)
4620
4627
  end
4621
4628
 
@@ -106,6 +106,7 @@ module Aws::Omics
106
106
  ETagAlgorithm = Shapes::StringShape.new(name: 'ETagAlgorithm')
107
107
  Encoding = Shapes::StringShape.new(name: 'Encoding')
108
108
  EncryptionType = Shapes::StringShape.new(name: 'EncryptionType')
109
+ EngineLogStream = Shapes::StringShape.new(name: 'EngineLogStream')
109
110
  EscapeChar = Shapes::StringShape.new(name: 'EscapeChar')
110
111
  EscapeQuotes = Shapes::BooleanShape.new(name: 'EscapeQuotes')
111
112
  ExportJobId = Shapes::StringShape.new(name: 'ExportJobId')
@@ -341,6 +342,7 @@ module Aws::Omics
341
342
  RunArn = Shapes::StringShape.new(name: 'RunArn')
342
343
  RunExport = Shapes::StringShape.new(name: 'RunExport')
343
344
  RunExportList = Shapes::ListShape.new(name: 'RunExportList')
345
+ RunFailureReason = Shapes::StringShape.new(name: 'RunFailureReason')
344
346
  RunGroupArn = Shapes::StringShape.new(name: 'RunGroupArn')
345
347
  RunGroupId = Shapes::StringShape.new(name: 'RunGroupId')
346
348
  RunGroupList = Shapes::ListShape.new(name: 'RunGroupList')
@@ -361,6 +363,8 @@ module Aws::Omics
361
363
  RunListItemStorageCapacityInteger = Shapes::IntegerShape.new(name: 'RunListItemStorageCapacityInteger')
362
364
  RunListToken = Shapes::StringShape.new(name: 'RunListToken')
363
365
  RunLogLevel = Shapes::StringShape.new(name: 'RunLogLevel')
366
+ RunLogLocation = Shapes::StructureShape.new(name: 'RunLogLocation')
367
+ RunLogStream = Shapes::StringShape.new(name: 'RunLogStream')
364
368
  RunName = Shapes::StringShape.new(name: 'RunName')
365
369
  RunOutputUri = Shapes::StringShape.new(name: 'RunOutputUri')
366
370
  RunParameters = Shapes::DocumentShape.new(name: 'RunParameters', document: true)
@@ -437,6 +441,7 @@ module Aws::Omics
437
441
  TagResourceRequestTagsMap = Shapes::MapShape.new(name: 'TagResourceRequestTagsMap')
438
442
  TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
439
443
  TagValue = Shapes::StringShape.new(name: 'TagValue')
444
+ TaskFailureReason = Shapes::StringShape.new(name: 'TaskFailureReason')
440
445
  TaskId = Shapes::StringShape.new(name: 'TaskId')
441
446
  TaskInstanceType = Shapes::StringShape.new(name: 'TaskInstanceType')
442
447
  TaskList = Shapes::ListShape.new(name: 'TaskList')
@@ -1132,6 +1137,8 @@ module Aws::Omics
1132
1137
  GetRunResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1133
1138
  GetRunResponse.add_member(:accelerators, Shapes::ShapeRef.new(shape: Accelerators, location_name: "accelerators"))
1134
1139
  GetRunResponse.add_member(:retention_mode, Shapes::ShapeRef.new(shape: RunRetentionMode, location_name: "retentionMode"))
1140
+ GetRunResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: RunFailureReason, location_name: "failureReason"))
1141
+ GetRunResponse.add_member(:log_location, Shapes::ShapeRef.new(shape: RunLogLocation, location_name: "logLocation"))
1135
1142
  GetRunResponse.struct_class = Types::GetRunResponse
1136
1143
 
1137
1144
  GetRunTaskRequest.add_member(:id, Shapes::ShapeRef.new(shape: RunId, required: true, location: "uri", location_name: "id"))
@@ -1150,6 +1157,7 @@ module Aws::Omics
1150
1157
  GetRunTaskResponse.add_member(:log_stream, Shapes::ShapeRef.new(shape: TaskLogStream, location_name: "logStream"))
1151
1158
  GetRunTaskResponse.add_member(:gpus, Shapes::ShapeRef.new(shape: GetRunTaskResponseGpusInteger, location_name: "gpus"))
1152
1159
  GetRunTaskResponse.add_member(:instance_type, Shapes::ShapeRef.new(shape: TaskInstanceType, location_name: "instanceType"))
1160
+ GetRunTaskResponse.add_member(:failure_reason, Shapes::ShapeRef.new(shape: TaskFailureReason, location_name: "failureReason"))
1153
1161
  GetRunTaskResponse.struct_class = Types::GetRunTaskResponse
1154
1162
 
1155
1163
  GetSequenceStoreRequest.add_member(:id, Shapes::ShapeRef.new(shape: SequenceStoreId, required: true, location: "uri", location_name: "id"))
@@ -1683,6 +1691,10 @@ module Aws::Omics
1683
1691
  RunListItem.add_member(:stop_time, Shapes::ShapeRef.new(shape: RunTimestamp, location_name: "stopTime"))
1684
1692
  RunListItem.struct_class = Types::RunListItem
1685
1693
 
1694
+ RunLogLocation.add_member(:engine_log_stream, Shapes::ShapeRef.new(shape: EngineLogStream, location_name: "engineLogStream"))
1695
+ RunLogLocation.add_member(:run_log_stream, Shapes::ShapeRef.new(shape: RunLogStream, location_name: "runLogStream"))
1696
+ RunLogLocation.struct_class = Types::RunLogLocation
1697
+
1686
1698
  RunResourceDigests.key = Shapes::ShapeRef.new(shape: RunResourceDigestKey)
1687
1699
  RunResourceDigests.value = Shapes::ShapeRef.new(shape: RunResourceDigest)
1688
1700
 
@@ -32,7 +32,7 @@ module Aws::Omics
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://omics-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -2667,6 +2667,14 @@ module Aws::Omics
2667
2667
  # The run's retention mode.
2668
2668
  # @return [String]
2669
2669
  #
2670
+ # @!attribute [rw] failure_reason
2671
+ # The reason a run has failed.
2672
+ # @return [String]
2673
+ #
2674
+ # @!attribute [rw] log_location
2675
+ # The location of the run log.
2676
+ # @return [Types::RunLogLocation]
2677
+ #
2670
2678
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunResponse AWS API Documentation
2671
2679
  #
2672
2680
  class GetRunResponse < Struct.new(
@@ -2694,13 +2702,15 @@ module Aws::Omics
2694
2702
  :status_message,
2695
2703
  :tags,
2696
2704
  :accelerators,
2697
- :retention_mode)
2705
+ :retention_mode,
2706
+ :failure_reason,
2707
+ :log_location)
2698
2708
  SENSITIVE = []
2699
2709
  include Aws::Structure
2700
2710
  end
2701
2711
 
2702
2712
  # @!attribute [rw] id
2703
- # The task's ID.
2713
+ # The workflow run ID.
2704
2714
  # @return [String]
2705
2715
  #
2706
2716
  # @!attribute [rw] task_id
@@ -2764,6 +2774,10 @@ module Aws::Omics
2764
2774
  # The instance type for a task.
2765
2775
  # @return [String]
2766
2776
  #
2777
+ # @!attribute [rw] failure_reason
2778
+ # The reason a task has failed.
2779
+ # @return [String]
2780
+ #
2767
2781
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunTaskResponse AWS API Documentation
2768
2782
  #
2769
2783
  class GetRunTaskResponse < Struct.new(
@@ -2778,7 +2792,8 @@ module Aws::Omics
2778
2792
  :status_message,
2779
2793
  :log_stream,
2780
2794
  :gpus,
2781
- :instance_type)
2795
+ :instance_type,
2796
+ :failure_reason)
2782
2797
  SENSITIVE = []
2783
2798
  include Aws::Structure
2784
2799
  end
@@ -5102,6 +5117,25 @@ module Aws::Omics
5102
5117
  include Aws::Structure
5103
5118
  end
5104
5119
 
5120
+ # The URI for the run log.
5121
+ #
5122
+ # @!attribute [rw] engine_log_stream
5123
+ # The log stream ARN for the engine log.
5124
+ # @return [String]
5125
+ #
5126
+ # @!attribute [rw] run_log_stream
5127
+ # The log stream ARN for the run log.
5128
+ # @return [String]
5129
+ #
5130
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/RunLogLocation AWS API Documentation
5131
+ #
5132
+ class RunLogLocation < Struct.new(
5133
+ :engine_log_stream,
5134
+ :run_log_stream)
5135
+ SENSITIVE = []
5136
+ include Aws::Structure
5137
+ end
5138
+
5105
5139
  # Details about a sequence.
5106
5140
  #
5107
5141
  # @!attribute [rw] total_read_count
data/lib/aws-sdk-omics.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-omics/customizations'
53
53
  # @!group service
54
54
  module Aws::Omics
55
55
 
56
- GEM_VERSION = '1.16.0'
56
+ GEM_VERSION = '1.17.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-omics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-05 00:00:00.000000000 Z
11
+ date: 2023-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core