aws-sdk-s3 1.189.1 → 1.190.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/client.rb +436 -26
- data/lib/aws-sdk-s3/client_api.rb +41 -0
- data/lib/aws-sdk-s3/endpoints.rb +14 -0
- data/lib/aws-sdk-s3/errors.rb +11 -0
- data/lib/aws-sdk-s3/object.rb +18 -0
- data/lib/aws-sdk-s3/types.rb +211 -10
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/client.rbs +28 -3
- data/sig/errors.rbs +2 -0
- data/sig/object.rbs +3 -0
- data/sig/types.rbs +27 -0
- metadata +1 -1
data/sig/types.rbs
CHANGED
@@ -459,6 +459,7 @@ module Aws::S3
|
|
459
459
|
class DeleteBucketIntelligentTieringConfigurationRequest
|
460
460
|
attr_accessor bucket: ::String
|
461
461
|
attr_accessor id: ::String
|
462
|
+
attr_accessor expected_bucket_owner: ::String
|
462
463
|
SENSITIVE: []
|
463
464
|
end
|
464
465
|
|
@@ -735,6 +736,7 @@ module Aws::S3
|
|
735
736
|
class GetBucketIntelligentTieringConfigurationRequest
|
736
737
|
attr_accessor bucket: ::String
|
737
738
|
attr_accessor id: ::String
|
739
|
+
attr_accessor expected_bucket_owner: ::String
|
738
740
|
SENSITIVE: []
|
739
741
|
end
|
740
742
|
|
@@ -1194,6 +1196,7 @@ module Aws::S3
|
|
1194
1196
|
attr_accessor request_charged: ("requester")
|
1195
1197
|
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
1196
1198
|
attr_accessor parts_count: ::Integer
|
1199
|
+
attr_accessor tag_count: ::Integer
|
1197
1200
|
attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
|
1198
1201
|
attr_accessor object_lock_retain_until_date: ::Time
|
1199
1202
|
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
@@ -1225,6 +1228,9 @@ module Aws::S3
|
|
1225
1228
|
SENSITIVE: [:sse_customer_key]
|
1226
1229
|
end
|
1227
1230
|
|
1231
|
+
class IdempotencyParameterMismatch < Aws::EmptyStructure
|
1232
|
+
end
|
1233
|
+
|
1228
1234
|
class IndexDocument
|
1229
1235
|
attr_accessor suffix: ::String
|
1230
1236
|
SENSITIVE: []
|
@@ -1404,6 +1410,7 @@ module Aws::S3
|
|
1404
1410
|
class ListBucketIntelligentTieringConfigurationsRequest
|
1405
1411
|
attr_accessor bucket: ::String
|
1406
1412
|
attr_accessor continuation_token: ::String
|
1413
|
+
attr_accessor expected_bucket_owner: ::String
|
1407
1414
|
SENSITIVE: []
|
1408
1415
|
end
|
1409
1416
|
|
@@ -1934,6 +1941,7 @@ module Aws::S3
|
|
1934
1941
|
class PutBucketIntelligentTieringConfigurationRequest
|
1935
1942
|
attr_accessor bucket: ::String
|
1936
1943
|
attr_accessor id: ::String
|
1944
|
+
attr_accessor expected_bucket_owner: ::String
|
1937
1945
|
attr_accessor intelligent_tiering_configuration: Types::IntelligentTieringConfiguration
|
1938
1946
|
SENSITIVE: []
|
1939
1947
|
end
|
@@ -2272,6 +2280,25 @@ module Aws::S3
|
|
2272
2280
|
SENSITIVE: []
|
2273
2281
|
end
|
2274
2282
|
|
2283
|
+
class RenameObjectOutput < Aws::EmptyStructure
|
2284
|
+
end
|
2285
|
+
|
2286
|
+
class RenameObjectRequest
|
2287
|
+
attr_accessor bucket: ::String
|
2288
|
+
attr_accessor key: ::String
|
2289
|
+
attr_accessor rename_source: ::String
|
2290
|
+
attr_accessor destination_if_match: ::String
|
2291
|
+
attr_accessor destination_if_none_match: ::String
|
2292
|
+
attr_accessor destination_if_modified_since: ::Time
|
2293
|
+
attr_accessor destination_if_unmodified_since: ::Time
|
2294
|
+
attr_accessor source_if_match: ::String
|
2295
|
+
attr_accessor source_if_none_match: ::String
|
2296
|
+
attr_accessor source_if_modified_since: ::Time
|
2297
|
+
attr_accessor source_if_unmodified_since: ::Time
|
2298
|
+
attr_accessor client_token: ::String
|
2299
|
+
SENSITIVE: []
|
2300
|
+
end
|
2301
|
+
|
2275
2302
|
class ReplicaModifications
|
2276
2303
|
attr_accessor status: ("Enabled" | "Disabled")
|
2277
2304
|
SENSITIVE: []
|