aws-sdk-s3 1.173.0 → 1.175.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +22 -2
- data/lib/aws-sdk-s3/client.rb +969 -722
- data/lib/aws-sdk-s3/client_api.rb +2 -0
- data/lib/aws-sdk-s3/endpoint_provider.rb +36 -0
- data/lib/aws-sdk-s3/multipart_upload.rb +21 -0
- data/lib/aws-sdk-s3/object.rb +23 -1
- data/lib/aws-sdk-s3/object_summary.rb +20 -0
- data/lib/aws-sdk-s3/resource.rb +9 -8
- data/lib/aws-sdk-s3/types.rb +247 -116
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +3 -2
- data/sig/client.rbs +5 -3
- data/sig/multipart_upload.rbs +1 -0
- data/sig/object.rbs +1 -0
- data/sig/object_summary.rbs +1 -0
- data/sig/resource.rbs +2 -2
- data/sig/types.rbs +5 -3
- metadata +2 -2
data/lib/aws-sdk-s3.rb
CHANGED
data/sig/bucket.rbs
CHANGED
@@ -50,11 +50,11 @@ module Aws
|
|
50
50
|
?create_bucket_configuration: {
|
51
51
|
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")?,
|
52
52
|
location: {
|
53
|
-
type: ("AvailabilityZone")?,
|
53
|
+
type: ("AvailabilityZone" | "LocalZone")?,
|
54
54
|
name: ::String?
|
55
55
|
}?,
|
56
56
|
bucket: {
|
57
|
-
data_redundancy: ("SingleAvailabilityZone")?,
|
57
|
+
data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
|
58
58
|
type: ("Directory")?
|
59
59
|
}?
|
60
60
|
},
|
@@ -113,6 +113,7 @@ module Aws
|
|
113
113
|
?checksum_sha1: ::String,
|
114
114
|
?checksum_sha256: ::String,
|
115
115
|
?expires: ::Time,
|
116
|
+
?if_match: ::String,
|
116
117
|
?if_none_match: ::String,
|
117
118
|
?grant_full_control: ::String,
|
118
119
|
?grant_read: ::String,
|
data/sig/client.rbs
CHANGED
@@ -145,6 +145,7 @@ module Aws
|
|
145
145
|
?checksum_sha256: ::String,
|
146
146
|
?request_payer: ("requester"),
|
147
147
|
?expected_bucket_owner: ::String,
|
148
|
+
?if_match: ::String,
|
148
149
|
?if_none_match: ::String,
|
149
150
|
?sse_customer_algorithm: ::String,
|
150
151
|
?sse_customer_key: ::String,
|
@@ -223,11 +224,11 @@ module Aws
|
|
223
224
|
?create_bucket_configuration: {
|
224
225
|
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")?,
|
225
226
|
location: {
|
226
|
-
type: ("AvailabilityZone")?,
|
227
|
+
type: ("AvailabilityZone" | "LocalZone")?,
|
227
228
|
name: ::String?
|
228
229
|
}?,
|
229
230
|
bucket: {
|
230
|
-
data_redundancy: ("SingleAvailabilityZone")?,
|
231
|
+
data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
|
231
232
|
type: ("Directory")?
|
232
233
|
}?
|
233
234
|
},
|
@@ -924,7 +925,7 @@ module Aws
|
|
924
925
|
|
925
926
|
interface _HeadBucketResponseSuccess
|
926
927
|
include ::Seahorse::Client::_ResponseSuccess[Types::HeadBucketOutput]
|
927
|
-
def bucket_location_type: () -> ("AvailabilityZone")
|
928
|
+
def bucket_location_type: () -> ("AvailabilityZone" | "LocalZone")
|
928
929
|
def bucket_location_name: () -> ::String
|
929
930
|
def bucket_region: () -> ::String
|
930
931
|
def access_point_alias: () -> bool
|
@@ -1914,6 +1915,7 @@ module Aws
|
|
1914
1915
|
?checksum_sha1: ::String,
|
1915
1916
|
?checksum_sha256: ::String,
|
1916
1917
|
?expires: ::Time,
|
1918
|
+
?if_match: ::String,
|
1917
1919
|
?if_none_match: ::String,
|
1918
1920
|
?grant_full_control: ::String,
|
1919
1921
|
?grant_read: ::String,
|
data/sig/multipart_upload.rbs
CHANGED
data/sig/object.rbs
CHANGED
data/sig/object_summary.rbs
CHANGED
data/sig/resource.rbs
CHANGED
@@ -99,11 +99,11 @@ module Aws
|
|
99
99
|
?create_bucket_configuration: {
|
100
100
|
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")?,
|
101
101
|
location: {
|
102
|
-
type: ("AvailabilityZone")?,
|
102
|
+
type: ("AvailabilityZone" | "LocalZone")?,
|
103
103
|
name: ::String?
|
104
104
|
}?,
|
105
105
|
bucket: {
|
106
|
-
data_redundancy: ("SingleAvailabilityZone")?,
|
106
|
+
data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
|
107
107
|
type: ("Directory")?
|
108
108
|
}?
|
109
109
|
},
|
data/sig/types.rbs
CHANGED
@@ -91,7 +91,7 @@ module Aws::S3
|
|
91
91
|
end
|
92
92
|
|
93
93
|
class BucketInfo
|
94
|
-
attr_accessor data_redundancy: ("SingleAvailabilityZone")
|
94
|
+
attr_accessor data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")
|
95
95
|
attr_accessor type: ("Directory")
|
96
96
|
SENSITIVE: []
|
97
97
|
end
|
@@ -192,6 +192,7 @@ module Aws::S3
|
|
192
192
|
attr_accessor checksum_sha256: ::String
|
193
193
|
attr_accessor request_payer: ("requester")
|
194
194
|
attr_accessor expected_bucket_owner: ::String
|
195
|
+
attr_accessor if_match: ::String
|
195
196
|
attr_accessor if_none_match: ::String
|
196
197
|
attr_accessor sse_customer_algorithm: ::String
|
197
198
|
attr_accessor sse_customer_key: ::String
|
@@ -1090,7 +1091,7 @@ module Aws::S3
|
|
1090
1091
|
end
|
1091
1092
|
|
1092
1093
|
class HeadBucketOutput
|
1093
|
-
attr_accessor bucket_location_type: ("AvailabilityZone")
|
1094
|
+
attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
|
1094
1095
|
attr_accessor bucket_location_name: ::String
|
1095
1096
|
attr_accessor bucket_region: ::String
|
1096
1097
|
attr_accessor access_point_alias: bool
|
@@ -1563,7 +1564,7 @@ module Aws::S3
|
|
1563
1564
|
end
|
1564
1565
|
|
1565
1566
|
class LocationInfo
|
1566
|
-
attr_accessor type: ("AvailabilityZone")
|
1567
|
+
attr_accessor type: ("AvailabilityZone" | "LocalZone")
|
1567
1568
|
attr_accessor name: ::String
|
1568
1569
|
SENSITIVE: []
|
1569
1570
|
end
|
@@ -2086,6 +2087,7 @@ module Aws::S3
|
|
2086
2087
|
attr_accessor checksum_sha1: ::String
|
2087
2088
|
attr_accessor checksum_sha256: ::String
|
2088
2089
|
attr_accessor expires: ::Time
|
2090
|
+
attr_accessor if_match: ::String
|
2089
2091
|
attr_accessor if_none_match: ::String
|
2090
2092
|
attr_accessor grant_full_control: ::String
|
2091
2093
|
attr_accessor grant_read: ::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.175.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-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-kms
|