aws-sdk-omics 1.43.0 → 1.45.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 +579 -96
- data/lib/aws-sdk-omics/client_api.rb +230 -9
- data/lib/aws-sdk-omics/types.rb +572 -41
- data/lib/aws-sdk-omics/waiters.rb +58 -0
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +116 -3
- data/sig/types.rbs +114 -0
- data/sig/waiters.rbs +14 -0
- metadata +2 -2
@@ -86,6 +86,7 @@ module Aws::Omics
|
|
86
86
|
# | variant_store_created | {Client#get_variant_store} | 30 | 20 |
|
87
87
|
# | variant_store_deleted | {Client#get_variant_store} | 30 | 20 |
|
88
88
|
# | workflow_active | {Client#get_workflow} | 3 | 10 |
|
89
|
+
# | workflow_version_active | {Client#get_workflow_version} | 3 | 10 |
|
89
90
|
#
|
90
91
|
module Waiters
|
91
92
|
|
@@ -1156,5 +1157,62 @@ module Aws::Omics
|
|
1156
1157
|
attr_reader :waiter
|
1157
1158
|
|
1158
1159
|
end
|
1160
|
+
|
1161
|
+
# Wait until a workflow version is active.
|
1162
|
+
class WorkflowVersionActive
|
1163
|
+
|
1164
|
+
# @param [Hash] options
|
1165
|
+
# @option options [required, Client] :client
|
1166
|
+
# @option options [Integer] :max_attempts (10)
|
1167
|
+
# @option options [Integer] :delay (3)
|
1168
|
+
# @option options [Proc] :before_attempt
|
1169
|
+
# @option options [Proc] :before_wait
|
1170
|
+
def initialize(options)
|
1171
|
+
@client = options.fetch(:client)
|
1172
|
+
@waiter = Aws::Waiters::Waiter.new({
|
1173
|
+
max_attempts: 10,
|
1174
|
+
delay: 3,
|
1175
|
+
poller: Aws::Waiters::Poller.new(
|
1176
|
+
operation_name: :get_workflow_version,
|
1177
|
+
acceptors: [
|
1178
|
+
{
|
1179
|
+
"matcher" => "path",
|
1180
|
+
"argument" => "status",
|
1181
|
+
"state" => "success",
|
1182
|
+
"expected" => "ACTIVE"
|
1183
|
+
},
|
1184
|
+
{
|
1185
|
+
"matcher" => "path",
|
1186
|
+
"argument" => "status",
|
1187
|
+
"state" => "retry",
|
1188
|
+
"expected" => "CREATING"
|
1189
|
+
},
|
1190
|
+
{
|
1191
|
+
"matcher" => "path",
|
1192
|
+
"argument" => "status",
|
1193
|
+
"state" => "retry",
|
1194
|
+
"expected" => "UPDATING"
|
1195
|
+
},
|
1196
|
+
{
|
1197
|
+
"matcher" => "path",
|
1198
|
+
"argument" => "status",
|
1199
|
+
"state" => "failure",
|
1200
|
+
"expected" => "FAILED"
|
1201
|
+
}
|
1202
|
+
]
|
1203
|
+
)
|
1204
|
+
}.merge(options))
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
# @option (see Client#get_workflow_version)
|
1208
|
+
# @return (see Client#get_workflow_version)
|
1209
|
+
def wait(params = {})
|
1210
|
+
@waiter.wait(client: @client, params: params)
|
1211
|
+
end
|
1212
|
+
|
1213
|
+
# @api private
|
1214
|
+
attr_reader :waiter
|
1215
|
+
|
1216
|
+
end
|
1159
1217
|
end
|
1160
1218
|
end
|
data/lib/aws-sdk-omics.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -380,6 +380,7 @@ module Aws
|
|
380
380
|
def id: () -> ::String
|
381
381
|
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE")
|
382
382
|
def tags: () -> ::Hash[::String, ::String]
|
383
|
+
def uuid: () -> ::String
|
383
384
|
end
|
384
385
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_workflow-instance_method
|
385
386
|
def create_workflow: (
|
@@ -396,10 +397,42 @@ module Aws
|
|
396
397
|
?storage_capacity: ::Integer,
|
397
398
|
?tags: Hash[::String, ::String],
|
398
399
|
request_id: ::String,
|
399
|
-
?accelerators: ("GPU")
|
400
|
+
?accelerators: ("GPU"),
|
401
|
+
?storage_type: ("STATIC" | "DYNAMIC")
|
400
402
|
) -> _CreateWorkflowResponseSuccess
|
401
403
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkflowResponseSuccess
|
402
404
|
|
405
|
+
interface _CreateWorkflowVersionResponseSuccess
|
406
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateWorkflowVersionResponse]
|
407
|
+
def arn: () -> ::String
|
408
|
+
def workflow_id: () -> ::String
|
409
|
+
def version_name: () -> ::String
|
410
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE")
|
411
|
+
def tags: () -> ::Hash[::String, ::String]
|
412
|
+
def uuid: () -> ::String
|
413
|
+
end
|
414
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_workflow_version-instance_method
|
415
|
+
def create_workflow_version: (
|
416
|
+
workflow_id: ::String,
|
417
|
+
version_name: ::String,
|
418
|
+
?definition_zip: ::String,
|
419
|
+
?definition_uri: ::String,
|
420
|
+
?accelerators: ("GPU"),
|
421
|
+
?description: ::String,
|
422
|
+
?engine: ("WDL" | "NEXTFLOW" | "CWL"),
|
423
|
+
?main: ::String,
|
424
|
+
?parameter_template: Hash[::String, {
|
425
|
+
description: ::String?,
|
426
|
+
optional: bool?
|
427
|
+
}],
|
428
|
+
request_id: ::String,
|
429
|
+
?storage_type: ("STATIC" | "DYNAMIC"),
|
430
|
+
?storage_capacity: ::Integer,
|
431
|
+
?tags: Hash[::String, ::String],
|
432
|
+
?workflow_bucket_owner_id: ::String
|
433
|
+
) -> _CreateWorkflowVersionResponseSuccess
|
434
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkflowVersionResponseSuccess
|
435
|
+
|
403
436
|
interface _DeleteAnnotationStoreResponseSuccess
|
404
437
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAnnotationStoreResponse]
|
405
438
|
def status: () -> ("CREATING" | "UPDATING" | "DELETING" | "ACTIVE" | "FAILED")
|
@@ -505,6 +538,13 @@ module Aws
|
|
505
538
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
506
539
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
507
540
|
|
541
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_workflow_version-instance_method
|
542
|
+
def delete_workflow_version: (
|
543
|
+
workflow_id: ::String,
|
544
|
+
version_name: ::String
|
545
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
546
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
547
|
+
|
508
548
|
interface _GetAnnotationImportJobResponseSuccess
|
509
549
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetAnnotationImportResponse]
|
510
550
|
def id: () -> ::String
|
@@ -772,6 +812,8 @@ module Aws
|
|
772
812
|
def run_output_uri: () -> ::String
|
773
813
|
def storage_type: () -> ("STATIC" | "DYNAMIC")
|
774
814
|
def workflow_owner_id: () -> ::String
|
815
|
+
def workflow_version_name: () -> ::String
|
816
|
+
def workflow_uuid: () -> ::String
|
775
817
|
end
|
776
818
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run-instance_method
|
777
819
|
def get_run: (
|
@@ -948,6 +990,8 @@ module Aws
|
|
948
990
|
def tags: () -> ::Hash[::String, ::String]
|
949
991
|
def metadata: () -> ::Hash[::String, ::String]
|
950
992
|
def accelerators: () -> ("GPU")
|
993
|
+
def storage_type: () -> ("STATIC" | "DYNAMIC")
|
994
|
+
def uuid: () -> ::String
|
951
995
|
end
|
952
996
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_workflow-instance_method
|
953
997
|
def get_workflow: (
|
@@ -958,6 +1002,39 @@ module Aws
|
|
958
1002
|
) -> _GetWorkflowResponseSuccess
|
959
1003
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowResponseSuccess
|
960
1004
|
|
1005
|
+
interface _GetWorkflowVersionResponseSuccess
|
1006
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkflowVersionResponse]
|
1007
|
+
def arn: () -> ::String
|
1008
|
+
def workflow_id: () -> ::String
|
1009
|
+
def version_name: () -> ::String
|
1010
|
+
def accelerators: () -> ("GPU")
|
1011
|
+
def creation_time: () -> ::Time
|
1012
|
+
def description: () -> ::String
|
1013
|
+
def definition: () -> ::String
|
1014
|
+
def digest: () -> ::String
|
1015
|
+
def engine: () -> ("WDL" | "NEXTFLOW" | "CWL")
|
1016
|
+
def main: () -> ::String
|
1017
|
+
def metadata: () -> ::Hash[::String, ::String]
|
1018
|
+
def parameter_template: () -> ::Hash[::String, Types::WorkflowParameter]
|
1019
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE")
|
1020
|
+
def status_message: () -> ::String
|
1021
|
+
def storage_type: () -> ("STATIC" | "DYNAMIC")
|
1022
|
+
def storage_capacity: () -> ::Integer
|
1023
|
+
def type: () -> ("PRIVATE" | "READY2RUN")
|
1024
|
+
def tags: () -> ::Hash[::String, ::String]
|
1025
|
+
def uuid: () -> ::String
|
1026
|
+
def workflow_bucket_owner_id: () -> ::String
|
1027
|
+
end
|
1028
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_workflow_version-instance_method
|
1029
|
+
def get_workflow_version: (
|
1030
|
+
workflow_id: ::String,
|
1031
|
+
version_name: ::String,
|
1032
|
+
?type: ("PRIVATE" | "READY2RUN"),
|
1033
|
+
?export: Array[("DEFINITION")],
|
1034
|
+
?workflow_owner_id: ::String
|
1035
|
+
) -> _GetWorkflowVersionResponseSuccess
|
1036
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowVersionResponseSuccess
|
1037
|
+
|
961
1038
|
interface _ListAnnotationImportJobsResponseSuccess
|
962
1039
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAnnotationImportJobsResponse]
|
963
1040
|
def annotation_import_jobs: () -> ::Array[Types::AnnotationImportJobItem]
|
@@ -1306,6 +1383,21 @@ module Aws
|
|
1306
1383
|
) -> _ListVariantStoresResponseSuccess
|
1307
1384
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVariantStoresResponseSuccess
|
1308
1385
|
|
1386
|
+
interface _ListWorkflowVersionsResponseSuccess
|
1387
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkflowVersionsResponse]
|
1388
|
+
def items: () -> ::Array[Types::WorkflowVersionListItem]
|
1389
|
+
def next_token: () -> ::String
|
1390
|
+
end
|
1391
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_workflow_versions-instance_method
|
1392
|
+
def list_workflow_versions: (
|
1393
|
+
workflow_id: ::String,
|
1394
|
+
?type: ("PRIVATE" | "READY2RUN"),
|
1395
|
+
?workflow_owner_id: ::String,
|
1396
|
+
?starting_token: ::String,
|
1397
|
+
?max_results: ::Integer
|
1398
|
+
) -> _ListWorkflowVersionsResponseSuccess
|
1399
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowVersionsResponseSuccess
|
1400
|
+
|
1309
1401
|
interface _ListWorkflowsResponseSuccess
|
1310
1402
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkflowsResponse]
|
1311
1403
|
def items: () -> ::Array[Types::WorkflowListItem]
|
@@ -1497,7 +1589,8 @@ module Aws
|
|
1497
1589
|
request_id: ::String,
|
1498
1590
|
?retention_mode: ("RETAIN" | "REMOVE"),
|
1499
1591
|
?storage_type: ("STATIC" | "DYNAMIC"),
|
1500
|
-
?workflow_owner_id: ::String
|
1592
|
+
?workflow_owner_id: ::String,
|
1593
|
+
?workflow_version_name: ::String
|
1501
1594
|
) -> _StartRunResponseSuccess
|
1502
1595
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRunResponseSuccess
|
1503
1596
|
|
@@ -1648,10 +1741,22 @@ module Aws
|
|
1648
1741
|
def update_workflow: (
|
1649
1742
|
id: ::String,
|
1650
1743
|
?name: ::String,
|
1651
|
-
?description: ::String
|
1744
|
+
?description: ::String,
|
1745
|
+
?storage_type: ("STATIC" | "DYNAMIC"),
|
1746
|
+
?storage_capacity: ::Integer
|
1652
1747
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1653
1748
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1654
1749
|
|
1750
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_workflow_version-instance_method
|
1751
|
+
def update_workflow_version: (
|
1752
|
+
workflow_id: ::String,
|
1753
|
+
version_name: ::String,
|
1754
|
+
?description: ::String,
|
1755
|
+
?storage_type: ("STATIC" | "DYNAMIC"),
|
1756
|
+
?storage_capacity: ::Integer
|
1757
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1758
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1759
|
+
|
1655
1760
|
interface _UploadReadSetPartResponseSuccess
|
1656
1761
|
include ::Seahorse::Client::_ResponseSuccess[Types::UploadReadSetPartResponse]
|
1657
1762
|
def checksum: () -> ::String
|
@@ -1748,6 +1853,14 @@ module Aws
|
|
1748
1853
|
?workflow_owner_id: ::String
|
1749
1854
|
) -> Client::_GetWorkflowResponseSuccess
|
1750
1855
|
| (:workflow_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetWorkflowResponseSuccess
|
1856
|
+
| (:workflow_version_active waiter_name,
|
1857
|
+
workflow_id: ::String,
|
1858
|
+
version_name: ::String,
|
1859
|
+
?type: ("PRIVATE" | "READY2RUN"),
|
1860
|
+
?export: Array[("DEFINITION")],
|
1861
|
+
?workflow_owner_id: ::String
|
1862
|
+
) -> Client::_GetWorkflowVersionResponseSuccess
|
1863
|
+
| (:workflow_version_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetWorkflowVersionResponseSuccess
|
1751
1864
|
end
|
1752
1865
|
end
|
1753
1866
|
end
|
data/sig/types.rbs
CHANGED
@@ -369,6 +369,7 @@ module Aws::Omics
|
|
369
369
|
attr_accessor tags: ::Hash[::String, ::String]
|
370
370
|
attr_accessor request_id: ::String
|
371
371
|
attr_accessor accelerators: ("GPU")
|
372
|
+
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
372
373
|
SENSITIVE: []
|
373
374
|
end
|
374
375
|
|
@@ -377,6 +378,35 @@ module Aws::Omics
|
|
377
378
|
attr_accessor id: ::String
|
378
379
|
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE")
|
379
380
|
attr_accessor tags: ::Hash[::String, ::String]
|
381
|
+
attr_accessor uuid: ::String
|
382
|
+
SENSITIVE: []
|
383
|
+
end
|
384
|
+
|
385
|
+
class CreateWorkflowVersionRequest
|
386
|
+
attr_accessor workflow_id: ::String
|
387
|
+
attr_accessor version_name: ::String
|
388
|
+
attr_accessor definition_zip: ::String
|
389
|
+
attr_accessor definition_uri: ::String
|
390
|
+
attr_accessor accelerators: ("GPU")
|
391
|
+
attr_accessor description: ::String
|
392
|
+
attr_accessor engine: ("WDL" | "NEXTFLOW" | "CWL")
|
393
|
+
attr_accessor main: ::String
|
394
|
+
attr_accessor parameter_template: ::Hash[::String, Types::WorkflowParameter]
|
395
|
+
attr_accessor request_id: ::String
|
396
|
+
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
397
|
+
attr_accessor storage_capacity: ::Integer
|
398
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
399
|
+
attr_accessor workflow_bucket_owner_id: ::String
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class CreateWorkflowVersionResponse
|
404
|
+
attr_accessor arn: ::String
|
405
|
+
attr_accessor workflow_id: ::String
|
406
|
+
attr_accessor version_name: ::String
|
407
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE")
|
408
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
409
|
+
attr_accessor uuid: ::String
|
380
410
|
SENSITIVE: []
|
381
411
|
end
|
382
412
|
|
@@ -477,6 +507,12 @@ module Aws::Omics
|
|
477
507
|
SENSITIVE: []
|
478
508
|
end
|
479
509
|
|
510
|
+
class DeleteWorkflowVersionRequest
|
511
|
+
attr_accessor workflow_id: ::String
|
512
|
+
attr_accessor version_name: ::String
|
513
|
+
SENSITIVE: []
|
514
|
+
end
|
515
|
+
|
480
516
|
class ETag
|
481
517
|
attr_accessor algorithm: ("FASTQ_MD5up" | "BAM_MD5up" | "CRAM_MD5up" | "FASTQ_SHA256up" | "BAM_SHA256up" | "CRAM_SHA256up" | "FASTQ_SHA512up" | "BAM_SHA512up" | "CRAM_SHA512up")
|
482
518
|
attr_accessor source1: ::String
|
@@ -851,6 +887,8 @@ module Aws::Omics
|
|
851
887
|
attr_accessor run_output_uri: ::String
|
852
888
|
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
853
889
|
attr_accessor workflow_owner_id: ::String
|
890
|
+
attr_accessor workflow_version_name: ::String
|
891
|
+
attr_accessor workflow_uuid: ::String
|
854
892
|
SENSITIVE: []
|
855
893
|
end
|
856
894
|
|
@@ -992,6 +1030,41 @@ module Aws::Omics
|
|
992
1030
|
attr_accessor tags: ::Hash[::String, ::String]
|
993
1031
|
attr_accessor metadata: ::Hash[::String, ::String]
|
994
1032
|
attr_accessor accelerators: ("GPU")
|
1033
|
+
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
1034
|
+
attr_accessor uuid: ::String
|
1035
|
+
SENSITIVE: []
|
1036
|
+
end
|
1037
|
+
|
1038
|
+
class GetWorkflowVersionRequest
|
1039
|
+
attr_accessor workflow_id: ::String
|
1040
|
+
attr_accessor version_name: ::String
|
1041
|
+
attr_accessor type: ("PRIVATE" | "READY2RUN")
|
1042
|
+
attr_accessor export: ::Array[("DEFINITION")]
|
1043
|
+
attr_accessor workflow_owner_id: ::String
|
1044
|
+
SENSITIVE: []
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
class GetWorkflowVersionResponse
|
1048
|
+
attr_accessor arn: ::String
|
1049
|
+
attr_accessor workflow_id: ::String
|
1050
|
+
attr_accessor version_name: ::String
|
1051
|
+
attr_accessor accelerators: ("GPU")
|
1052
|
+
attr_accessor creation_time: ::Time
|
1053
|
+
attr_accessor description: ::String
|
1054
|
+
attr_accessor definition: ::String
|
1055
|
+
attr_accessor digest: ::String
|
1056
|
+
attr_accessor engine: ("WDL" | "NEXTFLOW" | "CWL")
|
1057
|
+
attr_accessor main: ::String
|
1058
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
1059
|
+
attr_accessor parameter_template: ::Hash[::String, Types::WorkflowParameter]
|
1060
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE")
|
1061
|
+
attr_accessor status_message: ::String
|
1062
|
+
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
1063
|
+
attr_accessor storage_capacity: ::Integer
|
1064
|
+
attr_accessor type: ("PRIVATE" | "READY2RUN")
|
1065
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1066
|
+
attr_accessor uuid: ::String
|
1067
|
+
attr_accessor workflow_bucket_owner_id: ::String
|
995
1068
|
SENSITIVE: []
|
996
1069
|
end
|
997
1070
|
|
@@ -1375,6 +1448,21 @@ module Aws::Omics
|
|
1375
1448
|
SENSITIVE: []
|
1376
1449
|
end
|
1377
1450
|
|
1451
|
+
class ListWorkflowVersionsRequest
|
1452
|
+
attr_accessor workflow_id: ::String
|
1453
|
+
attr_accessor type: ("PRIVATE" | "READY2RUN")
|
1454
|
+
attr_accessor workflow_owner_id: ::String
|
1455
|
+
attr_accessor starting_token: ::String
|
1456
|
+
attr_accessor max_results: ::Integer
|
1457
|
+
SENSITIVE: []
|
1458
|
+
end
|
1459
|
+
|
1460
|
+
class ListWorkflowVersionsResponse
|
1461
|
+
attr_accessor items: ::Array[Types::WorkflowVersionListItem]
|
1462
|
+
attr_accessor next_token: ::String
|
1463
|
+
SENSITIVE: []
|
1464
|
+
end
|
1465
|
+
|
1378
1466
|
class ListWorkflowsRequest
|
1379
1467
|
attr_accessor type: ("PRIVATE" | "READY2RUN")
|
1380
1468
|
attr_accessor name: ::String
|
@@ -1607,6 +1695,7 @@ module Aws::Omics
|
|
1607
1695
|
attr_accessor start_time: ::Time
|
1608
1696
|
attr_accessor stop_time: ::Time
|
1609
1697
|
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
1698
|
+
attr_accessor workflow_version_name: ::String
|
1610
1699
|
SENSITIVE: []
|
1611
1700
|
end
|
1612
1701
|
|
@@ -1820,6 +1909,7 @@ module Aws::Omics
|
|
1820
1909
|
attr_accessor retention_mode: ("RETAIN" | "REMOVE")
|
1821
1910
|
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
1822
1911
|
attr_accessor workflow_owner_id: ::String
|
1912
|
+
attr_accessor workflow_version_name: ::String
|
1823
1913
|
SENSITIVE: []
|
1824
1914
|
end
|
1825
1915
|
|
@@ -2021,6 +2111,17 @@ module Aws::Omics
|
|
2021
2111
|
attr_accessor id: ::String
|
2022
2112
|
attr_accessor name: ::String
|
2023
2113
|
attr_accessor description: ::String
|
2114
|
+
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
2115
|
+
attr_accessor storage_capacity: ::Integer
|
2116
|
+
SENSITIVE: []
|
2117
|
+
end
|
2118
|
+
|
2119
|
+
class UpdateWorkflowVersionRequest
|
2120
|
+
attr_accessor workflow_id: ::String
|
2121
|
+
attr_accessor version_name: ::String
|
2122
|
+
attr_accessor description: ::String
|
2123
|
+
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
2124
|
+
attr_accessor storage_capacity: ::Integer
|
2024
2125
|
SENSITIVE: []
|
2025
2126
|
end
|
2026
2127
|
|
@@ -2123,5 +2224,18 @@ module Aws::Omics
|
|
2123
2224
|
attr_accessor optional: bool
|
2124
2225
|
SENSITIVE: []
|
2125
2226
|
end
|
2227
|
+
|
2228
|
+
class WorkflowVersionListItem
|
2229
|
+
attr_accessor arn: ::String
|
2230
|
+
attr_accessor workflow_id: ::String
|
2231
|
+
attr_accessor version_name: ::String
|
2232
|
+
attr_accessor description: ::String
|
2233
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETED" | "FAILED" | "INACTIVE")
|
2234
|
+
attr_accessor type: ("PRIVATE" | "READY2RUN")
|
2235
|
+
attr_accessor digest: ::String
|
2236
|
+
attr_accessor creation_time: ::Time
|
2237
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
2238
|
+
SENSITIVE: []
|
2239
|
+
end
|
2126
2240
|
end
|
2127
2241
|
end
|
data/sig/waiters.rbs
CHANGED
@@ -191,6 +191,20 @@ module Aws
|
|
191
191
|
) -> Client::_GetWorkflowResponseSuccess
|
192
192
|
| (Hash[Symbol, untyped]) -> Client::_GetWorkflowResponseSuccess
|
193
193
|
end
|
194
|
+
|
195
|
+
class WorkflowVersionActive
|
196
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
197
|
+
| (?Hash[Symbol, untyped]) -> void
|
198
|
+
|
199
|
+
def wait: (
|
200
|
+
workflow_id: ::String,
|
201
|
+
version_name: ::String,
|
202
|
+
?type: ("PRIVATE" | "READY2RUN"),
|
203
|
+
?export: Array[("DEFINITION")],
|
204
|
+
?workflow_owner_id: ::String
|
205
|
+
) -> Client::_GetWorkflowVersionResponseSuccess
|
206
|
+
| (Hash[Symbol, untyped]) -> Client::_GetWorkflowVersionResponseSuccess
|
207
|
+
end
|
194
208
|
end
|
195
209
|
end
|
196
210
|
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.
|
4
|
+
version: 1.45.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: 2025-
|
11
|
+
date: 2025-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|