aws-sdk-omics 1.40.0 → 1.41.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 +228 -1
- data/lib/aws-sdk-omics/client_api.rb +160 -1
- data/lib/aws-sdk-omics/types.rb +332 -6
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +83 -2
- data/sig/types.rbs +85 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -304,6 +304,8 @@ module Aws::Omics
|
|
304
304
|
attr_accessor client_token: ::String
|
305
305
|
attr_accessor fallback_location: ::String
|
306
306
|
attr_accessor e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
|
307
|
+
attr_accessor propagated_set_level_tags: ::Array[::String]
|
308
|
+
attr_accessor s3_access_config: Types::S3AccessConfig
|
307
309
|
SENSITIVE: []
|
308
310
|
end
|
309
311
|
|
@@ -316,6 +318,10 @@ module Aws::Omics
|
|
316
318
|
attr_accessor creation_time: ::Time
|
317
319
|
attr_accessor fallback_location: ::String
|
318
320
|
attr_accessor e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
|
321
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
|
322
|
+
attr_accessor status_message: ::String
|
323
|
+
attr_accessor propagated_set_level_tags: ::Array[::String]
|
324
|
+
attr_accessor s3_access: Types::SequenceStoreS3Access
|
319
325
|
SENSITIVE: []
|
320
326
|
end
|
321
327
|
|
@@ -429,6 +435,14 @@ module Aws::Omics
|
|
429
435
|
SENSITIVE: []
|
430
436
|
end
|
431
437
|
|
438
|
+
class DeleteS3AccessPolicyRequest
|
439
|
+
attr_accessor s3_access_point_arn: ::String
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class DeleteS3AccessPolicyResponse < Aws::EmptyStructure
|
444
|
+
end
|
445
|
+
|
432
446
|
class DeleteSequenceStoreRequest
|
433
447
|
attr_accessor id: ::String
|
434
448
|
SENSITIVE: []
|
@@ -865,6 +879,20 @@ module Aws::Omics
|
|
865
879
|
SENSITIVE: []
|
866
880
|
end
|
867
881
|
|
882
|
+
class GetS3AccessPolicyRequest
|
883
|
+
attr_accessor s3_access_point_arn: ::String
|
884
|
+
SENSITIVE: []
|
885
|
+
end
|
886
|
+
|
887
|
+
class GetS3AccessPolicyResponse
|
888
|
+
attr_accessor s3_access_point_arn: ::String
|
889
|
+
attr_accessor store_id: ::String
|
890
|
+
attr_accessor store_type: ("SEQUENCE_STORE" | "REFERENCE_STORE")
|
891
|
+
attr_accessor update_time: ::Time
|
892
|
+
attr_accessor s3_access_policy: ::String
|
893
|
+
SENSITIVE: []
|
894
|
+
end
|
895
|
+
|
868
896
|
class GetSequenceStoreRequest
|
869
897
|
attr_accessor id: ::String
|
870
898
|
SENSITIVE: []
|
@@ -880,6 +908,10 @@ module Aws::Omics
|
|
880
908
|
attr_accessor fallback_location: ::String
|
881
909
|
attr_accessor s3_access: Types::SequenceStoreS3Access
|
882
910
|
attr_accessor e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
|
911
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
|
912
|
+
attr_accessor status_message: ::String
|
913
|
+
attr_accessor propagated_set_level_tags: ::Array[::String]
|
914
|
+
attr_accessor update_time: ::Time
|
883
915
|
SENSITIVE: []
|
884
916
|
end
|
885
917
|
|
@@ -1377,6 +1409,19 @@ module Aws::Omics
|
|
1377
1409
|
SENSITIVE: []
|
1378
1410
|
end
|
1379
1411
|
|
1412
|
+
class PutS3AccessPolicyRequest
|
1413
|
+
attr_accessor s3_access_point_arn: ::String
|
1414
|
+
attr_accessor s3_access_policy: ::String
|
1415
|
+
SENSITIVE: []
|
1416
|
+
end
|
1417
|
+
|
1418
|
+
class PutS3AccessPolicyResponse
|
1419
|
+
attr_accessor s3_access_point_arn: ::String
|
1420
|
+
attr_accessor store_id: ::String
|
1421
|
+
attr_accessor store_type: ("SEQUENCE_STORE" | "REFERENCE_STORE")
|
1422
|
+
SENSITIVE: []
|
1423
|
+
end
|
1424
|
+
|
1380
1425
|
class RangeNotSatisfiableException
|
1381
1426
|
attr_accessor message: ::String
|
1382
1427
|
SENSITIVE: []
|
@@ -1571,6 +1616,11 @@ module Aws::Omics
|
|
1571
1616
|
SENSITIVE: []
|
1572
1617
|
end
|
1573
1618
|
|
1619
|
+
class S3AccessConfig
|
1620
|
+
attr_accessor access_log_location: ::String
|
1621
|
+
SENSITIVE: []
|
1622
|
+
end
|
1623
|
+
|
1574
1624
|
class SequenceInformation
|
1575
1625
|
attr_accessor total_read_count: ::Integer
|
1576
1626
|
attr_accessor total_base_count: ::Integer
|
@@ -1588,6 +1638,9 @@ module Aws::Omics
|
|
1588
1638
|
attr_accessor creation_time: ::Time
|
1589
1639
|
attr_accessor fallback_location: ::String
|
1590
1640
|
attr_accessor e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
|
1641
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
|
1642
|
+
attr_accessor status_message: ::String
|
1643
|
+
attr_accessor update_time: ::Time
|
1591
1644
|
SENSITIVE: []
|
1592
1645
|
end
|
1593
1646
|
|
@@ -1595,12 +1648,16 @@ module Aws::Omics
|
|
1595
1648
|
attr_accessor name: ::String
|
1596
1649
|
attr_accessor created_after: ::Time
|
1597
1650
|
attr_accessor created_before: ::Time
|
1651
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
|
1652
|
+
attr_accessor updated_after: ::Time
|
1653
|
+
attr_accessor updated_before: ::Time
|
1598
1654
|
SENSITIVE: []
|
1599
1655
|
end
|
1600
1656
|
|
1601
1657
|
class SequenceStoreS3Access
|
1602
1658
|
attr_accessor s3_uri: ::String
|
1603
1659
|
attr_accessor s3_access_point_arn: ::String
|
1660
|
+
attr_accessor access_log_location: ::String
|
1604
1661
|
SENSITIVE: []
|
1605
1662
|
end
|
1606
1663
|
|
@@ -1915,6 +1972,34 @@ module Aws::Omics
|
|
1915
1972
|
SENSITIVE: []
|
1916
1973
|
end
|
1917
1974
|
|
1975
|
+
class UpdateSequenceStoreRequest
|
1976
|
+
attr_accessor id: ::String
|
1977
|
+
attr_accessor name: ::String
|
1978
|
+
attr_accessor description: ::String
|
1979
|
+
attr_accessor client_token: ::String
|
1980
|
+
attr_accessor fallback_location: ::String
|
1981
|
+
attr_accessor propagated_set_level_tags: ::Array[::String]
|
1982
|
+
attr_accessor s3_access_config: Types::S3AccessConfig
|
1983
|
+
SENSITIVE: []
|
1984
|
+
end
|
1985
|
+
|
1986
|
+
class UpdateSequenceStoreResponse
|
1987
|
+
attr_accessor id: ::String
|
1988
|
+
attr_accessor arn: ::String
|
1989
|
+
attr_accessor name: ::String
|
1990
|
+
attr_accessor description: ::String
|
1991
|
+
attr_accessor sse_config: Types::SseConfig
|
1992
|
+
attr_accessor creation_time: ::Time
|
1993
|
+
attr_accessor update_time: ::Time
|
1994
|
+
attr_accessor propagated_set_level_tags: ::Array[::String]
|
1995
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
|
1996
|
+
attr_accessor status_message: ::String
|
1997
|
+
attr_accessor fallback_location: ::String
|
1998
|
+
attr_accessor s3_access: Types::SequenceStoreS3Access
|
1999
|
+
attr_accessor e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
|
2000
|
+
SENSITIVE: []
|
2001
|
+
end
|
2002
|
+
|
1918
2003
|
class UpdateVariantStoreRequest
|
1919
2004
|
attr_accessor name: ::String
|
1920
2005
|
attr_accessor description: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-omics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.41.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|