aws-sdk-omics 1.12.0 → 1.14.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 +548 -27
- data/lib/aws-sdk-omics/client_api.rb +425 -15
- data/lib/aws-sdk-omics/endpoints.rb +140 -0
- data/lib/aws-sdk-omics/plugins/endpoints.rb +20 -0
- data/lib/aws-sdk-omics/types.rb +760 -5
- data/lib/aws-sdk-omics/waiters.rb +126 -17
- data/lib/aws-sdk-omics.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-omics/types.rb
CHANGED
@@ -32,6 +32,30 @@ module Aws::Omics
|
|
32
32
|
#
|
33
33
|
class AbortMultipartReadSetUploadResponse < Aws::EmptyStructure; end
|
34
34
|
|
35
|
+
# @!attribute [rw] share_id
|
36
|
+
# The ID for a share offer for analytics store data.
|
37
|
+
# @return [String]
|
38
|
+
#
|
39
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/AcceptShareRequest AWS API Documentation
|
40
|
+
#
|
41
|
+
class AcceptShareRequest < Struct.new(
|
42
|
+
:share_id)
|
43
|
+
SENSITIVE = []
|
44
|
+
include Aws::Structure
|
45
|
+
end
|
46
|
+
|
47
|
+
# @!attribute [rw] status
|
48
|
+
# The status of an analytics store share.
|
49
|
+
# @return [String]
|
50
|
+
#
|
51
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/AcceptShareResponse AWS API Documentation
|
52
|
+
#
|
53
|
+
class AcceptShareResponse < Struct.new(
|
54
|
+
:status)
|
55
|
+
SENSITIVE = []
|
56
|
+
include Aws::Structure
|
57
|
+
end
|
58
|
+
|
35
59
|
# You do not have sufficient access to perform this action.
|
36
60
|
#
|
37
61
|
# @!attribute [rw] message
|
@@ -170,6 +194,10 @@ module Aws::Omics
|
|
170
194
|
# The job's destination annotation store.
|
171
195
|
# @return [String]
|
172
196
|
#
|
197
|
+
# @!attribute [rw] version_name
|
198
|
+
# The name of the annotation store version.
|
199
|
+
# @return [String]
|
200
|
+
#
|
173
201
|
# @!attribute [rw] role_arn
|
174
202
|
# The job's service role ARN.
|
175
203
|
# @return [String]
|
@@ -203,6 +231,7 @@ module Aws::Omics
|
|
203
231
|
class AnnotationImportJobItem < Struct.new(
|
204
232
|
:id,
|
205
233
|
:destination_name,
|
234
|
+
:version_name,
|
206
235
|
:role_arn,
|
207
236
|
:status,
|
208
237
|
:creation_time,
|
@@ -283,6 +312,71 @@ module Aws::Omics
|
|
283
312
|
include Aws::Structure
|
284
313
|
end
|
285
314
|
|
315
|
+
# Annotation store versions.
|
316
|
+
#
|
317
|
+
# @!attribute [rw] store_id
|
318
|
+
# The store ID for an annotation store version.
|
319
|
+
# @return [String]
|
320
|
+
#
|
321
|
+
# @!attribute [rw] id
|
322
|
+
# The annotation store version ID.
|
323
|
+
# @return [String]
|
324
|
+
#
|
325
|
+
# @!attribute [rw] status
|
326
|
+
# The status of an annotation store version.
|
327
|
+
# @return [String]
|
328
|
+
#
|
329
|
+
# @!attribute [rw] version_arn
|
330
|
+
# The Arn for an annotation store version.
|
331
|
+
# @return [String]
|
332
|
+
#
|
333
|
+
# @!attribute [rw] name
|
334
|
+
# A name given to an annotation store version to distinguish it from
|
335
|
+
# others.
|
336
|
+
# @return [String]
|
337
|
+
#
|
338
|
+
# @!attribute [rw] version_name
|
339
|
+
# The name of an annotation store version.
|
340
|
+
# @return [String]
|
341
|
+
#
|
342
|
+
# @!attribute [rw] description
|
343
|
+
# The description of an annotation store version.
|
344
|
+
# @return [String]
|
345
|
+
#
|
346
|
+
# @!attribute [rw] creation_time
|
347
|
+
# The time stamp for when an annotation store version was created.
|
348
|
+
# @return [Time]
|
349
|
+
#
|
350
|
+
# @!attribute [rw] update_time
|
351
|
+
# The time stamp for when an annotation store version was updated.
|
352
|
+
# @return [Time]
|
353
|
+
#
|
354
|
+
# @!attribute [rw] status_message
|
355
|
+
# The status of an annotation store version.
|
356
|
+
# @return [String]
|
357
|
+
#
|
358
|
+
# @!attribute [rw] version_size_bytes
|
359
|
+
# The size of an annotation store version in Bytes.
|
360
|
+
# @return [Integer]
|
361
|
+
#
|
362
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/AnnotationStoreVersionItem AWS API Documentation
|
363
|
+
#
|
364
|
+
class AnnotationStoreVersionItem < Struct.new(
|
365
|
+
:store_id,
|
366
|
+
:id,
|
367
|
+
:status,
|
368
|
+
:version_arn,
|
369
|
+
:name,
|
370
|
+
:version_name,
|
371
|
+
:description,
|
372
|
+
:creation_time,
|
373
|
+
:update_time,
|
374
|
+
:status_message,
|
375
|
+
:version_size_bytes)
|
376
|
+
SENSITIVE = []
|
377
|
+
include Aws::Structure
|
378
|
+
end
|
379
|
+
|
286
380
|
# @!attribute [rw] ids
|
287
381
|
# The read sets' IDs.
|
288
382
|
# @return [Array<String>]
|
@@ -447,6 +541,11 @@ module Aws::Omics
|
|
447
541
|
# Tags for the store.
|
448
542
|
# @return [Hash<String,String>]
|
449
543
|
#
|
544
|
+
# @!attribute [rw] version_name
|
545
|
+
# The name given to an annotation store version to distinguish it from
|
546
|
+
# other versions.
|
547
|
+
# @return [String]
|
548
|
+
#
|
450
549
|
# @!attribute [rw] sse_config
|
451
550
|
# Server-side encryption (SSE) settings for the store.
|
452
551
|
# @return [Types::SseConfig]
|
@@ -466,6 +565,7 @@ module Aws::Omics
|
|
466
565
|
:name,
|
467
566
|
:description,
|
468
567
|
:tags,
|
568
|
+
:version_name,
|
469
569
|
:sse_config,
|
470
570
|
:store_format,
|
471
571
|
:store_options)
|
@@ -498,6 +598,11 @@ module Aws::Omics
|
|
498
598
|
# The store's name.
|
499
599
|
# @return [String]
|
500
600
|
#
|
601
|
+
# @!attribute [rw] version_name
|
602
|
+
# The name given to an annotation store version to distinguish it from
|
603
|
+
# other versions.
|
604
|
+
# @return [String]
|
605
|
+
#
|
501
606
|
# @!attribute [rw] creation_time
|
502
607
|
# When the store was created.
|
503
608
|
# @return [Time]
|
@@ -511,6 +616,86 @@ module Aws::Omics
|
|
511
616
|
:store_options,
|
512
617
|
:status,
|
513
618
|
:name,
|
619
|
+
:version_name,
|
620
|
+
:creation_time)
|
621
|
+
SENSITIVE = []
|
622
|
+
include Aws::Structure
|
623
|
+
end
|
624
|
+
|
625
|
+
# @!attribute [rw] name
|
626
|
+
# The name of an annotation store version from which versions are
|
627
|
+
# being created.
|
628
|
+
# @return [String]
|
629
|
+
#
|
630
|
+
# @!attribute [rw] version_name
|
631
|
+
# The name given to an annotation store version to distinguish it from
|
632
|
+
# other versions.
|
633
|
+
# @return [String]
|
634
|
+
#
|
635
|
+
# @!attribute [rw] description
|
636
|
+
# The description of an annotation store version.
|
637
|
+
# @return [String]
|
638
|
+
#
|
639
|
+
# @!attribute [rw] version_options
|
640
|
+
# The options for an annotation store version.
|
641
|
+
# @return [Types::VersionOptions]
|
642
|
+
#
|
643
|
+
# @!attribute [rw] tags
|
644
|
+
# Any tags added to annotation store version.
|
645
|
+
# @return [Hash<String,String>]
|
646
|
+
#
|
647
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateAnnotationStoreVersionRequest AWS API Documentation
|
648
|
+
#
|
649
|
+
class CreateAnnotationStoreVersionRequest < Struct.new(
|
650
|
+
:name,
|
651
|
+
:version_name,
|
652
|
+
:description,
|
653
|
+
:version_options,
|
654
|
+
:tags)
|
655
|
+
SENSITIVE = []
|
656
|
+
include Aws::Structure
|
657
|
+
end
|
658
|
+
|
659
|
+
# @!attribute [rw] id
|
660
|
+
# A generated ID for the annotation store
|
661
|
+
# @return [String]
|
662
|
+
#
|
663
|
+
# @!attribute [rw] version_name
|
664
|
+
# The name given to an annotation store version to distinguish it from
|
665
|
+
# other versions.
|
666
|
+
# @return [String]
|
667
|
+
#
|
668
|
+
# @!attribute [rw] store_id
|
669
|
+
# The ID for the annotation store from which new versions are being
|
670
|
+
# created.
|
671
|
+
# @return [String]
|
672
|
+
#
|
673
|
+
# @!attribute [rw] version_options
|
674
|
+
# The options for an annotation store version.
|
675
|
+
# @return [Types::VersionOptions]
|
676
|
+
#
|
677
|
+
# @!attribute [rw] name
|
678
|
+
# The name given to an annotation store version to distinguish it from
|
679
|
+
# other versions.
|
680
|
+
# @return [String]
|
681
|
+
#
|
682
|
+
# @!attribute [rw] status
|
683
|
+
# The status of a annotation store version.
|
684
|
+
# @return [String]
|
685
|
+
#
|
686
|
+
# @!attribute [rw] creation_time
|
687
|
+
# The time stamp for the creation of an annotation store version.
|
688
|
+
# @return [Time]
|
689
|
+
#
|
690
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateAnnotationStoreVersionResponse AWS API Documentation
|
691
|
+
#
|
692
|
+
class CreateAnnotationStoreVersionResponse < Struct.new(
|
693
|
+
:id,
|
694
|
+
:version_name,
|
695
|
+
:store_id,
|
696
|
+
:version_options,
|
697
|
+
:name,
|
698
|
+
:status,
|
514
699
|
:creation_time)
|
515
700
|
SENSITIVE = []
|
516
701
|
include Aws::Structure
|
@@ -858,6 +1043,51 @@ module Aws::Omics
|
|
858
1043
|
include Aws::Structure
|
859
1044
|
end
|
860
1045
|
|
1046
|
+
# @!attribute [rw] resource_arn
|
1047
|
+
# The resource ARN for the analytics store to be shared.
|
1048
|
+
# @return [String]
|
1049
|
+
#
|
1050
|
+
# @!attribute [rw] principal_subscriber
|
1051
|
+
# The principal subscriber is the account being given access to the
|
1052
|
+
# analytics store data through the share offer.
|
1053
|
+
# @return [String]
|
1054
|
+
#
|
1055
|
+
# @!attribute [rw] share_name
|
1056
|
+
# A name given to the share.
|
1057
|
+
# @return [String]
|
1058
|
+
#
|
1059
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateShareRequest AWS API Documentation
|
1060
|
+
#
|
1061
|
+
class CreateShareRequest < Struct.new(
|
1062
|
+
:resource_arn,
|
1063
|
+
:principal_subscriber,
|
1064
|
+
:share_name)
|
1065
|
+
SENSITIVE = []
|
1066
|
+
include Aws::Structure
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
# @!attribute [rw] share_id
|
1070
|
+
# An ID generated for the share.
|
1071
|
+
# @return [String]
|
1072
|
+
#
|
1073
|
+
# @!attribute [rw] status
|
1074
|
+
# The status of a share.
|
1075
|
+
# @return [String]
|
1076
|
+
#
|
1077
|
+
# @!attribute [rw] share_name
|
1078
|
+
# A name given to the share.
|
1079
|
+
# @return [String]
|
1080
|
+
#
|
1081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateShareResponse AWS API Documentation
|
1082
|
+
#
|
1083
|
+
class CreateShareResponse < Struct.new(
|
1084
|
+
:share_id,
|
1085
|
+
:status,
|
1086
|
+
:share_name)
|
1087
|
+
SENSITIVE = []
|
1088
|
+
include Aws::Structure
|
1089
|
+
end
|
1090
|
+
|
861
1091
|
# @!attribute [rw] reference
|
862
1092
|
# The genome reference for the store's variants.
|
863
1093
|
# @return [Types::ReferenceItem]
|
@@ -1044,6 +1274,43 @@ module Aws::Omics
|
|
1044
1274
|
include Aws::Structure
|
1045
1275
|
end
|
1046
1276
|
|
1277
|
+
# @!attribute [rw] name
|
1278
|
+
# The name of the annotation store from which versions are being
|
1279
|
+
# deleted.
|
1280
|
+
# @return [String]
|
1281
|
+
#
|
1282
|
+
# @!attribute [rw] versions
|
1283
|
+
# The versions of an annotation store to be deleted.
|
1284
|
+
# @return [Array<String>]
|
1285
|
+
#
|
1286
|
+
# @!attribute [rw] force
|
1287
|
+
# Forces the deletion of an annotation store version when imports are
|
1288
|
+
# in-progress..
|
1289
|
+
# @return [Boolean]
|
1290
|
+
#
|
1291
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteAnnotationStoreVersionsRequest AWS API Documentation
|
1292
|
+
#
|
1293
|
+
class DeleteAnnotationStoreVersionsRequest < Struct.new(
|
1294
|
+
:name,
|
1295
|
+
:versions,
|
1296
|
+
:force)
|
1297
|
+
SENSITIVE = []
|
1298
|
+
include Aws::Structure
|
1299
|
+
end
|
1300
|
+
|
1301
|
+
# @!attribute [rw] errors
|
1302
|
+
# Any errors that occur when attempting to delete an annotation store
|
1303
|
+
# version.
|
1304
|
+
# @return [Array<Types::VersionDeleteError>]
|
1305
|
+
#
|
1306
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteAnnotationStoreVersionsResponse AWS API Documentation
|
1307
|
+
#
|
1308
|
+
class DeleteAnnotationStoreVersionsResponse < Struct.new(
|
1309
|
+
:errors)
|
1310
|
+
SENSITIVE = []
|
1311
|
+
include Aws::Structure
|
1312
|
+
end
|
1313
|
+
|
1047
1314
|
# @!attribute [rw] id
|
1048
1315
|
# The reference's ID.
|
1049
1316
|
# @return [String]
|
@@ -1121,6 +1388,30 @@ module Aws::Omics
|
|
1121
1388
|
#
|
1122
1389
|
class DeleteSequenceStoreResponse < Aws::EmptyStructure; end
|
1123
1390
|
|
1391
|
+
# @!attribute [rw] share_id
|
1392
|
+
# The ID for the share request to be deleted.
|
1393
|
+
# @return [String]
|
1394
|
+
#
|
1395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteShareRequest AWS API Documentation
|
1396
|
+
#
|
1397
|
+
class DeleteShareRequest < Struct.new(
|
1398
|
+
:share_id)
|
1399
|
+
SENSITIVE = []
|
1400
|
+
include Aws::Structure
|
1401
|
+
end
|
1402
|
+
|
1403
|
+
# @!attribute [rw] status
|
1404
|
+
# The status of the share being deleted.
|
1405
|
+
# @return [String]
|
1406
|
+
#
|
1407
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteShareResponse AWS API Documentation
|
1408
|
+
#
|
1409
|
+
class DeleteShareResponse < Struct.new(
|
1410
|
+
:status)
|
1411
|
+
SENSITIVE = []
|
1412
|
+
include Aws::Structure
|
1413
|
+
end
|
1414
|
+
|
1124
1415
|
# @!attribute [rw] name
|
1125
1416
|
# The store's name.
|
1126
1417
|
# @return [String]
|
@@ -1287,6 +1578,26 @@ module Aws::Omics
|
|
1287
1578
|
include Aws::Structure
|
1288
1579
|
end
|
1289
1580
|
|
1581
|
+
# Use filters to focus the returned annotation store versions on a
|
1582
|
+
# specific parameter, such as the status of the annotation store.
|
1583
|
+
#
|
1584
|
+
# @!attribute [rw] resource_arns
|
1585
|
+
# The Amazon Resource Number (Arn) for an analytics store.
|
1586
|
+
# @return [Array<String>]
|
1587
|
+
#
|
1588
|
+
# @!attribute [rw] status
|
1589
|
+
# The status of an annotation store version.
|
1590
|
+
# @return [Array<String>]
|
1591
|
+
#
|
1592
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/Filter AWS API Documentation
|
1593
|
+
#
|
1594
|
+
class Filter < Struct.new(
|
1595
|
+
:resource_arns,
|
1596
|
+
:status)
|
1597
|
+
SENSITIVE = []
|
1598
|
+
include Aws::Structure
|
1599
|
+
end
|
1600
|
+
|
1290
1601
|
# Formatting options for a file.
|
1291
1602
|
#
|
1292
1603
|
# @note FormatOptions is a union - when making an API calls you must set exactly one of the members.
|
@@ -1336,6 +1647,10 @@ module Aws::Omics
|
|
1336
1647
|
# The job's destination annotation store.
|
1337
1648
|
# @return [String]
|
1338
1649
|
#
|
1650
|
+
# @!attribute [rw] version_name
|
1651
|
+
# The name of the annotation store version.
|
1652
|
+
# @return [String]
|
1653
|
+
#
|
1339
1654
|
# @!attribute [rw] role_arn
|
1340
1655
|
# The job's service role ARN.
|
1341
1656
|
# @return [String]
|
@@ -1381,6 +1696,7 @@ module Aws::Omics
|
|
1381
1696
|
class GetAnnotationImportResponse < Struct.new(
|
1382
1697
|
:id,
|
1383
1698
|
:destination_name,
|
1699
|
+
:version_name,
|
1384
1700
|
:role_arn,
|
1385
1701
|
:status,
|
1386
1702
|
:status_message,
|
@@ -1463,6 +1779,11 @@ module Aws::Omics
|
|
1463
1779
|
# The store's size in bytes.
|
1464
1780
|
# @return [Integer]
|
1465
1781
|
#
|
1782
|
+
# @!attribute [rw] num_versions
|
1783
|
+
# An integer indicating how many versions of an annotation store
|
1784
|
+
# exist.
|
1785
|
+
# @return [Integer]
|
1786
|
+
#
|
1466
1787
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetAnnotationStoreResponse AWS API Documentation
|
1467
1788
|
#
|
1468
1789
|
class GetAnnotationStoreResponse < Struct.new(
|
@@ -1479,7 +1800,100 @@ module Aws::Omics
|
|
1479
1800
|
:store_options,
|
1480
1801
|
:store_format,
|
1481
1802
|
:status_message,
|
1482
|
-
:store_size_bytes
|
1803
|
+
:store_size_bytes,
|
1804
|
+
:num_versions)
|
1805
|
+
SENSITIVE = []
|
1806
|
+
include Aws::Structure
|
1807
|
+
end
|
1808
|
+
|
1809
|
+
# @!attribute [rw] name
|
1810
|
+
# The name given to an annotation store version to distinguish it from
|
1811
|
+
# others.
|
1812
|
+
# @return [String]
|
1813
|
+
#
|
1814
|
+
# @!attribute [rw] version_name
|
1815
|
+
# The name given to an annotation store version to distinguish it from
|
1816
|
+
# others.
|
1817
|
+
# @return [String]
|
1818
|
+
#
|
1819
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetAnnotationStoreVersionRequest AWS API Documentation
|
1820
|
+
#
|
1821
|
+
class GetAnnotationStoreVersionRequest < Struct.new(
|
1822
|
+
:name,
|
1823
|
+
:version_name)
|
1824
|
+
SENSITIVE = []
|
1825
|
+
include Aws::Structure
|
1826
|
+
end
|
1827
|
+
|
1828
|
+
# @!attribute [rw] store_id
|
1829
|
+
# The store ID for annotation store version.
|
1830
|
+
# @return [String]
|
1831
|
+
#
|
1832
|
+
# @!attribute [rw] id
|
1833
|
+
# The annotation store version ID.
|
1834
|
+
# @return [String]
|
1835
|
+
#
|
1836
|
+
# @!attribute [rw] status
|
1837
|
+
# The status of an annotation store version.
|
1838
|
+
# @return [String]
|
1839
|
+
#
|
1840
|
+
# @!attribute [rw] version_arn
|
1841
|
+
# The Arn for the annotation store.
|
1842
|
+
# @return [String]
|
1843
|
+
#
|
1844
|
+
# @!attribute [rw] name
|
1845
|
+
# The name of the annotation store.
|
1846
|
+
# @return [String]
|
1847
|
+
#
|
1848
|
+
# @!attribute [rw] version_name
|
1849
|
+
# The name given to an annotation store version to distinguish it from
|
1850
|
+
# others.
|
1851
|
+
# @return [String]
|
1852
|
+
#
|
1853
|
+
# @!attribute [rw] description
|
1854
|
+
# The description for an annotation store version.
|
1855
|
+
# @return [String]
|
1856
|
+
#
|
1857
|
+
# @!attribute [rw] creation_time
|
1858
|
+
# The time stamp for when an annotation store version was created.
|
1859
|
+
# @return [Time]
|
1860
|
+
#
|
1861
|
+
# @!attribute [rw] update_time
|
1862
|
+
# The time stamp for when an annotation store version was updated.
|
1863
|
+
# @return [Time]
|
1864
|
+
#
|
1865
|
+
# @!attribute [rw] tags
|
1866
|
+
# Any tags associated with an annotation store version.
|
1867
|
+
# @return [Hash<String,String>]
|
1868
|
+
#
|
1869
|
+
# @!attribute [rw] version_options
|
1870
|
+
# The options for an annotation store version.
|
1871
|
+
# @return [Types::VersionOptions]
|
1872
|
+
#
|
1873
|
+
# @!attribute [rw] status_message
|
1874
|
+
# The status of an annotation store version.
|
1875
|
+
# @return [String]
|
1876
|
+
#
|
1877
|
+
# @!attribute [rw] version_size_bytes
|
1878
|
+
# The size of the annotation store version in Bytes.
|
1879
|
+
# @return [Integer]
|
1880
|
+
#
|
1881
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetAnnotationStoreVersionResponse AWS API Documentation
|
1882
|
+
#
|
1883
|
+
class GetAnnotationStoreVersionResponse < Struct.new(
|
1884
|
+
:store_id,
|
1885
|
+
:id,
|
1886
|
+
:status,
|
1887
|
+
:version_arn,
|
1888
|
+
:name,
|
1889
|
+
:version_name,
|
1890
|
+
:description,
|
1891
|
+
:creation_time,
|
1892
|
+
:update_time,
|
1893
|
+
:tags,
|
1894
|
+
:version_options,
|
1895
|
+
:status_message,
|
1896
|
+
:version_size_bytes)
|
1483
1897
|
SENSITIVE = []
|
1484
1898
|
include Aws::Structure
|
1485
1899
|
end
|
@@ -2218,6 +2632,10 @@ module Aws::Omics
|
|
2218
2632
|
# The computational accelerator used to run the workflow.
|
2219
2633
|
# @return [String]
|
2220
2634
|
#
|
2635
|
+
# @!attribute [rw] retention_mode
|
2636
|
+
# The run's retention mode.
|
2637
|
+
# @return [String]
|
2638
|
+
#
|
2221
2639
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunResponse AWS API Documentation
|
2222
2640
|
#
|
2223
2641
|
class GetRunResponse < Struct.new(
|
@@ -2244,7 +2662,8 @@ module Aws::Omics
|
|
2244
2662
|
:stop_time,
|
2245
2663
|
:status_message,
|
2246
2664
|
:tags,
|
2247
|
-
:accelerators
|
2665
|
+
:accelerators,
|
2666
|
+
:retention_mode)
|
2248
2667
|
SENSITIVE = []
|
2249
2668
|
include Aws::Structure
|
2250
2669
|
end
|
@@ -2388,6 +2807,31 @@ module Aws::Omics
|
|
2388
2807
|
include Aws::Structure
|
2389
2808
|
end
|
2390
2809
|
|
2810
|
+
# @!attribute [rw] share_id
|
2811
|
+
# The generated ID for a share.
|
2812
|
+
# @return [String]
|
2813
|
+
#
|
2814
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetShareRequest AWS API Documentation
|
2815
|
+
#
|
2816
|
+
class GetShareRequest < Struct.new(
|
2817
|
+
:share_id)
|
2818
|
+
SENSITIVE = []
|
2819
|
+
include Aws::Structure
|
2820
|
+
end
|
2821
|
+
|
2822
|
+
# @!attribute [rw] share
|
2823
|
+
# An analytic store share details object. contains status,
|
2824
|
+
# resourceArn, ownerId, etc.
|
2825
|
+
# @return [Types::ShareDetails]
|
2826
|
+
#
|
2827
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetShareResponse AWS API Documentation
|
2828
|
+
#
|
2829
|
+
class GetShareResponse < Struct.new(
|
2830
|
+
:share)
|
2831
|
+
SENSITIVE = []
|
2832
|
+
include Aws::Structure
|
2833
|
+
end
|
2834
|
+
|
2391
2835
|
# @!attribute [rw] job_id
|
2392
2836
|
# The job's ID.
|
2393
2837
|
# @return [String]
|
@@ -2962,6 +3406,68 @@ module Aws::Omics
|
|
2962
3406
|
include Aws::Structure
|
2963
3407
|
end
|
2964
3408
|
|
3409
|
+
# Use filters to focus the returned annotation store versions on a
|
3410
|
+
# specific parameter, such as the status of the annotation store.
|
3411
|
+
#
|
3412
|
+
# @!attribute [rw] status
|
3413
|
+
# The status of an annotation store version.
|
3414
|
+
# @return [String]
|
3415
|
+
#
|
3416
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListAnnotationStoreVersionsFilter AWS API Documentation
|
3417
|
+
#
|
3418
|
+
class ListAnnotationStoreVersionsFilter < Struct.new(
|
3419
|
+
:status)
|
3420
|
+
SENSITIVE = []
|
3421
|
+
include Aws::Structure
|
3422
|
+
end
|
3423
|
+
|
3424
|
+
# @!attribute [rw] name
|
3425
|
+
# The name of an annotation store.
|
3426
|
+
# @return [String]
|
3427
|
+
#
|
3428
|
+
# @!attribute [rw] max_results
|
3429
|
+
# The maximum number of annotation store versions to return in one
|
3430
|
+
# page of results.
|
3431
|
+
# @return [Integer]
|
3432
|
+
#
|
3433
|
+
# @!attribute [rw] next_token
|
3434
|
+
# Specifies the pagination token from a previous request to retrieve
|
3435
|
+
# the next page of results.
|
3436
|
+
# @return [String]
|
3437
|
+
#
|
3438
|
+
# @!attribute [rw] filter
|
3439
|
+
# A filter to apply to the list of annotation store versions.
|
3440
|
+
# @return [Types::ListAnnotationStoreVersionsFilter]
|
3441
|
+
#
|
3442
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListAnnotationStoreVersionsRequest AWS API Documentation
|
3443
|
+
#
|
3444
|
+
class ListAnnotationStoreVersionsRequest < Struct.new(
|
3445
|
+
:name,
|
3446
|
+
:max_results,
|
3447
|
+
:next_token,
|
3448
|
+
:filter)
|
3449
|
+
SENSITIVE = []
|
3450
|
+
include Aws::Structure
|
3451
|
+
end
|
3452
|
+
|
3453
|
+
# @!attribute [rw] annotation_store_versions
|
3454
|
+
# Lists all versions of an annotation store.
|
3455
|
+
# @return [Array<Types::AnnotationStoreVersionItem>]
|
3456
|
+
#
|
3457
|
+
# @!attribute [rw] next_token
|
3458
|
+
# Specifies the pagination token from a previous request to retrieve
|
3459
|
+
# the next page of results.
|
3460
|
+
# @return [String]
|
3461
|
+
#
|
3462
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListAnnotationStoreVersionsResponse AWS API Documentation
|
3463
|
+
#
|
3464
|
+
class ListAnnotationStoreVersionsResponse < Struct.new(
|
3465
|
+
:annotation_store_versions,
|
3466
|
+
:next_token)
|
3467
|
+
SENSITIVE = []
|
3468
|
+
include Aws::Structure
|
3469
|
+
end
|
3470
|
+
|
2965
3471
|
# A filter for annotation stores.
|
2966
3472
|
#
|
2967
3473
|
# @!attribute [rw] status
|
@@ -3608,6 +4114,53 @@ module Aws::Omics
|
|
3608
4114
|
include Aws::Structure
|
3609
4115
|
end
|
3610
4116
|
|
4117
|
+
# @!attribute [rw] resource_owner
|
4118
|
+
# The account that owns the analytics store shared.
|
4119
|
+
# @return [String]
|
4120
|
+
#
|
4121
|
+
# @!attribute [rw] filter
|
4122
|
+
# Attributes used to filter for a specific subset of shares.
|
4123
|
+
# @return [Types::Filter]
|
4124
|
+
#
|
4125
|
+
# @!attribute [rw] next_token
|
4126
|
+
# Next token returned in the response of a previous
|
4127
|
+
# ListReadSetUploadPartsRequest call. Used to get the next page of
|
4128
|
+
# results.
|
4129
|
+
# @return [String]
|
4130
|
+
#
|
4131
|
+
# @!attribute [rw] max_results
|
4132
|
+
# The maximum number of shares to return in one page of results.
|
4133
|
+
# @return [Integer]
|
4134
|
+
#
|
4135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListSharesRequest AWS API Documentation
|
4136
|
+
#
|
4137
|
+
class ListSharesRequest < Struct.new(
|
4138
|
+
:resource_owner,
|
4139
|
+
:filter,
|
4140
|
+
:next_token,
|
4141
|
+
:max_results)
|
4142
|
+
SENSITIVE = []
|
4143
|
+
include Aws::Structure
|
4144
|
+
end
|
4145
|
+
|
4146
|
+
# @!attribute [rw] shares
|
4147
|
+
# The shares available and their meta details.
|
4148
|
+
# @return [Array<Types::ShareDetails>]
|
4149
|
+
#
|
4150
|
+
# @!attribute [rw] next_token
|
4151
|
+
# Next token returned in the response of a previous ListSharesResponse
|
4152
|
+
# call. Used to get the next page of results.
|
4153
|
+
# @return [String]
|
4154
|
+
#
|
4155
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListSharesResponse AWS API Documentation
|
4156
|
+
#
|
4157
|
+
class ListSharesResponse < Struct.new(
|
4158
|
+
:shares,
|
4159
|
+
:next_token)
|
4160
|
+
SENSITIVE = []
|
4161
|
+
include Aws::Structure
|
4162
|
+
end
|
4163
|
+
|
3611
4164
|
# @!attribute [rw] resource_arn
|
3612
4165
|
# The resource's ARN.
|
3613
4166
|
# @return [String]
|
@@ -4623,6 +5176,63 @@ module Aws::Omics
|
|
4623
5176
|
include Aws::Structure
|
4624
5177
|
end
|
4625
5178
|
|
5179
|
+
# The details of a share.
|
5180
|
+
#
|
5181
|
+
# @!attribute [rw] share_id
|
5182
|
+
# The ID for a share offer for an analytics store .
|
5183
|
+
# @return [String]
|
5184
|
+
#
|
5185
|
+
# @!attribute [rw] resource_arn
|
5186
|
+
# The resource Arn of the analytics store being shared.
|
5187
|
+
# @return [String]
|
5188
|
+
#
|
5189
|
+
# @!attribute [rw] principal_subscriber
|
5190
|
+
# The principal subscriber is the account the analytics store data is
|
5191
|
+
# being shared with.
|
5192
|
+
# @return [String]
|
5193
|
+
#
|
5194
|
+
# @!attribute [rw] owner_id
|
5195
|
+
# The account ID for the data owner. The owner creates the share
|
5196
|
+
# offer.
|
5197
|
+
# @return [String]
|
5198
|
+
#
|
5199
|
+
# @!attribute [rw] status
|
5200
|
+
# The status of a share.
|
5201
|
+
# @return [String]
|
5202
|
+
#
|
5203
|
+
# @!attribute [rw] status_message
|
5204
|
+
# The status message for a share. It provides more details on the
|
5205
|
+
# status of the share.
|
5206
|
+
# @return [String]
|
5207
|
+
#
|
5208
|
+
# @!attribute [rw] share_name
|
5209
|
+
# The name of the share.
|
5210
|
+
# @return [String]
|
5211
|
+
#
|
5212
|
+
# @!attribute [rw] creation_time
|
5213
|
+
# The timestamp for when the share was created.
|
5214
|
+
# @return [Time]
|
5215
|
+
#
|
5216
|
+
# @!attribute [rw] update_time
|
5217
|
+
# The timestamp of the share update.
|
5218
|
+
# @return [Time]
|
5219
|
+
#
|
5220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ShareDetails AWS API Documentation
|
5221
|
+
#
|
5222
|
+
class ShareDetails < Struct.new(
|
5223
|
+
:share_id,
|
5224
|
+
:resource_arn,
|
5225
|
+
:principal_subscriber,
|
5226
|
+
:owner_id,
|
5227
|
+
:status,
|
5228
|
+
:status_message,
|
5229
|
+
:share_name,
|
5230
|
+
:creation_time,
|
5231
|
+
:update_time)
|
5232
|
+
SENSITIVE = []
|
5233
|
+
include Aws::Structure
|
5234
|
+
end
|
5235
|
+
|
4626
5236
|
# Source files for a sequence.
|
4627
5237
|
#
|
4628
5238
|
# @!attribute [rw] source1
|
@@ -4673,6 +5283,10 @@ module Aws::Omics
|
|
4673
5283
|
# Items to import.
|
4674
5284
|
# @return [Array<Types::AnnotationImportItemSource>]
|
4675
5285
|
#
|
5286
|
+
# @!attribute [rw] version_name
|
5287
|
+
# The name of the annotation store version.
|
5288
|
+
# @return [String]
|
5289
|
+
#
|
4676
5290
|
# @!attribute [rw] format_options
|
4677
5291
|
# Formatting options for the annotation file.
|
4678
5292
|
# @return [Types::FormatOptions]
|
@@ -4691,6 +5305,7 @@ module Aws::Omics
|
|
4691
5305
|
:destination_name,
|
4692
5306
|
:role_arn,
|
4693
5307
|
:items,
|
5308
|
+
:version_name,
|
4694
5309
|
:format_options,
|
4695
5310
|
:run_left_normalization,
|
4696
5311
|
:annotation_fields)
|
@@ -5047,11 +5662,11 @@ module Aws::Omics
|
|
5047
5662
|
# @return [String]
|
5048
5663
|
#
|
5049
5664
|
# @!attribute [rw] workflow_type
|
5050
|
-
# The run's
|
5665
|
+
# The run's workflow type.
|
5051
5666
|
# @return [String]
|
5052
5667
|
#
|
5053
5668
|
# @!attribute [rw] run_id
|
5054
|
-
# The run
|
5669
|
+
# The ID of a run to duplicate.
|
5055
5670
|
# @return [String]
|
5056
5671
|
#
|
5057
5672
|
# @!attribute [rw] role_arn
|
@@ -5098,6 +5713,10 @@ module Aws::Omics
|
|
5098
5713
|
# not need to pass this option.
|
5099
5714
|
# @return [String]
|
5100
5715
|
#
|
5716
|
+
# @!attribute [rw] retention_mode
|
5717
|
+
# The retention mode for the run.
|
5718
|
+
# @return [String]
|
5719
|
+
#
|
5101
5720
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRunRequest AWS API Documentation
|
5102
5721
|
#
|
5103
5722
|
class StartRunRequest < Struct.new(
|
@@ -5113,7 +5732,8 @@ module Aws::Omics
|
|
5113
5732
|
:output_uri,
|
5114
5733
|
:log_level,
|
5115
5734
|
:tags,
|
5116
|
-
:request_id
|
5735
|
+
:request_id,
|
5736
|
+
:retention_mode)
|
5117
5737
|
SENSITIVE = []
|
5118
5738
|
include Aws::Structure
|
5119
5739
|
end
|
@@ -5344,6 +5964,30 @@ module Aws::Omics
|
|
5344
5964
|
include Aws::Structure
|
5345
5965
|
end
|
5346
5966
|
|
5967
|
+
# The options for a TSV file.
|
5968
|
+
#
|
5969
|
+
# @!attribute [rw] annotation_type
|
5970
|
+
# The store version's annotation type.
|
5971
|
+
# @return [String]
|
5972
|
+
#
|
5973
|
+
# @!attribute [rw] format_to_header
|
5974
|
+
# The annotation store version's header key to column name mapping.
|
5975
|
+
# @return [Hash<String,String>]
|
5976
|
+
#
|
5977
|
+
# @!attribute [rw] schema
|
5978
|
+
# The TSV schema for an annotation store version.
|
5979
|
+
# @return [Array<Hash<String,String>>]
|
5980
|
+
#
|
5981
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/TsvVersionOptions AWS API Documentation
|
5982
|
+
#
|
5983
|
+
class TsvVersionOptions < Struct.new(
|
5984
|
+
:annotation_type,
|
5985
|
+
:format_to_header,
|
5986
|
+
:schema)
|
5987
|
+
SENSITIVE = []
|
5988
|
+
include Aws::Structure
|
5989
|
+
end
|
5990
|
+
|
5347
5991
|
# @!attribute [rw] resource_arn
|
5348
5992
|
# The resource's ARN.
|
5349
5993
|
# @return [String]
|
@@ -5434,6 +6078,75 @@ module Aws::Omics
|
|
5434
6078
|
include Aws::Structure
|
5435
6079
|
end
|
5436
6080
|
|
6081
|
+
# @!attribute [rw] name
|
6082
|
+
# The name of an annotation store.
|
6083
|
+
# @return [String]
|
6084
|
+
#
|
6085
|
+
# @!attribute [rw] version_name
|
6086
|
+
# The name of an annotation store version.
|
6087
|
+
# @return [String]
|
6088
|
+
#
|
6089
|
+
# @!attribute [rw] description
|
6090
|
+
# The description of an annotation store.
|
6091
|
+
# @return [String]
|
6092
|
+
#
|
6093
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/UpdateAnnotationStoreVersionRequest AWS API Documentation
|
6094
|
+
#
|
6095
|
+
class UpdateAnnotationStoreVersionRequest < Struct.new(
|
6096
|
+
:name,
|
6097
|
+
:version_name,
|
6098
|
+
:description)
|
6099
|
+
SENSITIVE = []
|
6100
|
+
include Aws::Structure
|
6101
|
+
end
|
6102
|
+
|
6103
|
+
# @!attribute [rw] store_id
|
6104
|
+
# The annotation store ID.
|
6105
|
+
# @return [String]
|
6106
|
+
#
|
6107
|
+
# @!attribute [rw] id
|
6108
|
+
# The annotation store version ID.
|
6109
|
+
# @return [String]
|
6110
|
+
#
|
6111
|
+
# @!attribute [rw] status
|
6112
|
+
# The status of an annotation store version.
|
6113
|
+
# @return [String]
|
6114
|
+
#
|
6115
|
+
# @!attribute [rw] name
|
6116
|
+
# The name of an annotation store.
|
6117
|
+
# @return [String]
|
6118
|
+
#
|
6119
|
+
# @!attribute [rw] version_name
|
6120
|
+
# The name of an annotation store version.
|
6121
|
+
# @return [String]
|
6122
|
+
#
|
6123
|
+
# @!attribute [rw] description
|
6124
|
+
# The description of an annotation store version.
|
6125
|
+
# @return [String]
|
6126
|
+
#
|
6127
|
+
# @!attribute [rw] creation_time
|
6128
|
+
# The time stamp for when an annotation store version was created.
|
6129
|
+
# @return [Time]
|
6130
|
+
#
|
6131
|
+
# @!attribute [rw] update_time
|
6132
|
+
# The time stamp for when an annotation store version was updated.
|
6133
|
+
# @return [Time]
|
6134
|
+
#
|
6135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/UpdateAnnotationStoreVersionResponse AWS API Documentation
|
6136
|
+
#
|
6137
|
+
class UpdateAnnotationStoreVersionResponse < Struct.new(
|
6138
|
+
:store_id,
|
6139
|
+
:id,
|
6140
|
+
:status,
|
6141
|
+
:name,
|
6142
|
+
:version_name,
|
6143
|
+
:description,
|
6144
|
+
:creation_time,
|
6145
|
+
:update_time)
|
6146
|
+
SENSITIVE = []
|
6147
|
+
include Aws::Structure
|
6148
|
+
end
|
6149
|
+
|
5437
6150
|
# @!attribute [rw] id
|
5438
6151
|
# The group's ID.
|
5439
6152
|
# @return [String]
|
@@ -5786,6 +6499,48 @@ module Aws::Omics
|
|
5786
6499
|
include Aws::Structure
|
5787
6500
|
end
|
5788
6501
|
|
6502
|
+
# The error preventing deletion of the annotation store version.
|
6503
|
+
#
|
6504
|
+
# @!attribute [rw] version_name
|
6505
|
+
# The name given to an annotation store version.
|
6506
|
+
# @return [String]
|
6507
|
+
#
|
6508
|
+
# @!attribute [rw] message
|
6509
|
+
# The message explaining the error in annotation store deletion.
|
6510
|
+
# @return [String]
|
6511
|
+
#
|
6512
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/VersionDeleteError AWS API Documentation
|
6513
|
+
#
|
6514
|
+
class VersionDeleteError < Struct.new(
|
6515
|
+
:version_name,
|
6516
|
+
:message)
|
6517
|
+
SENSITIVE = []
|
6518
|
+
include Aws::Structure
|
6519
|
+
end
|
6520
|
+
|
6521
|
+
# The options for an annotation store version.
|
6522
|
+
#
|
6523
|
+
# @note VersionOptions is a union - when making an API calls you must set exactly one of the members.
|
6524
|
+
#
|
6525
|
+
# @note VersionOptions is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of VersionOptions corresponding to the set member.
|
6526
|
+
#
|
6527
|
+
# @!attribute [rw] tsv_version_options
|
6528
|
+
# File settings for a version of a TSV store.
|
6529
|
+
# @return [Types::TsvVersionOptions]
|
6530
|
+
#
|
6531
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/VersionOptions AWS API Documentation
|
6532
|
+
#
|
6533
|
+
class VersionOptions < Struct.new(
|
6534
|
+
:tsv_version_options,
|
6535
|
+
:unknown)
|
6536
|
+
SENSITIVE = []
|
6537
|
+
include Aws::Structure
|
6538
|
+
include Aws::Structure::Union
|
6539
|
+
|
6540
|
+
class TsvVersionOptions < VersionOptions; end
|
6541
|
+
class Unknown < VersionOptions; end
|
6542
|
+
end
|
6543
|
+
|
5789
6544
|
# A workflow.
|
5790
6545
|
#
|
5791
6546
|
# @!attribute [rw] arn
|