aws-sdk-omics 1.53.0 → 1.55.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 +422 -86
- data/lib/aws-sdk-omics/client_api.rb +41 -1
- data/lib/aws-sdk-omics/types.rb +249 -40
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +38 -1
- data/sig/types.rbs +34 -0
- metadata +1 -1
data/sig/client.rbs
CHANGED
@@ -400,6 +400,23 @@ module Aws
|
|
400
400
|
request_id: ::String,
|
401
401
|
?accelerators: ("GPU"),
|
402
402
|
?storage_type: ("STATIC" | "DYNAMIC"),
|
403
|
+
?container_registry_map: {
|
404
|
+
registry_mappings: Array[
|
405
|
+
{
|
406
|
+
upstream_registry_url: ::String?,
|
407
|
+
ecr_repository_prefix: ::String?,
|
408
|
+
upstream_repository_prefix: ::String?,
|
409
|
+
ecr_account_id: ::String?
|
410
|
+
},
|
411
|
+
]?,
|
412
|
+
image_mappings: Array[
|
413
|
+
{
|
414
|
+
source_image: ::String?,
|
415
|
+
destination_image: ::String?
|
416
|
+
},
|
417
|
+
]?
|
418
|
+
},
|
419
|
+
?container_registry_map_uri: ::String,
|
403
420
|
?readme_markdown: ::String,
|
404
421
|
?parameter_template_path: ::String,
|
405
422
|
?readme_path: ::String,
|
@@ -445,6 +462,23 @@ module Aws
|
|
445
462
|
?storage_capacity: ::Integer,
|
446
463
|
?tags: Hash[::String, ::String],
|
447
464
|
?workflow_bucket_owner_id: ::String,
|
465
|
+
?container_registry_map: {
|
466
|
+
registry_mappings: Array[
|
467
|
+
{
|
468
|
+
upstream_registry_url: ::String?,
|
469
|
+
ecr_repository_prefix: ::String?,
|
470
|
+
upstream_repository_prefix: ::String?,
|
471
|
+
ecr_account_id: ::String?
|
472
|
+
},
|
473
|
+
]?,
|
474
|
+
image_mappings: Array[
|
475
|
+
{
|
476
|
+
source_image: ::String?,
|
477
|
+
destination_image: ::String?
|
478
|
+
},
|
479
|
+
]?
|
480
|
+
},
|
481
|
+
?container_registry_map_uri: ::String,
|
448
482
|
?readme_markdown: ::String,
|
449
483
|
?parameter_template_path: ::String,
|
450
484
|
?readme_path: ::String,
|
@@ -904,6 +938,7 @@ module Aws
|
|
904
938
|
def gpus: () -> ::Integer
|
905
939
|
def instance_type: () -> ::String
|
906
940
|
def failure_reason: () -> ::String
|
941
|
+
def image_details: () -> Types::ImageDetails
|
907
942
|
end
|
908
943
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run_task-instance_method
|
909
944
|
def get_run_task: (
|
@@ -1020,6 +1055,7 @@ module Aws
|
|
1020
1055
|
def accelerators: () -> ("GPU")
|
1021
1056
|
def storage_type: () -> ("STATIC" | "DYNAMIC")
|
1022
1057
|
def uuid: () -> ::String
|
1058
|
+
def container_registry_map: () -> Types::ContainerRegistryMap
|
1023
1059
|
def readme: () -> ::String
|
1024
1060
|
def definition_repository_details: () -> Types::DefinitionRepositoryDetails
|
1025
1061
|
def readme_path: () -> ::String
|
@@ -1055,6 +1091,7 @@ module Aws
|
|
1055
1091
|
def tags: () -> ::Hash[::String, ::String]
|
1056
1092
|
def uuid: () -> ::String
|
1057
1093
|
def workflow_bucket_owner_id: () -> ::String
|
1094
|
+
def container_registry_map: () -> Types::ContainerRegistryMap
|
1058
1095
|
def readme: () -> ::String
|
1059
1096
|
def definition_repository_details: () -> Types::DefinitionRepositoryDetails
|
1060
1097
|
def readme_path: () -> ::String
|
@@ -1617,7 +1654,7 @@ module Aws
|
|
1617
1654
|
?parameters: {
|
1618
1655
|
},
|
1619
1656
|
?storage_capacity: ::Integer,
|
1620
|
-
|
1657
|
+
output_uri: ::String,
|
1621
1658
|
?log_level: ("OFF" | "FATAL" | "ERROR" | "ALL"),
|
1622
1659
|
?tags: Hash[::String, ::String],
|
1623
1660
|
request_id: ::String,
|
data/sig/types.rbs
CHANGED
@@ -167,6 +167,12 @@ module Aws::Omics
|
|
167
167
|
SENSITIVE: []
|
168
168
|
end
|
169
169
|
|
170
|
+
class ContainerRegistryMap
|
171
|
+
attr_accessor registry_mappings: ::Array[Types::RegistryMapping]
|
172
|
+
attr_accessor image_mappings: ::Array[Types::ImageMapping]
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
170
176
|
class CreateAnnotationStoreRequest
|
171
177
|
attr_accessor reference: Types::ReferenceItem
|
172
178
|
attr_accessor name: ::String
|
@@ -370,6 +376,8 @@ module Aws::Omics
|
|
370
376
|
attr_accessor request_id: ::String
|
371
377
|
attr_accessor accelerators: ("GPU")
|
372
378
|
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
379
|
+
attr_accessor container_registry_map: Types::ContainerRegistryMap
|
380
|
+
attr_accessor container_registry_map_uri: ::String
|
373
381
|
attr_accessor readme_markdown: ::String
|
374
382
|
attr_accessor parameter_template_path: ::String
|
375
383
|
attr_accessor readme_path: ::String
|
@@ -403,6 +411,8 @@ module Aws::Omics
|
|
403
411
|
attr_accessor storage_capacity: ::Integer
|
404
412
|
attr_accessor tags: ::Hash[::String, ::String]
|
405
413
|
attr_accessor workflow_bucket_owner_id: ::String
|
414
|
+
attr_accessor container_registry_map: Types::ContainerRegistryMap
|
415
|
+
attr_accessor container_registry_map_uri: ::String
|
406
416
|
attr_accessor readme_markdown: ::String
|
407
417
|
attr_accessor parameter_template_path: ::String
|
408
418
|
attr_accessor readme_path: ::String
|
@@ -942,6 +952,7 @@ module Aws::Omics
|
|
942
952
|
attr_accessor gpus: ::Integer
|
943
953
|
attr_accessor instance_type: ::String
|
944
954
|
attr_accessor failure_reason: ::String
|
955
|
+
attr_accessor image_details: Types::ImageDetails
|
945
956
|
SENSITIVE: []
|
946
957
|
end
|
947
958
|
|
@@ -1060,6 +1071,7 @@ module Aws::Omics
|
|
1060
1071
|
attr_accessor accelerators: ("GPU")
|
1061
1072
|
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
1062
1073
|
attr_accessor uuid: ::String
|
1074
|
+
attr_accessor container_registry_map: Types::ContainerRegistryMap
|
1063
1075
|
attr_accessor readme: ::String
|
1064
1076
|
attr_accessor definition_repository_details: Types::DefinitionRepositoryDetails
|
1065
1077
|
attr_accessor readme_path: ::String
|
@@ -1096,12 +1108,26 @@ module Aws::Omics
|
|
1096
1108
|
attr_accessor tags: ::Hash[::String, ::String]
|
1097
1109
|
attr_accessor uuid: ::String
|
1098
1110
|
attr_accessor workflow_bucket_owner_id: ::String
|
1111
|
+
attr_accessor container_registry_map: Types::ContainerRegistryMap
|
1099
1112
|
attr_accessor readme: ::String
|
1100
1113
|
attr_accessor definition_repository_details: Types::DefinitionRepositoryDetails
|
1101
1114
|
attr_accessor readme_path: ::String
|
1102
1115
|
SENSITIVE: []
|
1103
1116
|
end
|
1104
1117
|
|
1118
|
+
class ImageDetails
|
1119
|
+
attr_accessor image: ::String
|
1120
|
+
attr_accessor image_digest: ::String
|
1121
|
+
attr_accessor source_image: ::String
|
1122
|
+
SENSITIVE: []
|
1123
|
+
end
|
1124
|
+
|
1125
|
+
class ImageMapping
|
1126
|
+
attr_accessor source_image: ::String
|
1127
|
+
attr_accessor destination_image: ::String
|
1128
|
+
SENSITIVE: []
|
1129
|
+
end
|
1130
|
+
|
1105
1131
|
class ImportReadSetFilter
|
1106
1132
|
attr_accessor status: ("SUBMITTED" | "IN_PROGRESS" | "CANCELLING" | "CANCELLED" | "FAILED" | "COMPLETED" | "COMPLETED_WITH_FAILURES")
|
1107
1133
|
attr_accessor created_after: ::Time
|
@@ -1684,6 +1710,14 @@ module Aws::Omics
|
|
1684
1710
|
SENSITIVE: []
|
1685
1711
|
end
|
1686
1712
|
|
1713
|
+
class RegistryMapping
|
1714
|
+
attr_accessor upstream_registry_url: ::String
|
1715
|
+
attr_accessor ecr_repository_prefix: ::String
|
1716
|
+
attr_accessor upstream_repository_prefix: ::String
|
1717
|
+
attr_accessor ecr_account_id: ::String
|
1718
|
+
SENSITIVE: []
|
1719
|
+
end
|
1720
|
+
|
1687
1721
|
class RequestTimeoutException
|
1688
1722
|
attr_accessor message: ::String
|
1689
1723
|
SENSITIVE: []
|