aws-sdk-s3 1.180.0 → 1.182.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 +20 -20
- data/lib/aws-sdk-s3/bucket_policy.rb +5 -5
- data/lib/aws-sdk-s3/client.rb +205 -203
- data/lib/aws-sdk-s3/client_api.rb +1 -0
- data/lib/aws-sdk-s3/multipart_upload.rb +10 -10
- data/lib/aws-sdk-s3/multipart_upload_part.rb +23 -23
- data/lib/aws-sdk-s3/object.rb +32 -25
- data/lib/aws-sdk-s3/object_summary.rb +20 -20
- data/lib/aws-sdk-s3/object_version.rb +5 -5
- data/lib/aws-sdk-s3/types.rb +192 -186
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/object.rbs +3 -0
- data/sig/types.rbs +1 -0
- metadata +2 -2
data/lib/aws-sdk-s3.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1005,6 +1005,7 @@ module Aws
|
|
1005
1005
|
def content_encoding: () -> ::String
|
1006
1006
|
def content_language: () -> ::String
|
1007
1007
|
def content_type: () -> ::String
|
1008
|
+
def content_range: () -> ::String
|
1008
1009
|
def expires: () -> ::Time
|
1009
1010
|
def expires_string: () -> ::String
|
1010
1011
|
def website_redirect_location: () -> ::String
|
data/sig/object.rbs
CHANGED
@@ -83,6 +83,9 @@ module Aws
|
|
83
83
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#content_type-instance_method
|
84
84
|
def content_type: () -> ::String
|
85
85
|
|
86
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#content_range-instance_method
|
87
|
+
def content_range: () -> ::String
|
88
|
+
|
86
89
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Object.html#expires-instance_method
|
87
90
|
def expires: () -> ::Time
|
88
91
|
|
data/sig/types.rbs
CHANGED
@@ -1180,6 +1180,7 @@ module Aws::S3
|
|
1180
1180
|
attr_accessor content_encoding: ::String
|
1181
1181
|
attr_accessor content_language: ::String
|
1182
1182
|
attr_accessor content_type: ::String
|
1183
|
+
attr_accessor content_range: ::String
|
1183
1184
|
attr_accessor expires: ::Time
|
1184
1185
|
attr_accessor expires_string: ::String
|
1185
1186
|
attr_accessor website_redirect_location: ::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.182.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: 2025-02-
|
11
|
+
date: 2025-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-kms
|