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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f5db6dd990404b99db477646dfe9f979c27810fb7adcc69fbcc3d342c2d5ff06
4
- data.tar.gz: a203a349613accf317898bddcc11eef83e18d4bab8394a70cd75d063b7ff83dc
3
+ metadata.gz: a7b9cf3e2bfb255835da79e805d5716346c1073270f75757c68848586c30ca10
4
+ data.tar.gz: f67ff58683e6def3a91a32aa9a2af7450ec0076df4852d866fdc12d685ed3069
5
5
  SHA512:
6
- metadata.gz: 60812785abc4b3687a232dd45c162d126e10d58b586b2aa6bb3a6d1afded3877cfd2da9eb01b1b0370a763dc0bf7bff1dcc6584dc081757a1edf993cb9902fd7
7
- data.tar.gz: a0106b310c60a1858270d5ce6bc38ad95a228eaad34ff43e97c1180d8acd7f97491f53f502c3ca7cf34a67dd0591b43ce1ac0a9d79e306042ba86cf5df968d8b
6
+ metadata.gz: '04971a923025a20b60494f7993d406e2b67c4194f573fd8f9a80a67e73402ce457d0fddbbcf33ddb7addd91ad17de9a8f93416eb62738c3033882fc555bda888'
7
+ data.tar.gz: c07a08d8d38bb19e4d285cea6bf313ecb5aeea770516640979f7ef6a2965da091e1573145f486ef658f80faeb2fc340048460f9f7deb9c3defa35eec09bf7167
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2024-11-22)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for resource policy based cross account S3 access to sequence store read sets.
8
+
4
9
  1.40.0 (2024-11-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.41.0
@@ -1156,6 +1156,9 @@ module Aws::Omics
1156
1156
  # To ensure that requests don't run multiple times, specify a unique
1157
1157
  # token for each request.
1158
1158
  #
1159
+ # **A suitable default value is auto-generated.** You should normally
1160
+ # not need to pass this option.**
1161
+ #
1159
1162
  # @option params [String] :fallback_location
1160
1163
  # An S3 location that is used to store files that have failed a direct
1161
1164
  # upload.
@@ -1163,6 +1166,13 @@ module Aws::Omics
1163
1166
  # @option params [String] :e_tag_algorithm_family
1164
1167
  # The ETag algorithm family to use for ingested read sets.
1165
1168
  #
1169
+ # @option params [Array<String>] :propagated_set_level_tags
1170
+ # The tags keys to propagate to the S3 objects associated with read sets
1171
+ # in the sequence store.
1172
+ #
1173
+ # @option params [Types::S3AccessConfig] :s3_access_config
1174
+ # S3 access configuration parameters
1175
+ #
1166
1176
  # @return [Types::CreateSequenceStoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1167
1177
  #
1168
1178
  # * {Types::CreateSequenceStoreResponse#id #id} => String
@@ -1173,6 +1183,10 @@ module Aws::Omics
1173
1183
  # * {Types::CreateSequenceStoreResponse#creation_time #creation_time} => Time
1174
1184
  # * {Types::CreateSequenceStoreResponse#fallback_location #fallback_location} => String
1175
1185
  # * {Types::CreateSequenceStoreResponse#e_tag_algorithm_family #e_tag_algorithm_family} => String
1186
+ # * {Types::CreateSequenceStoreResponse#status #status} => String
1187
+ # * {Types::CreateSequenceStoreResponse#status_message #status_message} => String
1188
+ # * {Types::CreateSequenceStoreResponse#propagated_set_level_tags #propagated_set_level_tags} => Array&lt;String&gt;
1189
+ # * {Types::CreateSequenceStoreResponse#s3_access #s3_access} => Types::SequenceStoreS3Access
1176
1190
  #
1177
1191
  # @example Request syntax with placeholder values
1178
1192
  #
@@ -1189,6 +1203,10 @@ module Aws::Omics
1189
1203
  # client_token: "ClientToken",
1190
1204
  # fallback_location: "S3Destination",
1191
1205
  # e_tag_algorithm_family: "MD5up", # accepts MD5up, SHA256up, SHA512up
1206
+ # propagated_set_level_tags: ["TagKey"],
1207
+ # s3_access_config: {
1208
+ # access_log_location: "AccessLogLocation",
1209
+ # },
1192
1210
  # })
1193
1211
  #
1194
1212
  # @example Response structure
@@ -1202,6 +1220,13 @@ module Aws::Omics
1202
1220
  # resp.creation_time #=> Time
1203
1221
  # resp.fallback_location #=> String
1204
1222
  # resp.e_tag_algorithm_family #=> String, one of "MD5up", "SHA256up", "SHA512up"
1223
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
1224
+ # resp.status_message #=> String
1225
+ # resp.propagated_set_level_tags #=> Array
1226
+ # resp.propagated_set_level_tags[0] #=> String
1227
+ # resp.s3_access.s3_uri #=> String
1228
+ # resp.s3_access.s3_access_point_arn #=> String
1229
+ # resp.s3_access.access_log_location #=> String
1205
1230
  #
1206
1231
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateSequenceStore AWS API Documentation
1207
1232
  #
@@ -1605,6 +1630,28 @@ module Aws::Omics
1605
1630
  req.send_request(options)
1606
1631
  end
1607
1632
 
1633
+ # Deletes an access policy for the specified store.
1634
+ #
1635
+ # @option params [required, String] :s3_access_point_arn
1636
+ # The S3 access point ARN that has the access policy.
1637
+ #
1638
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1639
+ #
1640
+ # @example Request syntax with placeholder values
1641
+ #
1642
+ # resp = client.delete_s3_access_policy({
1643
+ # s3_access_point_arn: "S3AccessPointArn", # required
1644
+ # })
1645
+ #
1646
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteS3AccessPolicy AWS API Documentation
1647
+ #
1648
+ # @overload delete_s3_access_policy(params = {})
1649
+ # @param [Hash] params ({})
1650
+ def delete_s3_access_policy(params = {}, options = {})
1651
+ req = build_request(:delete_s3_access_policy, params)
1652
+ req.send_request(options)
1653
+ end
1654
+
1608
1655
  # Deletes a sequence store.
1609
1656
  #
1610
1657
  # @option params [required, String] :id
@@ -2698,6 +2745,42 @@ module Aws::Omics
2698
2745
  req.send_request(options)
2699
2746
  end
2700
2747
 
2748
+ # Retrieves details about an access policy on a given store.
2749
+ #
2750
+ # @option params [required, String] :s3_access_point_arn
2751
+ # The S3 access point ARN that has the access policy.
2752
+ #
2753
+ # @return [Types::GetS3AccessPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2754
+ #
2755
+ # * {Types::GetS3AccessPolicyResponse#s3_access_point_arn #s3_access_point_arn} => String
2756
+ # * {Types::GetS3AccessPolicyResponse#store_id #store_id} => String
2757
+ # * {Types::GetS3AccessPolicyResponse#store_type #store_type} => String
2758
+ # * {Types::GetS3AccessPolicyResponse#update_time #update_time} => Time
2759
+ # * {Types::GetS3AccessPolicyResponse#s3_access_policy #s3_access_policy} => String
2760
+ #
2761
+ # @example Request syntax with placeholder values
2762
+ #
2763
+ # resp = client.get_s3_access_policy({
2764
+ # s3_access_point_arn: "S3AccessPointArn", # required
2765
+ # })
2766
+ #
2767
+ # @example Response structure
2768
+ #
2769
+ # resp.s3_access_point_arn #=> String
2770
+ # resp.store_id #=> String
2771
+ # resp.store_type #=> String, one of "SEQUENCE_STORE", "REFERENCE_STORE"
2772
+ # resp.update_time #=> Time
2773
+ # resp.s3_access_policy #=> String
2774
+ #
2775
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetS3AccessPolicy AWS API Documentation
2776
+ #
2777
+ # @overload get_s3_access_policy(params = {})
2778
+ # @param [Hash] params ({})
2779
+ def get_s3_access_policy(params = {}, options = {})
2780
+ req = build_request(:get_s3_access_policy, params)
2781
+ req.send_request(options)
2782
+ end
2783
+
2701
2784
  # Gets information about a sequence store.
2702
2785
  #
2703
2786
  # @option params [required, String] :id
@@ -2714,6 +2797,10 @@ module Aws::Omics
2714
2797
  # * {Types::GetSequenceStoreResponse#fallback_location #fallback_location} => String
2715
2798
  # * {Types::GetSequenceStoreResponse#s3_access #s3_access} => Types::SequenceStoreS3Access
2716
2799
  # * {Types::GetSequenceStoreResponse#e_tag_algorithm_family #e_tag_algorithm_family} => String
2800
+ # * {Types::GetSequenceStoreResponse#status #status} => String
2801
+ # * {Types::GetSequenceStoreResponse#status_message #status_message} => String
2802
+ # * {Types::GetSequenceStoreResponse#propagated_set_level_tags #propagated_set_level_tags} => Array&lt;String&gt;
2803
+ # * {Types::GetSequenceStoreResponse#update_time #update_time} => Time
2717
2804
  #
2718
2805
  # @example Request syntax with placeholder values
2719
2806
  #
@@ -2733,7 +2820,13 @@ module Aws::Omics
2733
2820
  # resp.fallback_location #=> String
2734
2821
  # resp.s3_access.s3_uri #=> String
2735
2822
  # resp.s3_access.s3_access_point_arn #=> String
2823
+ # resp.s3_access.access_log_location #=> String
2736
2824
  # resp.e_tag_algorithm_family #=> String, one of "MD5up", "SHA256up", "SHA512up"
2825
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
2826
+ # resp.status_message #=> String
2827
+ # resp.propagated_set_level_tags #=> Array
2828
+ # resp.propagated_set_level_tags[0] #=> String
2829
+ # resp.update_time #=> Time
2737
2830
  #
2738
2831
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetSequenceStore AWS API Documentation
2739
2832
  #
@@ -3932,6 +4025,9 @@ module Aws::Omics
3932
4025
  # name: "SequenceStoreName",
3933
4026
  # created_after: Time.now,
3934
4027
  # created_before: Time.now,
4028
+ # status: "CREATING", # accepts CREATING, ACTIVE, UPDATING, DELETING, FAILED
4029
+ # updated_after: Time.now,
4030
+ # updated_before: Time.now,
3935
4031
  # },
3936
4032
  # })
3937
4033
  #
@@ -3948,6 +4044,9 @@ module Aws::Omics
3948
4044
  # resp.sequence_stores[0].creation_time #=> Time
3949
4045
  # resp.sequence_stores[0].fallback_location #=> String
3950
4046
  # resp.sequence_stores[0].e_tag_algorithm_family #=> String, one of "MD5up", "SHA256up", "SHA512up"
4047
+ # resp.sequence_stores[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
4048
+ # resp.sequence_stores[0].status_message #=> String
4049
+ # resp.sequence_stores[0].update_time #=> Time
3951
4050
  #
3952
4051
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListSequenceStores AWS API Documentation
3953
4052
  #
@@ -4220,6 +4319,46 @@ module Aws::Omics
4220
4319
  req.send_request(options)
4221
4320
  end
4222
4321
 
4322
+ # Adds an access policy to the specified store.
4323
+ #
4324
+ # @option params [required, String] :s3_access_point_arn
4325
+ # The S3 access point ARN where you want to put the access policy.
4326
+ #
4327
+ # @option params [required, String] :s3_access_policy
4328
+ # The resource policy that controls S3 access to the store.
4329
+ #
4330
+ # **SDK automatically handles json encoding and base64 encoding for you
4331
+ # when the required value (Hash, Array, etc.) is provided according to
4332
+ # the description.**
4333
+ #
4334
+ # @return [Types::PutS3AccessPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4335
+ #
4336
+ # * {Types::PutS3AccessPolicyResponse#s3_access_point_arn #s3_access_point_arn} => String
4337
+ # * {Types::PutS3AccessPolicyResponse#store_id #store_id} => String
4338
+ # * {Types::PutS3AccessPolicyResponse#store_type #store_type} => String
4339
+ #
4340
+ # @example Request syntax with placeholder values
4341
+ #
4342
+ # resp = client.put_s3_access_policy({
4343
+ # s3_access_point_arn: "S3AccessPointArn", # required
4344
+ # s3_access_policy: "S3AccessPolicy", # required
4345
+ # })
4346
+ #
4347
+ # @example Response structure
4348
+ #
4349
+ # resp.s3_access_point_arn #=> String
4350
+ # resp.store_id #=> String
4351
+ # resp.store_type #=> String, one of "SEQUENCE_STORE", "REFERENCE_STORE"
4352
+ #
4353
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/PutS3AccessPolicy AWS API Documentation
4354
+ #
4355
+ # @overload put_s3_access_policy(params = {})
4356
+ # @param [Hash] params ({})
4357
+ def put_s3_access_policy(params = {}, options = {})
4358
+ req = build_request(:put_s3_access_policy, params)
4359
+ req.send_request(options)
4360
+ end
4361
+
4223
4362
  # Starts an annotation import job.
4224
4363
  #
4225
4364
  # @option params [required, String] :destination_name
@@ -4976,6 +5115,94 @@ module Aws::Omics
4976
5115
  req.send_request(options)
4977
5116
  end
4978
5117
 
5118
+ # Update one or more parameters for the sequence store.
5119
+ #
5120
+ # @option params [required, String] :id
5121
+ # The ID of the sequence store.
5122
+ #
5123
+ # @option params [String] :name
5124
+ # A name for the sequence store.
5125
+ #
5126
+ # @option params [String] :description
5127
+ # A description for the sequence store.
5128
+ #
5129
+ # @option params [String] :client_token
5130
+ # To ensure that requests don't run multiple times, specify a unique
5131
+ # token for each request.
5132
+ #
5133
+ # **A suitable default value is auto-generated.** You should normally
5134
+ # not need to pass this option.**
5135
+ #
5136
+ # @option params [String] :fallback_location
5137
+ # The S3 URI of a bucket and folder to store Read Sets that fail to
5138
+ # upload.
5139
+ #
5140
+ # @option params [Array<String>] :propagated_set_level_tags
5141
+ # The tags keys to propagate to the S3 objects associated with read sets
5142
+ # in the sequence store.
5143
+ #
5144
+ # @option params [Types::S3AccessConfig] :s3_access_config
5145
+ # S3 access configuration parameters.
5146
+ #
5147
+ # @return [Types::UpdateSequenceStoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5148
+ #
5149
+ # * {Types::UpdateSequenceStoreResponse#id #id} => String
5150
+ # * {Types::UpdateSequenceStoreResponse#arn #arn} => String
5151
+ # * {Types::UpdateSequenceStoreResponse#name #name} => String
5152
+ # * {Types::UpdateSequenceStoreResponse#description #description} => String
5153
+ # * {Types::UpdateSequenceStoreResponse#sse_config #sse_config} => Types::SseConfig
5154
+ # * {Types::UpdateSequenceStoreResponse#creation_time #creation_time} => Time
5155
+ # * {Types::UpdateSequenceStoreResponse#update_time #update_time} => Time
5156
+ # * {Types::UpdateSequenceStoreResponse#propagated_set_level_tags #propagated_set_level_tags} => Array&lt;String&gt;
5157
+ # * {Types::UpdateSequenceStoreResponse#status #status} => String
5158
+ # * {Types::UpdateSequenceStoreResponse#status_message #status_message} => String
5159
+ # * {Types::UpdateSequenceStoreResponse#fallback_location #fallback_location} => String
5160
+ # * {Types::UpdateSequenceStoreResponse#s3_access #s3_access} => Types::SequenceStoreS3Access
5161
+ # * {Types::UpdateSequenceStoreResponse#e_tag_algorithm_family #e_tag_algorithm_family} => String
5162
+ #
5163
+ # @example Request syntax with placeholder values
5164
+ #
5165
+ # resp = client.update_sequence_store({
5166
+ # id: "SequenceStoreId", # required
5167
+ # name: "SequenceStoreName",
5168
+ # description: "SequenceStoreDescription",
5169
+ # client_token: "ClientToken",
5170
+ # fallback_location: "S3Destination",
5171
+ # propagated_set_level_tags: ["TagKey"],
5172
+ # s3_access_config: {
5173
+ # access_log_location: "AccessLogLocation",
5174
+ # },
5175
+ # })
5176
+ #
5177
+ # @example Response structure
5178
+ #
5179
+ # resp.id #=> String
5180
+ # resp.arn #=> String
5181
+ # resp.name #=> String
5182
+ # resp.description #=> String
5183
+ # resp.sse_config.type #=> String, one of "KMS"
5184
+ # resp.sse_config.key_arn #=> String
5185
+ # resp.creation_time #=> Time
5186
+ # resp.update_time #=> Time
5187
+ # resp.propagated_set_level_tags #=> Array
5188
+ # resp.propagated_set_level_tags[0] #=> String
5189
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
5190
+ # resp.status_message #=> String
5191
+ # resp.fallback_location #=> String
5192
+ # resp.s3_access.s3_uri #=> String
5193
+ # resp.s3_access.s3_access_point_arn #=> String
5194
+ # resp.s3_access.access_log_location #=> String
5195
+ # resp.e_tag_algorithm_family #=> String, one of "MD5up", "SHA256up", "SHA512up"
5196
+ #
5197
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/UpdateSequenceStore AWS API Documentation
5198
+ #
5199
+ # @overload update_sequence_store(params = {})
5200
+ # @param [Hash] params ({})
5201
+ def update_sequence_store(params = {}, options = {})
5202
+ req = build_request(:update_sequence_store, params)
5203
+ req.send_request(options)
5204
+ end
5205
+
4979
5206
  # Updates a variant store.
4980
5207
  #
4981
5208
  # @option params [required, String] :name
@@ -5114,7 +5341,7 @@ module Aws::Omics
5114
5341
  tracer: tracer
5115
5342
  )
5116
5343
  context[:gem_name] = 'aws-sdk-omics'
5117
- context[:gem_version] = '1.40.0'
5344
+ context[:gem_version] = '1.41.0'
5118
5345
  Seahorse::Client::Request.new(handlers, context)
5119
5346
  end
5120
5347