aws-sdk-omics 1.39.0 → 1.40.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/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
@@ -395,6 +414,11 @@ module Aws::Omics
395
414
  class DeleteReferenceStoreResponse < Aws::EmptyStructure
396
415
  end
397
416
 
417
+ class DeleteRunCacheRequest
418
+ attr_accessor id: ::String
419
+ SENSITIVE: []
420
+ end
421
+
398
422
  class DeleteRunGroupRequest
399
423
  attr_accessor id: ::String
400
424
  SENSITIVE: []
@@ -735,6 +759,25 @@ module Aws::Omics
735
759
  SENSITIVE: []
736
760
  end
737
761
 
762
+ class GetRunCacheRequest
763
+ attr_accessor id: ::String
764
+ SENSITIVE: []
765
+ end
766
+
767
+ class GetRunCacheResponse
768
+ attr_accessor arn: ::String
769
+ attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
770
+ attr_accessor cache_bucket_owner_id: ::String
771
+ attr_accessor cache_s3_uri: ::String
772
+ attr_accessor creation_time: ::Time
773
+ attr_accessor description: ::String
774
+ attr_accessor id: ::String
775
+ attr_accessor name: ::String
776
+ attr_accessor status: ("ACTIVE" | "DELETED" | "FAILED")
777
+ attr_accessor tags: ::Hash[::String, ::String]
778
+ SENSITIVE: []
779
+ end
780
+
738
781
  class GetRunGroupRequest
739
782
  attr_accessor id: ::String
740
783
  SENSITIVE: []
@@ -762,6 +805,9 @@ module Aws::Omics
762
805
  class GetRunResponse
763
806
  attr_accessor arn: ::String
764
807
  attr_accessor id: ::String
808
+ attr_accessor cache_id: ::String
809
+ attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
810
+ attr_accessor engine_version: ::String
765
811
  attr_accessor status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
766
812
  attr_accessor workflow_id: ::String
767
813
  attr_accessor workflow_type: ("PRIVATE" | "READY2RUN")
@@ -805,6 +851,8 @@ module Aws::Omics
805
851
  attr_accessor status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "CANCELLED" | "FAILED")
806
852
  attr_accessor name: ::String
807
853
  attr_accessor cpus: ::Integer
854
+ attr_accessor cache_hit: bool
855
+ attr_accessor cache_s3_uri: ::String
808
856
  attr_accessor memory: ::Integer
809
857
  attr_accessor creation_time: ::Time
810
858
  attr_accessor start_time: ::Time
@@ -1165,6 +1213,18 @@ module Aws::Omics
1165
1213
  SENSITIVE: []
1166
1214
  end
1167
1215
 
1216
+ class ListRunCachesRequest
1217
+ attr_accessor max_results: ::Integer
1218
+ attr_accessor starting_token: ::String
1219
+ SENSITIVE: []
1220
+ end
1221
+
1222
+ class ListRunCachesResponse
1223
+ attr_accessor items: ::Array[Types::RunCacheListItem]
1224
+ attr_accessor next_token: ::String
1225
+ SENSITIVE: []
1226
+ end
1227
+
1168
1228
  class ListRunGroupsRequest
1169
1229
  attr_accessor name: ::String
1170
1230
  attr_accessor starting_token: ::String
@@ -1467,6 +1527,17 @@ module Aws::Omics
1467
1527
  SENSITIVE: []
1468
1528
  end
1469
1529
 
1530
+ class RunCacheListItem
1531
+ attr_accessor arn: ::String
1532
+ attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
1533
+ attr_accessor cache_s3_uri: ::String
1534
+ attr_accessor creation_time: ::Time
1535
+ attr_accessor id: ::String
1536
+ attr_accessor name: ::String
1537
+ attr_accessor status: ("ACTIVE" | "DELETED" | "FAILED")
1538
+ SENSITIVE: []
1539
+ end
1540
+
1470
1541
  class RunGroupListItem
1471
1542
  attr_accessor arn: ::String
1472
1543
  attr_accessor id: ::String
@@ -1679,6 +1750,8 @@ module Aws::Omics
1679
1750
  attr_accessor run_id: ::String
1680
1751
  attr_accessor role_arn: ::String
1681
1752
  attr_accessor name: ::String
1753
+ attr_accessor cache_id: ::String
1754
+ attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
1682
1755
  attr_accessor run_group_id: ::String
1683
1756
  attr_accessor priority: ::Integer
1684
1757
  attr_accessor parameters: untyped
@@ -1742,6 +1815,8 @@ module Aws::Omics
1742
1815
  attr_accessor status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "CANCELLED" | "FAILED")
1743
1816
  attr_accessor name: ::String
1744
1817
  attr_accessor cpus: ::Integer
1818
+ attr_accessor cache_hit: bool
1819
+ attr_accessor cache_s3_uri: ::String
1745
1820
  attr_accessor memory: ::Integer
1746
1821
  attr_accessor creation_time: ::Time
1747
1822
  attr_accessor start_time: ::Time
@@ -1822,6 +1897,14 @@ module Aws::Omics
1822
1897
  SENSITIVE: []
1823
1898
  end
1824
1899
 
1900
+ class UpdateRunCacheRequest
1901
+ attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
1902
+ attr_accessor description: ::String
1903
+ attr_accessor id: ::String
1904
+ attr_accessor name: ::String
1905
+ SENSITIVE: []
1906
+ end
1907
+
1825
1908
  class UpdateRunGroupRequest
1826
1909
  attr_accessor id: ::String
1827
1910
  attr_accessor name: ::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.40.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-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core