aws-sdk-omics 1.49.0 → 1.50.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-omics/client.rb +470 -126
- data/lib/aws-sdk-omics/client_api.rb +51 -0
- data/lib/aws-sdk-omics/types.rb +380 -58
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +43 -8
- data/sig/types.rbs +44 -2
- data/sig/waiters.rbs +2 -2
- metadata +1 -1
data/sig/client.rbs
CHANGED
@@ -399,7 +399,21 @@ module Aws
|
|
399
399
|
?tags: Hash[::String, ::String],
|
400
400
|
request_id: ::String,
|
401
401
|
?accelerators: ("GPU"),
|
402
|
-
?storage_type: ("STATIC" | "DYNAMIC")
|
402
|
+
?storage_type: ("STATIC" | "DYNAMIC"),
|
403
|
+
?readme_markdown: ::String,
|
404
|
+
?parameter_template_path: ::String,
|
405
|
+
?readme_path: ::String,
|
406
|
+
?definition_repository: {
|
407
|
+
connection_arn: ::String,
|
408
|
+
full_repository_id: ::String,
|
409
|
+
source_reference: {
|
410
|
+
type: ("BRANCH" | "TAG" | "COMMIT"),
|
411
|
+
value: ::String
|
412
|
+
}?,
|
413
|
+
exclude_file_patterns: Array[::String]?
|
414
|
+
},
|
415
|
+
?workflow_bucket_owner_id: ::String,
|
416
|
+
?readme_uri: ::String
|
403
417
|
) -> _CreateWorkflowResponseSuccess
|
404
418
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkflowResponseSuccess
|
405
419
|
|
@@ -430,7 +444,20 @@ module Aws
|
|
430
444
|
?storage_type: ("STATIC" | "DYNAMIC"),
|
431
445
|
?storage_capacity: ::Integer,
|
432
446
|
?tags: Hash[::String, ::String],
|
433
|
-
?workflow_bucket_owner_id: ::String
|
447
|
+
?workflow_bucket_owner_id: ::String,
|
448
|
+
?readme_markdown: ::String,
|
449
|
+
?parameter_template_path: ::String,
|
450
|
+
?readme_path: ::String,
|
451
|
+
?definition_repository: {
|
452
|
+
connection_arn: ::String,
|
453
|
+
full_repository_id: ::String,
|
454
|
+
source_reference: {
|
455
|
+
type: ("BRANCH" | "TAG" | "COMMIT"),
|
456
|
+
value: ::String
|
457
|
+
}?,
|
458
|
+
exclude_file_patterns: Array[::String]?
|
459
|
+
},
|
460
|
+
?readme_uri: ::String
|
434
461
|
) -> _CreateWorkflowVersionResponseSuccess
|
435
462
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkflowVersionResponseSuccess
|
436
463
|
|
@@ -993,12 +1020,15 @@ module Aws
|
|
993
1020
|
def accelerators: () -> ("GPU")
|
994
1021
|
def storage_type: () -> ("STATIC" | "DYNAMIC")
|
995
1022
|
def uuid: () -> ::String
|
1023
|
+
def readme: () -> ::String
|
1024
|
+
def definition_repository_details: () -> Types::DefinitionRepositoryDetails
|
1025
|
+
def readme_path: () -> ::String
|
996
1026
|
end
|
997
1027
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_workflow-instance_method
|
998
1028
|
def get_workflow: (
|
999
1029
|
id: ::String,
|
1000
1030
|
?type: ("PRIVATE" | "READY2RUN"),
|
1001
|
-
?export: Array[("DEFINITION")],
|
1031
|
+
?export: Array[("DEFINITION" | "README")],
|
1002
1032
|
?workflow_owner_id: ::String
|
1003
1033
|
) -> _GetWorkflowResponseSuccess
|
1004
1034
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowResponseSuccess
|
@@ -1025,13 +1055,16 @@ module Aws
|
|
1025
1055
|
def tags: () -> ::Hash[::String, ::String]
|
1026
1056
|
def uuid: () -> ::String
|
1027
1057
|
def workflow_bucket_owner_id: () -> ::String
|
1058
|
+
def readme: () -> ::String
|
1059
|
+
def definition_repository_details: () -> Types::DefinitionRepositoryDetails
|
1060
|
+
def readme_path: () -> ::String
|
1028
1061
|
end
|
1029
1062
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_workflow_version-instance_method
|
1030
1063
|
def get_workflow_version: (
|
1031
1064
|
workflow_id: ::String,
|
1032
1065
|
version_name: ::String,
|
1033
1066
|
?type: ("PRIVATE" | "READY2RUN"),
|
1034
|
-
?export: Array[("DEFINITION")],
|
1067
|
+
?export: Array[("DEFINITION" | "README")],
|
1035
1068
|
?workflow_owner_id: ::String
|
1036
1069
|
) -> _GetWorkflowVersionResponseSuccess
|
1037
1070
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowVersionResponseSuccess
|
@@ -1744,7 +1777,8 @@ module Aws
|
|
1744
1777
|
?name: ::String,
|
1745
1778
|
?description: ::String,
|
1746
1779
|
?storage_type: ("STATIC" | "DYNAMIC"),
|
1747
|
-
?storage_capacity: ::Integer
|
1780
|
+
?storage_capacity: ::Integer,
|
1781
|
+
?readme_markdown: ::String
|
1748
1782
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1749
1783
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1750
1784
|
|
@@ -1754,7 +1788,8 @@ module Aws
|
|
1754
1788
|
version_name: ::String,
|
1755
1789
|
?description: ::String,
|
1756
1790
|
?storage_type: ("STATIC" | "DYNAMIC"),
|
1757
|
-
?storage_capacity: ::Integer
|
1791
|
+
?storage_capacity: ::Integer,
|
1792
|
+
?readme_markdown: ::String
|
1758
1793
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1759
1794
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1760
1795
|
|
@@ -1850,7 +1885,7 @@ module Aws
|
|
1850
1885
|
| (:workflow_active waiter_name,
|
1851
1886
|
id: ::String,
|
1852
1887
|
?type: ("PRIVATE" | "READY2RUN"),
|
1853
|
-
?export: Array[("DEFINITION")],
|
1888
|
+
?export: Array[("DEFINITION" | "README")],
|
1854
1889
|
?workflow_owner_id: ::String
|
1855
1890
|
) -> Client::_GetWorkflowResponseSuccess
|
1856
1891
|
| (:workflow_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetWorkflowResponseSuccess
|
@@ -1858,7 +1893,7 @@ module Aws
|
|
1858
1893
|
workflow_id: ::String,
|
1859
1894
|
version_name: ::String,
|
1860
1895
|
?type: ("PRIVATE" | "READY2RUN"),
|
1861
|
-
?export: Array[("DEFINITION")],
|
1896
|
+
?export: Array[("DEFINITION" | "README")],
|
1862
1897
|
?workflow_owner_id: ::String
|
1863
1898
|
) -> Client::_GetWorkflowVersionResponseSuccess
|
1864
1899
|
| (:workflow_version_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetWorkflowVersionResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -370,6 +370,12 @@ module Aws::Omics
|
|
370
370
|
attr_accessor request_id: ::String
|
371
371
|
attr_accessor accelerators: ("GPU")
|
372
372
|
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
373
|
+
attr_accessor readme_markdown: ::String
|
374
|
+
attr_accessor parameter_template_path: ::String
|
375
|
+
attr_accessor readme_path: ::String
|
376
|
+
attr_accessor definition_repository: Types::DefinitionRepository
|
377
|
+
attr_accessor workflow_bucket_owner_id: ::String
|
378
|
+
attr_accessor readme_uri: ::String
|
373
379
|
SENSITIVE: []
|
374
380
|
end
|
375
381
|
|
@@ -397,6 +403,11 @@ module Aws::Omics
|
|
397
403
|
attr_accessor storage_capacity: ::Integer
|
398
404
|
attr_accessor tags: ::Hash[::String, ::String]
|
399
405
|
attr_accessor workflow_bucket_owner_id: ::String
|
406
|
+
attr_accessor readme_markdown: ::String
|
407
|
+
attr_accessor parameter_template_path: ::String
|
408
|
+
attr_accessor readme_path: ::String
|
409
|
+
attr_accessor definition_repository: Types::DefinitionRepository
|
410
|
+
attr_accessor readme_uri: ::String
|
400
411
|
SENSITIVE: []
|
401
412
|
end
|
402
413
|
|
@@ -410,6 +421,23 @@ module Aws::Omics
|
|
410
421
|
SENSITIVE: []
|
411
422
|
end
|
412
423
|
|
424
|
+
class DefinitionRepository
|
425
|
+
attr_accessor connection_arn: ::String
|
426
|
+
attr_accessor full_repository_id: ::String
|
427
|
+
attr_accessor source_reference: Types::SourceReference
|
428
|
+
attr_accessor exclude_file_patterns: ::Array[::String]
|
429
|
+
SENSITIVE: []
|
430
|
+
end
|
431
|
+
|
432
|
+
class DefinitionRepositoryDetails
|
433
|
+
attr_accessor connection_arn: ::String
|
434
|
+
attr_accessor full_repository_id: ::String
|
435
|
+
attr_accessor source_reference: Types::SourceReference
|
436
|
+
attr_accessor provider_type: ::String
|
437
|
+
attr_accessor provider_endpoint: ::String
|
438
|
+
SENSITIVE: []
|
439
|
+
end
|
440
|
+
|
413
441
|
class DeleteAnnotationStoreRequest
|
414
442
|
attr_accessor name: ::String
|
415
443
|
attr_accessor force: bool
|
@@ -1007,7 +1035,7 @@ module Aws::Omics
|
|
1007
1035
|
class GetWorkflowRequest
|
1008
1036
|
attr_accessor id: ::String
|
1009
1037
|
attr_accessor type: ("PRIVATE" | "READY2RUN")
|
1010
|
-
attr_accessor export: ::Array[("DEFINITION")]
|
1038
|
+
attr_accessor export: ::Array[("DEFINITION" | "README")]
|
1011
1039
|
attr_accessor workflow_owner_id: ::String
|
1012
1040
|
SENSITIVE: []
|
1013
1041
|
end
|
@@ -1032,6 +1060,9 @@ module Aws::Omics
|
|
1032
1060
|
attr_accessor accelerators: ("GPU")
|
1033
1061
|
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
1034
1062
|
attr_accessor uuid: ::String
|
1063
|
+
attr_accessor readme: ::String
|
1064
|
+
attr_accessor definition_repository_details: Types::DefinitionRepositoryDetails
|
1065
|
+
attr_accessor readme_path: ::String
|
1035
1066
|
SENSITIVE: []
|
1036
1067
|
end
|
1037
1068
|
|
@@ -1039,7 +1070,7 @@ module Aws::Omics
|
|
1039
1070
|
attr_accessor workflow_id: ::String
|
1040
1071
|
attr_accessor version_name: ::String
|
1041
1072
|
attr_accessor type: ("PRIVATE" | "READY2RUN")
|
1042
|
-
attr_accessor export: ::Array[("DEFINITION")]
|
1073
|
+
attr_accessor export: ::Array[("DEFINITION" | "README")]
|
1043
1074
|
attr_accessor workflow_owner_id: ::String
|
1044
1075
|
SENSITIVE: []
|
1045
1076
|
end
|
@@ -1065,6 +1096,9 @@ module Aws::Omics
|
|
1065
1096
|
attr_accessor tags: ::Hash[::String, ::String]
|
1066
1097
|
attr_accessor uuid: ::String
|
1067
1098
|
attr_accessor workflow_bucket_owner_id: ::String
|
1099
|
+
attr_accessor readme: ::String
|
1100
|
+
attr_accessor definition_repository_details: Types::DefinitionRepositoryDetails
|
1101
|
+
attr_accessor readme_path: ::String
|
1068
1102
|
SENSITIVE: []
|
1069
1103
|
end
|
1070
1104
|
|
@@ -1775,6 +1809,12 @@ module Aws::Omics
|
|
1775
1809
|
SENSITIVE: []
|
1776
1810
|
end
|
1777
1811
|
|
1812
|
+
class SourceReference
|
1813
|
+
attr_accessor type: ("BRANCH" | "TAG" | "COMMIT")
|
1814
|
+
attr_accessor value: ::String
|
1815
|
+
SENSITIVE: []
|
1816
|
+
end
|
1817
|
+
|
1778
1818
|
class SseConfig
|
1779
1819
|
attr_accessor type: ("KMS")
|
1780
1820
|
attr_accessor key_arn: ::String
|
@@ -2113,6 +2153,7 @@ module Aws::Omics
|
|
2113
2153
|
attr_accessor description: ::String
|
2114
2154
|
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
2115
2155
|
attr_accessor storage_capacity: ::Integer
|
2156
|
+
attr_accessor readme_markdown: ::String
|
2116
2157
|
SENSITIVE: []
|
2117
2158
|
end
|
2118
2159
|
|
@@ -2122,6 +2163,7 @@ module Aws::Omics
|
|
2122
2163
|
attr_accessor description: ::String
|
2123
2164
|
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
2124
2165
|
attr_accessor storage_capacity: ::Integer
|
2166
|
+
attr_accessor readme_markdown: ::String
|
2125
2167
|
SENSITIVE: []
|
2126
2168
|
end
|
2127
2169
|
|
data/sig/waiters.rbs
CHANGED
@@ -186,7 +186,7 @@ module Aws
|
|
186
186
|
def wait: (
|
187
187
|
id: ::String,
|
188
188
|
?type: ("PRIVATE" | "READY2RUN"),
|
189
|
-
?export: Array[("DEFINITION")],
|
189
|
+
?export: Array[("DEFINITION" | "README")],
|
190
190
|
?workflow_owner_id: ::String
|
191
191
|
) -> Client::_GetWorkflowResponseSuccess
|
192
192
|
| (Hash[Symbol, untyped]) -> Client::_GetWorkflowResponseSuccess
|
@@ -200,7 +200,7 @@ module Aws
|
|
200
200
|
workflow_id: ::String,
|
201
201
|
version_name: ::String,
|
202
202
|
?type: ("PRIVATE" | "READY2RUN"),
|
203
|
-
?export: Array[("DEFINITION")],
|
203
|
+
?export: Array[("DEFINITION" | "README")],
|
204
204
|
?workflow_owner_id: ::String
|
205
205
|
) -> Client::_GetWorkflowVersionResponseSuccess
|
206
206
|
| (Hash[Symbol, untyped]) -> Client::_GetWorkflowVersionResponseSuccess
|