aws-sdk-omics 1.14.0 → 1.16.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57891ecacd1c07b363d468ced44354277357cc635a867c02007d19b018e4966b
4
- data.tar.gz: 1c27392e4f2ae9cf44b18247f7f825659c9f68d4ab8e400f5a79d89924137274
3
+ metadata.gz: 6318a5e9fceeed9abe8affcfc6739af422c577e99c405f6d4a7b30f092318020
4
+ data.tar.gz: 5c0918e27cc128ce2cab30fbd626ab101a9df9d615ca02ea73abfea1d8c34a41
5
5
  SHA512:
6
- metadata.gz: fb8ecb575c1232826e298bbf1765fca39bbf17b9e86cc0ae35ce45544b8669395684edd50307a233ba549b4033cf46872981c1b0cf5765a9fd29ea480e6ae324
7
- data.tar.gz: d3dfd2f743587879d97df7236e11c375e3fd16416c8aafbbd2885d1e9800f62103a1731fd60c6586a8d9461a76cbc4fbea8a13a0d8a286a98be20caf88bc6c72
6
+ metadata.gz: fc9ae333342262ab54192688fb1eead96ecabc6f0dd2c23b77f5ea5cafe3caceffcea731bb04b3dd0e40fd23bdf136e6247decd2012a91fb7a3c4add635bdad4
7
+ data.tar.gz: 289696acb851da25dce7fcb989e2a61f2c5d64764e6b527f0596a8fa7b05ee07dab4ea75db9472f0c6201d2e6c70f4bda68cb979133d1e27505394712873ff1c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2023-10-05)
5
+ ------------------
6
+
7
+ * Feature - Add Etag Support for Omics Storage in ListReadSets and GetReadSetMetadata API
8
+
9
+ 1.15.0 (2023-09-27)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.14.0 (2023-08-29)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.16.0
@@ -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
  #
@@ -3166,6 +3170,9 @@ module Aws::Omics
3166
3170
  # resp.read_sets[0].creation_time #=> Time
3167
3171
  # resp.read_sets[0].status_message #=> String
3168
3172
  # resp.read_sets[0].creation_type #=> String, one of "IMPORT", "UPLOAD"
3173
+ # resp.read_sets[0].etag.algorithm #=> String, one of "FASTQ_MD5up", "BAM_MD5up", "CRAM_MD5up"
3174
+ # resp.read_sets[0].etag.source1 #=> String
3175
+ # resp.read_sets[0].etag.source2 #=> String
3169
3176
  #
3170
3177
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListReadSets AWS API Documentation
3171
3178
  #
@@ -4608,7 +4615,7 @@ module Aws::Omics
4608
4615
  params: params,
4609
4616
  config: config)
4610
4617
  context[:gem_name] = 'aws-sdk-omics'
4611
- context[:gem_version] = '1.14.0'
4618
+ context[:gem_version] = '1.16.0'
4612
4619
  Seahorse::Client::Request.new(handlers, context)
4613
4620
  end
4614
4621
 
@@ -102,6 +102,8 @@ 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')
107
109
  EscapeChar = Shapes::StringShape.new(name: 'EscapeChar')
@@ -853,6 +855,11 @@ module Aws::Omics
853
855
  DeleteWorkflowRequest.add_member(:id, Shapes::ShapeRef.new(shape: WorkflowId, required: true, location: "uri", location_name: "id"))
854
856
  DeleteWorkflowRequest.struct_class = Types::DeleteWorkflowRequest
855
857
 
858
+ ETag.add_member(:algorithm, Shapes::ShapeRef.new(shape: ETagAlgorithm, location_name: "algorithm"))
859
+ ETag.add_member(:source1, Shapes::ShapeRef.new(shape: String, location_name: "source1"))
860
+ ETag.add_member(:source2, Shapes::ShapeRef.new(shape: String, location_name: "source2"))
861
+ ETag.struct_class = Types::ETag
862
+
856
863
  ExportReadSet.add_member(:read_set_id, Shapes::ShapeRef.new(shape: ReadSetId, required: true, location_name: "readSetId"))
857
864
  ExportReadSet.struct_class = Types::ExportReadSet
858
865
 
@@ -1015,6 +1022,7 @@ module Aws::Omics
1015
1022
  GetReadSetMetadataResponse.add_member(:files, Shapes::ShapeRef.new(shape: ReadSetFiles, location_name: "files"))
1016
1023
  GetReadSetMetadataResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: ReadSetStatusMessage, location_name: "statusMessage"))
1017
1024
  GetReadSetMetadataResponse.add_member(:creation_type, Shapes::ShapeRef.new(shape: CreationType, location_name: "creationType"))
1025
+ GetReadSetMetadataResponse.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "etag"))
1018
1026
  GetReadSetMetadataResponse.struct_class = Types::GetReadSetMetadataResponse
1019
1027
 
1020
1028
  GetReadSetRequest.add_member(:id, Shapes::ShapeRef.new(shape: ReadSetId, required: true, location: "uri", location_name: "id"))
@@ -1580,6 +1588,7 @@ module Aws::Omics
1580
1588
  ReadSetListItem.add_member(:creation_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "creationTime"))
1581
1589
  ReadSetListItem.add_member(:status_message, Shapes::ShapeRef.new(shape: ReadSetStatusMessage, location_name: "statusMessage"))
1582
1590
  ReadSetListItem.add_member(:creation_type, Shapes::ShapeRef.new(shape: CreationType, location_name: "creationType"))
1591
+ ReadSetListItem.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "etag"))
1583
1592
  ReadSetListItem.struct_class = Types::ReadSetListItem
1584
1593
 
1585
1594
  ReadSetUploadPartList.member = Shapes::ShapeRef.new(shape: ReadSetUploadPartListItem)
@@ -2086,7 +2095,6 @@ module Aws::Omics
2086
2095
  o.name = "AbortMultipartReadSetUpload"
2087
2096
  o.http_method = "DELETE"
2088
2097
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/upload/{uploadId}/abort"
2089
- o['authtype'] = "v4"
2090
2098
  o.endpoint_pattern = {
2091
2099
  "hostPrefix" => "control-storage-",
2092
2100
  }
@@ -2106,7 +2114,6 @@ module Aws::Omics
2106
2114
  o.name = "AcceptShare"
2107
2115
  o.http_method = "POST"
2108
2116
  o.http_request_uri = "/share/{shareId}"
2109
- o['authtype'] = "v4"
2110
2117
  o.endpoint_pattern = {
2111
2118
  "hostPrefix" => "analytics-",
2112
2119
  }
@@ -2125,7 +2132,6 @@ module Aws::Omics
2125
2132
  o.name = "BatchDeleteReadSet"
2126
2133
  o.http_method = "POST"
2127
2134
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/readset/batch/delete"
2128
- o['authtype'] = "v4"
2129
2135
  o.endpoint_pattern = {
2130
2136
  "hostPrefix" => "control-storage-",
2131
2137
  }
@@ -2143,7 +2149,6 @@ module Aws::Omics
2143
2149
  o.name = "CancelAnnotationImportJob"
2144
2150
  o.http_method = "DELETE"
2145
2151
  o.http_request_uri = "/import/annotation/{jobId}"
2146
- o['authtype'] = "v4"
2147
2152
  o.endpoint_pattern = {
2148
2153
  "hostPrefix" => "analytics-",
2149
2154
  }
@@ -2160,7 +2165,6 @@ module Aws::Omics
2160
2165
  o.name = "CancelRun"
2161
2166
  o.http_method = "POST"
2162
2167
  o.http_request_uri = "/run/{id}/cancel"
2163
- o['authtype'] = "v4"
2164
2168
  o.endpoint_pattern = {
2165
2169
  "hostPrefix" => "workflows-",
2166
2170
  }
@@ -2180,7 +2184,6 @@ module Aws::Omics
2180
2184
  o.name = "CancelVariantImportJob"
2181
2185
  o.http_method = "DELETE"
2182
2186
  o.http_request_uri = "/import/variant/{jobId}"
2183
- o['authtype'] = "v4"
2184
2187
  o.endpoint_pattern = {
2185
2188
  "hostPrefix" => "analytics-",
2186
2189
  }
@@ -2197,7 +2200,6 @@ module Aws::Omics
2197
2200
  o.name = "CompleteMultipartReadSetUpload"
2198
2201
  o.http_method = "POST"
2199
2202
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/upload/{uploadId}/complete"
2200
- o['authtype'] = "v4"
2201
2203
  o.endpoint_pattern = {
2202
2204
  "hostPrefix" => "storage-",
2203
2205
  }
@@ -2217,7 +2219,6 @@ module Aws::Omics
2217
2219
  o.name = "CreateAnnotationStore"
2218
2220
  o.http_method = "POST"
2219
2221
  o.http_request_uri = "/annotationStore"
2220
- o['authtype'] = "v4"
2221
2222
  o.endpoint_pattern = {
2222
2223
  "hostPrefix" => "analytics-",
2223
2224
  }
@@ -2236,7 +2237,6 @@ module Aws::Omics
2236
2237
  o.name = "CreateAnnotationStoreVersion"
2237
2238
  o.http_method = "POST"
2238
2239
  o.http_request_uri = "/annotationStore/{name}/version"
2239
- o['authtype'] = "v4"
2240
2240
  o.endpoint_pattern = {
2241
2241
  "hostPrefix" => "analytics-",
2242
2242
  }
@@ -2255,7 +2255,6 @@ module Aws::Omics
2255
2255
  o.name = "CreateMultipartReadSetUpload"
2256
2256
  o.http_method = "POST"
2257
2257
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/upload"
2258
- o['authtype'] = "v4"
2259
2258
  o.endpoint_pattern = {
2260
2259
  "hostPrefix" => "control-storage-",
2261
2260
  }
@@ -2275,7 +2274,6 @@ module Aws::Omics
2275
2274
  o.name = "CreateReferenceStore"
2276
2275
  o.http_method = "POST"
2277
2276
  o.http_request_uri = "/referencestore"
2278
- o['authtype'] = "v4"
2279
2277
  o.endpoint_pattern = {
2280
2278
  "hostPrefix" => "control-storage-",
2281
2279
  }
@@ -2293,7 +2291,6 @@ module Aws::Omics
2293
2291
  o.name = "CreateRunGroup"
2294
2292
  o.http_method = "POST"
2295
2293
  o.http_request_uri = "/runGroup"
2296
- o['authtype'] = "v4"
2297
2294
  o.endpoint_pattern = {
2298
2295
  "hostPrefix" => "workflows-",
2299
2296
  }
@@ -2313,7 +2310,6 @@ module Aws::Omics
2313
2310
  o.name = "CreateSequenceStore"
2314
2311
  o.http_method = "POST"
2315
2312
  o.http_request_uri = "/sequencestore"
2316
- o['authtype'] = "v4"
2317
2313
  o.endpoint_pattern = {
2318
2314
  "hostPrefix" => "control-storage-",
2319
2315
  }
@@ -2331,7 +2327,6 @@ module Aws::Omics
2331
2327
  o.name = "CreateShare"
2332
2328
  o.http_method = "POST"
2333
2329
  o.http_request_uri = "/share"
2334
- o['authtype'] = "v4"
2335
2330
  o.endpoint_pattern = {
2336
2331
  "hostPrefix" => "analytics-",
2337
2332
  }
@@ -2350,7 +2345,6 @@ module Aws::Omics
2350
2345
  o.name = "CreateVariantStore"
2351
2346
  o.http_method = "POST"
2352
2347
  o.http_request_uri = "/variantStore"
2353
- o['authtype'] = "v4"
2354
2348
  o.endpoint_pattern = {
2355
2349
  "hostPrefix" => "analytics-",
2356
2350
  }
@@ -2369,7 +2363,6 @@ module Aws::Omics
2369
2363
  o.name = "CreateWorkflow"
2370
2364
  o.http_method = "POST"
2371
2365
  o.http_request_uri = "/workflow"
2372
- o['authtype'] = "v4"
2373
2366
  o.endpoint_pattern = {
2374
2367
  "hostPrefix" => "workflows-",
2375
2368
  }
@@ -2389,7 +2382,6 @@ module Aws::Omics
2389
2382
  o.name = "DeleteAnnotationStore"
2390
2383
  o.http_method = "DELETE"
2391
2384
  o.http_request_uri = "/annotationStore/{name}"
2392
- o['authtype'] = "v4"
2393
2385
  o.endpoint_pattern = {
2394
2386
  "hostPrefix" => "analytics-",
2395
2387
  }
@@ -2407,7 +2399,6 @@ module Aws::Omics
2407
2399
  o.name = "DeleteAnnotationStoreVersions"
2408
2400
  o.http_method = "POST"
2409
2401
  o.http_request_uri = "/annotationStore/{name}/versions/delete"
2410
- o['authtype'] = "v4"
2411
2402
  o.endpoint_pattern = {
2412
2403
  "hostPrefix" => "analytics-",
2413
2404
  }
@@ -2425,7 +2416,6 @@ module Aws::Omics
2425
2416
  o.name = "DeleteReference"
2426
2417
  o.http_method = "DELETE"
2427
2418
  o.http_request_uri = "/referencestore/{referenceStoreId}/reference/{id}"
2428
- o['authtype'] = "v4"
2429
2419
  o.endpoint_pattern = {
2430
2420
  "hostPrefix" => "control-storage-",
2431
2421
  }
@@ -2444,7 +2434,6 @@ module Aws::Omics
2444
2434
  o.name = "DeleteReferenceStore"
2445
2435
  o.http_method = "DELETE"
2446
2436
  o.http_request_uri = "/referencestore/{id}"
2447
- o['authtype'] = "v4"
2448
2437
  o.endpoint_pattern = {
2449
2438
  "hostPrefix" => "control-storage-",
2450
2439
  }
@@ -2463,7 +2452,6 @@ module Aws::Omics
2463
2452
  o.name = "DeleteRun"
2464
2453
  o.http_method = "DELETE"
2465
2454
  o.http_request_uri = "/run/{id}"
2466
- o['authtype'] = "v4"
2467
2455
  o.endpoint_pattern = {
2468
2456
  "hostPrefix" => "workflows-",
2469
2457
  }
@@ -2483,7 +2471,6 @@ module Aws::Omics
2483
2471
  o.name = "DeleteRunGroup"
2484
2472
  o.http_method = "DELETE"
2485
2473
  o.http_request_uri = "/runGroup/{id}"
2486
- o['authtype'] = "v4"
2487
2474
  o.endpoint_pattern = {
2488
2475
  "hostPrefix" => "workflows-",
2489
2476
  }
@@ -2503,7 +2490,6 @@ module Aws::Omics
2503
2490
  o.name = "DeleteSequenceStore"
2504
2491
  o.http_method = "DELETE"
2505
2492
  o.http_request_uri = "/sequencestore/{id}"
2506
- o['authtype'] = "v4"
2507
2493
  o.endpoint_pattern = {
2508
2494
  "hostPrefix" => "control-storage-",
2509
2495
  }
@@ -2522,7 +2508,6 @@ module Aws::Omics
2522
2508
  o.name = "DeleteShare"
2523
2509
  o.http_method = "DELETE"
2524
2510
  o.http_request_uri = "/share/{shareId}"
2525
- o['authtype'] = "v4"
2526
2511
  o.endpoint_pattern = {
2527
2512
  "hostPrefix" => "analytics-",
2528
2513
  }
@@ -2541,7 +2526,6 @@ module Aws::Omics
2541
2526
  o.name = "DeleteVariantStore"
2542
2527
  o.http_method = "DELETE"
2543
2528
  o.http_request_uri = "/variantStore/{name}"
2544
- o['authtype'] = "v4"
2545
2529
  o.endpoint_pattern = {
2546
2530
  "hostPrefix" => "analytics-",
2547
2531
  }
@@ -2559,7 +2543,6 @@ module Aws::Omics
2559
2543
  o.name = "DeleteWorkflow"
2560
2544
  o.http_method = "DELETE"
2561
2545
  o.http_request_uri = "/workflow/{id}"
2562
- o['authtype'] = "v4"
2563
2546
  o.endpoint_pattern = {
2564
2547
  "hostPrefix" => "workflows-",
2565
2548
  }
@@ -2579,7 +2562,6 @@ module Aws::Omics
2579
2562
  o.name = "GetAnnotationImportJob"
2580
2563
  o.http_method = "GET"
2581
2564
  o.http_request_uri = "/import/annotation/{jobId}"
2582
- o['authtype'] = "v4"
2583
2565
  o.endpoint_pattern = {
2584
2566
  "hostPrefix" => "analytics-",
2585
2567
  }
@@ -2596,7 +2578,6 @@ module Aws::Omics
2596
2578
  o.name = "GetAnnotationStore"
2597
2579
  o.http_method = "GET"
2598
2580
  o.http_request_uri = "/annotationStore/{name}"
2599
- o['authtype'] = "v4"
2600
2581
  o.endpoint_pattern = {
2601
2582
  "hostPrefix" => "analytics-",
2602
2583
  }
@@ -2613,7 +2594,6 @@ module Aws::Omics
2613
2594
  o.name = "GetAnnotationStoreVersion"
2614
2595
  o.http_method = "GET"
2615
2596
  o.http_request_uri = "/annotationStore/{name}/version/{versionName}"
2616
- o['authtype'] = "v4"
2617
2597
  o.endpoint_pattern = {
2618
2598
  "hostPrefix" => "analytics-",
2619
2599
  }
@@ -2630,7 +2610,6 @@ module Aws::Omics
2630
2610
  o.name = "GetReadSet"
2631
2611
  o.http_method = "GET"
2632
2612
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/readset/{id}"
2633
- o['authtype'] = "v4"
2634
2613
  o.endpoint_pattern = {
2635
2614
  "hostPrefix" => "storage-",
2636
2615
  }
@@ -2650,7 +2629,6 @@ module Aws::Omics
2650
2629
  o.name = "GetReadSetActivationJob"
2651
2630
  o.http_method = "GET"
2652
2631
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/activationjob/{id}"
2653
- o['authtype'] = "v4"
2654
2632
  o.endpoint_pattern = {
2655
2633
  "hostPrefix" => "control-storage-",
2656
2634
  }
@@ -2668,7 +2646,6 @@ module Aws::Omics
2668
2646
  o.name = "GetReadSetExportJob"
2669
2647
  o.http_method = "GET"
2670
2648
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/exportjob/{id}"
2671
- o['authtype'] = "v4"
2672
2649
  o.endpoint_pattern = {
2673
2650
  "hostPrefix" => "control-storage-",
2674
2651
  }
@@ -2686,7 +2663,6 @@ module Aws::Omics
2686
2663
  o.name = "GetReadSetImportJob"
2687
2664
  o.http_method = "GET"
2688
2665
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/importjob/{id}"
2689
- o['authtype'] = "v4"
2690
2666
  o.endpoint_pattern = {
2691
2667
  "hostPrefix" => "control-storage-",
2692
2668
  }
@@ -2704,7 +2680,6 @@ module Aws::Omics
2704
2680
  o.name = "GetReadSetMetadata"
2705
2681
  o.http_method = "GET"
2706
2682
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/readset/{id}/metadata"
2707
- o['authtype'] = "v4"
2708
2683
  o.endpoint_pattern = {
2709
2684
  "hostPrefix" => "control-storage-",
2710
2685
  }
@@ -2722,7 +2697,6 @@ module Aws::Omics
2722
2697
  o.name = "GetReference"
2723
2698
  o.http_method = "GET"
2724
2699
  o.http_request_uri = "/referencestore/{referenceStoreId}/reference/{id}"
2725
- o['authtype'] = "v4"
2726
2700
  o.endpoint_pattern = {
2727
2701
  "hostPrefix" => "storage-",
2728
2702
  }
@@ -2741,7 +2715,6 @@ module Aws::Omics
2741
2715
  o.name = "GetReferenceImportJob"
2742
2716
  o.http_method = "GET"
2743
2717
  o.http_request_uri = "/referencestore/{referenceStoreId}/importjob/{id}"
2744
- o['authtype'] = "v4"
2745
2718
  o.endpoint_pattern = {
2746
2719
  "hostPrefix" => "control-storage-",
2747
2720
  }
@@ -2759,7 +2732,6 @@ module Aws::Omics
2759
2732
  o.name = "GetReferenceMetadata"
2760
2733
  o.http_method = "GET"
2761
2734
  o.http_request_uri = "/referencestore/{referenceStoreId}/reference/{id}/metadata"
2762
- o['authtype'] = "v4"
2763
2735
  o.endpoint_pattern = {
2764
2736
  "hostPrefix" => "control-storage-",
2765
2737
  }
@@ -2777,7 +2749,6 @@ module Aws::Omics
2777
2749
  o.name = "GetReferenceStore"
2778
2750
  o.http_method = "GET"
2779
2751
  o.http_request_uri = "/referencestore/{id}"
2780
- o['authtype'] = "v4"
2781
2752
  o.endpoint_pattern = {
2782
2753
  "hostPrefix" => "control-storage-",
2783
2754
  }
@@ -2795,7 +2766,6 @@ module Aws::Omics
2795
2766
  o.name = "GetRun"
2796
2767
  o.http_method = "GET"
2797
2768
  o.http_request_uri = "/run/{id}"
2798
- o['authtype'] = "v4"
2799
2769
  o.endpoint_pattern = {
2800
2770
  "hostPrefix" => "workflows-",
2801
2771
  }
@@ -2815,7 +2785,6 @@ module Aws::Omics
2815
2785
  o.name = "GetRunGroup"
2816
2786
  o.http_method = "GET"
2817
2787
  o.http_request_uri = "/runGroup/{id}"
2818
- o['authtype'] = "v4"
2819
2788
  o.endpoint_pattern = {
2820
2789
  "hostPrefix" => "workflows-",
2821
2790
  }
@@ -2835,7 +2804,6 @@ module Aws::Omics
2835
2804
  o.name = "GetRunTask"
2836
2805
  o.http_method = "GET"
2837
2806
  o.http_request_uri = "/run/{id}/task/{taskId}"
2838
- o['authtype'] = "v4"
2839
2807
  o.endpoint_pattern = {
2840
2808
  "hostPrefix" => "workflows-",
2841
2809
  }
@@ -2855,7 +2823,6 @@ module Aws::Omics
2855
2823
  o.name = "GetSequenceStore"
2856
2824
  o.http_method = "GET"
2857
2825
  o.http_request_uri = "/sequencestore/{id}"
2858
- o['authtype'] = "v4"
2859
2826
  o.endpoint_pattern = {
2860
2827
  "hostPrefix" => "control-storage-",
2861
2828
  }
@@ -2873,7 +2840,6 @@ module Aws::Omics
2873
2840
  o.name = "GetShare"
2874
2841
  o.http_method = "GET"
2875
2842
  o.http_request_uri = "/share/{shareId}"
2876
- o['authtype'] = "v4"
2877
2843
  o.endpoint_pattern = {
2878
2844
  "hostPrefix" => "analytics-",
2879
2845
  }
@@ -2892,7 +2858,6 @@ module Aws::Omics
2892
2858
  o.name = "GetVariantImportJob"
2893
2859
  o.http_method = "GET"
2894
2860
  o.http_request_uri = "/import/variant/{jobId}"
2895
- o['authtype'] = "v4"
2896
2861
  o.endpoint_pattern = {
2897
2862
  "hostPrefix" => "analytics-",
2898
2863
  }
@@ -2909,7 +2874,6 @@ module Aws::Omics
2909
2874
  o.name = "GetVariantStore"
2910
2875
  o.http_method = "GET"
2911
2876
  o.http_request_uri = "/variantStore/{name}"
2912
- o['authtype'] = "v4"
2913
2877
  o.endpoint_pattern = {
2914
2878
  "hostPrefix" => "analytics-",
2915
2879
  }
@@ -2926,7 +2890,6 @@ module Aws::Omics
2926
2890
  o.name = "GetWorkflow"
2927
2891
  o.http_method = "GET"
2928
2892
  o.http_request_uri = "/workflow/{id}"
2929
- o['authtype'] = "v4"
2930
2893
  o.endpoint_pattern = {
2931
2894
  "hostPrefix" => "workflows-",
2932
2895
  }
@@ -2946,7 +2909,6 @@ module Aws::Omics
2946
2909
  o.name = "ListAnnotationImportJobs"
2947
2910
  o.http_method = "POST"
2948
2911
  o.http_request_uri = "/import/annotations"
2949
- o['authtype'] = "v4"
2950
2912
  o.endpoint_pattern = {
2951
2913
  "hostPrefix" => "analytics-",
2952
2914
  }
@@ -2969,7 +2931,6 @@ module Aws::Omics
2969
2931
  o.name = "ListAnnotationStoreVersions"
2970
2932
  o.http_method = "POST"
2971
2933
  o.http_request_uri = "/annotationStore/{name}/versions"
2972
- o['authtype'] = "v4"
2973
2934
  o.endpoint_pattern = {
2974
2935
  "hostPrefix" => "analytics-",
2975
2936
  }
@@ -2992,7 +2953,6 @@ module Aws::Omics
2992
2953
  o.name = "ListAnnotationStores"
2993
2954
  o.http_method = "POST"
2994
2955
  o.http_request_uri = "/annotationStores"
2995
- o['authtype'] = "v4"
2996
2956
  o.endpoint_pattern = {
2997
2957
  "hostPrefix" => "analytics-",
2998
2958
  }
@@ -3015,7 +2975,6 @@ module Aws::Omics
3015
2975
  o.name = "ListMultipartReadSetUploads"
3016
2976
  o.http_method = "POST"
3017
2977
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/uploads"
3018
- o['authtype'] = "v4"
3019
2978
  o.endpoint_pattern = {
3020
2979
  "hostPrefix" => "control-storage-",
3021
2980
  }
@@ -3041,7 +3000,6 @@ module Aws::Omics
3041
3000
  o.name = "ListReadSetActivationJobs"
3042
3001
  o.http_method = "POST"
3043
3002
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/activationjobs"
3044
- o['authtype'] = "v4"
3045
3003
  o.endpoint_pattern = {
3046
3004
  "hostPrefix" => "control-storage-",
3047
3005
  }
@@ -3065,7 +3023,6 @@ module Aws::Omics
3065
3023
  o.name = "ListReadSetExportJobs"
3066
3024
  o.http_method = "POST"
3067
3025
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/exportjobs"
3068
- o['authtype'] = "v4"
3069
3026
  o.endpoint_pattern = {
3070
3027
  "hostPrefix" => "control-storage-",
3071
3028
  }
@@ -3089,7 +3046,6 @@ module Aws::Omics
3089
3046
  o.name = "ListReadSetImportJobs"
3090
3047
  o.http_method = "POST"
3091
3048
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/importjobs"
3092
- o['authtype'] = "v4"
3093
3049
  o.endpoint_pattern = {
3094
3050
  "hostPrefix" => "control-storage-",
3095
3051
  }
@@ -3113,7 +3069,6 @@ module Aws::Omics
3113
3069
  o.name = "ListReadSetUploadParts"
3114
3070
  o.http_method = "POST"
3115
3071
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/upload/{uploadId}/parts"
3116
- o['authtype'] = "v4"
3117
3072
  o.endpoint_pattern = {
3118
3073
  "hostPrefix" => "control-storage-",
3119
3074
  }
@@ -3139,7 +3094,6 @@ module Aws::Omics
3139
3094
  o.name = "ListReadSets"
3140
3095
  o.http_method = "POST"
3141
3096
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/readsets"
3142
- o['authtype'] = "v4"
3143
3097
  o.endpoint_pattern = {
3144
3098
  "hostPrefix" => "control-storage-",
3145
3099
  }
@@ -3163,7 +3117,6 @@ module Aws::Omics
3163
3117
  o.name = "ListReferenceImportJobs"
3164
3118
  o.http_method = "POST"
3165
3119
  o.http_request_uri = "/referencestore/{referenceStoreId}/importjobs"
3166
- o['authtype'] = "v4"
3167
3120
  o.endpoint_pattern = {
3168
3121
  "hostPrefix" => "control-storage-",
3169
3122
  }
@@ -3187,7 +3140,6 @@ module Aws::Omics
3187
3140
  o.name = "ListReferenceStores"
3188
3141
  o.http_method = "POST"
3189
3142
  o.http_request_uri = "/referencestores"
3190
- o['authtype'] = "v4"
3191
3143
  o.endpoint_pattern = {
3192
3144
  "hostPrefix" => "control-storage-",
3193
3145
  }
@@ -3210,7 +3162,6 @@ module Aws::Omics
3210
3162
  o.name = "ListReferences"
3211
3163
  o.http_method = "POST"
3212
3164
  o.http_request_uri = "/referencestore/{referenceStoreId}/references"
3213
- o['authtype'] = "v4"
3214
3165
  o.endpoint_pattern = {
3215
3166
  "hostPrefix" => "control-storage-",
3216
3167
  }
@@ -3234,7 +3185,6 @@ module Aws::Omics
3234
3185
  o.name = "ListRunGroups"
3235
3186
  o.http_method = "GET"
3236
3187
  o.http_request_uri = "/runGroup"
3237
- o['authtype'] = "v4"
3238
3188
  o.endpoint_pattern = {
3239
3189
  "hostPrefix" => "workflows-",
3240
3190
  }
@@ -3260,7 +3210,6 @@ module Aws::Omics
3260
3210
  o.name = "ListRunTasks"
3261
3211
  o.http_method = "GET"
3262
3212
  o.http_request_uri = "/run/{id}/task"
3263
- o['authtype'] = "v4"
3264
3213
  o.endpoint_pattern = {
3265
3214
  "hostPrefix" => "workflows-",
3266
3215
  }
@@ -3286,7 +3235,6 @@ module Aws::Omics
3286
3235
  o.name = "ListRuns"
3287
3236
  o.http_method = "GET"
3288
3237
  o.http_request_uri = "/run"
3289
- o['authtype'] = "v4"
3290
3238
  o.endpoint_pattern = {
3291
3239
  "hostPrefix" => "workflows-",
3292
3240
  }
@@ -3312,7 +3260,6 @@ module Aws::Omics
3312
3260
  o.name = "ListSequenceStores"
3313
3261
  o.http_method = "POST"
3314
3262
  o.http_request_uri = "/sequencestores"
3315
- o['authtype'] = "v4"
3316
3263
  o.endpoint_pattern = {
3317
3264
  "hostPrefix" => "control-storage-",
3318
3265
  }
@@ -3335,7 +3282,6 @@ module Aws::Omics
3335
3282
  o.name = "ListShares"
3336
3283
  o.http_method = "POST"
3337
3284
  o.http_request_uri = "/shares"
3338
- o['authtype'] = "v4"
3339
3285
  o.endpoint_pattern = {
3340
3286
  "hostPrefix" => "analytics-",
3341
3287
  }
@@ -3360,7 +3306,6 @@ module Aws::Omics
3360
3306
  o.name = "ListTagsForResource"
3361
3307
  o.http_method = "GET"
3362
3308
  o.http_request_uri = "/tags/{resourceArn}"
3363
- o['authtype'] = "v4"
3364
3309
  o.endpoint_pattern = {
3365
3310
  "hostPrefix" => "tags-",
3366
3311
  }
@@ -3380,7 +3325,6 @@ module Aws::Omics
3380
3325
  o.name = "ListVariantImportJobs"
3381
3326
  o.http_method = "POST"
3382
3327
  o.http_request_uri = "/import/variants"
3383
- o['authtype'] = "v4"
3384
3328
  o.endpoint_pattern = {
3385
3329
  "hostPrefix" => "analytics-",
3386
3330
  }
@@ -3403,7 +3347,6 @@ module Aws::Omics
3403
3347
  o.name = "ListVariantStores"
3404
3348
  o.http_method = "POST"
3405
3349
  o.http_request_uri = "/variantStores"
3406
- o['authtype'] = "v4"
3407
3350
  o.endpoint_pattern = {
3408
3351
  "hostPrefix" => "analytics-",
3409
3352
  }
@@ -3426,7 +3369,6 @@ module Aws::Omics
3426
3369
  o.name = "ListWorkflows"
3427
3370
  o.http_method = "GET"
3428
3371
  o.http_request_uri = "/workflow"
3429
- o['authtype'] = "v4"
3430
3372
  o.endpoint_pattern = {
3431
3373
  "hostPrefix" => "workflows-",
3432
3374
  }
@@ -3452,7 +3394,6 @@ module Aws::Omics
3452
3394
  o.name = "StartAnnotationImportJob"
3453
3395
  o.http_method = "POST"
3454
3396
  o.http_request_uri = "/import/annotation"
3455
- o['authtype'] = "v4"
3456
3397
  o.endpoint_pattern = {
3457
3398
  "hostPrefix" => "analytics-",
3458
3399
  }
@@ -3470,7 +3411,6 @@ module Aws::Omics
3470
3411
  o.name = "StartReadSetActivationJob"
3471
3412
  o.http_method = "POST"
3472
3413
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/activationjob"
3473
- o['authtype'] = "v4"
3474
3414
  o.endpoint_pattern = {
3475
3415
  "hostPrefix" => "control-storage-",
3476
3416
  }
@@ -3489,7 +3429,6 @@ module Aws::Omics
3489
3429
  o.name = "StartReadSetExportJob"
3490
3430
  o.http_method = "POST"
3491
3431
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/exportjob"
3492
- o['authtype'] = "v4"
3493
3432
  o.endpoint_pattern = {
3494
3433
  "hostPrefix" => "control-storage-",
3495
3434
  }
@@ -3508,7 +3447,6 @@ module Aws::Omics
3508
3447
  o.name = "StartReadSetImportJob"
3509
3448
  o.http_method = "POST"
3510
3449
  o.http_request_uri = "/sequencestore/{sequenceStoreId}/importjob"
3511
- o['authtype'] = "v4"
3512
3450
  o.endpoint_pattern = {
3513
3451
  "hostPrefix" => "control-storage-",
3514
3452
  }
@@ -3527,7 +3465,6 @@ module Aws::Omics
3527
3465
  o.name = "StartReferenceImportJob"
3528
3466
  o.http_method = "POST"
3529
3467
  o.http_request_uri = "/referencestore/{referenceStoreId}/importjob"
3530
- o['authtype'] = "v4"
3531
3468
  o.endpoint_pattern = {
3532
3469
  "hostPrefix" => "control-storage-",
3533
3470
  }
@@ -3546,7 +3483,6 @@ module Aws::Omics
3546
3483
  o.name = "StartRun"
3547
3484
  o.http_method = "POST"
3548
3485
  o.http_request_uri = "/run"
3549
- o['authtype'] = "v4"
3550
3486
  o.endpoint_pattern = {
3551
3487
  "hostPrefix" => "workflows-",
3552
3488
  }
@@ -3566,7 +3502,6 @@ module Aws::Omics
3566
3502
  o.name = "StartVariantImportJob"
3567
3503
  o.http_method = "POST"
3568
3504
  o.http_request_uri = "/import/variant"
3569
- o['authtype'] = "v4"
3570
3505
  o.endpoint_pattern = {
3571
3506
  "hostPrefix" => "analytics-",
3572
3507
  }
@@ -3584,7 +3519,6 @@ module Aws::Omics
3584
3519
  o.name = "TagResource"
3585
3520
  o.http_method = "POST"
3586
3521
  o.http_request_uri = "/tags/{resourceArn}"
3587
- o['authtype'] = "v4"
3588
3522
  o.endpoint_pattern = {
3589
3523
  "hostPrefix" => "tags-",
3590
3524
  }
@@ -3604,7 +3538,6 @@ module Aws::Omics
3604
3538
  o.name = "UntagResource"
3605
3539
  o.http_method = "DELETE"
3606
3540
  o.http_request_uri = "/tags/{resourceArn}"
3607
- o['authtype'] = "v4"
3608
3541
  o.endpoint_pattern = {
3609
3542
  "hostPrefix" => "tags-",
3610
3543
  }
@@ -3624,7 +3557,6 @@ module Aws::Omics
3624
3557
  o.name = "UpdateAnnotationStore"
3625
3558
  o.http_method = "POST"
3626
3559
  o.http_request_uri = "/annotationStore/{name}"
3627
- o['authtype'] = "v4"
3628
3560
  o.endpoint_pattern = {
3629
3561
  "hostPrefix" => "analytics-",
3630
3562
  }
@@ -3641,7 +3573,6 @@ module Aws::Omics
3641
3573
  o.name = "UpdateAnnotationStoreVersion"
3642
3574
  o.http_method = "POST"
3643
3575
  o.http_request_uri = "/annotationStore/{name}/version/{versionName}"
3644
- o['authtype'] = "v4"
3645
3576
  o.endpoint_pattern = {
3646
3577
  "hostPrefix" => "analytics-",
3647
3578
  }
@@ -3658,7 +3589,6 @@ module Aws::Omics
3658
3589
  o.name = "UpdateRunGroup"
3659
3590
  o.http_method = "POST"
3660
3591
  o.http_request_uri = "/runGroup/{id}"
3661
- o['authtype'] = "v4"
3662
3592
  o.endpoint_pattern = {
3663
3593
  "hostPrefix" => "workflows-",
3664
3594
  }
@@ -3678,7 +3608,6 @@ module Aws::Omics
3678
3608
  o.name = "UpdateVariantStore"
3679
3609
  o.http_method = "POST"
3680
3610
  o.http_request_uri = "/variantStore/{name}"
3681
- o['authtype'] = "v4"
3682
3611
  o.endpoint_pattern = {
3683
3612
  "hostPrefix" => "analytics-",
3684
3613
  }
@@ -3695,7 +3624,6 @@ module Aws::Omics
3695
3624
  o.name = "UpdateWorkflow"
3696
3625
  o.http_method = "POST"
3697
3626
  o.http_request_uri = "/workflow/{id}"
3698
- o['authtype'] = "v4"
3699
3627
  o.endpoint_pattern = {
3700
3628
  "hostPrefix" => "workflows-",
3701
3629
  }
@@ -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
@@ -4661,6 +4692,11 @@ module Aws::Omics
4661
4692
  # The creation type of the read set.
4662
4693
  # @return [String]
4663
4694
  #
4695
+ # @!attribute [rw] etag
4696
+ # The entity tag (ETag) is a hash of the object representing its
4697
+ # semantic content.
4698
+ # @return [Types::ETag]
4699
+ #
4664
4700
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ReadSetListItem AWS API Documentation
4665
4701
  #
4666
4702
  class ReadSetListItem < Struct.new(
@@ -4677,7 +4713,8 @@ module Aws::Omics
4677
4713
  :sequence_information,
4678
4714
  :creation_time,
4679
4715
  :status_message,
4680
- :creation_type)
4716
+ :creation_type,
4717
+ :etag)
4681
4718
  SENSITIVE = []
4682
4719
  include Aws::Structure
4683
4720
  end
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.14.0'
56
+ GEM_VERSION = '1.16.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.14.0
4
+ version: 1.16.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-08-29 00:00:00.000000000 Z
11
+ date: 2023-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.177.0
22
+ version: 3.184.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement