aws-sdk-omics 1.39.0 → 1.41.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.
data/lib/aws-sdk-omics.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::Omics
55
55
  autoload :EndpointProvider, 'aws-sdk-omics/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-omics/endpoints'
57
57
 
58
- GEM_VERSION = '1.39.0'
58
+ GEM_VERSION = '1.41.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -264,6 +264,25 @@ module Aws
264
264
  ) -> _CreateReferenceStoreResponseSuccess
265
265
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReferenceStoreResponseSuccess
266
266
 
267
+ interface _CreateRunCacheResponseSuccess
268
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRunCacheResponse]
269
+ def arn: () -> ::String
270
+ def id: () -> ::String
271
+ def status: () -> ("ACTIVE" | "DELETED" | "FAILED")
272
+ def tags: () -> ::Hash[::String, ::String]
273
+ end
274
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_run_cache-instance_method
275
+ def create_run_cache: (
276
+ ?cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS"),
277
+ cache_s3_location: ::String,
278
+ ?description: ::String,
279
+ ?name: ::String,
280
+ request_id: ::String,
281
+ ?tags: Hash[::String, ::String],
282
+ ?cache_bucket_owner_id: ::String
283
+ ) -> _CreateRunCacheResponseSuccess
284
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRunCacheResponseSuccess
285
+
267
286
  interface _CreateRunGroupResponseSuccess
268
287
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateRunGroupResponse]
269
288
  def arn: () -> ::String
@@ -292,6 +311,10 @@ module Aws
292
311
  def creation_time: () -> ::Time
293
312
  def fallback_location: () -> ::String
294
313
  def e_tag_algorithm_family: () -> ("MD5up" | "SHA256up" | "SHA512up")
314
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
315
+ def status_message: () -> ::String
316
+ def propagated_set_level_tags: () -> ::Array[::String]
317
+ def s3_access: () -> Types::SequenceStoreS3Access
295
318
  end
296
319
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_sequence_store-instance_method
297
320
  def create_sequence_store: (
@@ -304,7 +327,11 @@ module Aws
304
327
  ?tags: Hash[::String, ::String],
305
328
  ?client_token: ::String,
306
329
  ?fallback_location: ::String,
307
- ?e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
330
+ ?e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up"),
331
+ ?propagated_set_level_tags: Array[::String],
332
+ ?s3_access_config: {
333
+ access_log_location: ::String?
334
+ }
308
335
  ) -> _CreateSequenceStoreResponseSuccess
309
336
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSequenceStoreResponseSuccess
310
337
 
@@ -419,12 +446,27 @@ module Aws
419
446
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
420
447
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
421
448
 
449
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_run_cache-instance_method
450
+ def delete_run_cache: (
451
+ id: ::String
452
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
453
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
454
+
422
455
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_run_group-instance_method
423
456
  def delete_run_group: (
424
457
  id: ::String
425
458
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
426
459
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
427
460
 
461
+ interface _DeleteS3AccessPolicyResponseSuccess
462
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteS3AccessPolicyResponse]
463
+ end
464
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_s3_access_policy-instance_method
465
+ def delete_s3_access_policy: (
466
+ s3_access_point_arn: ::String
467
+ ) -> _DeleteS3AccessPolicyResponseSuccess
468
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteS3AccessPolicyResponseSuccess
469
+
428
470
  interface _DeleteSequenceStoreResponseSuccess
429
471
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSequenceStoreResponse]
430
472
  end
@@ -696,6 +738,9 @@ module Aws
696
738
  include ::Seahorse::Client::_ResponseSuccess[Types::GetRunResponse]
697
739
  def arn: () -> ::String
698
740
  def id: () -> ::String
741
+ def cache_id: () -> ::String
742
+ def cache_behavior: () -> ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
743
+ def engine_version: () -> ::String
699
744
  def status: () -> ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
700
745
  def workflow_id: () -> ::String
701
746
  def workflow_type: () -> ("PRIVATE" | "READY2RUN")
@@ -733,6 +778,25 @@ module Aws
733
778
  ) -> _GetRunResponseSuccess
734
779
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunResponseSuccess
735
780
 
781
+ interface _GetRunCacheResponseSuccess
782
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRunCacheResponse]
783
+ def arn: () -> ::String
784
+ def cache_behavior: () -> ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
785
+ def cache_bucket_owner_id: () -> ::String
786
+ def cache_s3_uri: () -> ::String
787
+ def creation_time: () -> ::Time
788
+ def description: () -> ::String
789
+ def id: () -> ::String
790
+ def name: () -> ::String
791
+ def status: () -> ("ACTIVE" | "DELETED" | "FAILED")
792
+ def tags: () -> ::Hash[::String, ::String]
793
+ end
794
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run_cache-instance_method
795
+ def get_run_cache: (
796
+ id: ::String
797
+ ) -> _GetRunCacheResponseSuccess
798
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunCacheResponseSuccess
799
+
736
800
  interface _GetRunGroupResponseSuccess
737
801
  include ::Seahorse::Client::_ResponseSuccess[Types::GetRunGroupResponse]
738
802
  def arn: () -> ::String
@@ -757,6 +821,8 @@ module Aws
757
821
  def status: () -> ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "CANCELLED" | "FAILED")
758
822
  def name: () -> ::String
759
823
  def cpus: () -> ::Integer
824
+ def cache_hit: () -> bool
825
+ def cache_s3_uri: () -> ::String
760
826
  def memory: () -> ::Integer
761
827
  def creation_time: () -> ::Time
762
828
  def start_time: () -> ::Time
@@ -774,6 +840,20 @@ module Aws
774
840
  ) -> _GetRunTaskResponseSuccess
775
841
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunTaskResponseSuccess
776
842
 
843
+ interface _GetS3AccessPolicyResponseSuccess
844
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetS3AccessPolicyResponse]
845
+ def s3_access_point_arn: () -> ::String
846
+ def store_id: () -> ::String
847
+ def store_type: () -> ("SEQUENCE_STORE" | "REFERENCE_STORE")
848
+ def update_time: () -> ::Time
849
+ def s3_access_policy: () -> ::String
850
+ end
851
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_s3_access_policy-instance_method
852
+ def get_s3_access_policy: (
853
+ s3_access_point_arn: ::String
854
+ ) -> _GetS3AccessPolicyResponseSuccess
855
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetS3AccessPolicyResponseSuccess
856
+
777
857
  interface _GetSequenceStoreResponseSuccess
778
858
  include ::Seahorse::Client::_ResponseSuccess[Types::GetSequenceStoreResponse]
779
859
  def id: () -> ::String
@@ -785,6 +865,10 @@ module Aws
785
865
  def fallback_location: () -> ::String
786
866
  def s3_access: () -> Types::SequenceStoreS3Access
787
867
  def e_tag_algorithm_family: () -> ("MD5up" | "SHA256up" | "SHA512up")
868
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
869
+ def status_message: () -> ::String
870
+ def propagated_set_level_tags: () -> ::Array[::String]
871
+ def update_time: () -> ::Time
788
872
  end
789
873
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_sequence_store-instance_method
790
874
  def get_sequence_store: (
@@ -1085,6 +1169,18 @@ module Aws
1085
1169
  ) -> _ListReferencesResponseSuccess
1086
1170
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReferencesResponseSuccess
1087
1171
 
1172
+ interface _ListRunCachesResponseSuccess
1173
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRunCachesResponse]
1174
+ def items: () -> ::Array[Types::RunCacheListItem]
1175
+ def next_token: () -> ::String
1176
+ end
1177
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_run_caches-instance_method
1178
+ def list_run_caches: (
1179
+ ?max_results: ::Integer,
1180
+ ?starting_token: ::String
1181
+ ) -> _ListRunCachesResponseSuccess
1182
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRunCachesResponseSuccess
1183
+
1088
1184
  interface _ListRunGroupsResponseSuccess
1089
1185
  include ::Seahorse::Client::_ResponseSuccess[Types::ListRunGroupsResponse]
1090
1186
  def items: () -> ::Array[Types::RunGroupListItem]
@@ -1139,7 +1235,10 @@ module Aws
1139
1235
  ?filter: {
1140
1236
  name: ::String?,
1141
1237
  created_after: ::Time?,
1142
- created_before: ::Time?
1238
+ created_before: ::Time?,
1239
+ status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")?,
1240
+ updated_after: ::Time?,
1241
+ updated_before: ::Time?
1143
1242
  }
1144
1243
  ) -> _ListSequenceStoresResponseSuccess
1145
1244
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSequenceStoresResponseSuccess
@@ -1219,6 +1318,19 @@ module Aws
1219
1318
  ) -> _ListWorkflowsResponseSuccess
1220
1319
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowsResponseSuccess
1221
1320
 
1321
+ interface _PutS3AccessPolicyResponseSuccess
1322
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutS3AccessPolicyResponse]
1323
+ def s3_access_point_arn: () -> ::String
1324
+ def store_id: () -> ::String
1325
+ def store_type: () -> ("SEQUENCE_STORE" | "REFERENCE_STORE")
1326
+ end
1327
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#put_s3_access_policy-instance_method
1328
+ def put_s3_access_policy: (
1329
+ s3_access_point_arn: ::String,
1330
+ s3_access_policy: ::String
1331
+ ) -> _PutS3AccessPolicyResponseSuccess
1332
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutS3AccessPolicyResponseSuccess
1333
+
1222
1334
  interface _StartAnnotationImportJobResponseSuccess
1223
1335
  include ::Seahorse::Client::_ResponseSuccess[Types::StartAnnotationImportResponse]
1224
1336
  def job_id: () -> ::String
@@ -1370,6 +1482,8 @@ module Aws
1370
1482
  ?run_id: ::String,
1371
1483
  role_arn: ::String,
1372
1484
  ?name: ::String,
1485
+ ?cache_id: ::String,
1486
+ ?cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS"),
1373
1487
  ?run_group_id: ::String,
1374
1488
  ?priority: ::Integer,
1375
1489
  ?parameters: {
@@ -1461,6 +1575,15 @@ module Aws
1461
1575
  ) -> _UpdateAnnotationStoreVersionResponseSuccess
1462
1576
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAnnotationStoreVersionResponseSuccess
1463
1577
 
1578
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_run_cache-instance_method
1579
+ def update_run_cache: (
1580
+ ?cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS"),
1581
+ ?description: ::String,
1582
+ id: ::String,
1583
+ ?name: ::String
1584
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1585
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1586
+
1464
1587
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_run_group-instance_method
1465
1588
  def update_run_group: (
1466
1589
  id: ::String,
@@ -1472,6 +1595,36 @@ module Aws
1472
1595
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1473
1596
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1474
1597
 
1598
+ interface _UpdateSequenceStoreResponseSuccess
1599
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSequenceStoreResponse]
1600
+ def id: () -> ::String
1601
+ def arn: () -> ::String
1602
+ def name: () -> ::String
1603
+ def description: () -> ::String
1604
+ def sse_config: () -> Types::SseConfig
1605
+ def creation_time: () -> ::Time
1606
+ def update_time: () -> ::Time
1607
+ def propagated_set_level_tags: () -> ::Array[::String]
1608
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
1609
+ def status_message: () -> ::String
1610
+ def fallback_location: () -> ::String
1611
+ def s3_access: () -> Types::SequenceStoreS3Access
1612
+ def e_tag_algorithm_family: () -> ("MD5up" | "SHA256up" | "SHA512up")
1613
+ end
1614
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_sequence_store-instance_method
1615
+ def update_sequence_store: (
1616
+ id: ::String,
1617
+ ?name: ::String,
1618
+ ?description: ::String,
1619
+ ?client_token: ::String,
1620
+ ?fallback_location: ::String,
1621
+ ?propagated_set_level_tags: Array[::String],
1622
+ ?s3_access_config: {
1623
+ access_log_location: ::String?
1624
+ }
1625
+ ) -> _UpdateSequenceStoreResponseSuccess
1626
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSequenceStoreResponseSuccess
1627
+
1475
1628
  interface _UpdateVariantStoreResponseSuccess
1476
1629
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVariantStoreResponse]
1477
1630
  def id: () -> ::String
data/sig/types.rbs CHANGED
@@ -259,6 +259,25 @@ module Aws::Omics
259
259
  SENSITIVE: []
260
260
  end
261
261
 
262
+ class CreateRunCacheRequest
263
+ attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
264
+ attr_accessor cache_s3_location: ::String
265
+ attr_accessor description: ::String
266
+ attr_accessor name: ::String
267
+ attr_accessor request_id: ::String
268
+ attr_accessor tags: ::Hash[::String, ::String]
269
+ attr_accessor cache_bucket_owner_id: ::String
270
+ SENSITIVE: []
271
+ end
272
+
273
+ class CreateRunCacheResponse
274
+ attr_accessor arn: ::String
275
+ attr_accessor id: ::String
276
+ attr_accessor status: ("ACTIVE" | "DELETED" | "FAILED")
277
+ attr_accessor tags: ::Hash[::String, ::String]
278
+ SENSITIVE: []
279
+ end
280
+
262
281
  class CreateRunGroupRequest
263
282
  attr_accessor name: ::String
264
283
  attr_accessor max_cpus: ::Integer
@@ -285,6 +304,8 @@ module Aws::Omics
285
304
  attr_accessor client_token: ::String
286
305
  attr_accessor fallback_location: ::String
287
306
  attr_accessor e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
307
+ attr_accessor propagated_set_level_tags: ::Array[::String]
308
+ attr_accessor s3_access_config: Types::S3AccessConfig
288
309
  SENSITIVE: []
289
310
  end
290
311
 
@@ -297,6 +318,10 @@ module Aws::Omics
297
318
  attr_accessor creation_time: ::Time
298
319
  attr_accessor fallback_location: ::String
299
320
  attr_accessor e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
321
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
322
+ attr_accessor status_message: ::String
323
+ attr_accessor propagated_set_level_tags: ::Array[::String]
324
+ attr_accessor s3_access: Types::SequenceStoreS3Access
300
325
  SENSITIVE: []
301
326
  end
302
327
 
@@ -395,6 +420,11 @@ module Aws::Omics
395
420
  class DeleteReferenceStoreResponse < Aws::EmptyStructure
396
421
  end
397
422
 
423
+ class DeleteRunCacheRequest
424
+ attr_accessor id: ::String
425
+ SENSITIVE: []
426
+ end
427
+
398
428
  class DeleteRunGroupRequest
399
429
  attr_accessor id: ::String
400
430
  SENSITIVE: []
@@ -405,6 +435,14 @@ module Aws::Omics
405
435
  SENSITIVE: []
406
436
  end
407
437
 
438
+ class DeleteS3AccessPolicyRequest
439
+ attr_accessor s3_access_point_arn: ::String
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class DeleteS3AccessPolicyResponse < Aws::EmptyStructure
444
+ end
445
+
408
446
  class DeleteSequenceStoreRequest
409
447
  attr_accessor id: ::String
410
448
  SENSITIVE: []
@@ -735,6 +773,25 @@ module Aws::Omics
735
773
  SENSITIVE: []
736
774
  end
737
775
 
776
+ class GetRunCacheRequest
777
+ attr_accessor id: ::String
778
+ SENSITIVE: []
779
+ end
780
+
781
+ class GetRunCacheResponse
782
+ attr_accessor arn: ::String
783
+ attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
784
+ attr_accessor cache_bucket_owner_id: ::String
785
+ attr_accessor cache_s3_uri: ::String
786
+ attr_accessor creation_time: ::Time
787
+ attr_accessor description: ::String
788
+ attr_accessor id: ::String
789
+ attr_accessor name: ::String
790
+ attr_accessor status: ("ACTIVE" | "DELETED" | "FAILED")
791
+ attr_accessor tags: ::Hash[::String, ::String]
792
+ SENSITIVE: []
793
+ end
794
+
738
795
  class GetRunGroupRequest
739
796
  attr_accessor id: ::String
740
797
  SENSITIVE: []
@@ -762,6 +819,9 @@ module Aws::Omics
762
819
  class GetRunResponse
763
820
  attr_accessor arn: ::String
764
821
  attr_accessor id: ::String
822
+ attr_accessor cache_id: ::String
823
+ attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
824
+ attr_accessor engine_version: ::String
765
825
  attr_accessor status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
766
826
  attr_accessor workflow_id: ::String
767
827
  attr_accessor workflow_type: ("PRIVATE" | "READY2RUN")
@@ -805,6 +865,8 @@ module Aws::Omics
805
865
  attr_accessor status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "CANCELLED" | "FAILED")
806
866
  attr_accessor name: ::String
807
867
  attr_accessor cpus: ::Integer
868
+ attr_accessor cache_hit: bool
869
+ attr_accessor cache_s3_uri: ::String
808
870
  attr_accessor memory: ::Integer
809
871
  attr_accessor creation_time: ::Time
810
872
  attr_accessor start_time: ::Time
@@ -817,6 +879,20 @@ module Aws::Omics
817
879
  SENSITIVE: []
818
880
  end
819
881
 
882
+ class GetS3AccessPolicyRequest
883
+ attr_accessor s3_access_point_arn: ::String
884
+ SENSITIVE: []
885
+ end
886
+
887
+ class GetS3AccessPolicyResponse
888
+ attr_accessor s3_access_point_arn: ::String
889
+ attr_accessor store_id: ::String
890
+ attr_accessor store_type: ("SEQUENCE_STORE" | "REFERENCE_STORE")
891
+ attr_accessor update_time: ::Time
892
+ attr_accessor s3_access_policy: ::String
893
+ SENSITIVE: []
894
+ end
895
+
820
896
  class GetSequenceStoreRequest
821
897
  attr_accessor id: ::String
822
898
  SENSITIVE: []
@@ -832,6 +908,10 @@ module Aws::Omics
832
908
  attr_accessor fallback_location: ::String
833
909
  attr_accessor s3_access: Types::SequenceStoreS3Access
834
910
  attr_accessor e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
911
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
912
+ attr_accessor status_message: ::String
913
+ attr_accessor propagated_set_level_tags: ::Array[::String]
914
+ attr_accessor update_time: ::Time
835
915
  SENSITIVE: []
836
916
  end
837
917
 
@@ -1165,6 +1245,18 @@ module Aws::Omics
1165
1245
  SENSITIVE: []
1166
1246
  end
1167
1247
 
1248
+ class ListRunCachesRequest
1249
+ attr_accessor max_results: ::Integer
1250
+ attr_accessor starting_token: ::String
1251
+ SENSITIVE: []
1252
+ end
1253
+
1254
+ class ListRunCachesResponse
1255
+ attr_accessor items: ::Array[Types::RunCacheListItem]
1256
+ attr_accessor next_token: ::String
1257
+ SENSITIVE: []
1258
+ end
1259
+
1168
1260
  class ListRunGroupsRequest
1169
1261
  attr_accessor name: ::String
1170
1262
  attr_accessor starting_token: ::String
@@ -1317,6 +1409,19 @@ module Aws::Omics
1317
1409
  SENSITIVE: []
1318
1410
  end
1319
1411
 
1412
+ class PutS3AccessPolicyRequest
1413
+ attr_accessor s3_access_point_arn: ::String
1414
+ attr_accessor s3_access_policy: ::String
1415
+ SENSITIVE: []
1416
+ end
1417
+
1418
+ class PutS3AccessPolicyResponse
1419
+ attr_accessor s3_access_point_arn: ::String
1420
+ attr_accessor store_id: ::String
1421
+ attr_accessor store_type: ("SEQUENCE_STORE" | "REFERENCE_STORE")
1422
+ SENSITIVE: []
1423
+ end
1424
+
1320
1425
  class RangeNotSatisfiableException
1321
1426
  attr_accessor message: ::String
1322
1427
  SENSITIVE: []
@@ -1467,6 +1572,17 @@ module Aws::Omics
1467
1572
  SENSITIVE: []
1468
1573
  end
1469
1574
 
1575
+ class RunCacheListItem
1576
+ attr_accessor arn: ::String
1577
+ attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
1578
+ attr_accessor cache_s3_uri: ::String
1579
+ attr_accessor creation_time: ::Time
1580
+ attr_accessor id: ::String
1581
+ attr_accessor name: ::String
1582
+ attr_accessor status: ("ACTIVE" | "DELETED" | "FAILED")
1583
+ SENSITIVE: []
1584
+ end
1585
+
1470
1586
  class RunGroupListItem
1471
1587
  attr_accessor arn: ::String
1472
1588
  attr_accessor id: ::String
@@ -1500,6 +1616,11 @@ module Aws::Omics
1500
1616
  SENSITIVE: []
1501
1617
  end
1502
1618
 
1619
+ class S3AccessConfig
1620
+ attr_accessor access_log_location: ::String
1621
+ SENSITIVE: []
1622
+ end
1623
+
1503
1624
  class SequenceInformation
1504
1625
  attr_accessor total_read_count: ::Integer
1505
1626
  attr_accessor total_base_count: ::Integer
@@ -1517,6 +1638,9 @@ module Aws::Omics
1517
1638
  attr_accessor creation_time: ::Time
1518
1639
  attr_accessor fallback_location: ::String
1519
1640
  attr_accessor e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
1641
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
1642
+ attr_accessor status_message: ::String
1643
+ attr_accessor update_time: ::Time
1520
1644
  SENSITIVE: []
1521
1645
  end
1522
1646
 
@@ -1524,12 +1648,16 @@ module Aws::Omics
1524
1648
  attr_accessor name: ::String
1525
1649
  attr_accessor created_after: ::Time
1526
1650
  attr_accessor created_before: ::Time
1651
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
1652
+ attr_accessor updated_after: ::Time
1653
+ attr_accessor updated_before: ::Time
1527
1654
  SENSITIVE: []
1528
1655
  end
1529
1656
 
1530
1657
  class SequenceStoreS3Access
1531
1658
  attr_accessor s3_uri: ::String
1532
1659
  attr_accessor s3_access_point_arn: ::String
1660
+ attr_accessor access_log_location: ::String
1533
1661
  SENSITIVE: []
1534
1662
  end
1535
1663
 
@@ -1679,6 +1807,8 @@ module Aws::Omics
1679
1807
  attr_accessor run_id: ::String
1680
1808
  attr_accessor role_arn: ::String
1681
1809
  attr_accessor name: ::String
1810
+ attr_accessor cache_id: ::String
1811
+ attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
1682
1812
  attr_accessor run_group_id: ::String
1683
1813
  attr_accessor priority: ::Integer
1684
1814
  attr_accessor parameters: untyped
@@ -1742,6 +1872,8 @@ module Aws::Omics
1742
1872
  attr_accessor status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "CANCELLED" | "FAILED")
1743
1873
  attr_accessor name: ::String
1744
1874
  attr_accessor cpus: ::Integer
1875
+ attr_accessor cache_hit: bool
1876
+ attr_accessor cache_s3_uri: ::String
1745
1877
  attr_accessor memory: ::Integer
1746
1878
  attr_accessor creation_time: ::Time
1747
1879
  attr_accessor start_time: ::Time
@@ -1822,6 +1954,14 @@ module Aws::Omics
1822
1954
  SENSITIVE: []
1823
1955
  end
1824
1956
 
1957
+ class UpdateRunCacheRequest
1958
+ attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
1959
+ attr_accessor description: ::String
1960
+ attr_accessor id: ::String
1961
+ attr_accessor name: ::String
1962
+ SENSITIVE: []
1963
+ end
1964
+
1825
1965
  class UpdateRunGroupRequest
1826
1966
  attr_accessor id: ::String
1827
1967
  attr_accessor name: ::String
@@ -1832,6 +1972,34 @@ module Aws::Omics
1832
1972
  SENSITIVE: []
1833
1973
  end
1834
1974
 
1975
+ class UpdateSequenceStoreRequest
1976
+ attr_accessor id: ::String
1977
+ attr_accessor name: ::String
1978
+ attr_accessor description: ::String
1979
+ attr_accessor client_token: ::String
1980
+ attr_accessor fallback_location: ::String
1981
+ attr_accessor propagated_set_level_tags: ::Array[::String]
1982
+ attr_accessor s3_access_config: Types::S3AccessConfig
1983
+ SENSITIVE: []
1984
+ end
1985
+
1986
+ class UpdateSequenceStoreResponse
1987
+ attr_accessor id: ::String
1988
+ attr_accessor arn: ::String
1989
+ attr_accessor name: ::String
1990
+ attr_accessor description: ::String
1991
+ attr_accessor sse_config: Types::SseConfig
1992
+ attr_accessor creation_time: ::Time
1993
+ attr_accessor update_time: ::Time
1994
+ attr_accessor propagated_set_level_tags: ::Array[::String]
1995
+ attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
1996
+ attr_accessor status_message: ::String
1997
+ attr_accessor fallback_location: ::String
1998
+ attr_accessor s3_access: Types::SequenceStoreS3Access
1999
+ attr_accessor e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
2000
+ SENSITIVE: []
2001
+ end
2002
+
1835
2003
  class UpdateVariantStoreRequest
1836
2004
  attr_accessor name: ::String
1837
2005
  attr_accessor description: ::String
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.39.0
4
+ version: 1.41.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: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2024-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core