aws-sdk-omics 1.40.0 → 1.42.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f5db6dd990404b99db477646dfe9f979c27810fb7adcc69fbcc3d342c2d5ff06
4
- data.tar.gz: a203a349613accf317898bddcc11eef83e18d4bab8394a70cd75d063b7ff83dc
3
+ metadata.gz: a9c912d7c0e3a0d677b7657564745a42d546412cf637bd71cfea466cc2a0c62e
4
+ data.tar.gz: 4a74a9369a2683f52b752103567fded84d620968be8a81a7b01a011c020176e2
5
5
  SHA512:
6
- metadata.gz: 60812785abc4b3687a232dd45c162d126e10d58b586b2aa6bb3a6d1afded3877cfd2da9eb01b1b0370a763dc0bf7bff1dcc6584dc081757a1edf993cb9902fd7
7
- data.tar.gz: a0106b310c60a1858270d5ce6bc38ad95a228eaad34ff43e97c1180d8acd7f97491f53f502c3ca7cf34a67dd0591b43ce1ac0a9d79e306042ba86cf5df968d8b
6
+ metadata.gz: a23ab062b847a9a950543ab9e6fa8d2ae68c61115e6d8cdec5e27393e74dba665224a4ef9d8627a4aa967e1cf7d283c167ed58c772a39fa4b463467ed9c60698
7
+ data.tar.gz: e4d9f91071992e848b1c41027cc7cc42cfb293eb2dded4fb1df56cdd602bf844775457cc97dbcf294c46463552b9e2b64f6dbb0f6e5b48879a3b60e6cf4cdd50
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.41.0 (2024-11-22)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for resource policy based cross account S3 access to sequence store read sets.
13
+
4
14
  1.40.0 (2024-11-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.42.0
@@ -257,11 +257,34 @@ module Aws::Omics
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -1156,6 +1179,9 @@ module Aws::Omics
1156
1179
  # To ensure that requests don't run multiple times, specify a unique
1157
1180
  # token for each request.
1158
1181
  #
1182
+ # **A suitable default value is auto-generated.** You should normally
1183
+ # not need to pass this option.**
1184
+ #
1159
1185
  # @option params [String] :fallback_location
1160
1186
  # An S3 location that is used to store files that have failed a direct
1161
1187
  # upload.
@@ -1163,6 +1189,13 @@ module Aws::Omics
1163
1189
  # @option params [String] :e_tag_algorithm_family
1164
1190
  # The ETag algorithm family to use for ingested read sets.
1165
1191
  #
1192
+ # @option params [Array<String>] :propagated_set_level_tags
1193
+ # The tags keys to propagate to the S3 objects associated with read sets
1194
+ # in the sequence store.
1195
+ #
1196
+ # @option params [Types::S3AccessConfig] :s3_access_config
1197
+ # S3 access configuration parameters
1198
+ #
1166
1199
  # @return [Types::CreateSequenceStoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1167
1200
  #
1168
1201
  # * {Types::CreateSequenceStoreResponse#id #id} => String
@@ -1173,6 +1206,10 @@ module Aws::Omics
1173
1206
  # * {Types::CreateSequenceStoreResponse#creation_time #creation_time} => Time
1174
1207
  # * {Types::CreateSequenceStoreResponse#fallback_location #fallback_location} => String
1175
1208
  # * {Types::CreateSequenceStoreResponse#e_tag_algorithm_family #e_tag_algorithm_family} => String
1209
+ # * {Types::CreateSequenceStoreResponse#status #status} => String
1210
+ # * {Types::CreateSequenceStoreResponse#status_message #status_message} => String
1211
+ # * {Types::CreateSequenceStoreResponse#propagated_set_level_tags #propagated_set_level_tags} => Array&lt;String&gt;
1212
+ # * {Types::CreateSequenceStoreResponse#s3_access #s3_access} => Types::SequenceStoreS3Access
1176
1213
  #
1177
1214
  # @example Request syntax with placeholder values
1178
1215
  #
@@ -1189,6 +1226,10 @@ module Aws::Omics
1189
1226
  # client_token: "ClientToken",
1190
1227
  # fallback_location: "S3Destination",
1191
1228
  # e_tag_algorithm_family: "MD5up", # accepts MD5up, SHA256up, SHA512up
1229
+ # propagated_set_level_tags: ["TagKey"],
1230
+ # s3_access_config: {
1231
+ # access_log_location: "AccessLogLocation",
1232
+ # },
1192
1233
  # })
1193
1234
  #
1194
1235
  # @example Response structure
@@ -1202,6 +1243,13 @@ module Aws::Omics
1202
1243
  # resp.creation_time #=> Time
1203
1244
  # resp.fallback_location #=> String
1204
1245
  # resp.e_tag_algorithm_family #=> String, one of "MD5up", "SHA256up", "SHA512up"
1246
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
1247
+ # resp.status_message #=> String
1248
+ # resp.propagated_set_level_tags #=> Array
1249
+ # resp.propagated_set_level_tags[0] #=> String
1250
+ # resp.s3_access.s3_uri #=> String
1251
+ # resp.s3_access.s3_access_point_arn #=> String
1252
+ # resp.s3_access.access_log_location #=> String
1205
1253
  #
1206
1254
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateSequenceStore AWS API Documentation
1207
1255
  #
@@ -1605,6 +1653,28 @@ module Aws::Omics
1605
1653
  req.send_request(options)
1606
1654
  end
1607
1655
 
1656
+ # Deletes an access policy for the specified store.
1657
+ #
1658
+ # @option params [required, String] :s3_access_point_arn
1659
+ # The S3 access point ARN that has the access policy.
1660
+ #
1661
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1662
+ #
1663
+ # @example Request syntax with placeholder values
1664
+ #
1665
+ # resp = client.delete_s3_access_policy({
1666
+ # s3_access_point_arn: "S3AccessPointArn", # required
1667
+ # })
1668
+ #
1669
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteS3AccessPolicy AWS API Documentation
1670
+ #
1671
+ # @overload delete_s3_access_policy(params = {})
1672
+ # @param [Hash] params ({})
1673
+ def delete_s3_access_policy(params = {}, options = {})
1674
+ req = build_request(:delete_s3_access_policy, params)
1675
+ req.send_request(options)
1676
+ end
1677
+
1608
1678
  # Deletes a sequence store.
1609
1679
  #
1610
1680
  # @option params [required, String] :id
@@ -2698,6 +2768,42 @@ module Aws::Omics
2698
2768
  req.send_request(options)
2699
2769
  end
2700
2770
 
2771
+ # Retrieves details about an access policy on a given store.
2772
+ #
2773
+ # @option params [required, String] :s3_access_point_arn
2774
+ # The S3 access point ARN that has the access policy.
2775
+ #
2776
+ # @return [Types::GetS3AccessPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2777
+ #
2778
+ # * {Types::GetS3AccessPolicyResponse#s3_access_point_arn #s3_access_point_arn} => String
2779
+ # * {Types::GetS3AccessPolicyResponse#store_id #store_id} => String
2780
+ # * {Types::GetS3AccessPolicyResponse#store_type #store_type} => String
2781
+ # * {Types::GetS3AccessPolicyResponse#update_time #update_time} => Time
2782
+ # * {Types::GetS3AccessPolicyResponse#s3_access_policy #s3_access_policy} => String
2783
+ #
2784
+ # @example Request syntax with placeholder values
2785
+ #
2786
+ # resp = client.get_s3_access_policy({
2787
+ # s3_access_point_arn: "S3AccessPointArn", # required
2788
+ # })
2789
+ #
2790
+ # @example Response structure
2791
+ #
2792
+ # resp.s3_access_point_arn #=> String
2793
+ # resp.store_id #=> String
2794
+ # resp.store_type #=> String, one of "SEQUENCE_STORE", "REFERENCE_STORE"
2795
+ # resp.update_time #=> Time
2796
+ # resp.s3_access_policy #=> String
2797
+ #
2798
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetS3AccessPolicy AWS API Documentation
2799
+ #
2800
+ # @overload get_s3_access_policy(params = {})
2801
+ # @param [Hash] params ({})
2802
+ def get_s3_access_policy(params = {}, options = {})
2803
+ req = build_request(:get_s3_access_policy, params)
2804
+ req.send_request(options)
2805
+ end
2806
+
2701
2807
  # Gets information about a sequence store.
2702
2808
  #
2703
2809
  # @option params [required, String] :id
@@ -2714,6 +2820,10 @@ module Aws::Omics
2714
2820
  # * {Types::GetSequenceStoreResponse#fallback_location #fallback_location} => String
2715
2821
  # * {Types::GetSequenceStoreResponse#s3_access #s3_access} => Types::SequenceStoreS3Access
2716
2822
  # * {Types::GetSequenceStoreResponse#e_tag_algorithm_family #e_tag_algorithm_family} => String
2823
+ # * {Types::GetSequenceStoreResponse#status #status} => String
2824
+ # * {Types::GetSequenceStoreResponse#status_message #status_message} => String
2825
+ # * {Types::GetSequenceStoreResponse#propagated_set_level_tags #propagated_set_level_tags} => Array&lt;String&gt;
2826
+ # * {Types::GetSequenceStoreResponse#update_time #update_time} => Time
2717
2827
  #
2718
2828
  # @example Request syntax with placeholder values
2719
2829
  #
@@ -2733,7 +2843,13 @@ module Aws::Omics
2733
2843
  # resp.fallback_location #=> String
2734
2844
  # resp.s3_access.s3_uri #=> String
2735
2845
  # resp.s3_access.s3_access_point_arn #=> String
2846
+ # resp.s3_access.access_log_location #=> String
2736
2847
  # resp.e_tag_algorithm_family #=> String, one of "MD5up", "SHA256up", "SHA512up"
2848
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
2849
+ # resp.status_message #=> String
2850
+ # resp.propagated_set_level_tags #=> Array
2851
+ # resp.propagated_set_level_tags[0] #=> String
2852
+ # resp.update_time #=> Time
2737
2853
  #
2738
2854
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetSequenceStore AWS API Documentation
2739
2855
  #
@@ -3932,6 +4048,9 @@ module Aws::Omics
3932
4048
  # name: "SequenceStoreName",
3933
4049
  # created_after: Time.now,
3934
4050
  # created_before: Time.now,
4051
+ # status: "CREATING", # accepts CREATING, ACTIVE, UPDATING, DELETING, FAILED
4052
+ # updated_after: Time.now,
4053
+ # updated_before: Time.now,
3935
4054
  # },
3936
4055
  # })
3937
4056
  #
@@ -3948,6 +4067,9 @@ module Aws::Omics
3948
4067
  # resp.sequence_stores[0].creation_time #=> Time
3949
4068
  # resp.sequence_stores[0].fallback_location #=> String
3950
4069
  # resp.sequence_stores[0].e_tag_algorithm_family #=> String, one of "MD5up", "SHA256up", "SHA512up"
4070
+ # resp.sequence_stores[0].status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
4071
+ # resp.sequence_stores[0].status_message #=> String
4072
+ # resp.sequence_stores[0].update_time #=> Time
3951
4073
  #
3952
4074
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListSequenceStores AWS API Documentation
3953
4075
  #
@@ -4220,6 +4342,46 @@ module Aws::Omics
4220
4342
  req.send_request(options)
4221
4343
  end
4222
4344
 
4345
+ # Adds an access policy to the specified store.
4346
+ #
4347
+ # @option params [required, String] :s3_access_point_arn
4348
+ # The S3 access point ARN where you want to put the access policy.
4349
+ #
4350
+ # @option params [required, String] :s3_access_policy
4351
+ # The resource policy that controls S3 access to the store.
4352
+ #
4353
+ # **SDK automatically handles json encoding and base64 encoding for you
4354
+ # when the required value (Hash, Array, etc.) is provided according to
4355
+ # the description.**
4356
+ #
4357
+ # @return [Types::PutS3AccessPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4358
+ #
4359
+ # * {Types::PutS3AccessPolicyResponse#s3_access_point_arn #s3_access_point_arn} => String
4360
+ # * {Types::PutS3AccessPolicyResponse#store_id #store_id} => String
4361
+ # * {Types::PutS3AccessPolicyResponse#store_type #store_type} => String
4362
+ #
4363
+ # @example Request syntax with placeholder values
4364
+ #
4365
+ # resp = client.put_s3_access_policy({
4366
+ # s3_access_point_arn: "S3AccessPointArn", # required
4367
+ # s3_access_policy: "S3AccessPolicy", # required
4368
+ # })
4369
+ #
4370
+ # @example Response structure
4371
+ #
4372
+ # resp.s3_access_point_arn #=> String
4373
+ # resp.store_id #=> String
4374
+ # resp.store_type #=> String, one of "SEQUENCE_STORE", "REFERENCE_STORE"
4375
+ #
4376
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/PutS3AccessPolicy AWS API Documentation
4377
+ #
4378
+ # @overload put_s3_access_policy(params = {})
4379
+ # @param [Hash] params ({})
4380
+ def put_s3_access_policy(params = {}, options = {})
4381
+ req = build_request(:put_s3_access_policy, params)
4382
+ req.send_request(options)
4383
+ end
4384
+
4223
4385
  # Starts an annotation import job.
4224
4386
  #
4225
4387
  # @option params [required, String] :destination_name
@@ -4976,6 +5138,94 @@ module Aws::Omics
4976
5138
  req.send_request(options)
4977
5139
  end
4978
5140
 
5141
+ # Update one or more parameters for the sequence store.
5142
+ #
5143
+ # @option params [required, String] :id
5144
+ # The ID of the sequence store.
5145
+ #
5146
+ # @option params [String] :name
5147
+ # A name for the sequence store.
5148
+ #
5149
+ # @option params [String] :description
5150
+ # A description for the sequence store.
5151
+ #
5152
+ # @option params [String] :client_token
5153
+ # To ensure that requests don't run multiple times, specify a unique
5154
+ # token for each request.
5155
+ #
5156
+ # **A suitable default value is auto-generated.** You should normally
5157
+ # not need to pass this option.**
5158
+ #
5159
+ # @option params [String] :fallback_location
5160
+ # The S3 URI of a bucket and folder to store Read Sets that fail to
5161
+ # upload.
5162
+ #
5163
+ # @option params [Array<String>] :propagated_set_level_tags
5164
+ # The tags keys to propagate to the S3 objects associated with read sets
5165
+ # in the sequence store.
5166
+ #
5167
+ # @option params [Types::S3AccessConfig] :s3_access_config
5168
+ # S3 access configuration parameters.
5169
+ #
5170
+ # @return [Types::UpdateSequenceStoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5171
+ #
5172
+ # * {Types::UpdateSequenceStoreResponse#id #id} => String
5173
+ # * {Types::UpdateSequenceStoreResponse#arn #arn} => String
5174
+ # * {Types::UpdateSequenceStoreResponse#name #name} => String
5175
+ # * {Types::UpdateSequenceStoreResponse#description #description} => String
5176
+ # * {Types::UpdateSequenceStoreResponse#sse_config #sse_config} => Types::SseConfig
5177
+ # * {Types::UpdateSequenceStoreResponse#creation_time #creation_time} => Time
5178
+ # * {Types::UpdateSequenceStoreResponse#update_time #update_time} => Time
5179
+ # * {Types::UpdateSequenceStoreResponse#propagated_set_level_tags #propagated_set_level_tags} => Array&lt;String&gt;
5180
+ # * {Types::UpdateSequenceStoreResponse#status #status} => String
5181
+ # * {Types::UpdateSequenceStoreResponse#status_message #status_message} => String
5182
+ # * {Types::UpdateSequenceStoreResponse#fallback_location #fallback_location} => String
5183
+ # * {Types::UpdateSequenceStoreResponse#s3_access #s3_access} => Types::SequenceStoreS3Access
5184
+ # * {Types::UpdateSequenceStoreResponse#e_tag_algorithm_family #e_tag_algorithm_family} => String
5185
+ #
5186
+ # @example Request syntax with placeholder values
5187
+ #
5188
+ # resp = client.update_sequence_store({
5189
+ # id: "SequenceStoreId", # required
5190
+ # name: "SequenceStoreName",
5191
+ # description: "SequenceStoreDescription",
5192
+ # client_token: "ClientToken",
5193
+ # fallback_location: "S3Destination",
5194
+ # propagated_set_level_tags: ["TagKey"],
5195
+ # s3_access_config: {
5196
+ # access_log_location: "AccessLogLocation",
5197
+ # },
5198
+ # })
5199
+ #
5200
+ # @example Response structure
5201
+ #
5202
+ # resp.id #=> String
5203
+ # resp.arn #=> String
5204
+ # resp.name #=> String
5205
+ # resp.description #=> String
5206
+ # resp.sse_config.type #=> String, one of "KMS"
5207
+ # resp.sse_config.key_arn #=> String
5208
+ # resp.creation_time #=> Time
5209
+ # resp.update_time #=> Time
5210
+ # resp.propagated_set_level_tags #=> Array
5211
+ # resp.propagated_set_level_tags[0] #=> String
5212
+ # resp.status #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "FAILED"
5213
+ # resp.status_message #=> String
5214
+ # resp.fallback_location #=> String
5215
+ # resp.s3_access.s3_uri #=> String
5216
+ # resp.s3_access.s3_access_point_arn #=> String
5217
+ # resp.s3_access.access_log_location #=> String
5218
+ # resp.e_tag_algorithm_family #=> String, one of "MD5up", "SHA256up", "SHA512up"
5219
+ #
5220
+ # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/UpdateSequenceStore AWS API Documentation
5221
+ #
5222
+ # @overload update_sequence_store(params = {})
5223
+ # @param [Hash] params ({})
5224
+ def update_sequence_store(params = {}, options = {})
5225
+ req = build_request(:update_sequence_store, params)
5226
+ req.send_request(options)
5227
+ end
5228
+
4979
5229
  # Updates a variant store.
4980
5230
  #
4981
5231
  # @option params [required, String] :name
@@ -5114,7 +5364,7 @@ module Aws::Omics
5114
5364
  tracer: tracer
5115
5365
  )
5116
5366
  context[:gem_name] = 'aws-sdk-omics'
5117
- context[:gem_version] = '1.40.0'
5367
+ context[:gem_version] = '1.42.0'
5118
5368
  Seahorse::Client::Request.new(handlers, context)
5119
5369
  end
5120
5370