aws-sdk-omics 1.15.0 → 1.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-omics/client.rb +16 -2
- data/lib/aws-sdk-omics/client_api.rb +21 -81
- data/lib/aws-sdk-omics/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-omics/types.rb +76 -5
- data/lib/aws-sdk-omics.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83397950ab4fa1db29510270d3f2dd0d254714b61f336618f289bd8e85afd85a
|
4
|
+
data.tar.gz: 7796442786eefd9893653ab630f6d054a37df0b4cf29b09d4a7b62be4901c1eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb48a849d2367e3b78890372faa538b166b29491bc3a0a0284ea7077403f7e8a50824afe49d58db231c6dcefe66580fddd8bbb04200535efa0f733a8dc7cfe5f
|
7
|
+
data.tar.gz: 92cee8d6d53c08813341aa2d273c733101a59a54da6768e85e10c12cba0e74dab4d8cfea2bc7ab27e79dce4cf41fef462101d4f2d7254be23c46b8775ae459a4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
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
|
+
|
9
|
+
1.16.0 (2023-10-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add Etag Support for Omics Storage in ListReadSets and GetReadSetMetadata API
|
13
|
+
|
4
14
|
1.15.0 (2023-09-27)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.17.0
|
data/lib/aws-sdk-omics/client.rb
CHANGED
@@ -1939,6 +1939,7 @@ module Aws::Omics
|
|
1939
1939
|
# * {Types::GetReadSetMetadataResponse#files #files} => Types::ReadSetFiles
|
1940
1940
|
# * {Types::GetReadSetMetadataResponse#status_message #status_message} => String
|
1941
1941
|
# * {Types::GetReadSetMetadataResponse#creation_type #creation_type} => String
|
1942
|
+
# * {Types::GetReadSetMetadataResponse#etag #etag} => Types::ETag
|
1942
1943
|
#
|
1943
1944
|
# @example Request syntax with placeholder values
|
1944
1945
|
#
|
@@ -1975,6 +1976,9 @@ module Aws::Omics
|
|
1975
1976
|
# resp.files.index.content_length #=> Integer
|
1976
1977
|
# resp.status_message #=> String
|
1977
1978
|
# resp.creation_type #=> String, one of "IMPORT", "UPLOAD"
|
1979
|
+
# resp.etag.algorithm #=> String, one of "FASTQ_MD5up", "BAM_MD5up", "CRAM_MD5up"
|
1980
|
+
# resp.etag.source1 #=> String
|
1981
|
+
# resp.etag.source2 #=> String
|
1978
1982
|
#
|
1979
1983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetReadSetMetadata AWS API Documentation
|
1980
1984
|
#
|
@@ -2216,6 +2220,8 @@ module Aws::Omics
|
|
2216
2220
|
# * {Types::GetRunResponse#tags #tags} => Hash<String,String>
|
2217
2221
|
# * {Types::GetRunResponse#accelerators #accelerators} => String
|
2218
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
|
2219
2225
|
#
|
2220
2226
|
# @example Request syntax with placeholder values
|
2221
2227
|
#
|
@@ -2252,6 +2258,9 @@ module Aws::Omics
|
|
2252
2258
|
# resp.tags["TagKey"] #=> String
|
2253
2259
|
# resp.accelerators #=> String, one of "GPU"
|
2254
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
|
2255
2264
|
#
|
2256
2265
|
#
|
2257
2266
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -2316,7 +2325,7 @@ module Aws::Omics
|
|
2316
2325
|
# Gets information about a workflow run task.
|
2317
2326
|
#
|
2318
2327
|
# @option params [required, String] :id
|
2319
|
-
# The
|
2328
|
+
# The workflow run ID.
|
2320
2329
|
#
|
2321
2330
|
# @option params [required, String] :task_id
|
2322
2331
|
# The task's ID.
|
@@ -2335,6 +2344,7 @@ module Aws::Omics
|
|
2335
2344
|
# * {Types::GetRunTaskResponse#log_stream #log_stream} => String
|
2336
2345
|
# * {Types::GetRunTaskResponse#gpus #gpus} => Integer
|
2337
2346
|
# * {Types::GetRunTaskResponse#instance_type #instance_type} => String
|
2347
|
+
# * {Types::GetRunTaskResponse#failure_reason #failure_reason} => String
|
2338
2348
|
#
|
2339
2349
|
# @example Request syntax with placeholder values
|
2340
2350
|
#
|
@@ -2357,6 +2367,7 @@ module Aws::Omics
|
|
2357
2367
|
# resp.log_stream #=> String
|
2358
2368
|
# resp.gpus #=> Integer
|
2359
2369
|
# resp.instance_type #=> String
|
2370
|
+
# resp.failure_reason #=> String
|
2360
2371
|
#
|
2361
2372
|
#
|
2362
2373
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -3166,6 +3177,9 @@ module Aws::Omics
|
|
3166
3177
|
# resp.read_sets[0].creation_time #=> Time
|
3167
3178
|
# resp.read_sets[0].status_message #=> String
|
3168
3179
|
# resp.read_sets[0].creation_type #=> String, one of "IMPORT", "UPLOAD"
|
3180
|
+
# resp.read_sets[0].etag.algorithm #=> String, one of "FASTQ_MD5up", "BAM_MD5up", "CRAM_MD5up"
|
3181
|
+
# resp.read_sets[0].etag.source1 #=> String
|
3182
|
+
# resp.read_sets[0].etag.source2 #=> String
|
3169
3183
|
#
|
3170
3184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListReadSets AWS API Documentation
|
3171
3185
|
#
|
@@ -4608,7 +4622,7 @@ module Aws::Omics
|
|
4608
4622
|
params: params,
|
4609
4623
|
config: config)
|
4610
4624
|
context[:gem_name] = 'aws-sdk-omics'
|
4611
|
-
context[:gem_version] = '1.
|
4625
|
+
context[:gem_version] = '1.17.0'
|
4612
4626
|
Seahorse::Client::Request.new(handlers, context)
|
4613
4627
|
end
|
4614
4628
|
|
@@ -102,8 +102,11 @@ module Aws::Omics
|
|
102
102
|
DeleteVariantStoreResponse = Shapes::StructureShape.new(name: 'DeleteVariantStoreResponse')
|
103
103
|
DeleteWorkflowRequest = Shapes::StructureShape.new(name: 'DeleteWorkflowRequest')
|
104
104
|
Description = Shapes::StringShape.new(name: 'Description')
|
105
|
+
ETag = Shapes::StructureShape.new(name: 'ETag')
|
106
|
+
ETagAlgorithm = Shapes::StringShape.new(name: 'ETagAlgorithm')
|
105
107
|
Encoding = Shapes::StringShape.new(name: 'Encoding')
|
106
108
|
EncryptionType = Shapes::StringShape.new(name: 'EncryptionType')
|
109
|
+
EngineLogStream = Shapes::StringShape.new(name: 'EngineLogStream')
|
107
110
|
EscapeChar = Shapes::StringShape.new(name: 'EscapeChar')
|
108
111
|
EscapeQuotes = Shapes::BooleanShape.new(name: 'EscapeQuotes')
|
109
112
|
ExportJobId = Shapes::StringShape.new(name: 'ExportJobId')
|
@@ -339,6 +342,7 @@ module Aws::Omics
|
|
339
342
|
RunArn = Shapes::StringShape.new(name: 'RunArn')
|
340
343
|
RunExport = Shapes::StringShape.new(name: 'RunExport')
|
341
344
|
RunExportList = Shapes::ListShape.new(name: 'RunExportList')
|
345
|
+
RunFailureReason = Shapes::StringShape.new(name: 'RunFailureReason')
|
342
346
|
RunGroupArn = Shapes::StringShape.new(name: 'RunGroupArn')
|
343
347
|
RunGroupId = Shapes::StringShape.new(name: 'RunGroupId')
|
344
348
|
RunGroupList = Shapes::ListShape.new(name: 'RunGroupList')
|
@@ -359,6 +363,8 @@ module Aws::Omics
|
|
359
363
|
RunListItemStorageCapacityInteger = Shapes::IntegerShape.new(name: 'RunListItemStorageCapacityInteger')
|
360
364
|
RunListToken = Shapes::StringShape.new(name: 'RunListToken')
|
361
365
|
RunLogLevel = Shapes::StringShape.new(name: 'RunLogLevel')
|
366
|
+
RunLogLocation = Shapes::StructureShape.new(name: 'RunLogLocation')
|
367
|
+
RunLogStream = Shapes::StringShape.new(name: 'RunLogStream')
|
362
368
|
RunName = Shapes::StringShape.new(name: 'RunName')
|
363
369
|
RunOutputUri = Shapes::StringShape.new(name: 'RunOutputUri')
|
364
370
|
RunParameters = Shapes::DocumentShape.new(name: 'RunParameters', document: true)
|
@@ -435,6 +441,7 @@ module Aws::Omics
|
|
435
441
|
TagResourceRequestTagsMap = Shapes::MapShape.new(name: 'TagResourceRequestTagsMap')
|
436
442
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
437
443
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
444
|
+
TaskFailureReason = Shapes::StringShape.new(name: 'TaskFailureReason')
|
438
445
|
TaskId = Shapes::StringShape.new(name: 'TaskId')
|
439
446
|
TaskInstanceType = Shapes::StringShape.new(name: 'TaskInstanceType')
|
440
447
|
TaskList = Shapes::ListShape.new(name: 'TaskList')
|
@@ -853,6 +860,11 @@ module Aws::Omics
|
|
853
860
|
DeleteWorkflowRequest.add_member(:id, Shapes::ShapeRef.new(shape: WorkflowId, required: true, location: "uri", location_name: "id"))
|
854
861
|
DeleteWorkflowRequest.struct_class = Types::DeleteWorkflowRequest
|
855
862
|
|
863
|
+
ETag.add_member(:algorithm, Shapes::ShapeRef.new(shape: ETagAlgorithm, location_name: "algorithm"))
|
864
|
+
ETag.add_member(:source1, Shapes::ShapeRef.new(shape: String, location_name: "source1"))
|
865
|
+
ETag.add_member(:source2, Shapes::ShapeRef.new(shape: String, location_name: "source2"))
|
866
|
+
ETag.struct_class = Types::ETag
|
867
|
+
|
856
868
|
ExportReadSet.add_member(:read_set_id, Shapes::ShapeRef.new(shape: ReadSetId, required: true, location_name: "readSetId"))
|
857
869
|
ExportReadSet.struct_class = Types::ExportReadSet
|
858
870
|
|
@@ -1015,6 +1027,7 @@ module Aws::Omics
|
|
1015
1027
|
GetReadSetMetadataResponse.add_member(:files, Shapes::ShapeRef.new(shape: ReadSetFiles, location_name: "files"))
|
1016
1028
|
GetReadSetMetadataResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: ReadSetStatusMessage, location_name: "statusMessage"))
|
1017
1029
|
GetReadSetMetadataResponse.add_member(:creation_type, Shapes::ShapeRef.new(shape: CreationType, location_name: "creationType"))
|
1030
|
+
GetReadSetMetadataResponse.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "etag"))
|
1018
1031
|
GetReadSetMetadataResponse.struct_class = Types::GetReadSetMetadataResponse
|
1019
1032
|
|
1020
1033
|
GetReadSetRequest.add_member(:id, Shapes::ShapeRef.new(shape: ReadSetId, required: true, location: "uri", location_name: "id"))
|
@@ -1124,6 +1137,8 @@ module Aws::Omics
|
|
1124
1137
|
GetRunResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
1125
1138
|
GetRunResponse.add_member(:accelerators, Shapes::ShapeRef.new(shape: Accelerators, location_name: "accelerators"))
|
1126
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"))
|
1127
1142
|
GetRunResponse.struct_class = Types::GetRunResponse
|
1128
1143
|
|
1129
1144
|
GetRunTaskRequest.add_member(:id, Shapes::ShapeRef.new(shape: RunId, required: true, location: "uri", location_name: "id"))
|
@@ -1142,6 +1157,7 @@ module Aws::Omics
|
|
1142
1157
|
GetRunTaskResponse.add_member(:log_stream, Shapes::ShapeRef.new(shape: TaskLogStream, location_name: "logStream"))
|
1143
1158
|
GetRunTaskResponse.add_member(:gpus, Shapes::ShapeRef.new(shape: GetRunTaskResponseGpusInteger, location_name: "gpus"))
|
1144
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"))
|
1145
1161
|
GetRunTaskResponse.struct_class = Types::GetRunTaskResponse
|
1146
1162
|
|
1147
1163
|
GetSequenceStoreRequest.add_member(:id, Shapes::ShapeRef.new(shape: SequenceStoreId, required: true, location: "uri", location_name: "id"))
|
@@ -1580,6 +1596,7 @@ module Aws::Omics
|
|
1580
1596
|
ReadSetListItem.add_member(:creation_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "creationTime"))
|
1581
1597
|
ReadSetListItem.add_member(:status_message, Shapes::ShapeRef.new(shape: ReadSetStatusMessage, location_name: "statusMessage"))
|
1582
1598
|
ReadSetListItem.add_member(:creation_type, Shapes::ShapeRef.new(shape: CreationType, location_name: "creationType"))
|
1599
|
+
ReadSetListItem.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "etag"))
|
1583
1600
|
ReadSetListItem.struct_class = Types::ReadSetListItem
|
1584
1601
|
|
1585
1602
|
ReadSetUploadPartList.member = Shapes::ShapeRef.new(shape: ReadSetUploadPartListItem)
|
@@ -1674,6 +1691,10 @@ module Aws::Omics
|
|
1674
1691
|
RunListItem.add_member(:stop_time, Shapes::ShapeRef.new(shape: RunTimestamp, location_name: "stopTime"))
|
1675
1692
|
RunListItem.struct_class = Types::RunListItem
|
1676
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
|
+
|
1677
1698
|
RunResourceDigests.key = Shapes::ShapeRef.new(shape: RunResourceDigestKey)
|
1678
1699
|
RunResourceDigests.value = Shapes::ShapeRef.new(shape: RunResourceDigest)
|
1679
1700
|
|
@@ -2086,7 +2107,6 @@ module Aws::Omics
|
|
2086
2107
|
o.name = "AbortMultipartReadSetUpload"
|
2087
2108
|
o.http_method = "DELETE"
|
2088
2109
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/upload/{uploadId}/abort"
|
2089
|
-
o['authtype'] = "v4"
|
2090
2110
|
o.endpoint_pattern = {
|
2091
2111
|
"hostPrefix" => "control-storage-",
|
2092
2112
|
}
|
@@ -2106,7 +2126,6 @@ module Aws::Omics
|
|
2106
2126
|
o.name = "AcceptShare"
|
2107
2127
|
o.http_method = "POST"
|
2108
2128
|
o.http_request_uri = "/share/{shareId}"
|
2109
|
-
o['authtype'] = "v4"
|
2110
2129
|
o.endpoint_pattern = {
|
2111
2130
|
"hostPrefix" => "analytics-",
|
2112
2131
|
}
|
@@ -2125,7 +2144,6 @@ module Aws::Omics
|
|
2125
2144
|
o.name = "BatchDeleteReadSet"
|
2126
2145
|
o.http_method = "POST"
|
2127
2146
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/readset/batch/delete"
|
2128
|
-
o['authtype'] = "v4"
|
2129
2147
|
o.endpoint_pattern = {
|
2130
2148
|
"hostPrefix" => "control-storage-",
|
2131
2149
|
}
|
@@ -2143,7 +2161,6 @@ module Aws::Omics
|
|
2143
2161
|
o.name = "CancelAnnotationImportJob"
|
2144
2162
|
o.http_method = "DELETE"
|
2145
2163
|
o.http_request_uri = "/import/annotation/{jobId}"
|
2146
|
-
o['authtype'] = "v4"
|
2147
2164
|
o.endpoint_pattern = {
|
2148
2165
|
"hostPrefix" => "analytics-",
|
2149
2166
|
}
|
@@ -2160,7 +2177,6 @@ module Aws::Omics
|
|
2160
2177
|
o.name = "CancelRun"
|
2161
2178
|
o.http_method = "POST"
|
2162
2179
|
o.http_request_uri = "/run/{id}/cancel"
|
2163
|
-
o['authtype'] = "v4"
|
2164
2180
|
o.endpoint_pattern = {
|
2165
2181
|
"hostPrefix" => "workflows-",
|
2166
2182
|
}
|
@@ -2180,7 +2196,6 @@ module Aws::Omics
|
|
2180
2196
|
o.name = "CancelVariantImportJob"
|
2181
2197
|
o.http_method = "DELETE"
|
2182
2198
|
o.http_request_uri = "/import/variant/{jobId}"
|
2183
|
-
o['authtype'] = "v4"
|
2184
2199
|
o.endpoint_pattern = {
|
2185
2200
|
"hostPrefix" => "analytics-",
|
2186
2201
|
}
|
@@ -2197,7 +2212,6 @@ module Aws::Omics
|
|
2197
2212
|
o.name = "CompleteMultipartReadSetUpload"
|
2198
2213
|
o.http_method = "POST"
|
2199
2214
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/upload/{uploadId}/complete"
|
2200
|
-
o['authtype'] = "v4"
|
2201
2215
|
o.endpoint_pattern = {
|
2202
2216
|
"hostPrefix" => "storage-",
|
2203
2217
|
}
|
@@ -2217,7 +2231,6 @@ module Aws::Omics
|
|
2217
2231
|
o.name = "CreateAnnotationStore"
|
2218
2232
|
o.http_method = "POST"
|
2219
2233
|
o.http_request_uri = "/annotationStore"
|
2220
|
-
o['authtype'] = "v4"
|
2221
2234
|
o.endpoint_pattern = {
|
2222
2235
|
"hostPrefix" => "analytics-",
|
2223
2236
|
}
|
@@ -2236,7 +2249,6 @@ module Aws::Omics
|
|
2236
2249
|
o.name = "CreateAnnotationStoreVersion"
|
2237
2250
|
o.http_method = "POST"
|
2238
2251
|
o.http_request_uri = "/annotationStore/{name}/version"
|
2239
|
-
o['authtype'] = "v4"
|
2240
2252
|
o.endpoint_pattern = {
|
2241
2253
|
"hostPrefix" => "analytics-",
|
2242
2254
|
}
|
@@ -2255,7 +2267,6 @@ module Aws::Omics
|
|
2255
2267
|
o.name = "CreateMultipartReadSetUpload"
|
2256
2268
|
o.http_method = "POST"
|
2257
2269
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/upload"
|
2258
|
-
o['authtype'] = "v4"
|
2259
2270
|
o.endpoint_pattern = {
|
2260
2271
|
"hostPrefix" => "control-storage-",
|
2261
2272
|
}
|
@@ -2275,7 +2286,6 @@ module Aws::Omics
|
|
2275
2286
|
o.name = "CreateReferenceStore"
|
2276
2287
|
o.http_method = "POST"
|
2277
2288
|
o.http_request_uri = "/referencestore"
|
2278
|
-
o['authtype'] = "v4"
|
2279
2289
|
o.endpoint_pattern = {
|
2280
2290
|
"hostPrefix" => "control-storage-",
|
2281
2291
|
}
|
@@ -2293,7 +2303,6 @@ module Aws::Omics
|
|
2293
2303
|
o.name = "CreateRunGroup"
|
2294
2304
|
o.http_method = "POST"
|
2295
2305
|
o.http_request_uri = "/runGroup"
|
2296
|
-
o['authtype'] = "v4"
|
2297
2306
|
o.endpoint_pattern = {
|
2298
2307
|
"hostPrefix" => "workflows-",
|
2299
2308
|
}
|
@@ -2313,7 +2322,6 @@ module Aws::Omics
|
|
2313
2322
|
o.name = "CreateSequenceStore"
|
2314
2323
|
o.http_method = "POST"
|
2315
2324
|
o.http_request_uri = "/sequencestore"
|
2316
|
-
o['authtype'] = "v4"
|
2317
2325
|
o.endpoint_pattern = {
|
2318
2326
|
"hostPrefix" => "control-storage-",
|
2319
2327
|
}
|
@@ -2331,7 +2339,6 @@ module Aws::Omics
|
|
2331
2339
|
o.name = "CreateShare"
|
2332
2340
|
o.http_method = "POST"
|
2333
2341
|
o.http_request_uri = "/share"
|
2334
|
-
o['authtype'] = "v4"
|
2335
2342
|
o.endpoint_pattern = {
|
2336
2343
|
"hostPrefix" => "analytics-",
|
2337
2344
|
}
|
@@ -2350,7 +2357,6 @@ module Aws::Omics
|
|
2350
2357
|
o.name = "CreateVariantStore"
|
2351
2358
|
o.http_method = "POST"
|
2352
2359
|
o.http_request_uri = "/variantStore"
|
2353
|
-
o['authtype'] = "v4"
|
2354
2360
|
o.endpoint_pattern = {
|
2355
2361
|
"hostPrefix" => "analytics-",
|
2356
2362
|
}
|
@@ -2369,7 +2375,6 @@ module Aws::Omics
|
|
2369
2375
|
o.name = "CreateWorkflow"
|
2370
2376
|
o.http_method = "POST"
|
2371
2377
|
o.http_request_uri = "/workflow"
|
2372
|
-
o['authtype'] = "v4"
|
2373
2378
|
o.endpoint_pattern = {
|
2374
2379
|
"hostPrefix" => "workflows-",
|
2375
2380
|
}
|
@@ -2389,7 +2394,6 @@ module Aws::Omics
|
|
2389
2394
|
o.name = "DeleteAnnotationStore"
|
2390
2395
|
o.http_method = "DELETE"
|
2391
2396
|
o.http_request_uri = "/annotationStore/{name}"
|
2392
|
-
o['authtype'] = "v4"
|
2393
2397
|
o.endpoint_pattern = {
|
2394
2398
|
"hostPrefix" => "analytics-",
|
2395
2399
|
}
|
@@ -2407,7 +2411,6 @@ module Aws::Omics
|
|
2407
2411
|
o.name = "DeleteAnnotationStoreVersions"
|
2408
2412
|
o.http_method = "POST"
|
2409
2413
|
o.http_request_uri = "/annotationStore/{name}/versions/delete"
|
2410
|
-
o['authtype'] = "v4"
|
2411
2414
|
o.endpoint_pattern = {
|
2412
2415
|
"hostPrefix" => "analytics-",
|
2413
2416
|
}
|
@@ -2425,7 +2428,6 @@ module Aws::Omics
|
|
2425
2428
|
o.name = "DeleteReference"
|
2426
2429
|
o.http_method = "DELETE"
|
2427
2430
|
o.http_request_uri = "/referencestore/{referenceStoreId}/reference/{id}"
|
2428
|
-
o['authtype'] = "v4"
|
2429
2431
|
o.endpoint_pattern = {
|
2430
2432
|
"hostPrefix" => "control-storage-",
|
2431
2433
|
}
|
@@ -2444,7 +2446,6 @@ module Aws::Omics
|
|
2444
2446
|
o.name = "DeleteReferenceStore"
|
2445
2447
|
o.http_method = "DELETE"
|
2446
2448
|
o.http_request_uri = "/referencestore/{id}"
|
2447
|
-
o['authtype'] = "v4"
|
2448
2449
|
o.endpoint_pattern = {
|
2449
2450
|
"hostPrefix" => "control-storage-",
|
2450
2451
|
}
|
@@ -2463,7 +2464,6 @@ module Aws::Omics
|
|
2463
2464
|
o.name = "DeleteRun"
|
2464
2465
|
o.http_method = "DELETE"
|
2465
2466
|
o.http_request_uri = "/run/{id}"
|
2466
|
-
o['authtype'] = "v4"
|
2467
2467
|
o.endpoint_pattern = {
|
2468
2468
|
"hostPrefix" => "workflows-",
|
2469
2469
|
}
|
@@ -2483,7 +2483,6 @@ module Aws::Omics
|
|
2483
2483
|
o.name = "DeleteRunGroup"
|
2484
2484
|
o.http_method = "DELETE"
|
2485
2485
|
o.http_request_uri = "/runGroup/{id}"
|
2486
|
-
o['authtype'] = "v4"
|
2487
2486
|
o.endpoint_pattern = {
|
2488
2487
|
"hostPrefix" => "workflows-",
|
2489
2488
|
}
|
@@ -2503,7 +2502,6 @@ module Aws::Omics
|
|
2503
2502
|
o.name = "DeleteSequenceStore"
|
2504
2503
|
o.http_method = "DELETE"
|
2505
2504
|
o.http_request_uri = "/sequencestore/{id}"
|
2506
|
-
o['authtype'] = "v4"
|
2507
2505
|
o.endpoint_pattern = {
|
2508
2506
|
"hostPrefix" => "control-storage-",
|
2509
2507
|
}
|
@@ -2522,7 +2520,6 @@ module Aws::Omics
|
|
2522
2520
|
o.name = "DeleteShare"
|
2523
2521
|
o.http_method = "DELETE"
|
2524
2522
|
o.http_request_uri = "/share/{shareId}"
|
2525
|
-
o['authtype'] = "v4"
|
2526
2523
|
o.endpoint_pattern = {
|
2527
2524
|
"hostPrefix" => "analytics-",
|
2528
2525
|
}
|
@@ -2541,7 +2538,6 @@ module Aws::Omics
|
|
2541
2538
|
o.name = "DeleteVariantStore"
|
2542
2539
|
o.http_method = "DELETE"
|
2543
2540
|
o.http_request_uri = "/variantStore/{name}"
|
2544
|
-
o['authtype'] = "v4"
|
2545
2541
|
o.endpoint_pattern = {
|
2546
2542
|
"hostPrefix" => "analytics-",
|
2547
2543
|
}
|
@@ -2559,7 +2555,6 @@ module Aws::Omics
|
|
2559
2555
|
o.name = "DeleteWorkflow"
|
2560
2556
|
o.http_method = "DELETE"
|
2561
2557
|
o.http_request_uri = "/workflow/{id}"
|
2562
|
-
o['authtype'] = "v4"
|
2563
2558
|
o.endpoint_pattern = {
|
2564
2559
|
"hostPrefix" => "workflows-",
|
2565
2560
|
}
|
@@ -2579,7 +2574,6 @@ module Aws::Omics
|
|
2579
2574
|
o.name = "GetAnnotationImportJob"
|
2580
2575
|
o.http_method = "GET"
|
2581
2576
|
o.http_request_uri = "/import/annotation/{jobId}"
|
2582
|
-
o['authtype'] = "v4"
|
2583
2577
|
o.endpoint_pattern = {
|
2584
2578
|
"hostPrefix" => "analytics-",
|
2585
2579
|
}
|
@@ -2596,7 +2590,6 @@ module Aws::Omics
|
|
2596
2590
|
o.name = "GetAnnotationStore"
|
2597
2591
|
o.http_method = "GET"
|
2598
2592
|
o.http_request_uri = "/annotationStore/{name}"
|
2599
|
-
o['authtype'] = "v4"
|
2600
2593
|
o.endpoint_pattern = {
|
2601
2594
|
"hostPrefix" => "analytics-",
|
2602
2595
|
}
|
@@ -2613,7 +2606,6 @@ module Aws::Omics
|
|
2613
2606
|
o.name = "GetAnnotationStoreVersion"
|
2614
2607
|
o.http_method = "GET"
|
2615
2608
|
o.http_request_uri = "/annotationStore/{name}/version/{versionName}"
|
2616
|
-
o['authtype'] = "v4"
|
2617
2609
|
o.endpoint_pattern = {
|
2618
2610
|
"hostPrefix" => "analytics-",
|
2619
2611
|
}
|
@@ -2630,7 +2622,6 @@ module Aws::Omics
|
|
2630
2622
|
o.name = "GetReadSet"
|
2631
2623
|
o.http_method = "GET"
|
2632
2624
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/readset/{id}"
|
2633
|
-
o['authtype'] = "v4"
|
2634
2625
|
o.endpoint_pattern = {
|
2635
2626
|
"hostPrefix" => "storage-",
|
2636
2627
|
}
|
@@ -2650,7 +2641,6 @@ module Aws::Omics
|
|
2650
2641
|
o.name = "GetReadSetActivationJob"
|
2651
2642
|
o.http_method = "GET"
|
2652
2643
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/activationjob/{id}"
|
2653
|
-
o['authtype'] = "v4"
|
2654
2644
|
o.endpoint_pattern = {
|
2655
2645
|
"hostPrefix" => "control-storage-",
|
2656
2646
|
}
|
@@ -2668,7 +2658,6 @@ module Aws::Omics
|
|
2668
2658
|
o.name = "GetReadSetExportJob"
|
2669
2659
|
o.http_method = "GET"
|
2670
2660
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/exportjob/{id}"
|
2671
|
-
o['authtype'] = "v4"
|
2672
2661
|
o.endpoint_pattern = {
|
2673
2662
|
"hostPrefix" => "control-storage-",
|
2674
2663
|
}
|
@@ -2686,7 +2675,6 @@ module Aws::Omics
|
|
2686
2675
|
o.name = "GetReadSetImportJob"
|
2687
2676
|
o.http_method = "GET"
|
2688
2677
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/importjob/{id}"
|
2689
|
-
o['authtype'] = "v4"
|
2690
2678
|
o.endpoint_pattern = {
|
2691
2679
|
"hostPrefix" => "control-storage-",
|
2692
2680
|
}
|
@@ -2704,7 +2692,6 @@ module Aws::Omics
|
|
2704
2692
|
o.name = "GetReadSetMetadata"
|
2705
2693
|
o.http_method = "GET"
|
2706
2694
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/readset/{id}/metadata"
|
2707
|
-
o['authtype'] = "v4"
|
2708
2695
|
o.endpoint_pattern = {
|
2709
2696
|
"hostPrefix" => "control-storage-",
|
2710
2697
|
}
|
@@ -2722,7 +2709,6 @@ module Aws::Omics
|
|
2722
2709
|
o.name = "GetReference"
|
2723
2710
|
o.http_method = "GET"
|
2724
2711
|
o.http_request_uri = "/referencestore/{referenceStoreId}/reference/{id}"
|
2725
|
-
o['authtype'] = "v4"
|
2726
2712
|
o.endpoint_pattern = {
|
2727
2713
|
"hostPrefix" => "storage-",
|
2728
2714
|
}
|
@@ -2741,7 +2727,6 @@ module Aws::Omics
|
|
2741
2727
|
o.name = "GetReferenceImportJob"
|
2742
2728
|
o.http_method = "GET"
|
2743
2729
|
o.http_request_uri = "/referencestore/{referenceStoreId}/importjob/{id}"
|
2744
|
-
o['authtype'] = "v4"
|
2745
2730
|
o.endpoint_pattern = {
|
2746
2731
|
"hostPrefix" => "control-storage-",
|
2747
2732
|
}
|
@@ -2759,7 +2744,6 @@ module Aws::Omics
|
|
2759
2744
|
o.name = "GetReferenceMetadata"
|
2760
2745
|
o.http_method = "GET"
|
2761
2746
|
o.http_request_uri = "/referencestore/{referenceStoreId}/reference/{id}/metadata"
|
2762
|
-
o['authtype'] = "v4"
|
2763
2747
|
o.endpoint_pattern = {
|
2764
2748
|
"hostPrefix" => "control-storage-",
|
2765
2749
|
}
|
@@ -2777,7 +2761,6 @@ module Aws::Omics
|
|
2777
2761
|
o.name = "GetReferenceStore"
|
2778
2762
|
o.http_method = "GET"
|
2779
2763
|
o.http_request_uri = "/referencestore/{id}"
|
2780
|
-
o['authtype'] = "v4"
|
2781
2764
|
o.endpoint_pattern = {
|
2782
2765
|
"hostPrefix" => "control-storage-",
|
2783
2766
|
}
|
@@ -2795,7 +2778,6 @@ module Aws::Omics
|
|
2795
2778
|
o.name = "GetRun"
|
2796
2779
|
o.http_method = "GET"
|
2797
2780
|
o.http_request_uri = "/run/{id}"
|
2798
|
-
o['authtype'] = "v4"
|
2799
2781
|
o.endpoint_pattern = {
|
2800
2782
|
"hostPrefix" => "workflows-",
|
2801
2783
|
}
|
@@ -2815,7 +2797,6 @@ module Aws::Omics
|
|
2815
2797
|
o.name = "GetRunGroup"
|
2816
2798
|
o.http_method = "GET"
|
2817
2799
|
o.http_request_uri = "/runGroup/{id}"
|
2818
|
-
o['authtype'] = "v4"
|
2819
2800
|
o.endpoint_pattern = {
|
2820
2801
|
"hostPrefix" => "workflows-",
|
2821
2802
|
}
|
@@ -2835,7 +2816,6 @@ module Aws::Omics
|
|
2835
2816
|
o.name = "GetRunTask"
|
2836
2817
|
o.http_method = "GET"
|
2837
2818
|
o.http_request_uri = "/run/{id}/task/{taskId}"
|
2838
|
-
o['authtype'] = "v4"
|
2839
2819
|
o.endpoint_pattern = {
|
2840
2820
|
"hostPrefix" => "workflows-",
|
2841
2821
|
}
|
@@ -2855,7 +2835,6 @@ module Aws::Omics
|
|
2855
2835
|
o.name = "GetSequenceStore"
|
2856
2836
|
o.http_method = "GET"
|
2857
2837
|
o.http_request_uri = "/sequencestore/{id}"
|
2858
|
-
o['authtype'] = "v4"
|
2859
2838
|
o.endpoint_pattern = {
|
2860
2839
|
"hostPrefix" => "control-storage-",
|
2861
2840
|
}
|
@@ -2873,7 +2852,6 @@ module Aws::Omics
|
|
2873
2852
|
o.name = "GetShare"
|
2874
2853
|
o.http_method = "GET"
|
2875
2854
|
o.http_request_uri = "/share/{shareId}"
|
2876
|
-
o['authtype'] = "v4"
|
2877
2855
|
o.endpoint_pattern = {
|
2878
2856
|
"hostPrefix" => "analytics-",
|
2879
2857
|
}
|
@@ -2892,7 +2870,6 @@ module Aws::Omics
|
|
2892
2870
|
o.name = "GetVariantImportJob"
|
2893
2871
|
o.http_method = "GET"
|
2894
2872
|
o.http_request_uri = "/import/variant/{jobId}"
|
2895
|
-
o['authtype'] = "v4"
|
2896
2873
|
o.endpoint_pattern = {
|
2897
2874
|
"hostPrefix" => "analytics-",
|
2898
2875
|
}
|
@@ -2909,7 +2886,6 @@ module Aws::Omics
|
|
2909
2886
|
o.name = "GetVariantStore"
|
2910
2887
|
o.http_method = "GET"
|
2911
2888
|
o.http_request_uri = "/variantStore/{name}"
|
2912
|
-
o['authtype'] = "v4"
|
2913
2889
|
o.endpoint_pattern = {
|
2914
2890
|
"hostPrefix" => "analytics-",
|
2915
2891
|
}
|
@@ -2926,7 +2902,6 @@ module Aws::Omics
|
|
2926
2902
|
o.name = "GetWorkflow"
|
2927
2903
|
o.http_method = "GET"
|
2928
2904
|
o.http_request_uri = "/workflow/{id}"
|
2929
|
-
o['authtype'] = "v4"
|
2930
2905
|
o.endpoint_pattern = {
|
2931
2906
|
"hostPrefix" => "workflows-",
|
2932
2907
|
}
|
@@ -2946,7 +2921,6 @@ module Aws::Omics
|
|
2946
2921
|
o.name = "ListAnnotationImportJobs"
|
2947
2922
|
o.http_method = "POST"
|
2948
2923
|
o.http_request_uri = "/import/annotations"
|
2949
|
-
o['authtype'] = "v4"
|
2950
2924
|
o.endpoint_pattern = {
|
2951
2925
|
"hostPrefix" => "analytics-",
|
2952
2926
|
}
|
@@ -2969,7 +2943,6 @@ module Aws::Omics
|
|
2969
2943
|
o.name = "ListAnnotationStoreVersions"
|
2970
2944
|
o.http_method = "POST"
|
2971
2945
|
o.http_request_uri = "/annotationStore/{name}/versions"
|
2972
|
-
o['authtype'] = "v4"
|
2973
2946
|
o.endpoint_pattern = {
|
2974
2947
|
"hostPrefix" => "analytics-",
|
2975
2948
|
}
|
@@ -2992,7 +2965,6 @@ module Aws::Omics
|
|
2992
2965
|
o.name = "ListAnnotationStores"
|
2993
2966
|
o.http_method = "POST"
|
2994
2967
|
o.http_request_uri = "/annotationStores"
|
2995
|
-
o['authtype'] = "v4"
|
2996
2968
|
o.endpoint_pattern = {
|
2997
2969
|
"hostPrefix" => "analytics-",
|
2998
2970
|
}
|
@@ -3015,7 +2987,6 @@ module Aws::Omics
|
|
3015
2987
|
o.name = "ListMultipartReadSetUploads"
|
3016
2988
|
o.http_method = "POST"
|
3017
2989
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/uploads"
|
3018
|
-
o['authtype'] = "v4"
|
3019
2990
|
o.endpoint_pattern = {
|
3020
2991
|
"hostPrefix" => "control-storage-",
|
3021
2992
|
}
|
@@ -3041,7 +3012,6 @@ module Aws::Omics
|
|
3041
3012
|
o.name = "ListReadSetActivationJobs"
|
3042
3013
|
o.http_method = "POST"
|
3043
3014
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/activationjobs"
|
3044
|
-
o['authtype'] = "v4"
|
3045
3015
|
o.endpoint_pattern = {
|
3046
3016
|
"hostPrefix" => "control-storage-",
|
3047
3017
|
}
|
@@ -3065,7 +3035,6 @@ module Aws::Omics
|
|
3065
3035
|
o.name = "ListReadSetExportJobs"
|
3066
3036
|
o.http_method = "POST"
|
3067
3037
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/exportjobs"
|
3068
|
-
o['authtype'] = "v4"
|
3069
3038
|
o.endpoint_pattern = {
|
3070
3039
|
"hostPrefix" => "control-storage-",
|
3071
3040
|
}
|
@@ -3089,7 +3058,6 @@ module Aws::Omics
|
|
3089
3058
|
o.name = "ListReadSetImportJobs"
|
3090
3059
|
o.http_method = "POST"
|
3091
3060
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/importjobs"
|
3092
|
-
o['authtype'] = "v4"
|
3093
3061
|
o.endpoint_pattern = {
|
3094
3062
|
"hostPrefix" => "control-storage-",
|
3095
3063
|
}
|
@@ -3113,7 +3081,6 @@ module Aws::Omics
|
|
3113
3081
|
o.name = "ListReadSetUploadParts"
|
3114
3082
|
o.http_method = "POST"
|
3115
3083
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/upload/{uploadId}/parts"
|
3116
|
-
o['authtype'] = "v4"
|
3117
3084
|
o.endpoint_pattern = {
|
3118
3085
|
"hostPrefix" => "control-storage-",
|
3119
3086
|
}
|
@@ -3139,7 +3106,6 @@ module Aws::Omics
|
|
3139
3106
|
o.name = "ListReadSets"
|
3140
3107
|
o.http_method = "POST"
|
3141
3108
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/readsets"
|
3142
|
-
o['authtype'] = "v4"
|
3143
3109
|
o.endpoint_pattern = {
|
3144
3110
|
"hostPrefix" => "control-storage-",
|
3145
3111
|
}
|
@@ -3163,7 +3129,6 @@ module Aws::Omics
|
|
3163
3129
|
o.name = "ListReferenceImportJobs"
|
3164
3130
|
o.http_method = "POST"
|
3165
3131
|
o.http_request_uri = "/referencestore/{referenceStoreId}/importjobs"
|
3166
|
-
o['authtype'] = "v4"
|
3167
3132
|
o.endpoint_pattern = {
|
3168
3133
|
"hostPrefix" => "control-storage-",
|
3169
3134
|
}
|
@@ -3187,7 +3152,6 @@ module Aws::Omics
|
|
3187
3152
|
o.name = "ListReferenceStores"
|
3188
3153
|
o.http_method = "POST"
|
3189
3154
|
o.http_request_uri = "/referencestores"
|
3190
|
-
o['authtype'] = "v4"
|
3191
3155
|
o.endpoint_pattern = {
|
3192
3156
|
"hostPrefix" => "control-storage-",
|
3193
3157
|
}
|
@@ -3210,7 +3174,6 @@ module Aws::Omics
|
|
3210
3174
|
o.name = "ListReferences"
|
3211
3175
|
o.http_method = "POST"
|
3212
3176
|
o.http_request_uri = "/referencestore/{referenceStoreId}/references"
|
3213
|
-
o['authtype'] = "v4"
|
3214
3177
|
o.endpoint_pattern = {
|
3215
3178
|
"hostPrefix" => "control-storage-",
|
3216
3179
|
}
|
@@ -3234,7 +3197,6 @@ module Aws::Omics
|
|
3234
3197
|
o.name = "ListRunGroups"
|
3235
3198
|
o.http_method = "GET"
|
3236
3199
|
o.http_request_uri = "/runGroup"
|
3237
|
-
o['authtype'] = "v4"
|
3238
3200
|
o.endpoint_pattern = {
|
3239
3201
|
"hostPrefix" => "workflows-",
|
3240
3202
|
}
|
@@ -3260,7 +3222,6 @@ module Aws::Omics
|
|
3260
3222
|
o.name = "ListRunTasks"
|
3261
3223
|
o.http_method = "GET"
|
3262
3224
|
o.http_request_uri = "/run/{id}/task"
|
3263
|
-
o['authtype'] = "v4"
|
3264
3225
|
o.endpoint_pattern = {
|
3265
3226
|
"hostPrefix" => "workflows-",
|
3266
3227
|
}
|
@@ -3286,7 +3247,6 @@ module Aws::Omics
|
|
3286
3247
|
o.name = "ListRuns"
|
3287
3248
|
o.http_method = "GET"
|
3288
3249
|
o.http_request_uri = "/run"
|
3289
|
-
o['authtype'] = "v4"
|
3290
3250
|
o.endpoint_pattern = {
|
3291
3251
|
"hostPrefix" => "workflows-",
|
3292
3252
|
}
|
@@ -3312,7 +3272,6 @@ module Aws::Omics
|
|
3312
3272
|
o.name = "ListSequenceStores"
|
3313
3273
|
o.http_method = "POST"
|
3314
3274
|
o.http_request_uri = "/sequencestores"
|
3315
|
-
o['authtype'] = "v4"
|
3316
3275
|
o.endpoint_pattern = {
|
3317
3276
|
"hostPrefix" => "control-storage-",
|
3318
3277
|
}
|
@@ -3335,7 +3294,6 @@ module Aws::Omics
|
|
3335
3294
|
o.name = "ListShares"
|
3336
3295
|
o.http_method = "POST"
|
3337
3296
|
o.http_request_uri = "/shares"
|
3338
|
-
o['authtype'] = "v4"
|
3339
3297
|
o.endpoint_pattern = {
|
3340
3298
|
"hostPrefix" => "analytics-",
|
3341
3299
|
}
|
@@ -3360,7 +3318,6 @@ module Aws::Omics
|
|
3360
3318
|
o.name = "ListTagsForResource"
|
3361
3319
|
o.http_method = "GET"
|
3362
3320
|
o.http_request_uri = "/tags/{resourceArn}"
|
3363
|
-
o['authtype'] = "v4"
|
3364
3321
|
o.endpoint_pattern = {
|
3365
3322
|
"hostPrefix" => "tags-",
|
3366
3323
|
}
|
@@ -3380,7 +3337,6 @@ module Aws::Omics
|
|
3380
3337
|
o.name = "ListVariantImportJobs"
|
3381
3338
|
o.http_method = "POST"
|
3382
3339
|
o.http_request_uri = "/import/variants"
|
3383
|
-
o['authtype'] = "v4"
|
3384
3340
|
o.endpoint_pattern = {
|
3385
3341
|
"hostPrefix" => "analytics-",
|
3386
3342
|
}
|
@@ -3403,7 +3359,6 @@ module Aws::Omics
|
|
3403
3359
|
o.name = "ListVariantStores"
|
3404
3360
|
o.http_method = "POST"
|
3405
3361
|
o.http_request_uri = "/variantStores"
|
3406
|
-
o['authtype'] = "v4"
|
3407
3362
|
o.endpoint_pattern = {
|
3408
3363
|
"hostPrefix" => "analytics-",
|
3409
3364
|
}
|
@@ -3426,7 +3381,6 @@ module Aws::Omics
|
|
3426
3381
|
o.name = "ListWorkflows"
|
3427
3382
|
o.http_method = "GET"
|
3428
3383
|
o.http_request_uri = "/workflow"
|
3429
|
-
o['authtype'] = "v4"
|
3430
3384
|
o.endpoint_pattern = {
|
3431
3385
|
"hostPrefix" => "workflows-",
|
3432
3386
|
}
|
@@ -3452,7 +3406,6 @@ module Aws::Omics
|
|
3452
3406
|
o.name = "StartAnnotationImportJob"
|
3453
3407
|
o.http_method = "POST"
|
3454
3408
|
o.http_request_uri = "/import/annotation"
|
3455
|
-
o['authtype'] = "v4"
|
3456
3409
|
o.endpoint_pattern = {
|
3457
3410
|
"hostPrefix" => "analytics-",
|
3458
3411
|
}
|
@@ -3470,7 +3423,6 @@ module Aws::Omics
|
|
3470
3423
|
o.name = "StartReadSetActivationJob"
|
3471
3424
|
o.http_method = "POST"
|
3472
3425
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/activationjob"
|
3473
|
-
o['authtype'] = "v4"
|
3474
3426
|
o.endpoint_pattern = {
|
3475
3427
|
"hostPrefix" => "control-storage-",
|
3476
3428
|
}
|
@@ -3489,7 +3441,6 @@ module Aws::Omics
|
|
3489
3441
|
o.name = "StartReadSetExportJob"
|
3490
3442
|
o.http_method = "POST"
|
3491
3443
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/exportjob"
|
3492
|
-
o['authtype'] = "v4"
|
3493
3444
|
o.endpoint_pattern = {
|
3494
3445
|
"hostPrefix" => "control-storage-",
|
3495
3446
|
}
|
@@ -3508,7 +3459,6 @@ module Aws::Omics
|
|
3508
3459
|
o.name = "StartReadSetImportJob"
|
3509
3460
|
o.http_method = "POST"
|
3510
3461
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/importjob"
|
3511
|
-
o['authtype'] = "v4"
|
3512
3462
|
o.endpoint_pattern = {
|
3513
3463
|
"hostPrefix" => "control-storage-",
|
3514
3464
|
}
|
@@ -3527,7 +3477,6 @@ module Aws::Omics
|
|
3527
3477
|
o.name = "StartReferenceImportJob"
|
3528
3478
|
o.http_method = "POST"
|
3529
3479
|
o.http_request_uri = "/referencestore/{referenceStoreId}/importjob"
|
3530
|
-
o['authtype'] = "v4"
|
3531
3480
|
o.endpoint_pattern = {
|
3532
3481
|
"hostPrefix" => "control-storage-",
|
3533
3482
|
}
|
@@ -3546,7 +3495,6 @@ module Aws::Omics
|
|
3546
3495
|
o.name = "StartRun"
|
3547
3496
|
o.http_method = "POST"
|
3548
3497
|
o.http_request_uri = "/run"
|
3549
|
-
o['authtype'] = "v4"
|
3550
3498
|
o.endpoint_pattern = {
|
3551
3499
|
"hostPrefix" => "workflows-",
|
3552
3500
|
}
|
@@ -3566,7 +3514,6 @@ module Aws::Omics
|
|
3566
3514
|
o.name = "StartVariantImportJob"
|
3567
3515
|
o.http_method = "POST"
|
3568
3516
|
o.http_request_uri = "/import/variant"
|
3569
|
-
o['authtype'] = "v4"
|
3570
3517
|
o.endpoint_pattern = {
|
3571
3518
|
"hostPrefix" => "analytics-",
|
3572
3519
|
}
|
@@ -3584,7 +3531,6 @@ module Aws::Omics
|
|
3584
3531
|
o.name = "TagResource"
|
3585
3532
|
o.http_method = "POST"
|
3586
3533
|
o.http_request_uri = "/tags/{resourceArn}"
|
3587
|
-
o['authtype'] = "v4"
|
3588
3534
|
o.endpoint_pattern = {
|
3589
3535
|
"hostPrefix" => "tags-",
|
3590
3536
|
}
|
@@ -3604,7 +3550,6 @@ module Aws::Omics
|
|
3604
3550
|
o.name = "UntagResource"
|
3605
3551
|
o.http_method = "DELETE"
|
3606
3552
|
o.http_request_uri = "/tags/{resourceArn}"
|
3607
|
-
o['authtype'] = "v4"
|
3608
3553
|
o.endpoint_pattern = {
|
3609
3554
|
"hostPrefix" => "tags-",
|
3610
3555
|
}
|
@@ -3624,7 +3569,6 @@ module Aws::Omics
|
|
3624
3569
|
o.name = "UpdateAnnotationStore"
|
3625
3570
|
o.http_method = "POST"
|
3626
3571
|
o.http_request_uri = "/annotationStore/{name}"
|
3627
|
-
o['authtype'] = "v4"
|
3628
3572
|
o.endpoint_pattern = {
|
3629
3573
|
"hostPrefix" => "analytics-",
|
3630
3574
|
}
|
@@ -3641,7 +3585,6 @@ module Aws::Omics
|
|
3641
3585
|
o.name = "UpdateAnnotationStoreVersion"
|
3642
3586
|
o.http_method = "POST"
|
3643
3587
|
o.http_request_uri = "/annotationStore/{name}/version/{versionName}"
|
3644
|
-
o['authtype'] = "v4"
|
3645
3588
|
o.endpoint_pattern = {
|
3646
3589
|
"hostPrefix" => "analytics-",
|
3647
3590
|
}
|
@@ -3658,7 +3601,6 @@ module Aws::Omics
|
|
3658
3601
|
o.name = "UpdateRunGroup"
|
3659
3602
|
o.http_method = "POST"
|
3660
3603
|
o.http_request_uri = "/runGroup/{id}"
|
3661
|
-
o['authtype'] = "v4"
|
3662
3604
|
o.endpoint_pattern = {
|
3663
3605
|
"hostPrefix" => "workflows-",
|
3664
3606
|
}
|
@@ -3678,7 +3620,6 @@ module Aws::Omics
|
|
3678
3620
|
o.name = "UpdateVariantStore"
|
3679
3621
|
o.http_method = "POST"
|
3680
3622
|
o.http_request_uri = "/variantStore/{name}"
|
3681
|
-
o['authtype'] = "v4"
|
3682
3623
|
o.endpoint_pattern = {
|
3683
3624
|
"hostPrefix" => "analytics-",
|
3684
3625
|
}
|
@@ -3695,7 +3636,6 @@ module Aws::Omics
|
|
3695
3636
|
o.name = "UpdateWorkflow"
|
3696
3637
|
o.http_method = "POST"
|
3697
3638
|
o.http_request_uri = "/workflow/{id}"
|
3698
|
-
o['authtype'] = "v4"
|
3699
3639
|
o.endpoint_pattern = {
|
3700
3640
|
"hostPrefix" => "workflows-",
|
3701
3641
|
}
|
@@ -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?(
|
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"
|
data/lib/aws-sdk-omics/types.rb
CHANGED
@@ -1453,6 +1453,31 @@ module Aws::Omics
|
|
1453
1453
|
include Aws::Structure
|
1454
1454
|
end
|
1455
1455
|
|
1456
|
+
# The entity tag (ETag) is a hash of the object representing its
|
1457
|
+
# semantic content.
|
1458
|
+
#
|
1459
|
+
# @!attribute [rw] algorithm
|
1460
|
+
# The algorithm used to calculate the read set’s ETag(s).
|
1461
|
+
# @return [String]
|
1462
|
+
#
|
1463
|
+
# @!attribute [rw] source1
|
1464
|
+
# The ETag hash calculated on Source1 of the read set.
|
1465
|
+
# @return [String]
|
1466
|
+
#
|
1467
|
+
# @!attribute [rw] source2
|
1468
|
+
# The ETag hash calculated on Source2 of the read set.
|
1469
|
+
# @return [String]
|
1470
|
+
#
|
1471
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ETag AWS API Documentation
|
1472
|
+
#
|
1473
|
+
class ETag < Struct.new(
|
1474
|
+
:algorithm,
|
1475
|
+
:source1,
|
1476
|
+
:source2)
|
1477
|
+
SENSITIVE = []
|
1478
|
+
include Aws::Structure
|
1479
|
+
end
|
1480
|
+
|
1456
1481
|
# A read set.
|
1457
1482
|
#
|
1458
1483
|
# @!attribute [rw] read_set_id
|
@@ -2163,6 +2188,11 @@ module Aws::Omics
|
|
2163
2188
|
# The creation type of the read set.
|
2164
2189
|
# @return [String]
|
2165
2190
|
#
|
2191
|
+
# @!attribute [rw] etag
|
2192
|
+
# The entity tag (ETag) is a hash of the object meant to represent its
|
2193
|
+
# semantic content.
|
2194
|
+
# @return [Types::ETag]
|
2195
|
+
#
|
2166
2196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetReadSetMetadataResponse AWS API Documentation
|
2167
2197
|
#
|
2168
2198
|
class GetReadSetMetadataResponse < Struct.new(
|
@@ -2180,7 +2210,8 @@ module Aws::Omics
|
|
2180
2210
|
:reference_arn,
|
2181
2211
|
:files,
|
2182
2212
|
:status_message,
|
2183
|
-
:creation_type
|
2213
|
+
:creation_type,
|
2214
|
+
:etag)
|
2184
2215
|
SENSITIVE = []
|
2185
2216
|
include Aws::Structure
|
2186
2217
|
end
|
@@ -2636,6 +2667,14 @@ module Aws::Omics
|
|
2636
2667
|
# The run's retention mode.
|
2637
2668
|
# @return [String]
|
2638
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
|
+
#
|
2639
2678
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunResponse AWS API Documentation
|
2640
2679
|
#
|
2641
2680
|
class GetRunResponse < Struct.new(
|
@@ -2663,13 +2702,15 @@ module Aws::Omics
|
|
2663
2702
|
:status_message,
|
2664
2703
|
:tags,
|
2665
2704
|
:accelerators,
|
2666
|
-
:retention_mode
|
2705
|
+
:retention_mode,
|
2706
|
+
:failure_reason,
|
2707
|
+
:log_location)
|
2667
2708
|
SENSITIVE = []
|
2668
2709
|
include Aws::Structure
|
2669
2710
|
end
|
2670
2711
|
|
2671
2712
|
# @!attribute [rw] id
|
2672
|
-
# The
|
2713
|
+
# The workflow run ID.
|
2673
2714
|
# @return [String]
|
2674
2715
|
#
|
2675
2716
|
# @!attribute [rw] task_id
|
@@ -2733,6 +2774,10 @@ module Aws::Omics
|
|
2733
2774
|
# The instance type for a task.
|
2734
2775
|
# @return [String]
|
2735
2776
|
#
|
2777
|
+
# @!attribute [rw] failure_reason
|
2778
|
+
# The reason a task has failed.
|
2779
|
+
# @return [String]
|
2780
|
+
#
|
2736
2781
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunTaskResponse AWS API Documentation
|
2737
2782
|
#
|
2738
2783
|
class GetRunTaskResponse < Struct.new(
|
@@ -2747,7 +2792,8 @@ module Aws::Omics
|
|
2747
2792
|
:status_message,
|
2748
2793
|
:log_stream,
|
2749
2794
|
:gpus,
|
2750
|
-
:instance_type
|
2795
|
+
:instance_type,
|
2796
|
+
:failure_reason)
|
2751
2797
|
SENSITIVE = []
|
2752
2798
|
include Aws::Structure
|
2753
2799
|
end
|
@@ -4661,6 +4707,11 @@ module Aws::Omics
|
|
4661
4707
|
# The creation type of the read set.
|
4662
4708
|
# @return [String]
|
4663
4709
|
#
|
4710
|
+
# @!attribute [rw] etag
|
4711
|
+
# The entity tag (ETag) is a hash of the object representing its
|
4712
|
+
# semantic content.
|
4713
|
+
# @return [Types::ETag]
|
4714
|
+
#
|
4664
4715
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ReadSetListItem AWS API Documentation
|
4665
4716
|
#
|
4666
4717
|
class ReadSetListItem < Struct.new(
|
@@ -4677,7 +4728,8 @@ module Aws::Omics
|
|
4677
4728
|
:sequence_information,
|
4678
4729
|
:creation_time,
|
4679
4730
|
:status_message,
|
4680
|
-
:creation_type
|
4731
|
+
:creation_type,
|
4732
|
+
:etag)
|
4681
4733
|
SENSITIVE = []
|
4682
4734
|
include Aws::Structure
|
4683
4735
|
end
|
@@ -5065,6 +5117,25 @@ module Aws::Omics
|
|
5065
5117
|
include Aws::Structure
|
5066
5118
|
end
|
5067
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
|
+
|
5068
5139
|
# Details about a sequence.
|
5069
5140
|
#
|
5070
5141
|
# @!attribute [rw] total_read_count
|
data/lib/aws-sdk-omics.rb
CHANGED
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.
|
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-
|
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
|