aws-sdk-s3 1.172.0 → 1.173.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +14 -0
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +5 -0
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +20 -0
- data/lib/aws-sdk-s3/client.rb +466 -278
- data/lib/aws-sdk-s3/client_api.rb +30 -0
- data/lib/aws-sdk-s3/errors.rb +44 -0
- data/lib/aws-sdk-s3/multipart_upload.rb +12 -0
- data/lib/aws-sdk-s3/object.rb +54 -0
- data/lib/aws-sdk-s3/object_summary.rb +54 -0
- data/lib/aws-sdk-s3/object_version.rb +43 -0
- data/lib/aws-sdk-s3/types.rb +246 -4
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +5 -1
- data/sig/client.rbs +12 -3
- data/sig/errors.rbs +8 -0
- data/sig/multipart_upload.rbs +2 -1
- data/sig/object.rbs +5 -1
- data/sig/object_summary.rbs +5 -1
- data/sig/object_version.rbs +4 -1
- data/sig/types.rbs +21 -0
- metadata +2 -2
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
|
|
@@ -523,6 +524,9 @@ module Aws::S3
|
|
523
524
|
attr_accessor request_payer: ("requester")
|
524
525
|
attr_accessor bypass_governance_retention: bool
|
525
526
|
attr_accessor expected_bucket_owner: ::String
|
527
|
+
attr_accessor if_match: ::String
|
528
|
+
attr_accessor if_match_last_modified_time: ::Time
|
529
|
+
attr_accessor if_match_size: ::Integer
|
526
530
|
SENSITIVE: []
|
527
531
|
end
|
528
532
|
|
@@ -594,6 +598,9 @@ module Aws::S3
|
|
594
598
|
SENSITIVE: []
|
595
599
|
end
|
596
600
|
|
601
|
+
class EncryptionTypeMismatch < Aws::EmptyStructure
|
602
|
+
end
|
603
|
+
|
597
604
|
class EndEvent
|
598
605
|
attr_accessor event_type: untyped
|
599
606
|
SENSITIVE: []
|
@@ -1206,6 +1213,12 @@ module Aws::S3
|
|
1206
1213
|
SENSITIVE: []
|
1207
1214
|
end
|
1208
1215
|
|
1216
|
+
class InvalidRequest < Aws::EmptyStructure
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
class InvalidWriteOffset < Aws::EmptyStructure
|
1220
|
+
end
|
1221
|
+
|
1209
1222
|
class InventoryConfiguration
|
1210
1223
|
attr_accessor destination: Types::InventoryDestination
|
1211
1224
|
attr_accessor is_enabled: bool
|
@@ -1667,6 +1680,9 @@ module Aws::S3
|
|
1667
1680
|
class ObjectIdentifier
|
1668
1681
|
attr_accessor key: ::String
|
1669
1682
|
attr_accessor version_id: ::String
|
1683
|
+
attr_accessor etag: ::String
|
1684
|
+
attr_accessor last_modified_time: ::Time
|
1685
|
+
attr_accessor size: ::Integer
|
1670
1686
|
SENSITIVE: []
|
1671
1687
|
end
|
1672
1688
|
|
@@ -2048,6 +2064,7 @@ module Aws::S3
|
|
2048
2064
|
attr_accessor ssekms_key_id: ::String
|
2049
2065
|
attr_accessor ssekms_encryption_context: ::String
|
2050
2066
|
attr_accessor bucket_key_enabled: bool
|
2067
|
+
attr_accessor size: ::Integer
|
2051
2068
|
attr_accessor request_charged: ("requester")
|
2052
2069
|
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
2053
2070
|
end
|
@@ -2075,6 +2092,7 @@ module Aws::S3
|
|
2075
2092
|
attr_accessor grant_read_acp: ::String
|
2076
2093
|
attr_accessor grant_write_acp: ::String
|
2077
2094
|
attr_accessor key: ::String
|
2095
|
+
attr_accessor write_offset_bytes: ::Integer
|
2078
2096
|
attr_accessor metadata: ::Hash[::String, ::String]
|
2079
2097
|
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2080
2098
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
@@ -2437,6 +2455,9 @@ module Aws::S3
|
|
2437
2455
|
SENSITIVE: []
|
2438
2456
|
end
|
2439
2457
|
|
2458
|
+
class TooManyParts < Aws::EmptyStructure
|
2459
|
+
end
|
2460
|
+
|
2440
2461
|
class TopicConfiguration
|
2441
2462
|
attr_accessor id: ::String
|
2442
2463
|
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.173.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-
|
11
|
+
date: 2024-11-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-kms
|