aws-sdk-omics 1.40.0 → 1.42.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 +251 -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 +85 -2
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +85 -0
- metadata +4 -4
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
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -311,6 +313,10 @@ module Aws
|
|
311
313
|
def creation_time: () -> ::Time
|
312
314
|
def fallback_location: () -> ::String
|
313
315
|
def e_tag_algorithm_family: () -> ("MD5up" | "SHA256up" | "SHA512up")
|
316
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
|
317
|
+
def status_message: () -> ::String
|
318
|
+
def propagated_set_level_tags: () -> ::Array[::String]
|
319
|
+
def s3_access: () -> Types::SequenceStoreS3Access
|
314
320
|
end
|
315
321
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_sequence_store-instance_method
|
316
322
|
def create_sequence_store: (
|
@@ -323,7 +329,11 @@ module Aws
|
|
323
329
|
?tags: Hash[::String, ::String],
|
324
330
|
?client_token: ::String,
|
325
331
|
?fallback_location: ::String,
|
326
|
-
?e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up")
|
332
|
+
?e_tag_algorithm_family: ("MD5up" | "SHA256up" | "SHA512up"),
|
333
|
+
?propagated_set_level_tags: Array[::String],
|
334
|
+
?s3_access_config: {
|
335
|
+
access_log_location: ::String?
|
336
|
+
}
|
327
337
|
) -> _CreateSequenceStoreResponseSuccess
|
328
338
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSequenceStoreResponseSuccess
|
329
339
|
|
@@ -450,6 +460,15 @@ module Aws
|
|
450
460
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
451
461
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
452
462
|
|
463
|
+
interface _DeleteS3AccessPolicyResponseSuccess
|
464
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteS3AccessPolicyResponse]
|
465
|
+
end
|
466
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_s3_access_policy-instance_method
|
467
|
+
def delete_s3_access_policy: (
|
468
|
+
s3_access_point_arn: ::String
|
469
|
+
) -> _DeleteS3AccessPolicyResponseSuccess
|
470
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteS3AccessPolicyResponseSuccess
|
471
|
+
|
453
472
|
interface _DeleteSequenceStoreResponseSuccess
|
454
473
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSequenceStoreResponse]
|
455
474
|
end
|
@@ -823,6 +842,20 @@ module Aws
|
|
823
842
|
) -> _GetRunTaskResponseSuccess
|
824
843
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRunTaskResponseSuccess
|
825
844
|
|
845
|
+
interface _GetS3AccessPolicyResponseSuccess
|
846
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetS3AccessPolicyResponse]
|
847
|
+
def s3_access_point_arn: () -> ::String
|
848
|
+
def store_id: () -> ::String
|
849
|
+
def store_type: () -> ("SEQUENCE_STORE" | "REFERENCE_STORE")
|
850
|
+
def update_time: () -> ::Time
|
851
|
+
def s3_access_policy: () -> ::String
|
852
|
+
end
|
853
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_s3_access_policy-instance_method
|
854
|
+
def get_s3_access_policy: (
|
855
|
+
s3_access_point_arn: ::String
|
856
|
+
) -> _GetS3AccessPolicyResponseSuccess
|
857
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetS3AccessPolicyResponseSuccess
|
858
|
+
|
826
859
|
interface _GetSequenceStoreResponseSuccess
|
827
860
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetSequenceStoreResponse]
|
828
861
|
def id: () -> ::String
|
@@ -834,6 +867,10 @@ module Aws
|
|
834
867
|
def fallback_location: () -> ::String
|
835
868
|
def s3_access: () -> Types::SequenceStoreS3Access
|
836
869
|
def e_tag_algorithm_family: () -> ("MD5up" | "SHA256up" | "SHA512up")
|
870
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
|
871
|
+
def status_message: () -> ::String
|
872
|
+
def propagated_set_level_tags: () -> ::Array[::String]
|
873
|
+
def update_time: () -> ::Time
|
837
874
|
end
|
838
875
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_sequence_store-instance_method
|
839
876
|
def get_sequence_store: (
|
@@ -1200,7 +1237,10 @@ module Aws
|
|
1200
1237
|
?filter: {
|
1201
1238
|
name: ::String?,
|
1202
1239
|
created_after: ::Time?,
|
1203
|
-
created_before: ::Time
|
1240
|
+
created_before: ::Time?,
|
1241
|
+
status: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")?,
|
1242
|
+
updated_after: ::Time?,
|
1243
|
+
updated_before: ::Time?
|
1204
1244
|
}
|
1205
1245
|
) -> _ListSequenceStoresResponseSuccess
|
1206
1246
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSequenceStoresResponseSuccess
|
@@ -1280,6 +1320,19 @@ module Aws
|
|
1280
1320
|
) -> _ListWorkflowsResponseSuccess
|
1281
1321
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowsResponseSuccess
|
1282
1322
|
|
1323
|
+
interface _PutS3AccessPolicyResponseSuccess
|
1324
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutS3AccessPolicyResponse]
|
1325
|
+
def s3_access_point_arn: () -> ::String
|
1326
|
+
def store_id: () -> ::String
|
1327
|
+
def store_type: () -> ("SEQUENCE_STORE" | "REFERENCE_STORE")
|
1328
|
+
end
|
1329
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#put_s3_access_policy-instance_method
|
1330
|
+
def put_s3_access_policy: (
|
1331
|
+
s3_access_point_arn: ::String,
|
1332
|
+
s3_access_policy: ::String
|
1333
|
+
) -> _PutS3AccessPolicyResponseSuccess
|
1334
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutS3AccessPolicyResponseSuccess
|
1335
|
+
|
1283
1336
|
interface _StartAnnotationImportJobResponseSuccess
|
1284
1337
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartAnnotationImportResponse]
|
1285
1338
|
def job_id: () -> ::String
|
@@ -1544,6 +1597,36 @@ module Aws
|
|
1544
1597
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1545
1598
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1546
1599
|
|
1600
|
+
interface _UpdateSequenceStoreResponseSuccess
|
1601
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSequenceStoreResponse]
|
1602
|
+
def id: () -> ::String
|
1603
|
+
def arn: () -> ::String
|
1604
|
+
def name: () -> ::String
|
1605
|
+
def description: () -> ::String
|
1606
|
+
def sse_config: () -> Types::SseConfig
|
1607
|
+
def creation_time: () -> ::Time
|
1608
|
+
def update_time: () -> ::Time
|
1609
|
+
def propagated_set_level_tags: () -> ::Array[::String]
|
1610
|
+
def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "FAILED")
|
1611
|
+
def status_message: () -> ::String
|
1612
|
+
def fallback_location: () -> ::String
|
1613
|
+
def s3_access: () -> Types::SequenceStoreS3Access
|
1614
|
+
def e_tag_algorithm_family: () -> ("MD5up" | "SHA256up" | "SHA512up")
|
1615
|
+
end
|
1616
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#update_sequence_store-instance_method
|
1617
|
+
def update_sequence_store: (
|
1618
|
+
id: ::String,
|
1619
|
+
?name: ::String,
|
1620
|
+
?description: ::String,
|
1621
|
+
?client_token: ::String,
|
1622
|
+
?fallback_location: ::String,
|
1623
|
+
?propagated_set_level_tags: Array[::String],
|
1624
|
+
?s3_access_config: {
|
1625
|
+
access_log_location: ::String?
|
1626
|
+
}
|
1627
|
+
) -> _UpdateSequenceStoreResponseSuccess
|
1628
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSequenceStoreResponseSuccess
|
1629
|
+
|
1547
1630
|
interface _UpdateVariantStoreResponseSuccess
|
1548
1631
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateVariantStoreResponse]
|
1549
1632
|
def id: () -> ::String
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|