aws-sdk-s3 1.142.0 → 1.143.1
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-s3/client.rb +1 -1
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +3 -2
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +3 -2
- data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +1 -0
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +212 -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 +111 -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 +2360 -0
- data/sig/errors.rbs +34 -0
- data/sig/multipart_upload.rbs +110 -0
- data/sig/multipart_upload_part.rbs +105 -0
- data/sig/object.rbs +436 -0
- data/sig/object_acl.rbs +86 -0
- data/sig/object_summary.rbs +334 -0
- data/sig/object_version.rbs +131 -0
- data/sig/resource.rbs +124 -0
- data/sig/types.rbs +2562 -0
- data/sig/waiters.rbs +83 -0
- metadata +31 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52a24ec48cb7dc46ab272df7820134e180419594d763dac989038d5bd66f89a1
|
4
|
+
data.tar.gz: 4eed0744c9eef6c2e6a7098be4e05d8d7dc91789f23b8b06d0b3f12aa990b7b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2df04f5f1c0ee47dc00b86b3a5c6536af81944e3ea3baa8fefcb0548008a79c63b119eab50b7b641bac111f557c669ab33d668bc10716b8d9a5a8d19a48ce0a5
|
7
|
+
data.tar.gz: 6bc9ee9c9196ca105383a1d818f8865dc6b1ed0de78a4644dc3853c589224a36894e64cfbba511142b4acd0bb032926c8f58a0986f440b4fdff2c99fb4153830
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.143.1 (2024-03-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Issue - Include original part errors in message when aborting multipart upload fails (#2990).
|
8
|
+
|
9
|
+
1.143.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.142.0 (2023-12-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.143.1
|
data/lib/aws-sdk-s3/client.rb
CHANGED
@@ -18807,7 +18807,7 @@ module Aws::S3
|
|
18807
18807
|
params: params,
|
18808
18808
|
config: config)
|
18809
18809
|
context[:gem_name] = 'aws-sdk-s3'
|
18810
|
-
context[:gem_version] = '1.
|
18810
|
+
context[:gem_version] = '1.143.1'
|
18811
18811
|
Seahorse::Client::Request.new(handlers, context)
|
18812
18812
|
end
|
18813
18813
|
|
@@ -89,12 +89,13 @@ module Aws
|
|
89
89
|
key: options[:key],
|
90
90
|
upload_id: upload_id
|
91
91
|
)
|
92
|
-
msg = "multipart upload failed: #{errors.map(&:message).join(
|
92
|
+
msg = "multipart upload failed: #{errors.map(&:message).join('; ')}"
|
93
93
|
raise MultipartUploadError.new(msg, errors)
|
94
94
|
rescue MultipartUploadError => error
|
95
95
|
raise error
|
96
96
|
rescue => error
|
97
|
-
msg = "failed to abort multipart upload: #{error.message}"
|
97
|
+
msg = "failed to abort multipart upload: #{error.message}. "\
|
98
|
+
"Multipart upload failed: #{errors.map(&:message).join('; ')}"
|
98
99
|
raise MultipartUploadError.new(msg, errors + [error])
|
99
100
|
end
|
100
101
|
|
@@ -101,12 +101,13 @@ module Aws
|
|
101
101
|
key: options[:key],
|
102
102
|
upload_id: upload_id
|
103
103
|
)
|
104
|
-
msg = "multipart upload failed: #{errors.map(&:message).join(
|
104
|
+
msg = "multipart upload failed: #{errors.map(&:message).join('; ')}"
|
105
105
|
raise MultipartUploadError.new(msg, errors)
|
106
106
|
rescue MultipartUploadError => error
|
107
107
|
raise error
|
108
108
|
rescue => error
|
109
|
-
msg = "failed to abort multipart upload: #{error.message}"
|
109
|
+
msg = "failed to abort multipart upload: #{error.message}. "\
|
110
|
+
"Multipart upload failed: #{errors.map(&:message).join('; ')}"
|
110
111
|
raise MultipartUploadError.new(msg, errors + [error])
|
111
112
|
end
|
112
113
|
|
@@ -14,6 +14,7 @@ module Aws::S3
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::S3::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
@@ -18,6 +18,7 @@ When `true`, S3 Express session authentication is disabled.
|
|
18
18
|
|
19
19
|
option(:express_credentials_provider,
|
20
20
|
doc_type: 'Aws::S3::ExpressCredentialsProvider',
|
21
|
+
rbs_type: 'untyped',
|
21
22
|
docstring: <<-DOCS) do |_cfg|
|
22
23
|
Credential Provider for S3 Express endpoints. Manages credentials
|
23
24
|
for different buckets.
|
data/lib/aws-sdk-s3.rb
CHANGED
data/sig/bucket.rbs
ADDED
@@ -0,0 +1,212 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module S3
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html
|
11
|
+
class Bucket
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#initialize-instance_method
|
13
|
+
def initialize: (String name, Hash[Symbol, untyped] options) -> void
|
14
|
+
| (name: String, ?client: Client) -> void
|
15
|
+
| (Hash[Symbol, untyped] args) -> void
|
16
|
+
|
17
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#name-instance_method
|
18
|
+
def name: () -> String
|
19
|
+
|
20
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#creation_date-instance_method
|
21
|
+
def creation_date: () -> ::Time
|
22
|
+
|
23
|
+
def client: () -> Client
|
24
|
+
|
25
|
+
|
26
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#data-instance_method
|
27
|
+
def data: () -> Types::Bucket
|
28
|
+
|
29
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#data_loaded?-instance_method
|
30
|
+
def data_loaded?: () -> bool
|
31
|
+
|
32
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#exists?-instance_method
|
33
|
+
def exists?: (?max_attempts: Integer, ?delay: Numeric, ?before_attempt: (^(Integer attempts) -> void), ?before_wait: (^(Integer attempts, untyped response) -> void)) -> bool
|
34
|
+
| (?Hash[Symbol, untyped]) -> bool
|
35
|
+
|
36
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#wait_until_exists-instance_method
|
37
|
+
def wait_until_exists: (?max_attempts: Integer, ?delay: Numeric, ?before_attempt: (^(Integer attempts) -> void), ?before_wait: (^(Integer attempts, untyped response) -> void)) ?{ (untyped waiter) -> void } -> Bucket
|
38
|
+
| (?Hash[Symbol, untyped]) ?{ (untyped waiter) -> void } -> Bucket
|
39
|
+
|
40
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#wait_until_not_exists-instance_method
|
41
|
+
def wait_until_not_exists: (?max_attempts: Integer, ?delay: Numeric, ?before_attempt: (^(Integer attempts) -> void), ?before_wait: (^(Integer attempts, untyped response) -> void)) ?{ (untyped waiter) -> void } -> Bucket
|
42
|
+
| (?Hash[Symbol, untyped]) ?{ (untyped waiter) -> void } -> Bucket
|
43
|
+
|
44
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#create-instance_method
|
45
|
+
def create: (
|
46
|
+
?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read"),
|
47
|
+
?create_bucket_configuration: {
|
48
|
+
location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")?,
|
49
|
+
location: {
|
50
|
+
type: ("AvailabilityZone")?,
|
51
|
+
name: ::String?
|
52
|
+
}?,
|
53
|
+
bucket: {
|
54
|
+
data_redundancy: ("SingleAvailabilityZone")?,
|
55
|
+
type: ("Directory")?
|
56
|
+
}?
|
57
|
+
},
|
58
|
+
?grant_full_control: ::String,
|
59
|
+
?grant_read: ::String,
|
60
|
+
?grant_read_acp: ::String,
|
61
|
+
?grant_write: ::String,
|
62
|
+
?grant_write_acp: ::String,
|
63
|
+
?object_lock_enabled_for_bucket: bool,
|
64
|
+
?object_ownership: ("BucketOwnerPreferred" | "ObjectWriter" | "BucketOwnerEnforced")
|
65
|
+
) -> Types::CreateBucketOutput
|
66
|
+
| (?Hash[Symbol, untyped]) -> Types::CreateBucketOutput
|
67
|
+
|
68
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#delete-instance_method
|
69
|
+
def delete: (
|
70
|
+
?expected_bucket_owner: ::String
|
71
|
+
) -> ::Aws::EmptyStructure
|
72
|
+
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
73
|
+
|
74
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#delete_objects-instance_method
|
75
|
+
def delete_objects: (
|
76
|
+
delete: {
|
77
|
+
objects: Array[
|
78
|
+
{
|
79
|
+
key: ::String,
|
80
|
+
version_id: ::String?
|
81
|
+
},
|
82
|
+
],
|
83
|
+
quiet: bool?
|
84
|
+
},
|
85
|
+
?mfa: ::String,
|
86
|
+
?request_payer: ("requester"),
|
87
|
+
?bypass_governance_retention: bool,
|
88
|
+
?expected_bucket_owner: ::String,
|
89
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
90
|
+
) -> Types::DeleteObjectsOutput
|
91
|
+
| (?Hash[Symbol, untyped]) -> Types::DeleteObjectsOutput
|
92
|
+
|
93
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#put_object-instance_method
|
94
|
+
def put_object: (
|
95
|
+
?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control"),
|
96
|
+
?body: ::String | ::StringIO | ::File,
|
97
|
+
?cache_control: ::String,
|
98
|
+
?content_disposition: ::String,
|
99
|
+
?content_encoding: ::String,
|
100
|
+
?content_language: ::String,
|
101
|
+
?content_length: ::Integer,
|
102
|
+
?content_md5: ::String,
|
103
|
+
?content_type: ::String,
|
104
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
105
|
+
?checksum_crc32: ::String,
|
106
|
+
?checksum_crc32c: ::String,
|
107
|
+
?checksum_sha1: ::String,
|
108
|
+
?checksum_sha256: ::String,
|
109
|
+
?expires: ::Time,
|
110
|
+
?grant_full_control: ::String,
|
111
|
+
?grant_read: ::String,
|
112
|
+
?grant_read_acp: ::String,
|
113
|
+
?grant_write_acp: ::String,
|
114
|
+
key: ::String,
|
115
|
+
?metadata: Hash[::String, ::String],
|
116
|
+
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
117
|
+
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
|
118
|
+
?website_redirect_location: ::String,
|
119
|
+
?sse_customer_algorithm: ::String,
|
120
|
+
?sse_customer_key: ::String,
|
121
|
+
?sse_customer_key_md5: ::String,
|
122
|
+
?ssekms_key_id: ::String,
|
123
|
+
?ssekms_encryption_context: ::String,
|
124
|
+
?bucket_key_enabled: bool,
|
125
|
+
?request_payer: ("requester"),
|
126
|
+
?tagging: ::String,
|
127
|
+
?object_lock_mode: ("GOVERNANCE" | "COMPLIANCE"),
|
128
|
+
?object_lock_retain_until_date: ::Time,
|
129
|
+
?object_lock_legal_hold_status: ("ON" | "OFF"),
|
130
|
+
?expected_bucket_owner: ::String
|
131
|
+
) -> Object
|
132
|
+
| (?Hash[Symbol, untyped]) -> Object
|
133
|
+
|
134
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#acl-instance_method
|
135
|
+
def acl: () -> BucketAcl
|
136
|
+
|
137
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#cors-instance_method
|
138
|
+
def cors: () -> BucketCors
|
139
|
+
|
140
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#lifecycle-instance_method
|
141
|
+
def lifecycle: () -> BucketLifecycle
|
142
|
+
|
143
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#lifecycle_configuration-instance_method
|
144
|
+
def lifecycle_configuration: () -> BucketLifecycleConfiguration
|
145
|
+
|
146
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#logging-instance_method
|
147
|
+
def logging: () -> BucketLogging
|
148
|
+
|
149
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#multipart_uploads-instance_method
|
150
|
+
def multipart_uploads: (
|
151
|
+
?delimiter: ::String,
|
152
|
+
?encoding_type: ("url"),
|
153
|
+
?key_marker: ::String,
|
154
|
+
?prefix: ::String,
|
155
|
+
?upload_id_marker: ::String,
|
156
|
+
?expected_bucket_owner: ::String,
|
157
|
+
?request_payer: ("requester")
|
158
|
+
) -> MultipartUpload::Collection
|
159
|
+
| (?Hash[Symbol, untyped]) -> MultipartUpload::Collection
|
160
|
+
|
161
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#notification-instance_method
|
162
|
+
def notification: () -> BucketNotification
|
163
|
+
|
164
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#object-instance_method
|
165
|
+
def object: (String key) -> Object
|
166
|
+
|
167
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#object_versions-instance_method
|
168
|
+
def object_versions: (
|
169
|
+
?delimiter: ::String,
|
170
|
+
?encoding_type: ("url"),
|
171
|
+
?key_marker: ::String,
|
172
|
+
?prefix: ::String,
|
173
|
+
?version_id_marker: ::String,
|
174
|
+
?expected_bucket_owner: ::String,
|
175
|
+
?request_payer: ("requester"),
|
176
|
+
?optional_object_attributes: Array[("RestoreStatus")]
|
177
|
+
) -> ObjectVersion::Collection
|
178
|
+
| (?Hash[Symbol, untyped]) -> ObjectVersion::Collection
|
179
|
+
|
180
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#objects-instance_method
|
181
|
+
def objects: (
|
182
|
+
?delimiter: ::String,
|
183
|
+
?encoding_type: ("url"),
|
184
|
+
?prefix: ::String,
|
185
|
+
?fetch_owner: bool,
|
186
|
+
?start_after: ::String,
|
187
|
+
?request_payer: ("requester"),
|
188
|
+
?expected_bucket_owner: ::String,
|
189
|
+
?optional_object_attributes: Array[("RestoreStatus")]
|
190
|
+
) -> ObjectSummary::Collection
|
191
|
+
| (?Hash[Symbol, untyped]) -> ObjectSummary::Collection
|
192
|
+
|
193
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#policy-instance_method
|
194
|
+
def policy: () -> BucketPolicy
|
195
|
+
|
196
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#request_payment-instance_method
|
197
|
+
def request_payment: () -> BucketRequestPayment
|
198
|
+
|
199
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#tagging-instance_method
|
200
|
+
def tagging: () -> BucketTagging
|
201
|
+
|
202
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#versioning-instance_method
|
203
|
+
def versioning: () -> BucketVersioning
|
204
|
+
|
205
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#website-instance_method
|
206
|
+
def website: () -> BucketWebsite
|
207
|
+
|
208
|
+
class Collection < ::Aws::Resources::Collection[Bucket]
|
209
|
+
end
|
210
|
+
end
|
211
|
+
end
|
212
|
+
end
|
data/sig/bucket_acl.rbs
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module S3
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketAcl.html
|
11
|
+
class BucketAcl
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketAcl.html#initialize-instance_method
|
13
|
+
def initialize: (String bucket_name, Hash[Symbol, untyped] options) -> void
|
14
|
+
| (bucket_name: String, ?client: Client) -> void
|
15
|
+
| (Hash[Symbol, untyped] args) -> void
|
16
|
+
|
17
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketAcl.html#bucket_name-instance_method
|
18
|
+
def bucket_name: () -> String
|
19
|
+
|
20
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketAcl.html#owner-instance_method
|
21
|
+
def owner: () -> Types::Owner
|
22
|
+
|
23
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketAcl.html#grants-instance_method
|
24
|
+
def grants: () -> ::Array[Types::Grant]
|
25
|
+
|
26
|
+
def client: () -> Client
|
27
|
+
|
28
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketAcl.html#load-instance_method
|
29
|
+
def load: () -> self
|
30
|
+
alias reload load
|
31
|
+
|
32
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketAcl.html#data-instance_method
|
33
|
+
def data: () -> Types::GetBucketAclOutput
|
34
|
+
|
35
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketAcl.html#data_loaded?-instance_method
|
36
|
+
def data_loaded?: () -> bool
|
37
|
+
|
38
|
+
|
39
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketAcl.html#put-instance_method
|
40
|
+
def put: (
|
41
|
+
?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read"),
|
42
|
+
?access_control_policy: {
|
43
|
+
grants: Array[
|
44
|
+
{
|
45
|
+
grantee: {
|
46
|
+
display_name: ::String?,
|
47
|
+
email_address: ::String?,
|
48
|
+
id: ::String?,
|
49
|
+
type: ("CanonicalUser" | "AmazonCustomerByEmail" | "Group"),
|
50
|
+
uri: ::String?
|
51
|
+
}?,
|
52
|
+
permission: ("FULL_CONTROL" | "WRITE" | "WRITE_ACP" | "READ" | "READ_ACP")?
|
53
|
+
},
|
54
|
+
]?,
|
55
|
+
owner: {
|
56
|
+
display_name: ::String?,
|
57
|
+
id: ::String?
|
58
|
+
}?
|
59
|
+
},
|
60
|
+
?content_md5: ::String,
|
61
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
62
|
+
?grant_full_control: ::String,
|
63
|
+
?grant_read: ::String,
|
64
|
+
?grant_read_acp: ::String,
|
65
|
+
?grant_write: ::String,
|
66
|
+
?grant_write_acp: ::String,
|
67
|
+
?expected_bucket_owner: ::String
|
68
|
+
) -> ::Aws::EmptyStructure
|
69
|
+
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
70
|
+
|
71
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketAcl.html#bucket-instance_method
|
72
|
+
def bucket: () -> Bucket
|
73
|
+
|
74
|
+
class Collection < ::Aws::Resources::Collection[BucketAcl]
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
data/sig/bucket_cors.rbs
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module S3
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketCors.html
|
11
|
+
class BucketCors
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketCors.html#initialize-instance_method
|
13
|
+
def initialize: (String bucket_name, Hash[Symbol, untyped] options) -> void
|
14
|
+
| (bucket_name: String, ?client: Client) -> void
|
15
|
+
| (Hash[Symbol, untyped] args) -> void
|
16
|
+
|
17
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketCors.html#bucket_name-instance_method
|
18
|
+
def bucket_name: () -> String
|
19
|
+
|
20
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketCors.html#cors_rules-instance_method
|
21
|
+
def cors_rules: () -> ::Array[Types::CORSRule]
|
22
|
+
|
23
|
+
def client: () -> Client
|
24
|
+
|
25
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketCors.html#load-instance_method
|
26
|
+
def load: () -> self
|
27
|
+
alias reload load
|
28
|
+
|
29
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketCors.html#data-instance_method
|
30
|
+
def data: () -> Types::GetBucketCorsOutput
|
31
|
+
|
32
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketCors.html#data_loaded?-instance_method
|
33
|
+
def data_loaded?: () -> bool
|
34
|
+
|
35
|
+
|
36
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketCors.html#delete-instance_method
|
37
|
+
def delete: (
|
38
|
+
?expected_bucket_owner: ::String
|
39
|
+
) -> ::Aws::EmptyStructure
|
40
|
+
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
41
|
+
|
42
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketCors.html#put-instance_method
|
43
|
+
def put: (
|
44
|
+
cors_configuration: {
|
45
|
+
cors_rules: Array[
|
46
|
+
{
|
47
|
+
id: ::String?,
|
48
|
+
allowed_headers: Array[::String]?,
|
49
|
+
allowed_methods: Array[::String],
|
50
|
+
allowed_origins: Array[::String],
|
51
|
+
expose_headers: Array[::String]?,
|
52
|
+
max_age_seconds: ::Integer?
|
53
|
+
},
|
54
|
+
]
|
55
|
+
},
|
56
|
+
?content_md5: ::String,
|
57
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
58
|
+
?expected_bucket_owner: ::String
|
59
|
+
) -> ::Aws::EmptyStructure
|
60
|
+
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
61
|
+
|
62
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketCors.html#bucket-instance_method
|
63
|
+
def bucket: () -> Bucket
|
64
|
+
|
65
|
+
class Collection < ::Aws::Resources::Collection[BucketCors]
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -0,0 +1,88 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module S3
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html
|
11
|
+
class BucketLifecycle
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html#initialize-instance_method
|
13
|
+
def initialize: (String bucket_name, Hash[Symbol, untyped] options) -> void
|
14
|
+
| (bucket_name: String, ?client: Client) -> void
|
15
|
+
| (Hash[Symbol, untyped] args) -> void
|
16
|
+
|
17
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html#bucket_name-instance_method
|
18
|
+
def bucket_name: () -> String
|
19
|
+
|
20
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html#rules-instance_method
|
21
|
+
def rules: () -> ::Array[Types::Rule]
|
22
|
+
|
23
|
+
def client: () -> Client
|
24
|
+
|
25
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html#load-instance_method
|
26
|
+
def load: () -> self
|
27
|
+
alias reload load
|
28
|
+
|
29
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html#data-instance_method
|
30
|
+
def data: () -> Types::GetBucketLifecycleOutput
|
31
|
+
|
32
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html#data_loaded?-instance_method
|
33
|
+
def data_loaded?: () -> bool
|
34
|
+
|
35
|
+
|
36
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html#delete-instance_method
|
37
|
+
def delete: (
|
38
|
+
?expected_bucket_owner: ::String
|
39
|
+
) -> ::Aws::EmptyStructure
|
40
|
+
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
41
|
+
|
42
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html#put-instance_method
|
43
|
+
def put: (
|
44
|
+
?content_md5: ::String,
|
45
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
46
|
+
?lifecycle_configuration: {
|
47
|
+
rules: Array[
|
48
|
+
{
|
49
|
+
expiration: {
|
50
|
+
date: ::Time?,
|
51
|
+
days: ::Integer?,
|
52
|
+
expired_object_delete_marker: bool?
|
53
|
+
}?,
|
54
|
+
id: ::String?,
|
55
|
+
prefix: ::String,
|
56
|
+
status: ("Enabled" | "Disabled"),
|
57
|
+
transition: {
|
58
|
+
date: ::Time?,
|
59
|
+
days: ::Integer?,
|
60
|
+
storage_class: ("GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "GLACIER_IR")?
|
61
|
+
}?,
|
62
|
+
noncurrent_version_transition: {
|
63
|
+
noncurrent_days: ::Integer?,
|
64
|
+
storage_class: ("GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "GLACIER_IR")?,
|
65
|
+
newer_noncurrent_versions: ::Integer?
|
66
|
+
}?,
|
67
|
+
noncurrent_version_expiration: {
|
68
|
+
noncurrent_days: ::Integer?,
|
69
|
+
newer_noncurrent_versions: ::Integer?
|
70
|
+
}?,
|
71
|
+
abort_incomplete_multipart_upload: {
|
72
|
+
days_after_initiation: ::Integer?
|
73
|
+
}?
|
74
|
+
},
|
75
|
+
]
|
76
|
+
},
|
77
|
+
?expected_bucket_owner: ::String
|
78
|
+
) -> ::Aws::EmptyStructure
|
79
|
+
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
80
|
+
|
81
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html#bucket-instance_method
|
82
|
+
def bucket: () -> Bucket
|
83
|
+
|
84
|
+
class Collection < ::Aws::Resources::Collection[BucketLifecycle]
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|