aws-sdk-omics 1.38.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-omics/client.rb +339 -6
- data/lib/aws-sdk-omics/client_api.rb +192 -0
- data/lib/aws-sdk-omics/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-omics/endpoints.rb +2 -900
- data/lib/aws-sdk-omics/plugins/endpoints.rb +1 -170
- data/lib/aws-sdk-omics/types.rb +362 -2
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +72 -0
- data/sig/types.rbs +83 -0
- metadata +4 -4
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
|
@@ -419,6 +438,12 @@ module Aws
|
|
419
438
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
420
439
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
421
440
|
|
441
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_run_cache-instance_method
|
442
|
+
def delete_run_cache: (
|
443
|
+
id: ::String
|
444
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
445
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
446
|
+
|
422
447
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_run_group-instance_method
|
423
448
|
def delete_run_group: (
|
424
449
|
id: ::String
|
@@ -696,6 +721,9 @@ module Aws
|
|
696
721
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetRunResponse]
|
697
722
|
def arn: () -> ::String
|
698
723
|
def id: () -> ::String
|
724
|
+
def cache_id: () -> ::String
|
725
|
+
def cache_behavior: () -> ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
|
726
|
+
def engine_version: () -> ::String
|
699
727
|
def status: () -> ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
|
700
728
|
def workflow_id: () -> ::String
|
701
729
|
def workflow_type: () -> ("PRIVATE" | "READY2RUN")
|
@@ -733,6 +761,25 @@ module Aws
|
|
733
761
|
) -> _GetRunResponseSuccess
|
734
762
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunResponseSuccess
|
735
763
|
|
764
|
+
interface _GetRunCacheResponseSuccess
|
765
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetRunCacheResponse]
|
766
|
+
def arn: () -> ::String
|
767
|
+
def cache_behavior: () -> ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
|
768
|
+
def cache_bucket_owner_id: () -> ::String
|
769
|
+
def cache_s3_uri: () -> ::String
|
770
|
+
def creation_time: () -> ::Time
|
771
|
+
def description: () -> ::String
|
772
|
+
def id: () -> ::String
|
773
|
+
def name: () -> ::String
|
774
|
+
def status: () -> ("ACTIVE" | "DELETED" | "FAILED")
|
775
|
+
def tags: () -> ::Hash[::String, ::String]
|
776
|
+
end
|
777
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run_cache-instance_method
|
778
|
+
def get_run_cache: (
|
779
|
+
id: ::String
|
780
|
+
) -> _GetRunCacheResponseSuccess
|
781
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunCacheResponseSuccess
|
782
|
+
|
736
783
|
interface _GetRunGroupResponseSuccess
|
737
784
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetRunGroupResponse]
|
738
785
|
def arn: () -> ::String
|
@@ -757,6 +804,8 @@ module Aws
|
|
757
804
|
def status: () -> ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "CANCELLED" | "FAILED")
|
758
805
|
def name: () -> ::String
|
759
806
|
def cpus: () -> ::Integer
|
807
|
+
def cache_hit: () -> bool
|
808
|
+
def cache_s3_uri: () -> ::String
|
760
809
|
def memory: () -> ::Integer
|
761
810
|
def creation_time: () -> ::Time
|
762
811
|
def start_time: () -> ::Time
|
@@ -1085,6 +1134,18 @@ module Aws
|
|
1085
1134
|
) -> _ListReferencesResponseSuccess
|
1086
1135
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListReferencesResponseSuccess
|
1087
1136
|
|
1137
|
+
interface _ListRunCachesResponseSuccess
|
1138
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListRunCachesResponse]
|
1139
|
+
def items: () -> ::Array[Types::RunCacheListItem]
|
1140
|
+
def next_token: () -> ::String
|
1141
|
+
end
|
1142
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_run_caches-instance_method
|
1143
|
+
def list_run_caches: (
|
1144
|
+
?max_results: ::Integer,
|
1145
|
+
?starting_token: ::String
|
1146
|
+
) -> _ListRunCachesResponseSuccess
|
1147
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRunCachesResponseSuccess
|
1148
|
+
|
1088
1149
|
interface _ListRunGroupsResponseSuccess
|
1089
1150
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListRunGroupsResponse]
|
1090
1151
|
def items: () -> ::Array[Types::RunGroupListItem]
|
@@ -1370,6 +1431,8 @@ module Aws
|
|
1370
1431
|
?run_id: ::String,
|
1371
1432
|
role_arn: ::String,
|
1372
1433
|
?name: ::String,
|
1434
|
+
?cache_id: ::String,
|
1435
|
+
?cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS"),
|
1373
1436
|
?run_group_id: ::String,
|
1374
1437
|
?priority: ::Integer,
|
1375
1438
|
?parameters: {
|
@@ -1461,6 +1524,15 @@ module Aws
|
|
1461
1524
|
) -> _UpdateAnnotationStoreVersionResponseSuccess
|
1462
1525
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAnnotationStoreVersionResponseSuccess
|
1463
1526
|
|
1527
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_run_cache-instance_method
|
1528
|
+
def update_run_cache: (
|
1529
|
+
?cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS"),
|
1530
|
+
?description: ::String,
|
1531
|
+
id: ::String,
|
1532
|
+
?name: ::String
|
1533
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1534
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1535
|
+
|
1464
1536
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_run_group-instance_method
|
1465
1537
|
def update_run_group: (
|
1466
1538
|
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
|
@@ -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.
|
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-
|
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
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.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.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|