aws-sdk-omics 1.63.0 → 1.65.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 +712 -95
- data/lib/aws-sdk-omics/client_api.rb +533 -3
- data/lib/aws-sdk-omics/types.rb +1100 -10
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +202 -1
- data/sig/types.rbs +289 -0
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -122,6 +122,30 @@ module Aws::Omics
|
|
|
122
122
|
SENSITIVE: []
|
|
123
123
|
end
|
|
124
124
|
|
|
125
|
+
class BatchListItem
|
|
126
|
+
attr_accessor id: ::String
|
|
127
|
+
attr_accessor name: ::String
|
|
128
|
+
attr_accessor status: ("PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED")
|
|
129
|
+
attr_accessor created_at: ::Time
|
|
130
|
+
attr_accessor total_runs: ::Integer
|
|
131
|
+
attr_accessor workflow_id: ::String
|
|
132
|
+
SENSITIVE: []
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
class BatchRunSettings
|
|
136
|
+
attr_accessor inline_settings: ::Array[Types::InlineSetting]
|
|
137
|
+
attr_accessor s3_uri_settings: ::String
|
|
138
|
+
attr_accessor unknown: untyped
|
|
139
|
+
SENSITIVE: []
|
|
140
|
+
|
|
141
|
+
class InlineSettings < BatchRunSettings
|
|
142
|
+
end
|
|
143
|
+
class S3UriSettings < BatchRunSettings
|
|
144
|
+
end
|
|
145
|
+
class Unknown < BatchRunSettings
|
|
146
|
+
end
|
|
147
|
+
end
|
|
148
|
+
|
|
125
149
|
class CancelAnnotationImportRequest
|
|
126
150
|
attr_accessor job_id: ::String
|
|
127
151
|
SENSITIVE: []
|
|
@@ -130,6 +154,14 @@ module Aws::Omics
|
|
|
130
154
|
class CancelAnnotationImportResponse < Aws::EmptyStructure
|
|
131
155
|
end
|
|
132
156
|
|
|
157
|
+
class CancelRunBatchRequest
|
|
158
|
+
attr_accessor batch_id: ::String
|
|
159
|
+
SENSITIVE: []
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
class CancelRunBatchResponse < Aws::EmptyStructure
|
|
163
|
+
end
|
|
164
|
+
|
|
133
165
|
class CancelRunRequest
|
|
134
166
|
attr_accessor id: ::String
|
|
135
167
|
SENSITIVE: []
|
|
@@ -162,6 +194,22 @@ module Aws::Omics
|
|
|
162
194
|
SENSITIVE: []
|
|
163
195
|
end
|
|
164
196
|
|
|
197
|
+
class ConfigurationDetails
|
|
198
|
+
attr_accessor name: ::String
|
|
199
|
+
attr_accessor arn: ::String
|
|
200
|
+
attr_accessor uuid: ::String
|
|
201
|
+
SENSITIVE: []
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
class ConfigurationListItem
|
|
205
|
+
attr_accessor arn: ::String
|
|
206
|
+
attr_accessor name: ::String
|
|
207
|
+
attr_accessor description: ::String
|
|
208
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "FAILED")
|
|
209
|
+
attr_accessor creation_time: ::Time
|
|
210
|
+
SENSITIVE: []
|
|
211
|
+
end
|
|
212
|
+
|
|
165
213
|
class ConflictException
|
|
166
214
|
attr_accessor message: ::String
|
|
167
215
|
SENSITIVE: []
|
|
@@ -217,6 +265,27 @@ module Aws::Omics
|
|
|
217
265
|
SENSITIVE: []
|
|
218
266
|
end
|
|
219
267
|
|
|
268
|
+
class CreateConfigurationRequest
|
|
269
|
+
attr_accessor name: ::String
|
|
270
|
+
attr_accessor description: ::String
|
|
271
|
+
attr_accessor run_configurations: Types::RunConfigurations
|
|
272
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
273
|
+
attr_accessor request_id: ::String
|
|
274
|
+
SENSITIVE: []
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
class CreateConfigurationResponse
|
|
278
|
+
attr_accessor arn: ::String
|
|
279
|
+
attr_accessor uuid: ::String
|
|
280
|
+
attr_accessor name: ::String
|
|
281
|
+
attr_accessor description: ::String
|
|
282
|
+
attr_accessor run_configurations: Types::RunConfigurationsResponse
|
|
283
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "FAILED")
|
|
284
|
+
attr_accessor creation_time: ::Time
|
|
285
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
286
|
+
SENSITIVE: []
|
|
287
|
+
end
|
|
288
|
+
|
|
220
289
|
class CreateMultipartReadSetUploadRequest
|
|
221
290
|
attr_accessor sequence_store_id: ::String
|
|
222
291
|
attr_accessor client_token: ::String
|
|
@@ -431,6 +500,28 @@ module Aws::Omics
|
|
|
431
500
|
SENSITIVE: []
|
|
432
501
|
end
|
|
433
502
|
|
|
503
|
+
class DefaultRunSetting
|
|
504
|
+
attr_accessor workflow_id: ::String
|
|
505
|
+
attr_accessor workflow_type: ("PRIVATE" | "READY2RUN")
|
|
506
|
+
attr_accessor role_arn: ::String
|
|
507
|
+
attr_accessor name: ::String
|
|
508
|
+
attr_accessor cache_id: ::String
|
|
509
|
+
attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
|
|
510
|
+
attr_accessor run_group_id: ::String
|
|
511
|
+
attr_accessor priority: ::Integer
|
|
512
|
+
attr_accessor parameters: untyped
|
|
513
|
+
attr_accessor storage_capacity: ::Integer
|
|
514
|
+
attr_accessor output_uri: ::String
|
|
515
|
+
attr_accessor log_level: ("OFF" | "FATAL" | "ERROR" | "ALL")
|
|
516
|
+
attr_accessor run_tags: ::Hash[::String, ::String]
|
|
517
|
+
attr_accessor retention_mode: ("RETAIN" | "REMOVE")
|
|
518
|
+
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
|
519
|
+
attr_accessor workflow_owner_id: ::String
|
|
520
|
+
attr_accessor output_bucket_owner_id: ::String
|
|
521
|
+
attr_accessor workflow_version_name: ::String
|
|
522
|
+
SENSITIVE: []
|
|
523
|
+
end
|
|
524
|
+
|
|
434
525
|
class DefinitionRepository
|
|
435
526
|
attr_accessor connection_arn: ::String
|
|
436
527
|
attr_accessor full_repository_id: ::String
|
|
@@ -471,6 +562,16 @@ module Aws::Omics
|
|
|
471
562
|
SENSITIVE: []
|
|
472
563
|
end
|
|
473
564
|
|
|
565
|
+
class DeleteBatchRequest
|
|
566
|
+
attr_accessor batch_id: ::String
|
|
567
|
+
SENSITIVE: []
|
|
568
|
+
end
|
|
569
|
+
|
|
570
|
+
class DeleteConfigurationRequest
|
|
571
|
+
attr_accessor name: ::String
|
|
572
|
+
SENSITIVE: []
|
|
573
|
+
end
|
|
574
|
+
|
|
474
575
|
class DeleteReferenceRequest
|
|
475
576
|
attr_accessor id: ::String
|
|
476
577
|
attr_accessor reference_store_id: ::String
|
|
@@ -488,6 +589,14 @@ module Aws::Omics
|
|
|
488
589
|
class DeleteReferenceStoreResponse < Aws::EmptyStructure
|
|
489
590
|
end
|
|
490
591
|
|
|
592
|
+
class DeleteRunBatchRequest
|
|
593
|
+
attr_accessor batch_id: ::String
|
|
594
|
+
SENSITIVE: []
|
|
595
|
+
end
|
|
596
|
+
|
|
597
|
+
class DeleteRunBatchResponse < Aws::EmptyStructure
|
|
598
|
+
end
|
|
599
|
+
|
|
491
600
|
class DeleteRunCacheRequest
|
|
492
601
|
attr_accessor id: ::String
|
|
493
602
|
SENSITIVE: []
|
|
@@ -685,6 +794,47 @@ module Aws::Omics
|
|
|
685
794
|
SENSITIVE: []
|
|
686
795
|
end
|
|
687
796
|
|
|
797
|
+
class GetBatchRequest
|
|
798
|
+
attr_accessor batch_id: ::String
|
|
799
|
+
SENSITIVE: []
|
|
800
|
+
end
|
|
801
|
+
|
|
802
|
+
class GetBatchResponse
|
|
803
|
+
attr_accessor id: ::String
|
|
804
|
+
attr_accessor arn: ::String
|
|
805
|
+
attr_accessor uuid: ::String
|
|
806
|
+
attr_accessor name: ::String
|
|
807
|
+
attr_accessor status: ("PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED")
|
|
808
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
809
|
+
attr_accessor total_runs: ::Integer
|
|
810
|
+
attr_accessor default_run_setting: Types::DefaultRunSetting
|
|
811
|
+
attr_accessor submission_summary: Types::SubmissionSummary
|
|
812
|
+
attr_accessor run_summary: Types::RunSummary
|
|
813
|
+
attr_accessor creation_time: ::Time
|
|
814
|
+
attr_accessor submitted_time: ::Time
|
|
815
|
+
attr_accessor processed_time: ::Time
|
|
816
|
+
attr_accessor failed_time: ::Time
|
|
817
|
+
attr_accessor failure_reason: ::String
|
|
818
|
+
SENSITIVE: []
|
|
819
|
+
end
|
|
820
|
+
|
|
821
|
+
class GetConfigurationRequest
|
|
822
|
+
attr_accessor name: ::String
|
|
823
|
+
SENSITIVE: []
|
|
824
|
+
end
|
|
825
|
+
|
|
826
|
+
class GetConfigurationResponse
|
|
827
|
+
attr_accessor arn: ::String
|
|
828
|
+
attr_accessor uuid: ::String
|
|
829
|
+
attr_accessor name: ::String
|
|
830
|
+
attr_accessor description: ::String
|
|
831
|
+
attr_accessor run_configurations: Types::RunConfigurationsResponse
|
|
832
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "FAILED")
|
|
833
|
+
attr_accessor creation_time: ::Time
|
|
834
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
835
|
+
SENSITIVE: []
|
|
836
|
+
end
|
|
837
|
+
|
|
688
838
|
class GetReadSetActivationJobRequest
|
|
689
839
|
attr_accessor id: ::String
|
|
690
840
|
attr_accessor sequence_store_id: ::String
|
|
@@ -903,6 +1053,7 @@ module Aws::Omics
|
|
|
903
1053
|
attr_accessor role_arn: ::String
|
|
904
1054
|
attr_accessor name: ::String
|
|
905
1055
|
attr_accessor run_group_id: ::String
|
|
1056
|
+
attr_accessor batch_id: ::String
|
|
906
1057
|
attr_accessor priority: ::Integer
|
|
907
1058
|
attr_accessor definition: ::String
|
|
908
1059
|
attr_accessor digest: ::String
|
|
@@ -927,6 +1078,9 @@ module Aws::Omics
|
|
|
927
1078
|
attr_accessor workflow_owner_id: ::String
|
|
928
1079
|
attr_accessor workflow_version_name: ::String
|
|
929
1080
|
attr_accessor workflow_uuid: ::String
|
|
1081
|
+
attr_accessor networking_mode: ("RESTRICTED" | "VPC")
|
|
1082
|
+
attr_accessor configuration: Types::ConfigurationDetails
|
|
1083
|
+
attr_accessor vpc_config: Types::VpcConfigResponse
|
|
930
1084
|
SENSITIVE: []
|
|
931
1085
|
end
|
|
932
1086
|
|
|
@@ -1189,6 +1343,17 @@ module Aws::Omics
|
|
|
1189
1343
|
SENSITIVE: []
|
|
1190
1344
|
end
|
|
1191
1345
|
|
|
1346
|
+
class InlineSetting
|
|
1347
|
+
attr_accessor run_setting_id: ::String
|
|
1348
|
+
attr_accessor name: ::String
|
|
1349
|
+
attr_accessor output_uri: ::String
|
|
1350
|
+
attr_accessor priority: ::Integer
|
|
1351
|
+
attr_accessor parameters: untyped
|
|
1352
|
+
attr_accessor output_bucket_owner_id: ::String
|
|
1353
|
+
attr_accessor run_tags: ::Hash[::String, ::String]
|
|
1354
|
+
SENSITIVE: []
|
|
1355
|
+
end
|
|
1356
|
+
|
|
1192
1357
|
class InternalServerException
|
|
1193
1358
|
attr_accessor message: ::String
|
|
1194
1359
|
SENSITIVE: []
|
|
@@ -1252,6 +1417,33 @@ module Aws::Omics
|
|
|
1252
1417
|
SENSITIVE: []
|
|
1253
1418
|
end
|
|
1254
1419
|
|
|
1420
|
+
class ListBatchRequest
|
|
1421
|
+
attr_accessor max_items: ::Integer
|
|
1422
|
+
attr_accessor starting_token: ::String
|
|
1423
|
+
attr_accessor status: ("PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED")
|
|
1424
|
+
attr_accessor name: ::String
|
|
1425
|
+
attr_accessor run_group_id: ::String
|
|
1426
|
+
SENSITIVE: []
|
|
1427
|
+
end
|
|
1428
|
+
|
|
1429
|
+
class ListBatchResponse
|
|
1430
|
+
attr_accessor items: ::Array[Types::BatchListItem]
|
|
1431
|
+
attr_accessor next_token: ::String
|
|
1432
|
+
SENSITIVE: []
|
|
1433
|
+
end
|
|
1434
|
+
|
|
1435
|
+
class ListConfigurationsRequest
|
|
1436
|
+
attr_accessor max_results: ::Integer
|
|
1437
|
+
attr_accessor starting_token: ::String
|
|
1438
|
+
SENSITIVE: []
|
|
1439
|
+
end
|
|
1440
|
+
|
|
1441
|
+
class ListConfigurationsResponse
|
|
1442
|
+
attr_accessor items: ::Array[Types::ConfigurationListItem]
|
|
1443
|
+
attr_accessor next_token: ::String
|
|
1444
|
+
SENSITIVE: []
|
|
1445
|
+
end
|
|
1446
|
+
|
|
1255
1447
|
class ListMultipartReadSetUploadsRequest
|
|
1256
1448
|
attr_accessor sequence_store_id: ::String
|
|
1257
1449
|
attr_accessor max_results: ::Integer
|
|
@@ -1417,9 +1609,26 @@ module Aws::Omics
|
|
|
1417
1609
|
SENSITIVE: []
|
|
1418
1610
|
end
|
|
1419
1611
|
|
|
1612
|
+
class ListRunsInBatchRequest
|
|
1613
|
+
attr_accessor batch_id: ::String
|
|
1614
|
+
attr_accessor max_items: ::Integer
|
|
1615
|
+
attr_accessor starting_token: ::String
|
|
1616
|
+
attr_accessor submission_status: ("SUCCESS" | "FAILED" | "CANCEL_SUCCESS" | "CANCEL_FAILED" | "DELETE_SUCCESS" | "DELETE_FAILED")
|
|
1617
|
+
attr_accessor run_setting_id: ::String
|
|
1618
|
+
attr_accessor run_id: ::String
|
|
1619
|
+
SENSITIVE: []
|
|
1620
|
+
end
|
|
1621
|
+
|
|
1622
|
+
class ListRunsInBatchResponse
|
|
1623
|
+
attr_accessor runs: ::Array[Types::RunBatchListItem]
|
|
1624
|
+
attr_accessor next_token: ::String
|
|
1625
|
+
SENSITIVE: []
|
|
1626
|
+
end
|
|
1627
|
+
|
|
1420
1628
|
class ListRunsRequest
|
|
1421
1629
|
attr_accessor name: ::String
|
|
1422
1630
|
attr_accessor run_group_id: ::String
|
|
1631
|
+
attr_accessor batch_id: ::String
|
|
1423
1632
|
attr_accessor starting_token: ::String
|
|
1424
1633
|
attr_accessor max_results: ::Integer
|
|
1425
1634
|
attr_accessor status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
|
|
@@ -1728,6 +1937,17 @@ module Aws::Omics
|
|
|
1728
1937
|
SENSITIVE: []
|
|
1729
1938
|
end
|
|
1730
1939
|
|
|
1940
|
+
class RunBatchListItem
|
|
1941
|
+
attr_accessor run_setting_id: ::String
|
|
1942
|
+
attr_accessor run_id: ::String
|
|
1943
|
+
attr_accessor run_internal_uuid: ::String
|
|
1944
|
+
attr_accessor run_arn: ::String
|
|
1945
|
+
attr_accessor submission_status: ("SUCCESS" | "FAILED" | "CANCEL_SUCCESS" | "CANCEL_FAILED" | "DELETE_SUCCESS" | "DELETE_FAILED")
|
|
1946
|
+
attr_accessor submission_failure_reason: ::String
|
|
1947
|
+
attr_accessor submission_failure_message: ::String
|
|
1948
|
+
SENSITIVE: []
|
|
1949
|
+
end
|
|
1950
|
+
|
|
1731
1951
|
class RunCacheListItem
|
|
1732
1952
|
attr_accessor arn: ::String
|
|
1733
1953
|
attr_accessor cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")
|
|
@@ -1739,6 +1959,16 @@ module Aws::Omics
|
|
|
1739
1959
|
SENSITIVE: []
|
|
1740
1960
|
end
|
|
1741
1961
|
|
|
1962
|
+
class RunConfigurations
|
|
1963
|
+
attr_accessor vpc_config: Types::VpcConfig
|
|
1964
|
+
SENSITIVE: []
|
|
1965
|
+
end
|
|
1966
|
+
|
|
1967
|
+
class RunConfigurationsResponse
|
|
1968
|
+
attr_accessor vpc_config: Types::VpcConfigResponse
|
|
1969
|
+
SENSITIVE: []
|
|
1970
|
+
end
|
|
1971
|
+
|
|
1742
1972
|
class RunGroupListItem
|
|
1743
1973
|
attr_accessor arn: ::String
|
|
1744
1974
|
attr_accessor id: ::String
|
|
@@ -1756,6 +1986,7 @@ module Aws::Omics
|
|
|
1756
1986
|
attr_accessor id: ::String
|
|
1757
1987
|
attr_accessor status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
|
|
1758
1988
|
attr_accessor workflow_id: ::String
|
|
1989
|
+
attr_accessor batch_id: ::String
|
|
1759
1990
|
attr_accessor name: ::String
|
|
1760
1991
|
attr_accessor priority: ::Integer
|
|
1761
1992
|
attr_accessor storage_capacity: ::Integer
|
|
@@ -1773,6 +2004,18 @@ module Aws::Omics
|
|
|
1773
2004
|
SENSITIVE: []
|
|
1774
2005
|
end
|
|
1775
2006
|
|
|
2007
|
+
class RunSummary
|
|
2008
|
+
attr_accessor pending_run_count: ::Integer
|
|
2009
|
+
attr_accessor starting_run_count: ::Integer
|
|
2010
|
+
attr_accessor running_run_count: ::Integer
|
|
2011
|
+
attr_accessor stopping_run_count: ::Integer
|
|
2012
|
+
attr_accessor completed_run_count: ::Integer
|
|
2013
|
+
attr_accessor deleted_run_count: ::Integer
|
|
2014
|
+
attr_accessor failed_run_count: ::Integer
|
|
2015
|
+
attr_accessor cancelled_run_count: ::Integer
|
|
2016
|
+
SENSITIVE: []
|
|
2017
|
+
end
|
|
2018
|
+
|
|
1776
2019
|
class S3AccessConfig
|
|
1777
2020
|
attr_accessor access_log_location: ::String
|
|
1778
2021
|
SENSITIVE: []
|
|
@@ -1964,6 +2207,24 @@ module Aws::Omics
|
|
|
1964
2207
|
SENSITIVE: []
|
|
1965
2208
|
end
|
|
1966
2209
|
|
|
2210
|
+
class StartRunBatchRequest
|
|
2211
|
+
attr_accessor batch_name: ::String
|
|
2212
|
+
attr_accessor request_id: ::String
|
|
2213
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
2214
|
+
attr_accessor default_run_setting: Types::DefaultRunSetting
|
|
2215
|
+
attr_accessor batch_run_settings: Types::BatchRunSettings
|
|
2216
|
+
SENSITIVE: []
|
|
2217
|
+
end
|
|
2218
|
+
|
|
2219
|
+
class StartRunBatchResponse
|
|
2220
|
+
attr_accessor id: ::String
|
|
2221
|
+
attr_accessor arn: ::String
|
|
2222
|
+
attr_accessor status: ("PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED")
|
|
2223
|
+
attr_accessor uuid: ::String
|
|
2224
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
2225
|
+
SENSITIVE: []
|
|
2226
|
+
end
|
|
2227
|
+
|
|
1967
2228
|
class StartRunRequest
|
|
1968
2229
|
attr_accessor workflow_id: ::String
|
|
1969
2230
|
attr_accessor workflow_type: ("PRIVATE" | "READY2RUN")
|
|
@@ -1984,6 +2245,8 @@ module Aws::Omics
|
|
|
1984
2245
|
attr_accessor storage_type: ("STATIC" | "DYNAMIC")
|
|
1985
2246
|
attr_accessor workflow_owner_id: ::String
|
|
1986
2247
|
attr_accessor workflow_version_name: ::String
|
|
2248
|
+
attr_accessor networking_mode: ("RESTRICTED" | "VPC")
|
|
2249
|
+
attr_accessor configuration_name: ::String
|
|
1987
2250
|
SENSITIVE: []
|
|
1988
2251
|
end
|
|
1989
2252
|
|
|
@@ -1994,6 +2257,8 @@ module Aws::Omics
|
|
|
1994
2257
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1995
2258
|
attr_accessor uuid: ::String
|
|
1996
2259
|
attr_accessor run_output_uri: ::String
|
|
2260
|
+
attr_accessor configuration: Types::ConfigurationDetails
|
|
2261
|
+
attr_accessor networking_mode: ::String
|
|
1997
2262
|
SENSITIVE: []
|
|
1998
2263
|
end
|
|
1999
2264
|
|
|
@@ -2022,6 +2287,17 @@ module Aws::Omics
|
|
|
2022
2287
|
end
|
|
2023
2288
|
end
|
|
2024
2289
|
|
|
2290
|
+
class SubmissionSummary
|
|
2291
|
+
attr_accessor successful_start_submission_count: ::Integer
|
|
2292
|
+
attr_accessor failed_start_submission_count: ::Integer
|
|
2293
|
+
attr_accessor pending_start_submission_count: ::Integer
|
|
2294
|
+
attr_accessor successful_cancel_submission_count: ::Integer
|
|
2295
|
+
attr_accessor failed_cancel_submission_count: ::Integer
|
|
2296
|
+
attr_accessor successful_delete_submission_count: ::Integer
|
|
2297
|
+
attr_accessor failed_delete_submission_count: ::Integer
|
|
2298
|
+
SENSITIVE: []
|
|
2299
|
+
end
|
|
2300
|
+
|
|
2025
2301
|
class TagResourceRequest
|
|
2026
2302
|
attr_accessor resource_arn: ::String
|
|
2027
2303
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -2283,6 +2559,19 @@ module Aws::Omics
|
|
|
2283
2559
|
end
|
|
2284
2560
|
end
|
|
2285
2561
|
|
|
2562
|
+
class VpcConfig
|
|
2563
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
2564
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
2565
|
+
SENSITIVE: []
|
|
2566
|
+
end
|
|
2567
|
+
|
|
2568
|
+
class VpcConfigResponse
|
|
2569
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
2570
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
2571
|
+
attr_accessor vpc_id: ::String
|
|
2572
|
+
SENSITIVE: []
|
|
2573
|
+
end
|
|
2574
|
+
|
|
2286
2575
|
class WorkflowListItem
|
|
2287
2576
|
attr_accessor arn: ::String
|
|
2288
2577
|
attr_accessor id: ::String
|