aws-sdk-omics 1.12.0 → 1.13.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 +533 -24
- data/lib/aws-sdk-omics/client_api.rb +422 -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 +746 -1
- 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
|
@@ -2388,6 +2802,31 @@ module Aws::Omics
|
|
2388
2802
|
include Aws::Structure
|
2389
2803
|
end
|
2390
2804
|
|
2805
|
+
# @!attribute [rw] share_id
|
2806
|
+
# The generated ID for a share.
|
2807
|
+
# @return [String]
|
2808
|
+
#
|
2809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetShareRequest AWS API Documentation
|
2810
|
+
#
|
2811
|
+
class GetShareRequest < Struct.new(
|
2812
|
+
:share_id)
|
2813
|
+
SENSITIVE = []
|
2814
|
+
include Aws::Structure
|
2815
|
+
end
|
2816
|
+
|
2817
|
+
# @!attribute [rw] share
|
2818
|
+
# An analytic store share details object. contains status,
|
2819
|
+
# resourceArn, ownerId, etc.
|
2820
|
+
# @return [Types::ShareDetails]
|
2821
|
+
#
|
2822
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetShareResponse AWS API Documentation
|
2823
|
+
#
|
2824
|
+
class GetShareResponse < Struct.new(
|
2825
|
+
:share)
|
2826
|
+
SENSITIVE = []
|
2827
|
+
include Aws::Structure
|
2828
|
+
end
|
2829
|
+
|
2391
2830
|
# @!attribute [rw] job_id
|
2392
2831
|
# The job's ID.
|
2393
2832
|
# @return [String]
|
@@ -2962,6 +3401,68 @@ module Aws::Omics
|
|
2962
3401
|
include Aws::Structure
|
2963
3402
|
end
|
2964
3403
|
|
3404
|
+
# Use filters to focus the returned annotation store versions on a
|
3405
|
+
# specific parameter, such as the status of the annotation store.
|
3406
|
+
#
|
3407
|
+
# @!attribute [rw] status
|
3408
|
+
# The status of an annotation store version.
|
3409
|
+
# @return [String]
|
3410
|
+
#
|
3411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListAnnotationStoreVersionsFilter AWS API Documentation
|
3412
|
+
#
|
3413
|
+
class ListAnnotationStoreVersionsFilter < Struct.new(
|
3414
|
+
:status)
|
3415
|
+
SENSITIVE = []
|
3416
|
+
include Aws::Structure
|
3417
|
+
end
|
3418
|
+
|
3419
|
+
# @!attribute [rw] name
|
3420
|
+
# The name of an annotation store.
|
3421
|
+
# @return [String]
|
3422
|
+
#
|
3423
|
+
# @!attribute [rw] max_results
|
3424
|
+
# The maximum number of annotation store versions to return in one
|
3425
|
+
# page of results.
|
3426
|
+
# @return [Integer]
|
3427
|
+
#
|
3428
|
+
# @!attribute [rw] next_token
|
3429
|
+
# Specifies the pagination token from a previous request to retrieve
|
3430
|
+
# the next page of results.
|
3431
|
+
# @return [String]
|
3432
|
+
#
|
3433
|
+
# @!attribute [rw] filter
|
3434
|
+
# A filter to apply to the list of annotation store versions.
|
3435
|
+
# @return [Types::ListAnnotationStoreVersionsFilter]
|
3436
|
+
#
|
3437
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListAnnotationStoreVersionsRequest AWS API Documentation
|
3438
|
+
#
|
3439
|
+
class ListAnnotationStoreVersionsRequest < Struct.new(
|
3440
|
+
:name,
|
3441
|
+
:max_results,
|
3442
|
+
:next_token,
|
3443
|
+
:filter)
|
3444
|
+
SENSITIVE = []
|
3445
|
+
include Aws::Structure
|
3446
|
+
end
|
3447
|
+
|
3448
|
+
# @!attribute [rw] annotation_store_versions
|
3449
|
+
# Lists all versions of an annotation store.
|
3450
|
+
# @return [Array<Types::AnnotationStoreVersionItem>]
|
3451
|
+
#
|
3452
|
+
# @!attribute [rw] next_token
|
3453
|
+
# Specifies the pagination token from a previous request to retrieve
|
3454
|
+
# the next page of results.
|
3455
|
+
# @return [String]
|
3456
|
+
#
|
3457
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListAnnotationStoreVersionsResponse AWS API Documentation
|
3458
|
+
#
|
3459
|
+
class ListAnnotationStoreVersionsResponse < Struct.new(
|
3460
|
+
:annotation_store_versions,
|
3461
|
+
:next_token)
|
3462
|
+
SENSITIVE = []
|
3463
|
+
include Aws::Structure
|
3464
|
+
end
|
3465
|
+
|
2965
3466
|
# A filter for annotation stores.
|
2966
3467
|
#
|
2967
3468
|
# @!attribute [rw] status
|
@@ -3608,6 +4109,53 @@ module Aws::Omics
|
|
3608
4109
|
include Aws::Structure
|
3609
4110
|
end
|
3610
4111
|
|
4112
|
+
# @!attribute [rw] resource_owner
|
4113
|
+
# The account that owns the analytics store shared.
|
4114
|
+
# @return [String]
|
4115
|
+
#
|
4116
|
+
# @!attribute [rw] filter
|
4117
|
+
# Attributes used to filter for a specific subset of shares.
|
4118
|
+
# @return [Types::Filter]
|
4119
|
+
#
|
4120
|
+
# @!attribute [rw] next_token
|
4121
|
+
# Next token returned in the response of a previous
|
4122
|
+
# ListReadSetUploadPartsRequest call. Used to get the next page of
|
4123
|
+
# results.
|
4124
|
+
# @return [String]
|
4125
|
+
#
|
4126
|
+
# @!attribute [rw] max_results
|
4127
|
+
# The maximum number of shares to return in one page of results.
|
4128
|
+
# @return [Integer]
|
4129
|
+
#
|
4130
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListSharesRequest AWS API Documentation
|
4131
|
+
#
|
4132
|
+
class ListSharesRequest < Struct.new(
|
4133
|
+
:resource_owner,
|
4134
|
+
:filter,
|
4135
|
+
:next_token,
|
4136
|
+
:max_results)
|
4137
|
+
SENSITIVE = []
|
4138
|
+
include Aws::Structure
|
4139
|
+
end
|
4140
|
+
|
4141
|
+
# @!attribute [rw] shares
|
4142
|
+
# The shares available and their meta details.
|
4143
|
+
# @return [Array<Types::ShareDetails>]
|
4144
|
+
#
|
4145
|
+
# @!attribute [rw] next_token
|
4146
|
+
# Next token returned in the response of a previous ListSharesResponse
|
4147
|
+
# call. Used to get the next page of results.
|
4148
|
+
# @return [String]
|
4149
|
+
#
|
4150
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListSharesResponse AWS API Documentation
|
4151
|
+
#
|
4152
|
+
class ListSharesResponse < Struct.new(
|
4153
|
+
:shares,
|
4154
|
+
:next_token)
|
4155
|
+
SENSITIVE = []
|
4156
|
+
include Aws::Structure
|
4157
|
+
end
|
4158
|
+
|
3611
4159
|
# @!attribute [rw] resource_arn
|
3612
4160
|
# The resource's ARN.
|
3613
4161
|
# @return [String]
|
@@ -4623,6 +5171,63 @@ module Aws::Omics
|
|
4623
5171
|
include Aws::Structure
|
4624
5172
|
end
|
4625
5173
|
|
5174
|
+
# The details of a share.
|
5175
|
+
#
|
5176
|
+
# @!attribute [rw] share_id
|
5177
|
+
# The ID for a share offer for an analytics store .
|
5178
|
+
# @return [String]
|
5179
|
+
#
|
5180
|
+
# @!attribute [rw] resource_arn
|
5181
|
+
# The resource Arn of the analytics store being shared.
|
5182
|
+
# @return [String]
|
5183
|
+
#
|
5184
|
+
# @!attribute [rw] principal_subscriber
|
5185
|
+
# The principal subscriber is the account the analytics store data is
|
5186
|
+
# being shared with.
|
5187
|
+
# @return [String]
|
5188
|
+
#
|
5189
|
+
# @!attribute [rw] owner_id
|
5190
|
+
# The account ID for the data owner. The owner creates the share
|
5191
|
+
# offer.
|
5192
|
+
# @return [String]
|
5193
|
+
#
|
5194
|
+
# @!attribute [rw] status
|
5195
|
+
# The status of a share.
|
5196
|
+
# @return [String]
|
5197
|
+
#
|
5198
|
+
# @!attribute [rw] status_message
|
5199
|
+
# The status message for a share. It provides more details on the
|
5200
|
+
# status of the share.
|
5201
|
+
# @return [String]
|
5202
|
+
#
|
5203
|
+
# @!attribute [rw] share_name
|
5204
|
+
# The name of the share.
|
5205
|
+
# @return [String]
|
5206
|
+
#
|
5207
|
+
# @!attribute [rw] creation_time
|
5208
|
+
# The timestamp for when the share was created.
|
5209
|
+
# @return [Time]
|
5210
|
+
#
|
5211
|
+
# @!attribute [rw] update_time
|
5212
|
+
# The timestamp of the share update.
|
5213
|
+
# @return [Time]
|
5214
|
+
#
|
5215
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ShareDetails AWS API Documentation
|
5216
|
+
#
|
5217
|
+
class ShareDetails < Struct.new(
|
5218
|
+
:share_id,
|
5219
|
+
:resource_arn,
|
5220
|
+
:principal_subscriber,
|
5221
|
+
:owner_id,
|
5222
|
+
:status,
|
5223
|
+
:status_message,
|
5224
|
+
:share_name,
|
5225
|
+
:creation_time,
|
5226
|
+
:update_time)
|
5227
|
+
SENSITIVE = []
|
5228
|
+
include Aws::Structure
|
5229
|
+
end
|
5230
|
+
|
4626
5231
|
# Source files for a sequence.
|
4627
5232
|
#
|
4628
5233
|
# @!attribute [rw] source1
|
@@ -4673,6 +5278,10 @@ module Aws::Omics
|
|
4673
5278
|
# Items to import.
|
4674
5279
|
# @return [Array<Types::AnnotationImportItemSource>]
|
4675
5280
|
#
|
5281
|
+
# @!attribute [rw] version_name
|
5282
|
+
# The name of the annotation store version.
|
5283
|
+
# @return [String]
|
5284
|
+
#
|
4676
5285
|
# @!attribute [rw] format_options
|
4677
5286
|
# Formatting options for the annotation file.
|
4678
5287
|
# @return [Types::FormatOptions]
|
@@ -4691,6 +5300,7 @@ module Aws::Omics
|
|
4691
5300
|
:destination_name,
|
4692
5301
|
:role_arn,
|
4693
5302
|
:items,
|
5303
|
+
:version_name,
|
4694
5304
|
:format_options,
|
4695
5305
|
:run_left_normalization,
|
4696
5306
|
:annotation_fields)
|
@@ -5344,6 +5954,30 @@ module Aws::Omics
|
|
5344
5954
|
include Aws::Structure
|
5345
5955
|
end
|
5346
5956
|
|
5957
|
+
# The options for a TSV file.
|
5958
|
+
#
|
5959
|
+
# @!attribute [rw] annotation_type
|
5960
|
+
# The store version's annotation type.
|
5961
|
+
# @return [String]
|
5962
|
+
#
|
5963
|
+
# @!attribute [rw] format_to_header
|
5964
|
+
# The annotation store version's header key to column name mapping.
|
5965
|
+
# @return [Hash<String,String>]
|
5966
|
+
#
|
5967
|
+
# @!attribute [rw] schema
|
5968
|
+
# The TSV schema for an annotation store version.
|
5969
|
+
# @return [Array<Hash<String,String>>]
|
5970
|
+
#
|
5971
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/TsvVersionOptions AWS API Documentation
|
5972
|
+
#
|
5973
|
+
class TsvVersionOptions < Struct.new(
|
5974
|
+
:annotation_type,
|
5975
|
+
:format_to_header,
|
5976
|
+
:schema)
|
5977
|
+
SENSITIVE = []
|
5978
|
+
include Aws::Structure
|
5979
|
+
end
|
5980
|
+
|
5347
5981
|
# @!attribute [rw] resource_arn
|
5348
5982
|
# The resource's ARN.
|
5349
5983
|
# @return [String]
|
@@ -5434,6 +6068,75 @@ module Aws::Omics
|
|
5434
6068
|
include Aws::Structure
|
5435
6069
|
end
|
5436
6070
|
|
6071
|
+
# @!attribute [rw] name
|
6072
|
+
# The name of an annotation store.
|
6073
|
+
# @return [String]
|
6074
|
+
#
|
6075
|
+
# @!attribute [rw] version_name
|
6076
|
+
# The name of an annotation store version.
|
6077
|
+
# @return [String]
|
6078
|
+
#
|
6079
|
+
# @!attribute [rw] description
|
6080
|
+
# The description of an annotation store.
|
6081
|
+
# @return [String]
|
6082
|
+
#
|
6083
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/UpdateAnnotationStoreVersionRequest AWS API Documentation
|
6084
|
+
#
|
6085
|
+
class UpdateAnnotationStoreVersionRequest < Struct.new(
|
6086
|
+
:name,
|
6087
|
+
:version_name,
|
6088
|
+
:description)
|
6089
|
+
SENSITIVE = []
|
6090
|
+
include Aws::Structure
|
6091
|
+
end
|
6092
|
+
|
6093
|
+
# @!attribute [rw] store_id
|
6094
|
+
# The annotation store ID.
|
6095
|
+
# @return [String]
|
6096
|
+
#
|
6097
|
+
# @!attribute [rw] id
|
6098
|
+
# The annotation store version ID.
|
6099
|
+
# @return [String]
|
6100
|
+
#
|
6101
|
+
# @!attribute [rw] status
|
6102
|
+
# The status of an annotation store version.
|
6103
|
+
# @return [String]
|
6104
|
+
#
|
6105
|
+
# @!attribute [rw] name
|
6106
|
+
# The name of an annotation store.
|
6107
|
+
# @return [String]
|
6108
|
+
#
|
6109
|
+
# @!attribute [rw] version_name
|
6110
|
+
# The name of an annotation store version.
|
6111
|
+
# @return [String]
|
6112
|
+
#
|
6113
|
+
# @!attribute [rw] description
|
6114
|
+
# The description of an annotation store version.
|
6115
|
+
# @return [String]
|
6116
|
+
#
|
6117
|
+
# @!attribute [rw] creation_time
|
6118
|
+
# The time stamp for when an annotation store version was created.
|
6119
|
+
# @return [Time]
|
6120
|
+
#
|
6121
|
+
# @!attribute [rw] update_time
|
6122
|
+
# The time stamp for when an annotation store version was updated.
|
6123
|
+
# @return [Time]
|
6124
|
+
#
|
6125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/UpdateAnnotationStoreVersionResponse AWS API Documentation
|
6126
|
+
#
|
6127
|
+
class UpdateAnnotationStoreVersionResponse < Struct.new(
|
6128
|
+
:store_id,
|
6129
|
+
:id,
|
6130
|
+
:status,
|
6131
|
+
:name,
|
6132
|
+
:version_name,
|
6133
|
+
:description,
|
6134
|
+
:creation_time,
|
6135
|
+
:update_time)
|
6136
|
+
SENSITIVE = []
|
6137
|
+
include Aws::Structure
|
6138
|
+
end
|
6139
|
+
|
5437
6140
|
# @!attribute [rw] id
|
5438
6141
|
# The group's ID.
|
5439
6142
|
# @return [String]
|
@@ -5786,6 +6489,48 @@ module Aws::Omics
|
|
5786
6489
|
include Aws::Structure
|
5787
6490
|
end
|
5788
6491
|
|
6492
|
+
# The error preventing deletion of the annotation store version.
|
6493
|
+
#
|
6494
|
+
# @!attribute [rw] version_name
|
6495
|
+
# The name given to an annotation store version.
|
6496
|
+
# @return [String]
|
6497
|
+
#
|
6498
|
+
# @!attribute [rw] message
|
6499
|
+
# The message explaining the error in annotation store deletion.
|
6500
|
+
# @return [String]
|
6501
|
+
#
|
6502
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/VersionDeleteError AWS API Documentation
|
6503
|
+
#
|
6504
|
+
class VersionDeleteError < Struct.new(
|
6505
|
+
:version_name,
|
6506
|
+
:message)
|
6507
|
+
SENSITIVE = []
|
6508
|
+
include Aws::Structure
|
6509
|
+
end
|
6510
|
+
|
6511
|
+
# The options for an annotation store version.
|
6512
|
+
#
|
6513
|
+
# @note VersionOptions is a union - when making an API calls you must set exactly one of the members.
|
6514
|
+
#
|
6515
|
+
# @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.
|
6516
|
+
#
|
6517
|
+
# @!attribute [rw] tsv_version_options
|
6518
|
+
# File settings for a version of a TSV store.
|
6519
|
+
# @return [Types::TsvVersionOptions]
|
6520
|
+
#
|
6521
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/VersionOptions AWS API Documentation
|
6522
|
+
#
|
6523
|
+
class VersionOptions < Struct.new(
|
6524
|
+
:tsv_version_options,
|
6525
|
+
:unknown)
|
6526
|
+
SENSITIVE = []
|
6527
|
+
include Aws::Structure
|
6528
|
+
include Aws::Structure::Union
|
6529
|
+
|
6530
|
+
class TsvVersionOptions < VersionOptions; end
|
6531
|
+
class Unknown < VersionOptions; end
|
6532
|
+
end
|
6533
|
+
|
5789
6534
|
# A workflow.
|
5790
6535
|
#
|
5791
6536
|
# @!attribute [rw] arn
|