aws-sdk-s3 1.10.0 → 1.208.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 +5 -5
- data/CHANGELOG.md +1517 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-s3/access_grants_credentials.rb +57 -0
- data/lib/aws-sdk-s3/access_grants_credentials_provider.rb +250 -0
- data/lib/aws-sdk-s3/bucket.rb +1062 -99
- data/lib/aws-sdk-s3/bucket_acl.rb +67 -17
- data/lib/aws-sdk-s3/bucket_cors.rb +80 -17
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +71 -19
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +126 -20
- data/lib/aws-sdk-s3/bucket_logging.rb +68 -18
- data/lib/aws-sdk-s3/bucket_notification.rb +56 -20
- data/lib/aws-sdk-s3/bucket_policy.rb +108 -17
- data/lib/aws-sdk-s3/bucket_region_cache.rb +11 -5
- data/lib/aws-sdk-s3/bucket_request_payment.rb +60 -15
- data/lib/aws-sdk-s3/bucket_tagging.rb +71 -17
- data/lib/aws-sdk-s3/bucket_versioning.rb +166 -17
- data/lib/aws-sdk-s3/bucket_website.rb +78 -17
- data/lib/aws-sdk-s3/client.rb +20068 -3879
- data/lib/aws-sdk-s3/client_api.rb +1957 -209
- data/lib/aws-sdk-s3/customizations/bucket.rb +57 -38
- data/lib/aws-sdk-s3/customizations/errors.rb +40 -0
- data/lib/aws-sdk-s3/customizations/multipart_upload.rb +2 -0
- data/lib/aws-sdk-s3/customizations/object.rb +338 -68
- data/lib/aws-sdk-s3/customizations/object_summary.rb +17 -0
- data/lib/aws-sdk-s3/customizations/object_version.rb +13 -0
- data/lib/aws-sdk-s3/customizations/types/list_object_versions_output.rb +2 -0
- data/lib/aws-sdk-s3/customizations/types/permanent_redirect.rb +26 -0
- data/lib/aws-sdk-s3/customizations.rb +30 -27
- data/lib/aws-sdk-s3/default_executor.rb +103 -0
- data/lib/aws-sdk-s3/encryption/client.rb +29 -8
- data/lib/aws-sdk-s3/encryption/decrypt_handler.rb +71 -29
- data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +45 -5
- data/lib/aws-sdk-s3/encryption/default_key_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +15 -2
- data/lib/aws-sdk-s3/encryption/errors.rb +2 -0
- data/lib/aws-sdk-s3/encryption/io_auth_decrypter.rb +11 -3
- data/lib/aws-sdk-s3/encryption/io_decrypter.rb +11 -3
- data/lib/aws-sdk-s3/encryption/io_encrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryption/key_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +48 -11
- data/lib/aws-sdk-s3/encryption/materials.rb +8 -6
- data/lib/aws-sdk-s3/encryption/utils.rb +25 -0
- data/lib/aws-sdk-s3/encryption.rb +4 -0
- data/lib/aws-sdk-s3/encryptionV2/client.rb +645 -0
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +68 -0
- data/lib/aws-sdk-s3/encryptionV2/decryption.rb +205 -0
- data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +187 -0
- data/lib/aws-sdk-s3/encryptionV2/default_key_provider.rb +40 -0
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +67 -0
- data/lib/aws-sdk-s3/encryptionV2/errors.rb +37 -0
- data/lib/aws-sdk-s3/encryptionV2/io_auth_decrypter.rb +58 -0
- data/lib/aws-sdk-s3/encryptionV2/io_decrypter.rb +37 -0
- data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +75 -0
- data/lib/aws-sdk-s3/encryptionV2/key_provider.rb +31 -0
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +181 -0
- data/lib/aws-sdk-s3/encryptionV2/materials.rb +60 -0
- data/lib/aws-sdk-s3/encryptionV2/utils.rb +108 -0
- data/lib/aws-sdk-s3/encryptionV3/client.rb +885 -0
- data/lib/aws-sdk-s3/encryptionV3/decrypt_handler.rb +98 -0
- data/lib/aws-sdk-s3/encryptionV3/decryption.rb +244 -0
- data/lib/aws-sdk-s3/encryptionV3/default_cipher_provider.rb +159 -0
- data/lib/aws-sdk-s3/encryptionV3/default_key_provider.rb +35 -0
- data/lib/aws-sdk-s3/encryptionV3/encrypt_handler.rb +98 -0
- data/lib/aws-sdk-s3/encryptionV3/errors.rb +47 -0
- data/lib/aws-sdk-s3/encryptionV3/io_auth_decrypter.rb +60 -0
- data/lib/aws-sdk-s3/encryptionV3/io_decrypter.rb +35 -0
- data/lib/aws-sdk-s3/encryptionV3/io_encrypter.rb +84 -0
- data/lib/aws-sdk-s3/encryptionV3/key_provider.rb +28 -0
- data/lib/aws-sdk-s3/encryptionV3/kms_cipher_provider.rb +159 -0
- data/lib/aws-sdk-s3/encryptionV3/materials.rb +58 -0
- data/lib/aws-sdk-s3/encryptionV3/utils.rb +321 -0
- data/lib/aws-sdk-s3/encryption_v2.rb +24 -0
- data/lib/aws-sdk-s3/encryption_v3.rb +24 -0
- data/lib/aws-sdk-s3/endpoint_parameters.rb +181 -0
- data/lib/aws-sdk-s3/endpoint_provider.rb +886 -0
- data/lib/aws-sdk-s3/endpoints.rb +1544 -0
- data/lib/aws-sdk-s3/errors.rb +181 -1
- data/lib/aws-sdk-s3/event_streams.rb +69 -0
- data/lib/aws-sdk-s3/express_credentials.rb +55 -0
- data/lib/aws-sdk-s3/express_credentials_provider.rb +59 -0
- data/lib/aws-sdk-s3/file_downloader.rb +261 -82
- data/lib/aws-sdk-s3/file_part.rb +16 -13
- data/lib/aws-sdk-s3/file_uploader.rb +37 -22
- data/lib/aws-sdk-s3/legacy_signer.rb +19 -26
- data/lib/aws-sdk-s3/multipart_download_error.rb +8 -0
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +142 -80
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +191 -0
- data/lib/aws-sdk-s3/multipart_upload.rb +342 -31
- data/lib/aws-sdk-s3/multipart_upload_error.rb +5 -4
- data/lib/aws-sdk-s3/multipart_upload_part.rb +387 -47
- data/lib/aws-sdk-s3/object.rb +2733 -204
- data/lib/aws-sdk-s3/object_acl.rb +112 -25
- data/lib/aws-sdk-s3/object_copier.rb +9 -5
- data/lib/aws-sdk-s3/object_multipart_copier.rb +50 -23
- data/lib/aws-sdk-s3/object_summary.rb +2265 -181
- data/lib/aws-sdk-s3/object_version.rb +542 -74
- data/lib/aws-sdk-s3/plugins/accelerate.rb +17 -64
- data/lib/aws-sdk-s3/plugins/access_grants.rb +178 -0
- data/lib/aws-sdk-s3/plugins/arn.rb +70 -0
- data/lib/aws-sdk-s3/plugins/bucket_dns.rb +7 -43
- data/lib/aws-sdk-s3/plugins/bucket_name_restrictions.rb +20 -3
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/dualstack.rb +7 -50
- data/lib/aws-sdk-s3/plugins/endpoints.rb +86 -0
- data/lib/aws-sdk-s3/plugins/expect_100_continue.rb +5 -4
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +88 -0
- data/lib/aws-sdk-s3/plugins/get_bucket_location_fix.rb +3 -1
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +62 -17
- data/lib/aws-sdk-s3/plugins/iad_regional_endpoint.rb +44 -0
- data/lib/aws-sdk-s3/plugins/location_constraint.rb +5 -1
- data/lib/aws-sdk-s3/plugins/md5s.rb +14 -67
- data/lib/aws-sdk-s3/plugins/redirects.rb +5 -1
- data/lib/aws-sdk-s3/plugins/s3_host_id.rb +2 -0
- data/lib/aws-sdk-s3/plugins/s3_signer.rb +67 -93
- data/lib/aws-sdk-s3/plugins/sse_cpk.rb +3 -1
- data/lib/aws-sdk-s3/plugins/streaming_retry.rb +137 -0
- data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +4 -1
- data/lib/aws-sdk-s3/presigned_post.rb +160 -99
- data/lib/aws-sdk-s3/presigner.rb +178 -81
- data/lib/aws-sdk-s3/resource.rb +164 -15
- data/lib/aws-sdk-s3/transfer_manager.rb +303 -0
- data/lib/aws-sdk-s3/types.rb +15981 -4168
- data/lib/aws-sdk-s3/waiters.rb +67 -1
- data/lib/aws-sdk-s3.rb +46 -31
- data/sig/bucket.rbs +231 -0
- data/sig/bucket_acl.rbs +78 -0
- data/sig/bucket_cors.rbs +69 -0
- data/sig/bucket_lifecycle.rbs +88 -0
- data/sig/bucket_lifecycle_configuration.rbs +115 -0
- data/sig/bucket_logging.rbs +76 -0
- data/sig/bucket_notification.rbs +114 -0
- data/sig/bucket_policy.rbs +59 -0
- data/sig/bucket_request_payment.rbs +54 -0
- data/sig/bucket_tagging.rbs +65 -0
- data/sig/bucket_versioning.rbs +77 -0
- data/sig/bucket_website.rbs +93 -0
- data/sig/client.rbs +2612 -0
- data/sig/customizations/bucket.rbs +19 -0
- data/sig/customizations/object.rbs +38 -0
- data/sig/customizations/object_summary.rbs +35 -0
- data/sig/errors.rbs +44 -0
- data/sig/multipart_upload.rbs +120 -0
- data/sig/multipart_upload_part.rbs +109 -0
- data/sig/object.rbs +464 -0
- data/sig/object_acl.rbs +86 -0
- data/sig/object_summary.rbs +347 -0
- data/sig/object_version.rbs +143 -0
- data/sig/resource.rbs +141 -0
- data/sig/types.rbs +2899 -0
- data/sig/waiters.rbs +95 -0
- metadata +97 -14
|
@@ -1,11 +1,14 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
4
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
7
|
#
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
8
10
|
module Aws::S3
|
|
11
|
+
|
|
9
12
|
class BucketAcl
|
|
10
13
|
|
|
11
14
|
extend Aws::Deprecations
|
|
@@ -21,6 +24,7 @@ module Aws::S3
|
|
|
21
24
|
@bucket_name = extract_bucket_name(args, options)
|
|
22
25
|
@data = options.delete(:data)
|
|
23
26
|
@client = options.delete(:client) || Client.new(options)
|
|
27
|
+
@waiter_block_warned = false
|
|
24
28
|
end
|
|
25
29
|
|
|
26
30
|
# @!group Read-Only Attributes
|
|
@@ -30,6 +34,7 @@ module Aws::S3
|
|
|
30
34
|
@bucket_name
|
|
31
35
|
end
|
|
32
36
|
|
|
37
|
+
# Container for the bucket owner's ID.
|
|
33
38
|
# @return [Types::Owner]
|
|
34
39
|
def owner
|
|
35
40
|
data[:owner]
|
|
@@ -55,7 +60,9 @@ module Aws::S3
|
|
|
55
60
|
#
|
|
56
61
|
# @return [self]
|
|
57
62
|
def load
|
|
58
|
-
resp =
|
|
63
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
|
64
|
+
@client.get_bucket_acl(bucket: @bucket_name)
|
|
65
|
+
end
|
|
59
66
|
@data = resp.data
|
|
60
67
|
self
|
|
61
68
|
end
|
|
@@ -81,7 +88,8 @@ module Aws::S3
|
|
|
81
88
|
# Waiter polls an API operation until a resource enters a desired
|
|
82
89
|
# state.
|
|
83
90
|
#
|
|
84
|
-
# @note The waiting operation is performed on a copy. The original resource
|
|
91
|
+
# @note The waiting operation is performed on a copy. The original resource
|
|
92
|
+
# remains unchanged.
|
|
85
93
|
#
|
|
86
94
|
# ## Basic Usage
|
|
87
95
|
#
|
|
@@ -94,13 +102,15 @@ module Aws::S3
|
|
|
94
102
|
#
|
|
95
103
|
# ## Example
|
|
96
104
|
#
|
|
97
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
|
105
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
|
106
|
+
# instance.state.name == 'running'
|
|
107
|
+
# end
|
|
98
108
|
#
|
|
99
109
|
# ## Configuration
|
|
100
110
|
#
|
|
101
111
|
# You can configure the maximum number of polling attempts, and the
|
|
102
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
|
103
|
-
# by passing a block to {#wait_until}:
|
|
112
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
|
113
|
+
# set by passing a block to {#wait_until}:
|
|
104
114
|
#
|
|
105
115
|
# # poll for ~25 seconds
|
|
106
116
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
|
@@ -131,17 +141,16 @@ module Aws::S3
|
|
|
131
141
|
# # resource did not enter the desired state in time
|
|
132
142
|
# end
|
|
133
143
|
#
|
|
144
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
|
134
145
|
#
|
|
135
|
-
# @
|
|
136
|
-
#
|
|
137
|
-
#
|
|
138
|
-
# because the waiter has entered a state that it will not transition
|
|
139
|
-
# out of, preventing success.
|
|
146
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
|
147
|
+
# terminates because the waiter has entered a state that it will not
|
|
148
|
+
# transition out of, preventing success.
|
|
140
149
|
#
|
|
141
150
|
# yet successful.
|
|
142
151
|
#
|
|
143
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
|
144
|
-
# while polling for a resource that is not expected.
|
|
152
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
|
153
|
+
# encountered while polling for a resource that is not expected.
|
|
145
154
|
#
|
|
146
155
|
# @raise [NotImplementedError] Raised when the resource does not
|
|
147
156
|
#
|
|
@@ -168,7 +177,9 @@ module Aws::S3
|
|
|
168
177
|
:retry
|
|
169
178
|
end
|
|
170
179
|
end
|
|
171
|
-
Aws::
|
|
180
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
|
181
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
|
182
|
+
end
|
|
172
183
|
end
|
|
173
184
|
|
|
174
185
|
# @!group Actions
|
|
@@ -196,17 +207,48 @@ module Aws::S3
|
|
|
196
207
|
# },
|
|
197
208
|
# },
|
|
198
209
|
# content_md5: "ContentMD5",
|
|
210
|
+
# checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
|
|
199
211
|
# grant_full_control: "GrantFullControl",
|
|
200
212
|
# grant_read: "GrantRead",
|
|
201
213
|
# grant_read_acp: "GrantReadACP",
|
|
202
214
|
# grant_write: "GrantWrite",
|
|
203
215
|
# grant_write_acp: "GrantWriteACP",
|
|
216
|
+
# expected_bucket_owner: "AccountId",
|
|
204
217
|
# })
|
|
205
218
|
# @param [Hash] options ({})
|
|
206
219
|
# @option options [String] :acl
|
|
207
220
|
# The canned ACL to apply to the bucket.
|
|
208
221
|
# @option options [Types::AccessControlPolicy] :access_control_policy
|
|
222
|
+
# Contains the elements that set the ACL permissions for an object per
|
|
223
|
+
# grantee.
|
|
209
224
|
# @option options [String] :content_md5
|
|
225
|
+
# The Base64 encoded 128-bit `MD5` digest of the data. This header must
|
|
226
|
+
# be used as a message integrity check to verify that the request body
|
|
227
|
+
# was not corrupted in transit. For more information, go to [RFC
|
|
228
|
+
# 1864.][1]
|
|
229
|
+
#
|
|
230
|
+
# For requests made using the Amazon Web Services Command Line Interface
|
|
231
|
+
# (CLI) or Amazon Web Services SDKs, this field is calculated
|
|
232
|
+
# automatically.
|
|
233
|
+
#
|
|
234
|
+
#
|
|
235
|
+
#
|
|
236
|
+
# [1]: http://www.ietf.org/rfc/rfc1864.txt
|
|
237
|
+
# @option options [String] :checksum_algorithm
|
|
238
|
+
# Indicates the algorithm used to create the checksum for the request
|
|
239
|
+
# when you use the SDK. This header will not provide any additional
|
|
240
|
+
# functionality if you don't use the SDK. When you send this header,
|
|
241
|
+
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
|
242
|
+
# header sent. Otherwise, Amazon S3 fails the request with the HTTP
|
|
243
|
+
# status code `400 Bad Request`. For more information, see [Checking
|
|
244
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
|
245
|
+
#
|
|
246
|
+
# If you provide an individual checksum, Amazon S3 ignores any provided
|
|
247
|
+
# `ChecksumAlgorithm` parameter.
|
|
248
|
+
#
|
|
249
|
+
#
|
|
250
|
+
#
|
|
251
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
|
210
252
|
# @option options [String] :grant_full_control
|
|
211
253
|
# Allows grantee the read, write, read ACP, and write ACP permissions on
|
|
212
254
|
# the bucket.
|
|
@@ -215,14 +257,22 @@ module Aws::S3
|
|
|
215
257
|
# @option options [String] :grant_read_acp
|
|
216
258
|
# Allows grantee to read the bucket ACL.
|
|
217
259
|
# @option options [String] :grant_write
|
|
218
|
-
# Allows grantee to create
|
|
219
|
-
#
|
|
260
|
+
# Allows grantee to create new objects in the bucket.
|
|
261
|
+
#
|
|
262
|
+
# For the bucket and object owners of existing objects, also allows
|
|
263
|
+
# deletions and overwrites of those objects.
|
|
220
264
|
# @option options [String] :grant_write_acp
|
|
221
265
|
# Allows grantee to write the ACL for the applicable bucket.
|
|
266
|
+
# @option options [String] :expected_bucket_owner
|
|
267
|
+
# The account ID of the expected bucket owner. If the account ID that
|
|
268
|
+
# you provide does not match the actual owner of the bucket, the request
|
|
269
|
+
# fails with the HTTP status code `403 Forbidden` (access denied).
|
|
222
270
|
# @return [EmptyStructure]
|
|
223
271
|
def put(options = {})
|
|
224
272
|
options = options.merge(bucket: @bucket_name)
|
|
225
|
-
resp =
|
|
273
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
|
274
|
+
@client.put_bucket_acl(options)
|
|
275
|
+
end
|
|
226
276
|
resp.data
|
|
227
277
|
end
|
|
228
278
|
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
4
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
7
|
#
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
8
10
|
module Aws::S3
|
|
11
|
+
|
|
9
12
|
class BucketCors
|
|
10
13
|
|
|
11
14
|
extend Aws::Deprecations
|
|
@@ -21,6 +24,7 @@ module Aws::S3
|
|
|
21
24
|
@bucket_name = extract_bucket_name(args, options)
|
|
22
25
|
@data = options.delete(:data)
|
|
23
26
|
@client = options.delete(:client) || Client.new(options)
|
|
27
|
+
@waiter_block_warned = false
|
|
24
28
|
end
|
|
25
29
|
|
|
26
30
|
# @!group Read-Only Attributes
|
|
@@ -30,6 +34,8 @@ module Aws::S3
|
|
|
30
34
|
@bucket_name
|
|
31
35
|
end
|
|
32
36
|
|
|
37
|
+
# A set of origins and methods (cross-origin access that you want to
|
|
38
|
+
# allow). You can add up to 100 rules to the configuration.
|
|
33
39
|
# @return [Array<Types::CORSRule>]
|
|
34
40
|
def cors_rules
|
|
35
41
|
data[:cors_rules]
|
|
@@ -49,7 +55,9 @@ module Aws::S3
|
|
|
49
55
|
#
|
|
50
56
|
# @return [self]
|
|
51
57
|
def load
|
|
52
|
-
resp =
|
|
58
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
|
59
|
+
@client.get_bucket_cors(bucket: @bucket_name)
|
|
60
|
+
end
|
|
53
61
|
@data = resp.data
|
|
54
62
|
self
|
|
55
63
|
end
|
|
@@ -75,7 +83,8 @@ module Aws::S3
|
|
|
75
83
|
# Waiter polls an API operation until a resource enters a desired
|
|
76
84
|
# state.
|
|
77
85
|
#
|
|
78
|
-
# @note The waiting operation is performed on a copy. The original resource
|
|
86
|
+
# @note The waiting operation is performed on a copy. The original resource
|
|
87
|
+
# remains unchanged.
|
|
79
88
|
#
|
|
80
89
|
# ## Basic Usage
|
|
81
90
|
#
|
|
@@ -88,13 +97,15 @@ module Aws::S3
|
|
|
88
97
|
#
|
|
89
98
|
# ## Example
|
|
90
99
|
#
|
|
91
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
|
100
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
|
101
|
+
# instance.state.name == 'running'
|
|
102
|
+
# end
|
|
92
103
|
#
|
|
93
104
|
# ## Configuration
|
|
94
105
|
#
|
|
95
106
|
# You can configure the maximum number of polling attempts, and the
|
|
96
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
|
97
|
-
# by passing a block to {#wait_until}:
|
|
107
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
|
108
|
+
# set by passing a block to {#wait_until}:
|
|
98
109
|
#
|
|
99
110
|
# # poll for ~25 seconds
|
|
100
111
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
|
@@ -125,17 +136,16 @@ module Aws::S3
|
|
|
125
136
|
# # resource did not enter the desired state in time
|
|
126
137
|
# end
|
|
127
138
|
#
|
|
139
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
|
128
140
|
#
|
|
129
|
-
# @
|
|
130
|
-
#
|
|
131
|
-
#
|
|
132
|
-
# because the waiter has entered a state that it will not transition
|
|
133
|
-
# out of, preventing success.
|
|
141
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
|
142
|
+
# terminates because the waiter has entered a state that it will not
|
|
143
|
+
# transition out of, preventing success.
|
|
134
144
|
#
|
|
135
145
|
# yet successful.
|
|
136
146
|
#
|
|
137
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
|
138
|
-
# while polling for a resource that is not expected.
|
|
147
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
|
148
|
+
# encountered while polling for a resource that is not expected.
|
|
139
149
|
#
|
|
140
150
|
# @raise [NotImplementedError] Raised when the resource does not
|
|
141
151
|
#
|
|
@@ -162,19 +172,29 @@ module Aws::S3
|
|
|
162
172
|
:retry
|
|
163
173
|
end
|
|
164
174
|
end
|
|
165
|
-
Aws::
|
|
175
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
|
176
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
|
177
|
+
end
|
|
166
178
|
end
|
|
167
179
|
|
|
168
180
|
# @!group Actions
|
|
169
181
|
|
|
170
182
|
# @example Request syntax with placeholder values
|
|
171
183
|
#
|
|
172
|
-
# bucket_cors.delete(
|
|
184
|
+
# bucket_cors.delete({
|
|
185
|
+
# expected_bucket_owner: "AccountId",
|
|
186
|
+
# })
|
|
173
187
|
# @param [Hash] options ({})
|
|
188
|
+
# @option options [String] :expected_bucket_owner
|
|
189
|
+
# The account ID of the expected bucket owner. If the account ID that
|
|
190
|
+
# you provide does not match the actual owner of the bucket, the request
|
|
191
|
+
# fails with the HTTP status code `403 Forbidden` (access denied).
|
|
174
192
|
# @return [EmptyStructure]
|
|
175
193
|
def delete(options = {})
|
|
176
194
|
options = options.merge(bucket: @bucket_name)
|
|
177
|
-
resp =
|
|
195
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
|
196
|
+
@client.delete_bucket_cors(options)
|
|
197
|
+
end
|
|
178
198
|
resp.data
|
|
179
199
|
end
|
|
180
200
|
|
|
@@ -184,6 +204,7 @@ module Aws::S3
|
|
|
184
204
|
# cors_configuration: { # required
|
|
185
205
|
# cors_rules: [ # required
|
|
186
206
|
# {
|
|
207
|
+
# id: "ID",
|
|
187
208
|
# allowed_headers: ["AllowedHeader"],
|
|
188
209
|
# allowed_methods: ["AllowedMethod"], # required
|
|
189
210
|
# allowed_origins: ["AllowedOrigin"], # required
|
|
@@ -193,14 +214,56 @@ module Aws::S3
|
|
|
193
214
|
# ],
|
|
194
215
|
# },
|
|
195
216
|
# content_md5: "ContentMD5",
|
|
217
|
+
# checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
|
|
218
|
+
# expected_bucket_owner: "AccountId",
|
|
196
219
|
# })
|
|
197
220
|
# @param [Hash] options ({})
|
|
198
221
|
# @option options [required, Types::CORSConfiguration] :cors_configuration
|
|
222
|
+
# Describes the cross-origin access configuration for objects in an
|
|
223
|
+
# Amazon S3 bucket. For more information, see [Enabling Cross-Origin
|
|
224
|
+
# Resource Sharing][1] in the *Amazon S3 User Guide*.
|
|
225
|
+
#
|
|
226
|
+
#
|
|
227
|
+
#
|
|
228
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html
|
|
199
229
|
# @option options [String] :content_md5
|
|
230
|
+
# The Base64 encoded 128-bit `MD5` digest of the data. This header must
|
|
231
|
+
# be used as a message integrity check to verify that the request body
|
|
232
|
+
# was not corrupted in transit. For more information, go to [RFC
|
|
233
|
+
# 1864.][1]
|
|
234
|
+
#
|
|
235
|
+
# For requests made using the Amazon Web Services Command Line Interface
|
|
236
|
+
# (CLI) or Amazon Web Services SDKs, this field is calculated
|
|
237
|
+
# automatically.
|
|
238
|
+
#
|
|
239
|
+
#
|
|
240
|
+
#
|
|
241
|
+
# [1]: http://www.ietf.org/rfc/rfc1864.txt
|
|
242
|
+
# @option options [String] :checksum_algorithm
|
|
243
|
+
# Indicates the algorithm used to create the checksum for the request
|
|
244
|
+
# when you use the SDK. This header will not provide any additional
|
|
245
|
+
# functionality if you don't use the SDK. When you send this header,
|
|
246
|
+
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
|
247
|
+
# header sent. Otherwise, Amazon S3 fails the request with the HTTP
|
|
248
|
+
# status code `400 Bad Request`. For more information, see [Checking
|
|
249
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
|
250
|
+
#
|
|
251
|
+
# If you provide an individual checksum, Amazon S3 ignores any provided
|
|
252
|
+
# `ChecksumAlgorithm` parameter.
|
|
253
|
+
#
|
|
254
|
+
#
|
|
255
|
+
#
|
|
256
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
|
257
|
+
# @option options [String] :expected_bucket_owner
|
|
258
|
+
# The account ID of the expected bucket owner. If the account ID that
|
|
259
|
+
# you provide does not match the actual owner of the bucket, the request
|
|
260
|
+
# fails with the HTTP status code `403 Forbidden` (access denied).
|
|
200
261
|
# @return [EmptyStructure]
|
|
201
262
|
def put(options = {})
|
|
202
263
|
options = options.merge(bucket: @bucket_name)
|
|
203
|
-
resp =
|
|
264
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
|
265
|
+
@client.put_bucket_cors(options)
|
|
266
|
+
end
|
|
204
267
|
resp.data
|
|
205
268
|
end
|
|
206
269
|
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
|
2
4
|
#
|
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
|
4
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
7
|
#
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
|
7
9
|
|
|
8
10
|
module Aws::S3
|
|
11
|
+
|
|
9
12
|
class BucketLifecycle
|
|
10
13
|
|
|
11
14
|
extend Aws::Deprecations
|
|
@@ -21,6 +24,7 @@ module Aws::S3
|
|
|
21
24
|
@bucket_name = extract_bucket_name(args, options)
|
|
22
25
|
@data = options.delete(:data)
|
|
23
26
|
@client = options.delete(:client) || Client.new(options)
|
|
27
|
+
@waiter_block_warned = false
|
|
24
28
|
end
|
|
25
29
|
|
|
26
30
|
# @!group Read-Only Attributes
|
|
@@ -30,6 +34,7 @@ module Aws::S3
|
|
|
30
34
|
@bucket_name
|
|
31
35
|
end
|
|
32
36
|
|
|
37
|
+
# Container for a lifecycle rule.
|
|
33
38
|
# @return [Array<Types::Rule>]
|
|
34
39
|
def rules
|
|
35
40
|
data[:rules]
|
|
@@ -49,7 +54,9 @@ module Aws::S3
|
|
|
49
54
|
#
|
|
50
55
|
# @return [self]
|
|
51
56
|
def load
|
|
52
|
-
resp =
|
|
57
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
|
58
|
+
@client.get_bucket_lifecycle(bucket: @bucket_name)
|
|
59
|
+
end
|
|
53
60
|
@data = resp.data
|
|
54
61
|
self
|
|
55
62
|
end
|
|
@@ -75,7 +82,8 @@ module Aws::S3
|
|
|
75
82
|
# Waiter polls an API operation until a resource enters a desired
|
|
76
83
|
# state.
|
|
77
84
|
#
|
|
78
|
-
# @note The waiting operation is performed on a copy. The original resource
|
|
85
|
+
# @note The waiting operation is performed on a copy. The original resource
|
|
86
|
+
# remains unchanged.
|
|
79
87
|
#
|
|
80
88
|
# ## Basic Usage
|
|
81
89
|
#
|
|
@@ -88,13 +96,15 @@ module Aws::S3
|
|
|
88
96
|
#
|
|
89
97
|
# ## Example
|
|
90
98
|
#
|
|
91
|
-
# instance.wait_until(max_attempts:10, delay:5)
|
|
99
|
+
# instance.wait_until(max_attempts:10, delay:5) do |instance|
|
|
100
|
+
# instance.state.name == 'running'
|
|
101
|
+
# end
|
|
92
102
|
#
|
|
93
103
|
# ## Configuration
|
|
94
104
|
#
|
|
95
105
|
# You can configure the maximum number of polling attempts, and the
|
|
96
|
-
# delay (in seconds) between each polling attempt. The waiting condition is
|
|
97
|
-
# by passing a block to {#wait_until}:
|
|
106
|
+
# delay (in seconds) between each polling attempt. The waiting condition is
|
|
107
|
+
# set by passing a block to {#wait_until}:
|
|
98
108
|
#
|
|
99
109
|
# # poll for ~25 seconds
|
|
100
110
|
# resource.wait_until(max_attempts:5,delay:5) {|resource|...}
|
|
@@ -125,17 +135,16 @@ module Aws::S3
|
|
|
125
135
|
# # resource did not enter the desired state in time
|
|
126
136
|
# end
|
|
127
137
|
#
|
|
138
|
+
# @yieldparam [Resource] resource to be used in the waiting condition.
|
|
128
139
|
#
|
|
129
|
-
# @
|
|
130
|
-
#
|
|
131
|
-
#
|
|
132
|
-
# because the waiter has entered a state that it will not transition
|
|
133
|
-
# out of, preventing success.
|
|
140
|
+
# @raise [Aws::Waiters::Errors::FailureStateError] Raised when the waiter
|
|
141
|
+
# terminates because the waiter has entered a state that it will not
|
|
142
|
+
# transition out of, preventing success.
|
|
134
143
|
#
|
|
135
144
|
# yet successful.
|
|
136
145
|
#
|
|
137
|
-
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
|
138
|
-
# while polling for a resource that is not expected.
|
|
146
|
+
# @raise [Aws::Waiters::Errors::UnexpectedError] Raised when an error is
|
|
147
|
+
# encountered while polling for a resource that is not expected.
|
|
139
148
|
#
|
|
140
149
|
# @raise [NotImplementedError] Raised when the resource does not
|
|
141
150
|
#
|
|
@@ -162,19 +171,34 @@ module Aws::S3
|
|
|
162
171
|
:retry
|
|
163
172
|
end
|
|
164
173
|
end
|
|
165
|
-
Aws::
|
|
174
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
|
175
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
|
176
|
+
end
|
|
166
177
|
end
|
|
167
178
|
|
|
168
179
|
# @!group Actions
|
|
169
180
|
|
|
170
181
|
# @example Request syntax with placeholder values
|
|
171
182
|
#
|
|
172
|
-
# bucket_lifecycle.delete(
|
|
183
|
+
# bucket_lifecycle.delete({
|
|
184
|
+
# expected_bucket_owner: "AccountId",
|
|
185
|
+
# })
|
|
173
186
|
# @param [Hash] options ({})
|
|
187
|
+
# @option options [String] :expected_bucket_owner
|
|
188
|
+
# The account ID of the expected bucket owner. If the account ID that
|
|
189
|
+
# you provide does not match the actual owner of the bucket, the request
|
|
190
|
+
# fails with the HTTP status code `403 Forbidden` (access denied).
|
|
191
|
+
#
|
|
192
|
+
# <note markdown="1"> This parameter applies to general purpose buckets only. It is not
|
|
193
|
+
# supported for directory bucket lifecycle configurations.
|
|
194
|
+
#
|
|
195
|
+
# </note>
|
|
174
196
|
# @return [EmptyStructure]
|
|
175
197
|
def delete(options = {})
|
|
176
198
|
options = options.merge(bucket: @bucket_name)
|
|
177
|
-
resp =
|
|
199
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
|
200
|
+
@client.delete_bucket_lifecycle(options)
|
|
201
|
+
end
|
|
178
202
|
resp.data
|
|
179
203
|
end
|
|
180
204
|
|
|
@@ -182,6 +206,7 @@ module Aws::S3
|
|
|
182
206
|
#
|
|
183
207
|
# bucket_lifecycle.put({
|
|
184
208
|
# content_md5: "ContentMD5",
|
|
209
|
+
# checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
|
|
185
210
|
# lifecycle_configuration: {
|
|
186
211
|
# rules: [ # required
|
|
187
212
|
# {
|
|
@@ -196,14 +221,16 @@ module Aws::S3
|
|
|
196
221
|
# transition: {
|
|
197
222
|
# date: Time.now,
|
|
198
223
|
# days: 1,
|
|
199
|
-
# storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA
|
|
224
|
+
# storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE, GLACIER_IR
|
|
200
225
|
# },
|
|
201
226
|
# noncurrent_version_transition: {
|
|
202
227
|
# noncurrent_days: 1,
|
|
203
|
-
# storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA
|
|
228
|
+
# storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE, GLACIER_IR
|
|
229
|
+
# newer_noncurrent_versions: 1,
|
|
204
230
|
# },
|
|
205
231
|
# noncurrent_version_expiration: {
|
|
206
232
|
# noncurrent_days: 1,
|
|
233
|
+
# newer_noncurrent_versions: 1,
|
|
207
234
|
# },
|
|
208
235
|
# abort_incomplete_multipart_upload: {
|
|
209
236
|
# days_after_initiation: 1,
|
|
@@ -211,14 +238,39 @@ module Aws::S3
|
|
|
211
238
|
# },
|
|
212
239
|
# ],
|
|
213
240
|
# },
|
|
241
|
+
# expected_bucket_owner: "AccountId",
|
|
214
242
|
# })
|
|
215
243
|
# @param [Hash] options ({})
|
|
216
244
|
# @option options [String] :content_md5
|
|
245
|
+
# For requests made using the Amazon Web Services Command Line Interface
|
|
246
|
+
# (CLI) or Amazon Web Services SDKs, this field is calculated
|
|
247
|
+
# automatically.
|
|
248
|
+
# @option options [String] :checksum_algorithm
|
|
249
|
+
# Indicates the algorithm used to create the checksum for the request
|
|
250
|
+
# when you use the SDK. This header will not provide any additional
|
|
251
|
+
# functionality if you don't use the SDK. When you send this header,
|
|
252
|
+
# there must be a corresponding `x-amz-checksum` or `x-amz-trailer`
|
|
253
|
+
# header sent. Otherwise, Amazon S3 fails the request with the HTTP
|
|
254
|
+
# status code `400 Bad Request`. For more information, see [Checking
|
|
255
|
+
# object integrity][1] in the *Amazon S3 User Guide*.
|
|
256
|
+
#
|
|
257
|
+
# If you provide an individual checksum, Amazon S3 ignores any provided
|
|
258
|
+
# `ChecksumAlgorithm` parameter.
|
|
259
|
+
#
|
|
260
|
+
#
|
|
261
|
+
#
|
|
262
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
|
217
263
|
# @option options [Types::LifecycleConfiguration] :lifecycle_configuration
|
|
264
|
+
# @option options [String] :expected_bucket_owner
|
|
265
|
+
# The account ID of the expected bucket owner. If the account ID that
|
|
266
|
+
# you provide does not match the actual owner of the bucket, the request
|
|
267
|
+
# fails with the HTTP status code `403 Forbidden` (access denied).
|
|
218
268
|
# @return [EmptyStructure]
|
|
219
269
|
def put(options = {})
|
|
220
270
|
options = options.merge(bucket: @bucket_name)
|
|
221
|
-
resp =
|
|
271
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
|
272
|
+
@client.put_bucket_lifecycle(options)
|
|
273
|
+
end
|
|
222
274
|
resp.data
|
|
223
275
|
end
|
|
224
276
|
|