aws-sdk-s3 1.166.0 → 1.174.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +45 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +82 -27
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +5 -0
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +58 -1
- data/lib/aws-sdk-s3/bucket_policy.rb +4 -4
- data/lib/aws-sdk-s3/client.rb +734 -475
- data/lib/aws-sdk-s3/client_api.rb +45 -1
- data/lib/aws-sdk-s3/endpoint_parameters.rb +13 -18
- data/lib/aws-sdk-s3/endpoints.rb +405 -1405
- data/lib/aws-sdk-s3/errors.rb +44 -0
- data/lib/aws-sdk-s3/multipart_upload.rb +37 -4
- data/lib/aws-sdk-s3/multipart_upload_part.rb +8 -8
- data/lib/aws-sdk-s3/object.rb +153 -56
- data/lib/aws-sdk-s3/object_summary.rb +151 -54
- data/lib/aws-sdk-s3/object_version.rb +47 -4
- data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -204
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +3 -3
- data/lib/aws-sdk-s3/resource.rb +25 -1
- data/lib/aws-sdk-s3/types.rb +527 -233
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +9 -1
- data/sig/bucket_lifecycle_configuration.rbs +7 -3
- data/sig/client.rbs +27 -7
- data/sig/errors.rbs +8 -0
- data/sig/multipart_upload.rbs +3 -1
- data/sig/object.rbs +6 -1
- data/sig/object_summary.rbs +6 -1
- data/sig/object_version.rbs +4 -1
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +34 -0
- metadata +4 -4
data/lib/aws-sdk-s3.rb
CHANGED
data/sig/bucket.rbs
CHANGED
@@ -20,6 +20,9 @@ module Aws
|
|
20
20
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#creation_date-instance_method
|
21
21
|
def creation_date: () -> ::Time
|
22
22
|
|
23
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#bucket_region-instance_method
|
24
|
+
def bucket_region: () -> ::String
|
25
|
+
|
23
26
|
def client: () -> Client
|
24
27
|
|
25
28
|
|
@@ -77,7 +80,10 @@ module Aws
|
|
77
80
|
objects: Array[
|
78
81
|
{
|
79
82
|
key: ::String,
|
80
|
-
version_id: ::String
|
83
|
+
version_id: ::String?,
|
84
|
+
etag: ::String?,
|
85
|
+
last_modified_time: ::Time?,
|
86
|
+
size: ::Integer?
|
81
87
|
},
|
82
88
|
],
|
83
89
|
quiet: bool?
|
@@ -107,12 +113,14 @@ module Aws
|
|
107
113
|
?checksum_sha1: ::String,
|
108
114
|
?checksum_sha256: ::String,
|
109
115
|
?expires: ::Time,
|
116
|
+
?if_match: ::String,
|
110
117
|
?if_none_match: ::String,
|
111
118
|
?grant_full_control: ::String,
|
112
119
|
?grant_read: ::String,
|
113
120
|
?grant_read_acp: ::String,
|
114
121
|
?grant_write_acp: ::String,
|
115
122
|
key: ::String,
|
123
|
+
?write_offset_bytes: ::Integer,
|
116
124
|
?metadata: Hash[::String, ::String],
|
117
125
|
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
118
126
|
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
|
@@ -20,6 +20,9 @@ module Aws
|
|
20
20
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycleConfiguration.html#rules-instance_method
|
21
21
|
def rules: () -> ::Array[Types::LifecycleRule]
|
22
22
|
|
23
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycleConfiguration.html#transition_default_minimum_object_size-instance_method
|
24
|
+
def transition_default_minimum_object_size: () -> ("varies_by_storage_class" | "all_storage_classes_128K")
|
25
|
+
|
23
26
|
def client: () -> Client
|
24
27
|
|
25
28
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycleConfiguration.html#load-instance_method
|
@@ -97,9 +100,10 @@ module Aws
|
|
97
100
|
},
|
98
101
|
]
|
99
102
|
},
|
100
|
-
?expected_bucket_owner: ::String
|
101
|
-
|
102
|
-
|
103
|
+
?expected_bucket_owner: ::String,
|
104
|
+
?transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
105
|
+
) -> Types::PutBucketLifecycleConfigurationOutput
|
106
|
+
| (?Hash[Symbol, untyped]) -> Types::PutBucketLifecycleConfigurationOutput
|
103
107
|
|
104
108
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycleConfiguration.html#bucket-instance_method
|
105
109
|
def bucket: () -> Bucket
|
data/sig/client.rbs
CHANGED
@@ -100,7 +100,8 @@ module Aws
|
|
100
100
|
key: ::String,
|
101
101
|
upload_id: ::String,
|
102
102
|
?request_payer: ("requester"),
|
103
|
-
?expected_bucket_owner: ::String
|
103
|
+
?expected_bucket_owner: ::String,
|
104
|
+
?if_match_initiated_time: ::Time
|
104
105
|
) -> _AbortMultipartUploadResponseSuccess
|
105
106
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AbortMultipartUploadResponseSuccess
|
106
107
|
|
@@ -144,6 +145,7 @@ module Aws
|
|
144
145
|
?checksum_sha256: ::String,
|
145
146
|
?request_payer: ("requester"),
|
146
147
|
?expected_bucket_owner: ::String,
|
148
|
+
?if_match: ::String,
|
147
149
|
?if_none_match: ::String,
|
148
150
|
?sse_customer_algorithm: ::String,
|
149
151
|
?sse_customer_key: ::String,
|
@@ -418,7 +420,10 @@ module Aws
|
|
418
420
|
?version_id: ::String,
|
419
421
|
?request_payer: ("requester"),
|
420
422
|
?bypass_governance_retention: bool,
|
421
|
-
?expected_bucket_owner: ::String
|
423
|
+
?expected_bucket_owner: ::String,
|
424
|
+
?if_match: ::String,
|
425
|
+
?if_match_last_modified_time: ::Time,
|
426
|
+
?if_match_size: ::Integer
|
422
427
|
) -> _DeleteObjectResponseSuccess
|
423
428
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteObjectResponseSuccess
|
424
429
|
|
@@ -448,7 +453,10 @@ module Aws
|
|
448
453
|
objects: Array[
|
449
454
|
{
|
450
455
|
key: ::String,
|
451
|
-
version_id: ::String
|
456
|
+
version_id: ::String?,
|
457
|
+
etag: ::String?,
|
458
|
+
last_modified_time: ::Time?,
|
459
|
+
size: ::Integer?
|
452
460
|
},
|
453
461
|
],
|
454
462
|
quiet: bool?
|
@@ -564,6 +572,7 @@ module Aws
|
|
564
572
|
interface _GetBucketLifecycleConfigurationResponseSuccess
|
565
573
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBucketLifecycleConfigurationOutput]
|
566
574
|
def rules: () -> ::Array[Types::LifecycleRule]
|
575
|
+
def transition_default_minimum_object_size: () -> ("varies_by_storage_class" | "all_storage_classes_128K")
|
567
576
|
end
|
568
577
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#get_bucket_lifecycle_configuration-instance_method
|
569
578
|
def get_bucket_lifecycle_configuration: (
|
@@ -1056,11 +1065,14 @@ module Aws
|
|
1056
1065
|
def buckets: () -> ::Array[Types::Bucket]
|
1057
1066
|
def owner: () -> Types::Owner
|
1058
1067
|
def continuation_token: () -> ::String
|
1068
|
+
def prefix: () -> ::String
|
1059
1069
|
end
|
1060
1070
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#list_buckets-instance_method
|
1061
1071
|
def list_buckets: (
|
1062
1072
|
?max_buckets: ::Integer,
|
1063
|
-
?continuation_token: ::String
|
1073
|
+
?continuation_token: ::String,
|
1074
|
+
?prefix: ::String,
|
1075
|
+
?bucket_region: ::String
|
1064
1076
|
) -> _ListBucketsResponseSuccess
|
1065
1077
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBucketsResponseSuccess
|
1066
1078
|
|
@@ -1464,6 +1476,10 @@ module Aws
|
|
1464
1476
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1465
1477
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1466
1478
|
|
1479
|
+
interface _PutBucketLifecycleConfigurationResponseSuccess
|
1480
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutBucketLifecycleConfigurationOutput]
|
1481
|
+
def transition_default_minimum_object_size: () -> ("varies_by_storage_class" | "all_storage_classes_128K")
|
1482
|
+
end
|
1467
1483
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_lifecycle_configuration-instance_method
|
1468
1484
|
def put_bucket_lifecycle_configuration: (
|
1469
1485
|
bucket: ::String,
|
@@ -1523,9 +1539,10 @@ module Aws
|
|
1523
1539
|
},
|
1524
1540
|
]
|
1525
1541
|
},
|
1526
|
-
?expected_bucket_owner: ::String
|
1527
|
-
|
1528
|
-
|
1542
|
+
?expected_bucket_owner: ::String,
|
1543
|
+
?transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
1544
|
+
) -> _PutBucketLifecycleConfigurationResponseSuccess
|
1545
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutBucketLifecycleConfigurationResponseSuccess
|
1529
1546
|
|
1530
1547
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_bucket_logging-instance_method
|
1531
1548
|
def put_bucket_logging: (
|
@@ -1877,6 +1894,7 @@ module Aws
|
|
1877
1894
|
def ssekms_key_id: () -> ::String
|
1878
1895
|
def ssekms_encryption_context: () -> ::String
|
1879
1896
|
def bucket_key_enabled: () -> bool
|
1897
|
+
def size: () -> ::Integer
|
1880
1898
|
def request_charged: () -> ("requester")
|
1881
1899
|
end
|
1882
1900
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#put_object-instance_method
|
@@ -1897,12 +1915,14 @@ module Aws
|
|
1897
1915
|
?checksum_sha1: ::String,
|
1898
1916
|
?checksum_sha256: ::String,
|
1899
1917
|
?expires: ::Time,
|
1918
|
+
?if_match: ::String,
|
1900
1919
|
?if_none_match: ::String,
|
1901
1920
|
?grant_full_control: ::String,
|
1902
1921
|
?grant_read: ::String,
|
1903
1922
|
?grant_read_acp: ::String,
|
1904
1923
|
?grant_write_acp: ::String,
|
1905
1924
|
key: ::String,
|
1925
|
+
?write_offset_bytes: ::Integer,
|
1906
1926
|
?metadata: Hash[::String, ::String],
|
1907
1927
|
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
1908
1928
|
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
|
data/sig/errors.rbs
CHANGED
@@ -15,10 +15,16 @@ module Aws
|
|
15
15
|
end
|
16
16
|
class BucketAlreadyOwnedByYou < ::Aws::Errors::ServiceError
|
17
17
|
end
|
18
|
+
class EncryptionTypeMismatch < ::Aws::Errors::ServiceError
|
19
|
+
end
|
18
20
|
class InvalidObjectState < ::Aws::Errors::ServiceError
|
19
21
|
def storage_class: () -> ::String
|
20
22
|
def access_tier: () -> ::String
|
21
23
|
end
|
24
|
+
class InvalidRequest < ::Aws::Errors::ServiceError
|
25
|
+
end
|
26
|
+
class InvalidWriteOffset < ::Aws::Errors::ServiceError
|
27
|
+
end
|
22
28
|
class NoSuchBucket < ::Aws::Errors::ServiceError
|
23
29
|
end
|
24
30
|
class NoSuchKey < ::Aws::Errors::ServiceError
|
@@ -29,6 +35,8 @@ module Aws
|
|
29
35
|
end
|
30
36
|
class ObjectNotInActiveTierError < ::Aws::Errors::ServiceError
|
31
37
|
end
|
38
|
+
class TooManyParts < ::Aws::Errors::ServiceError
|
39
|
+
end
|
32
40
|
end
|
33
41
|
end
|
34
42
|
end
|
data/sig/multipart_upload.rbs
CHANGED
@@ -57,7 +57,8 @@ module Aws
|
|
57
57
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#abort-instance_method
|
58
58
|
def abort: (
|
59
59
|
?request_payer: ("requester"),
|
60
|
-
?expected_bucket_owner: ::String
|
60
|
+
?expected_bucket_owner: ::String,
|
61
|
+
?if_match_initiated_time: ::Time
|
61
62
|
) -> Types::AbortMultipartUploadOutput
|
62
63
|
| (?Hash[Symbol, untyped]) -> Types::AbortMultipartUploadOutput
|
63
64
|
|
@@ -81,6 +82,7 @@ module Aws
|
|
81
82
|
?checksum_sha256: ::String,
|
82
83
|
?request_payer: ("requester"),
|
83
84
|
?expected_bucket_owner: ::String,
|
85
|
+
?if_match: ::String,
|
84
86
|
?if_none_match: ::String,
|
85
87
|
?sse_customer_algorithm: ::String,
|
86
88
|
?sse_customer_key: ::String,
|
data/sig/object.rbs
CHANGED
@@ -199,7 +199,10 @@ module Aws
|
|
199
199
|
?version_id: ::String,
|
200
200
|
?request_payer: ("requester"),
|
201
201
|
?bypass_governance_retention: bool,
|
202
|
-
?expected_bucket_owner: ::String
|
202
|
+
?expected_bucket_owner: ::String,
|
203
|
+
?if_match: ::String,
|
204
|
+
?if_match_last_modified_time: ::Time,
|
205
|
+
?if_match_size: ::Integer
|
203
206
|
) -> Types::DeleteObjectOutput
|
204
207
|
| (?Hash[Symbol, untyped]) -> Types::DeleteObjectOutput
|
205
208
|
|
@@ -277,11 +280,13 @@ module Aws
|
|
277
280
|
?checksum_sha1: ::String,
|
278
281
|
?checksum_sha256: ::String,
|
279
282
|
?expires: ::Time,
|
283
|
+
?if_match: ::String,
|
280
284
|
?if_none_match: ::String,
|
281
285
|
?grant_full_control: ::String,
|
282
286
|
?grant_read: ::String,
|
283
287
|
?grant_read_acp: ::String,
|
284
288
|
?grant_write_acp: ::String,
|
289
|
+
?write_offset_bytes: ::Integer,
|
285
290
|
?metadata: Hash[::String, ::String],
|
286
291
|
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
287
292
|
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
|
data/sig/object_summary.rbs
CHANGED
@@ -112,7 +112,10 @@ module Aws
|
|
112
112
|
?version_id: ::String,
|
113
113
|
?request_payer: ("requester"),
|
114
114
|
?bypass_governance_retention: bool,
|
115
|
-
?expected_bucket_owner: ::String
|
115
|
+
?expected_bucket_owner: ::String,
|
116
|
+
?if_match: ::String,
|
117
|
+
?if_match_last_modified_time: ::Time,
|
118
|
+
?if_match_size: ::Integer
|
116
119
|
) -> Types::DeleteObjectOutput
|
117
120
|
| (?Hash[Symbol, untyped]) -> Types::DeleteObjectOutput
|
118
121
|
|
@@ -190,11 +193,13 @@ module Aws
|
|
190
193
|
?checksum_sha1: ::String,
|
191
194
|
?checksum_sha256: ::String,
|
192
195
|
?expires: ::Time,
|
196
|
+
?if_match: ::String,
|
193
197
|
?if_none_match: ::String,
|
194
198
|
?grant_full_control: ::String,
|
195
199
|
?grant_read: ::String,
|
196
200
|
?grant_read_acp: ::String,
|
197
201
|
?grant_write_acp: ::String,
|
202
|
+
?write_offset_bytes: ::Integer,
|
198
203
|
?metadata: Hash[::String, ::String],
|
199
204
|
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
200
205
|
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
|
data/sig/object_version.rbs
CHANGED
@@ -68,7 +68,10 @@ module Aws
|
|
68
68
|
?mfa: ::String,
|
69
69
|
?request_payer: ("requester"),
|
70
70
|
?bypass_governance_retention: bool,
|
71
|
-
?expected_bucket_owner: ::String
|
71
|
+
?expected_bucket_owner: ::String,
|
72
|
+
?if_match: ::String,
|
73
|
+
?if_match_last_modified_time: ::Time,
|
74
|
+
?if_match_size: ::Integer
|
72
75
|
) -> Types::DeleteObjectOutput
|
73
76
|
| (?Hash[Symbol, untyped]) -> Types::DeleteObjectOutput
|
74
77
|
|
data/sig/resource.rbs
CHANGED
@@ -123,6 +123,8 @@ module Aws
|
|
123
123
|
|
124
124
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Resource.html#buckets-instance_method
|
125
125
|
def buckets: (
|
126
|
+
?prefix: ::String,
|
127
|
+
?bucket_region: ::String
|
126
128
|
) -> Bucket::Collection
|
127
129
|
| (?Hash[Symbol, untyped]) -> Bucket::Collection
|
128
130
|
end
|
data/sig/types.rbs
CHANGED
@@ -24,6 +24,7 @@ module Aws::S3
|
|
24
24
|
attr_accessor upload_id: ::String
|
25
25
|
attr_accessor request_payer: ("requester")
|
26
26
|
attr_accessor expected_bucket_owner: ::String
|
27
|
+
attr_accessor if_match_initiated_time: ::Time
|
27
28
|
SENSITIVE: []
|
28
29
|
end
|
29
30
|
|
@@ -79,6 +80,7 @@ module Aws::S3
|
|
79
80
|
class Bucket
|
80
81
|
attr_accessor name: ::String
|
81
82
|
attr_accessor creation_date: ::Time
|
83
|
+
attr_accessor bucket_region: ::String
|
82
84
|
SENSITIVE: []
|
83
85
|
end
|
84
86
|
|
@@ -190,6 +192,7 @@ module Aws::S3
|
|
190
192
|
attr_accessor checksum_sha256: ::String
|
191
193
|
attr_accessor request_payer: ("requester")
|
192
194
|
attr_accessor expected_bucket_owner: ::String
|
195
|
+
attr_accessor if_match: ::String
|
193
196
|
attr_accessor if_none_match: ::String
|
194
197
|
attr_accessor sse_customer_algorithm: ::String
|
195
198
|
attr_accessor sse_customer_key: ::String
|
@@ -522,6 +525,9 @@ module Aws::S3
|
|
522
525
|
attr_accessor request_payer: ("requester")
|
523
526
|
attr_accessor bypass_governance_retention: bool
|
524
527
|
attr_accessor expected_bucket_owner: ::String
|
528
|
+
attr_accessor if_match: ::String
|
529
|
+
attr_accessor if_match_last_modified_time: ::Time
|
530
|
+
attr_accessor if_match_size: ::Integer
|
525
531
|
SENSITIVE: []
|
526
532
|
end
|
527
533
|
|
@@ -593,6 +599,9 @@ module Aws::S3
|
|
593
599
|
SENSITIVE: []
|
594
600
|
end
|
595
601
|
|
602
|
+
class EncryptionTypeMismatch < Aws::EmptyStructure
|
603
|
+
end
|
604
|
+
|
596
605
|
class EndEvent
|
597
606
|
attr_accessor event_type: untyped
|
598
607
|
SENSITIVE: []
|
@@ -709,6 +718,7 @@ module Aws::S3
|
|
709
718
|
|
710
719
|
class GetBucketLifecycleConfigurationOutput
|
711
720
|
attr_accessor rules: ::Array[Types::LifecycleRule]
|
721
|
+
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
712
722
|
SENSITIVE: []
|
713
723
|
end
|
714
724
|
|
@@ -1204,6 +1214,12 @@ module Aws::S3
|
|
1204
1214
|
SENSITIVE: []
|
1205
1215
|
end
|
1206
1216
|
|
1217
|
+
class InvalidRequest < Aws::EmptyStructure
|
1218
|
+
end
|
1219
|
+
|
1220
|
+
class InvalidWriteOffset < Aws::EmptyStructure
|
1221
|
+
end
|
1222
|
+
|
1207
1223
|
class InventoryConfiguration
|
1208
1224
|
attr_accessor destination: Types::InventoryDestination
|
1209
1225
|
attr_accessor is_enabled: bool
|
@@ -1368,12 +1384,15 @@ module Aws::S3
|
|
1368
1384
|
attr_accessor buckets: ::Array[Types::Bucket]
|
1369
1385
|
attr_accessor owner: Types::Owner
|
1370
1386
|
attr_accessor continuation_token: ::String
|
1387
|
+
attr_accessor prefix: ::String
|
1371
1388
|
SENSITIVE: []
|
1372
1389
|
end
|
1373
1390
|
|
1374
1391
|
class ListBucketsRequest
|
1375
1392
|
attr_accessor max_buckets: ::Integer
|
1376
1393
|
attr_accessor continuation_token: ::String
|
1394
|
+
attr_accessor prefix: ::String
|
1395
|
+
attr_accessor bucket_region: ::String
|
1377
1396
|
SENSITIVE: []
|
1378
1397
|
end
|
1379
1398
|
|
@@ -1662,6 +1681,9 @@ module Aws::S3
|
|
1662
1681
|
class ObjectIdentifier
|
1663
1682
|
attr_accessor key: ::String
|
1664
1683
|
attr_accessor version_id: ::String
|
1684
|
+
attr_accessor etag: ::String
|
1685
|
+
attr_accessor last_modified_time: ::Time
|
1686
|
+
attr_accessor size: ::Integer
|
1665
1687
|
SENSITIVE: []
|
1666
1688
|
end
|
1667
1689
|
|
@@ -1851,11 +1873,17 @@ module Aws::S3
|
|
1851
1873
|
SENSITIVE: []
|
1852
1874
|
end
|
1853
1875
|
|
1876
|
+
class PutBucketLifecycleConfigurationOutput
|
1877
|
+
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
1878
|
+
SENSITIVE: []
|
1879
|
+
end
|
1880
|
+
|
1854
1881
|
class PutBucketLifecycleConfigurationRequest
|
1855
1882
|
attr_accessor bucket: ::String
|
1856
1883
|
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1857
1884
|
attr_accessor lifecycle_configuration: Types::BucketLifecycleConfiguration
|
1858
1885
|
attr_accessor expected_bucket_owner: ::String
|
1886
|
+
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
1859
1887
|
SENSITIVE: []
|
1860
1888
|
end
|
1861
1889
|
|
@@ -2037,6 +2065,7 @@ module Aws::S3
|
|
2037
2065
|
attr_accessor ssekms_key_id: ::String
|
2038
2066
|
attr_accessor ssekms_encryption_context: ::String
|
2039
2067
|
attr_accessor bucket_key_enabled: bool
|
2068
|
+
attr_accessor size: ::Integer
|
2040
2069
|
attr_accessor request_charged: ("requester")
|
2041
2070
|
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
2042
2071
|
end
|
@@ -2058,12 +2087,14 @@ module Aws::S3
|
|
2058
2087
|
attr_accessor checksum_sha1: ::String
|
2059
2088
|
attr_accessor checksum_sha256: ::String
|
2060
2089
|
attr_accessor expires: ::Time
|
2090
|
+
attr_accessor if_match: ::String
|
2061
2091
|
attr_accessor if_none_match: ::String
|
2062
2092
|
attr_accessor grant_full_control: ::String
|
2063
2093
|
attr_accessor grant_read: ::String
|
2064
2094
|
attr_accessor grant_read_acp: ::String
|
2065
2095
|
attr_accessor grant_write_acp: ::String
|
2066
2096
|
attr_accessor key: ::String
|
2097
|
+
attr_accessor write_offset_bytes: ::Integer
|
2067
2098
|
attr_accessor metadata: ::Hash[::String, ::String]
|
2068
2099
|
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2069
2100
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
@@ -2426,6 +2457,9 @@ module Aws::S3
|
|
2426
2457
|
SENSITIVE: []
|
2427
2458
|
end
|
2428
2459
|
|
2460
|
+
class TooManyParts < Aws::EmptyStructure
|
2461
|
+
end
|
2462
|
+
|
2429
2463
|
class TopicConfiguration
|
2430
2464
|
attr_accessor id: ::String
|
2431
2465
|
attr_accessor topic_arn: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.174.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-kms
|
@@ -47,7 +47,7 @@ dependencies:
|
|
47
47
|
version: '3'
|
48
48
|
- - ">="
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
version: 3.
|
50
|
+
version: 3.210.0
|
51
51
|
type: :runtime
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -57,7 +57,7 @@ dependencies:
|
|
57
57
|
version: '3'
|
58
58
|
- - ">="
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 3.
|
60
|
+
version: 3.210.0
|
61
61
|
description: Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3).
|
62
62
|
This gem is part of the AWS SDK for Ruby.
|
63
63
|
email:
|