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/lib/aws-sdk-omics/types.rb
CHANGED
@@ -1083,6 +1083,9 @@ module Aws::Omics
|
|
1083
1083
|
# @!attribute [rw] client_token
|
1084
1084
|
# To ensure that requests don't run multiple times, specify a unique
|
1085
1085
|
# token for each request.
|
1086
|
+
#
|
1087
|
+
# **A suitable default value is auto-generated.** You should normally
|
1088
|
+
# not need to pass this option.
|
1086
1089
|
# @return [String]
|
1087
1090
|
#
|
1088
1091
|
# @!attribute [rw] fallback_location
|
@@ -1094,6 +1097,15 @@ module Aws::Omics
|
|
1094
1097
|
# The ETag algorithm family to use for ingested read sets.
|
1095
1098
|
# @return [String]
|
1096
1099
|
#
|
1100
|
+
# @!attribute [rw] propagated_set_level_tags
|
1101
|
+
# The tags keys to propagate to the S3 objects associated with read
|
1102
|
+
# sets in the sequence store.
|
1103
|
+
# @return [Array<String>]
|
1104
|
+
#
|
1105
|
+
# @!attribute [rw] s3_access_config
|
1106
|
+
# S3 access configuration parameters
|
1107
|
+
# @return [Types::S3AccessConfig]
|
1108
|
+
#
|
1097
1109
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateSequenceStoreRequest AWS API Documentation
|
1098
1110
|
#
|
1099
1111
|
class CreateSequenceStoreRequest < Struct.new(
|
@@ -1103,7 +1115,9 @@ module Aws::Omics
|
|
1103
1115
|
:tags,
|
1104
1116
|
:client_token,
|
1105
1117
|
:fallback_location,
|
1106
|
-
:e_tag_algorithm_family
|
1118
|
+
:e_tag_algorithm_family,
|
1119
|
+
:propagated_set_level_tags,
|
1120
|
+
:s3_access_config)
|
1107
1121
|
SENSITIVE = []
|
1108
1122
|
include Aws::Structure
|
1109
1123
|
end
|
@@ -1141,6 +1155,23 @@ module Aws::Omics
|
|
1141
1155
|
# The algorithm family of the ETag.
|
1142
1156
|
# @return [String]
|
1143
1157
|
#
|
1158
|
+
# @!attribute [rw] status
|
1159
|
+
# The status of the sequence store.
|
1160
|
+
# @return [String]
|
1161
|
+
#
|
1162
|
+
# @!attribute [rw] status_message
|
1163
|
+
# The status message of the sequence store.
|
1164
|
+
# @return [String]
|
1165
|
+
#
|
1166
|
+
# @!attribute [rw] propagated_set_level_tags
|
1167
|
+
# The tags keys to propagate to the S3 objects associated with read
|
1168
|
+
# sets in the sequence store.
|
1169
|
+
# @return [Array<String>]
|
1170
|
+
#
|
1171
|
+
# @!attribute [rw] s3_access
|
1172
|
+
# The S3 access metadata of the sequence store.
|
1173
|
+
# @return [Types::SequenceStoreS3Access]
|
1174
|
+
#
|
1144
1175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateSequenceStoreResponse AWS API Documentation
|
1145
1176
|
#
|
1146
1177
|
class CreateSequenceStoreResponse < Struct.new(
|
@@ -1151,7 +1182,11 @@ module Aws::Omics
|
|
1151
1182
|
:sse_config,
|
1152
1183
|
:creation_time,
|
1153
1184
|
:fallback_location,
|
1154
|
-
:e_tag_algorithm_family
|
1185
|
+
:e_tag_algorithm_family,
|
1186
|
+
:status,
|
1187
|
+
:status_message,
|
1188
|
+
:propagated_set_level_tags,
|
1189
|
+
:s3_access)
|
1155
1190
|
SENSITIVE = []
|
1156
1191
|
include Aws::Structure
|
1157
1192
|
end
|
@@ -1497,6 +1532,22 @@ module Aws::Omics
|
|
1497
1532
|
include Aws::Structure
|
1498
1533
|
end
|
1499
1534
|
|
1535
|
+
# @!attribute [rw] s3_access_point_arn
|
1536
|
+
# The S3 access point ARN that has the access policy.
|
1537
|
+
# @return [String]
|
1538
|
+
#
|
1539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteS3AccessPolicyRequest AWS API Documentation
|
1540
|
+
#
|
1541
|
+
class DeleteS3AccessPolicyRequest < Struct.new(
|
1542
|
+
:s3_access_point_arn)
|
1543
|
+
SENSITIVE = []
|
1544
|
+
include Aws::Structure
|
1545
|
+
end
|
1546
|
+
|
1547
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteS3AccessPolicyResponse AWS API Documentation
|
1548
|
+
#
|
1549
|
+
class DeleteS3AccessPolicyResponse < Aws::EmptyStructure; end
|
1550
|
+
|
1500
1551
|
# @!attribute [rw] id
|
1501
1552
|
# The sequence store's ID.
|
1502
1553
|
# @return [String]
|
@@ -3068,6 +3119,50 @@ module Aws::Omics
|
|
3068
3119
|
include Aws::Structure
|
3069
3120
|
end
|
3070
3121
|
|
3122
|
+
# @!attribute [rw] s3_access_point_arn
|
3123
|
+
# The S3 access point ARN that has the access policy.
|
3124
|
+
# @return [String]
|
3125
|
+
#
|
3126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetS3AccessPolicyRequest AWS API Documentation
|
3127
|
+
#
|
3128
|
+
class GetS3AccessPolicyRequest < Struct.new(
|
3129
|
+
:s3_access_point_arn)
|
3130
|
+
SENSITIVE = []
|
3131
|
+
include Aws::Structure
|
3132
|
+
end
|
3133
|
+
|
3134
|
+
# @!attribute [rw] s3_access_point_arn
|
3135
|
+
# The S3 access point ARN that has the access policy.
|
3136
|
+
# @return [String]
|
3137
|
+
#
|
3138
|
+
# @!attribute [rw] store_id
|
3139
|
+
# The AWS-generated Sequence Store or Reference Store ID.
|
3140
|
+
# @return [String]
|
3141
|
+
#
|
3142
|
+
# @!attribute [rw] store_type
|
3143
|
+
# The type of store associated with the access point.
|
3144
|
+
# @return [String]
|
3145
|
+
#
|
3146
|
+
# @!attribute [rw] update_time
|
3147
|
+
# The time when the policy was last updated.
|
3148
|
+
# @return [Time]
|
3149
|
+
#
|
3150
|
+
# @!attribute [rw] s3_access_policy
|
3151
|
+
# The current resource policy that controls S3 access on the store.
|
3152
|
+
# @return [String]
|
3153
|
+
#
|
3154
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetS3AccessPolicyResponse AWS API Documentation
|
3155
|
+
#
|
3156
|
+
class GetS3AccessPolicyResponse < Struct.new(
|
3157
|
+
:s3_access_point_arn,
|
3158
|
+
:store_id,
|
3159
|
+
:store_type,
|
3160
|
+
:update_time,
|
3161
|
+
:s3_access_policy)
|
3162
|
+
SENSITIVE = []
|
3163
|
+
include Aws::Structure
|
3164
|
+
end
|
3165
|
+
|
3071
3166
|
# @!attribute [rw] id
|
3072
3167
|
# The store's ID.
|
3073
3168
|
# @return [String]
|
@@ -3118,6 +3213,23 @@ module Aws::Omics
|
|
3118
3213
|
# The algorithm family of the ETag.
|
3119
3214
|
# @return [String]
|
3120
3215
|
#
|
3216
|
+
# @!attribute [rw] status
|
3217
|
+
# The status of the sequence store.
|
3218
|
+
# @return [String]
|
3219
|
+
#
|
3220
|
+
# @!attribute [rw] status_message
|
3221
|
+
# The status message of the sequence store.
|
3222
|
+
# @return [String]
|
3223
|
+
#
|
3224
|
+
# @!attribute [rw] propagated_set_level_tags
|
3225
|
+
# The tags keys to propagate to the S3 objects associated with read
|
3226
|
+
# sets in the sequence store.
|
3227
|
+
# @return [Array<String>]
|
3228
|
+
#
|
3229
|
+
# @!attribute [rw] update_time
|
3230
|
+
# The last-updated time of the sequence store.
|
3231
|
+
# @return [Time]
|
3232
|
+
#
|
3121
3233
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetSequenceStoreResponse AWS API Documentation
|
3122
3234
|
#
|
3123
3235
|
class GetSequenceStoreResponse < Struct.new(
|
@@ -3129,7 +3241,11 @@ module Aws::Omics
|
|
3129
3241
|
:creation_time,
|
3130
3242
|
:fallback_location,
|
3131
3243
|
:s3_access,
|
3132
|
-
:e_tag_algorithm_family
|
3244
|
+
:e_tag_algorithm_family,
|
3245
|
+
:status,
|
3246
|
+
:status_message,
|
3247
|
+
:propagated_set_level_tags,
|
3248
|
+
:update_time)
|
3133
3249
|
SENSITIVE = []
|
3134
3250
|
include Aws::Structure
|
3135
3251
|
end
|
@@ -4812,6 +4928,45 @@ module Aws::Omics
|
|
4812
4928
|
include Aws::Structure
|
4813
4929
|
end
|
4814
4930
|
|
4931
|
+
# @!attribute [rw] s3_access_point_arn
|
4932
|
+
# The S3 access point ARN where you want to put the access policy.
|
4933
|
+
# @return [String]
|
4934
|
+
#
|
4935
|
+
# @!attribute [rw] s3_access_policy
|
4936
|
+
# The resource policy that controls S3 access to the store.
|
4937
|
+
# @return [String]
|
4938
|
+
#
|
4939
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/PutS3AccessPolicyRequest AWS API Documentation
|
4940
|
+
#
|
4941
|
+
class PutS3AccessPolicyRequest < Struct.new(
|
4942
|
+
:s3_access_point_arn,
|
4943
|
+
:s3_access_policy)
|
4944
|
+
SENSITIVE = []
|
4945
|
+
include Aws::Structure
|
4946
|
+
end
|
4947
|
+
|
4948
|
+
# @!attribute [rw] s3_access_point_arn
|
4949
|
+
# The S3 access point ARN that now has the access policy.
|
4950
|
+
# @return [String]
|
4951
|
+
#
|
4952
|
+
# @!attribute [rw] store_id
|
4953
|
+
# The AWS-generated Sequence Store or Reference Store ID.
|
4954
|
+
# @return [String]
|
4955
|
+
#
|
4956
|
+
# @!attribute [rw] store_type
|
4957
|
+
# The type of store associated with the access point.
|
4958
|
+
# @return [String]
|
4959
|
+
#
|
4960
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/PutS3AccessPolicyResponse AWS API Documentation
|
4961
|
+
#
|
4962
|
+
class PutS3AccessPolicyResponse < Struct.new(
|
4963
|
+
:s3_access_point_arn,
|
4964
|
+
:store_id,
|
4965
|
+
:store_type)
|
4966
|
+
SENSITIVE = []
|
4967
|
+
include Aws::Structure
|
4968
|
+
end
|
4969
|
+
|
4815
4970
|
# The ranges specified in the request are not valid.
|
4816
4971
|
#
|
4817
4972
|
# @!attribute [rw] message
|
@@ -5536,6 +5691,20 @@ module Aws::Omics
|
|
5536
5691
|
include Aws::Structure
|
5537
5692
|
end
|
5538
5693
|
|
5694
|
+
# S3 access configuration parameters.
|
5695
|
+
#
|
5696
|
+
# @!attribute [rw] access_log_location
|
5697
|
+
# Location of the access logs.
|
5698
|
+
# @return [String]
|
5699
|
+
#
|
5700
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/S3AccessConfig AWS API Documentation
|
5701
|
+
#
|
5702
|
+
class S3AccessConfig < Struct.new(
|
5703
|
+
:access_log_location)
|
5704
|
+
SENSITIVE = []
|
5705
|
+
include Aws::Structure
|
5706
|
+
end
|
5707
|
+
|
5539
5708
|
# Details about a sequence.
|
5540
5709
|
#
|
5541
5710
|
# @!attribute [rw] total_read_count
|
@@ -5600,6 +5769,18 @@ module Aws::Omics
|
|
5600
5769
|
# The algorithm family of the ETag.
|
5601
5770
|
# @return [String]
|
5602
5771
|
#
|
5772
|
+
# @!attribute [rw] status
|
5773
|
+
# Status of the sequence store.
|
5774
|
+
# @return [String]
|
5775
|
+
#
|
5776
|
+
# @!attribute [rw] status_message
|
5777
|
+
# The status message of the sequence store.
|
5778
|
+
# @return [String]
|
5779
|
+
#
|
5780
|
+
# @!attribute [rw] update_time
|
5781
|
+
# The last-updated time of the Sequence Store.
|
5782
|
+
# @return [Time]
|
5783
|
+
#
|
5603
5784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/SequenceStoreDetail AWS API Documentation
|
5604
5785
|
#
|
5605
5786
|
class SequenceStoreDetail < Struct.new(
|
@@ -5610,7 +5791,10 @@ module Aws::Omics
|
|
5610
5791
|
:sse_config,
|
5611
5792
|
:creation_time,
|
5612
5793
|
:fallback_location,
|
5613
|
-
:e_tag_algorithm_family
|
5794
|
+
:e_tag_algorithm_family,
|
5795
|
+
:status,
|
5796
|
+
:status_message,
|
5797
|
+
:update_time)
|
5614
5798
|
SENSITIVE = []
|
5615
5799
|
include Aws::Structure
|
5616
5800
|
end
|
@@ -5629,12 +5813,27 @@ module Aws::Omics
|
|
5629
5813
|
# The filter's end date.
|
5630
5814
|
# @return [Time]
|
5631
5815
|
#
|
5816
|
+
# @!attribute [rw] status
|
5817
|
+
# Filter results based on status.
|
5818
|
+
# @return [String]
|
5819
|
+
#
|
5820
|
+
# @!attribute [rw] updated_after
|
5821
|
+
# Filter results based on stores updated after the specified time.
|
5822
|
+
# @return [Time]
|
5823
|
+
#
|
5824
|
+
# @!attribute [rw] updated_before
|
5825
|
+
# Filter results based on stores updated before the specified time.
|
5826
|
+
# @return [Time]
|
5827
|
+
#
|
5632
5828
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/SequenceStoreFilter AWS API Documentation
|
5633
5829
|
#
|
5634
5830
|
class SequenceStoreFilter < Struct.new(
|
5635
5831
|
:name,
|
5636
5832
|
:created_after,
|
5637
|
-
:created_before
|
5833
|
+
:created_before,
|
5834
|
+
:status,
|
5835
|
+
:updated_after,
|
5836
|
+
:updated_before)
|
5638
5837
|
SENSITIVE = []
|
5639
5838
|
include Aws::Structure
|
5640
5839
|
end
|
@@ -5650,11 +5849,16 @@ module Aws::Omics
|
|
5650
5849
|
# storing read sets.
|
5651
5850
|
# @return [String]
|
5652
5851
|
#
|
5852
|
+
# @!attribute [rw] access_log_location
|
5853
|
+
# Location of the access logs.
|
5854
|
+
# @return [String]
|
5855
|
+
#
|
5653
5856
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/SequenceStoreS3Access AWS API Documentation
|
5654
5857
|
#
|
5655
5858
|
class SequenceStoreS3Access < Struct.new(
|
5656
5859
|
:s3_uri,
|
5657
|
-
:s3_access_point_arn
|
5860
|
+
:s3_access_point_arn,
|
5861
|
+
:access_log_location)
|
5658
5862
|
SENSITIVE = []
|
5659
5863
|
include Aws::Structure
|
5660
5864
|
end
|
@@ -6781,6 +6985,128 @@ module Aws::Omics
|
|
6781
6985
|
include Aws::Structure
|
6782
6986
|
end
|
6783
6987
|
|
6988
|
+
# @!attribute [rw] id
|
6989
|
+
# The ID of the sequence store.
|
6990
|
+
# @return [String]
|
6991
|
+
#
|
6992
|
+
# @!attribute [rw] name
|
6993
|
+
# A name for the sequence store.
|
6994
|
+
# @return [String]
|
6995
|
+
#
|
6996
|
+
# @!attribute [rw] description
|
6997
|
+
# A description for the sequence store.
|
6998
|
+
# @return [String]
|
6999
|
+
#
|
7000
|
+
# @!attribute [rw] client_token
|
7001
|
+
# To ensure that requests don't run multiple times, specify a unique
|
7002
|
+
# token for each request.
|
7003
|
+
#
|
7004
|
+
# **A suitable default value is auto-generated.** You should normally
|
7005
|
+
# not need to pass this option.
|
7006
|
+
# @return [String]
|
7007
|
+
#
|
7008
|
+
# @!attribute [rw] fallback_location
|
7009
|
+
# The S3 URI of a bucket and folder to store Read Sets that fail to
|
7010
|
+
# upload.
|
7011
|
+
# @return [String]
|
7012
|
+
#
|
7013
|
+
# @!attribute [rw] propagated_set_level_tags
|
7014
|
+
# The tags keys to propagate to the S3 objects associated with read
|
7015
|
+
# sets in the sequence store.
|
7016
|
+
# @return [Array<String>]
|
7017
|
+
#
|
7018
|
+
# @!attribute [rw] s3_access_config
|
7019
|
+
# S3 access configuration parameters.
|
7020
|
+
# @return [Types::S3AccessConfig]
|
7021
|
+
#
|
7022
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/UpdateSequenceStoreRequest AWS API Documentation
|
7023
|
+
#
|
7024
|
+
class UpdateSequenceStoreRequest < Struct.new(
|
7025
|
+
:id,
|
7026
|
+
:name,
|
7027
|
+
:description,
|
7028
|
+
:client_token,
|
7029
|
+
:fallback_location,
|
7030
|
+
:propagated_set_level_tags,
|
7031
|
+
:s3_access_config)
|
7032
|
+
SENSITIVE = []
|
7033
|
+
include Aws::Structure
|
7034
|
+
end
|
7035
|
+
|
7036
|
+
# @!attribute [rw] id
|
7037
|
+
# The ID of the sequence store.
|
7038
|
+
# @return [String]
|
7039
|
+
#
|
7040
|
+
# @!attribute [rw] arn
|
7041
|
+
# The ARN of the sequence store.
|
7042
|
+
# @return [String]
|
7043
|
+
#
|
7044
|
+
# @!attribute [rw] name
|
7045
|
+
# The name of the sequence store.
|
7046
|
+
# @return [String]
|
7047
|
+
#
|
7048
|
+
# @!attribute [rw] description
|
7049
|
+
# Description of the sequence store.
|
7050
|
+
# @return [String]
|
7051
|
+
#
|
7052
|
+
# @!attribute [rw] sse_config
|
7053
|
+
# Server-side encryption (SSE) settings for a store.
|
7054
|
+
# @return [Types::SseConfig]
|
7055
|
+
#
|
7056
|
+
# @!attribute [rw] creation_time
|
7057
|
+
# The time when the store was created.
|
7058
|
+
# @return [Time]
|
7059
|
+
#
|
7060
|
+
# @!attribute [rw] update_time
|
7061
|
+
# The last-updated time of the Sequence Store.
|
7062
|
+
# @return [Time]
|
7063
|
+
#
|
7064
|
+
# @!attribute [rw] propagated_set_level_tags
|
7065
|
+
# The tags keys to propagate to the S3 objects associated with read
|
7066
|
+
# sets in the sequence store.
|
7067
|
+
# @return [Array<String>]
|
7068
|
+
#
|
7069
|
+
# @!attribute [rw] status
|
7070
|
+
# The status of the sequence store.
|
7071
|
+
# @return [String]
|
7072
|
+
#
|
7073
|
+
# @!attribute [rw] status_message
|
7074
|
+
# The status message of the sequence store.
|
7075
|
+
# @return [String]
|
7076
|
+
#
|
7077
|
+
# @!attribute [rw] fallback_location
|
7078
|
+
# The S3 URI of a bucket and folder to store Read Sets that fail to
|
7079
|
+
# upload.
|
7080
|
+
# @return [String]
|
7081
|
+
#
|
7082
|
+
# @!attribute [rw] s3_access
|
7083
|
+
# The S3 access metadata of the sequence store.
|
7084
|
+
# @return [Types::SequenceStoreS3Access]
|
7085
|
+
#
|
7086
|
+
# @!attribute [rw] e_tag_algorithm_family
|
7087
|
+
# The ETag algorithm family to use on ingested read sets.
|
7088
|
+
# @return [String]
|
7089
|
+
#
|
7090
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/UpdateSequenceStoreResponse AWS API Documentation
|
7091
|
+
#
|
7092
|
+
class UpdateSequenceStoreResponse < Struct.new(
|
7093
|
+
:id,
|
7094
|
+
:arn,
|
7095
|
+
:name,
|
7096
|
+
:description,
|
7097
|
+
:sse_config,
|
7098
|
+
:creation_time,
|
7099
|
+
:update_time,
|
7100
|
+
:propagated_set_level_tags,
|
7101
|
+
:status,
|
7102
|
+
:status_message,
|
7103
|
+
:fallback_location,
|
7104
|
+
:s3_access,
|
7105
|
+
:e_tag_algorithm_family)
|
7106
|
+
SENSITIVE = []
|
7107
|
+
include Aws::Structure
|
7108
|
+
end
|
7109
|
+
|
6784
7110
|
# @!attribute [rw] name
|
6785
7111
|
# A name for the store.
|
6786
7112
|
# @return [String]
|
data/lib/aws-sdk-omics.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -311,6 +311,10 @@ module Aws
|
|
311
311
|
def creation_time: () -> ::Time
|
312
312
|
def fallback_location: () -> ::String
|
313
313
|
def e_tag_algorithm_family: () -> ("MD5up" | "SHA256up" | "SHA512up")
|
314
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
|
315
|
+
def status_message: () -> ::String
|
316
|
+
def propagated_set_level_tags: () -> ::Array[::String]
|
317
|
+
def s3_access: () -> Types::SequenceStoreS3Access
|
314
318
|
end
|
315
319
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_sequence_store-instance_method
|
316
320
|
def create_sequence_store: (
|
@@ -323,7 +327,11 @@ module Aws
|
|
323
327
|
?tags: Hash[::String, ::String],
|
324
328
|
?client_token: ::String,
|
325
329
|
?fallback_location: ::String,
|
326
|
-
?e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
|
330
|
+
?e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up"),
|
331
|
+
?propagated_set_level_tags: Array[::String],
|
332
|
+
?s3_access_config: {
|
333
|
+
access_log_location: ::String?
|
334
|
+
}
|
327
335
|
) -> _CreateSequenceStoreResponseSuccess
|
328
336
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSequenceStoreResponseSuccess
|
329
337
|
|
@@ -450,6 +458,15 @@ module Aws
|
|
450
458
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
451
459
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
452
460
|
|
461
|
+
interface _DeleteS3AccessPolicyResponseSuccess
|
462
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteS3AccessPolicyResponse]
|
463
|
+
end
|
464
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_s3_access_policy-instance_method
|
465
|
+
def delete_s3_access_policy: (
|
466
|
+
s3_access_point_arn: ::String
|
467
|
+
) -> _DeleteS3AccessPolicyResponseSuccess
|
468
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteS3AccessPolicyResponseSuccess
|
469
|
+
|
453
470
|
interface _DeleteSequenceStoreResponseSuccess
|
454
471
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSequenceStoreResponse]
|
455
472
|
end
|
@@ -823,6 +840,20 @@ module Aws
|
|
823
840
|
) -> _GetRunTaskResponseSuccess
|
824
841
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunTaskResponseSuccess
|
825
842
|
|
843
|
+
interface _GetS3AccessPolicyResponseSuccess
|
844
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetS3AccessPolicyResponse]
|
845
|
+
def s3_access_point_arn: () -> ::String
|
846
|
+
def store_id: () -> ::String
|
847
|
+
def store_type: () -> ("SEQUENCE_STORE" | "REFERENCE_STORE")
|
848
|
+
def update_time: () -> ::Time
|
849
|
+
def s3_access_policy: () -> ::String
|
850
|
+
end
|
851
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_s3_access_policy-instance_method
|
852
|
+
def get_s3_access_policy: (
|
853
|
+
s3_access_point_arn: ::String
|
854
|
+
) -> _GetS3AccessPolicyResponseSuccess
|
855
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetS3AccessPolicyResponseSuccess
|
856
|
+
|
826
857
|
interface _GetSequenceStoreResponseSuccess
|
827
858
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetSequenceStoreResponse]
|
828
859
|
def id: () -> ::String
|
@@ -834,6 +865,10 @@ module Aws
|
|
834
865
|
def fallback_location: () -> ::String
|
835
866
|
def s3_access: () -> Types::SequenceStoreS3Access
|
836
867
|
def e_tag_algorithm_family: () -> ("MD5up" | "SHA256up" | "SHA512up")
|
868
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
|
869
|
+
def status_message: () -> ::String
|
870
|
+
def propagated_set_level_tags: () -> ::Array[::String]
|
871
|
+
def update_time: () -> ::Time
|
837
872
|
end
|
838
873
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_sequence_store-instance_method
|
839
874
|
def get_sequence_store: (
|
@@ -1200,7 +1235,10 @@ module Aws
|
|
1200
1235
|
?filter: {
|
1201
1236
|
name: ::String?,
|
1202
1237
|
created_after: ::Time?,
|
1203
|
-
created_before: ::Time
|
1238
|
+
created_before: ::Time?,
|
1239
|
+
status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")?,
|
1240
|
+
updated_after: ::Time?,
|
1241
|
+
updated_before: ::Time?
|
1204
1242
|
}
|
1205
1243
|
) -> _ListSequenceStoresResponseSuccess
|
1206
1244
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSequenceStoresResponseSuccess
|
@@ -1280,6 +1318,19 @@ module Aws
|
|
1280
1318
|
) -> _ListWorkflowsResponseSuccess
|
1281
1319
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowsResponseSuccess
|
1282
1320
|
|
1321
|
+
interface _PutS3AccessPolicyResponseSuccess
|
1322
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutS3AccessPolicyResponse]
|
1323
|
+
def s3_access_point_arn: () -> ::String
|
1324
|
+
def store_id: () -> ::String
|
1325
|
+
def store_type: () -> ("SEQUENCE_STORE" | "REFERENCE_STORE")
|
1326
|
+
end
|
1327
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#put_s3_access_policy-instance_method
|
1328
|
+
def put_s3_access_policy: (
|
1329
|
+
s3_access_point_arn: ::String,
|
1330
|
+
s3_access_policy: ::String
|
1331
|
+
) -> _PutS3AccessPolicyResponseSuccess
|
1332
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutS3AccessPolicyResponseSuccess
|
1333
|
+
|
1283
1334
|
interface _StartAnnotationImportJobResponseSuccess
|
1284
1335
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartAnnotationImportResponse]
|
1285
1336
|
def job_id: () -> ::String
|
@@ -1544,6 +1595,36 @@ module Aws
|
|
1544
1595
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1545
1596
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1546
1597
|
|
1598
|
+
interface _UpdateSequenceStoreResponseSuccess
|
1599
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSequenceStoreResponse]
|
1600
|
+
def id: () -> ::String
|
1601
|
+
def arn: () -> ::String
|
1602
|
+
def name: () -> ::String
|
1603
|
+
def description: () -> ::String
|
1604
|
+
def sse_config: () -> Types::SseConfig
|
1605
|
+
def creation_time: () -> ::Time
|
1606
|
+
def update_time: () -> ::Time
|
1607
|
+
def propagated_set_level_tags: () -> ::Array[::String]
|
1608
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
|
1609
|
+
def status_message: () -> ::String
|
1610
|
+
def fallback_location: () -> ::String
|
1611
|
+
def s3_access: () -> Types::SequenceStoreS3Access
|
1612
|
+
def e_tag_algorithm_family: () -> ("MD5up" | "SHA256up" | "SHA512up")
|
1613
|
+
end
|
1614
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_sequence_store-instance_method
|
1615
|
+
def update_sequence_store: (
|
1616
|
+
id: ::String,
|
1617
|
+
?name: ::String,
|
1618
|
+
?description: ::String,
|
1619
|
+
?client_token: ::String,
|
1620
|
+
?fallback_location: ::String,
|
1621
|
+
?propagated_set_level_tags: Array[::String],
|
1622
|
+
?s3_access_config: {
|
1623
|
+
access_log_location: ::String?
|
1624
|
+
}
|
1625
|
+
) -> _UpdateSequenceStoreResponseSuccess
|
1626
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSequenceStoreResponseSuccess
|
1627
|
+
|
1547
1628
|
interface _UpdateVariantStoreResponseSuccess
|
1548
1629
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVariantStoreResponse]
|
1549
1630
|
def id: () -> ::String
|