aws-sdk-s3 1.160.0 → 1.164.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +120 -43
- data/lib/aws-sdk-s3/client.rb +1097 -392
- data/lib/aws-sdk-s3/client_api.rb +8 -0
- data/lib/aws-sdk-s3/endpoints.rb +99 -396
- data/lib/aws-sdk-s3/object.rb +336 -129
- data/lib/aws-sdk-s3/object_summary.rb +324 -109
- data/lib/aws-sdk-s3/object_version.rb +14 -8
- data/lib/aws-sdk-s3/plugins/endpoints.rb +23 -8
- data/lib/aws-sdk-s3/types.rb +644 -306
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/client.rbs +10 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +10 -2
- metadata +4 -4
data/lib/aws-sdk-s3.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -17,6 +17,7 @@ module Aws
|
|
17
17
|
?access_grants: bool,
|
18
18
|
?access_grants_credentials_provider: untyped,
|
19
19
|
?access_key_id: String,
|
20
|
+
?account_id: String,
|
20
21
|
?active_endpoint_cache: bool,
|
21
22
|
?adaptive_retry_wait_to_fill: bool,
|
22
23
|
?client_side_monitoring: bool,
|
@@ -292,12 +293,20 @@ module Aws
|
|
292
293
|
|
293
294
|
interface _CreateSessionResponseSuccess
|
294
295
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSessionOutput]
|
296
|
+
def server_side_encryption: () -> ("AES256" | "aws:kms" | "aws:kms:dsse")
|
297
|
+
def ssekms_key_id: () -> ::String
|
298
|
+
def ssekms_encryption_context: () -> ::String
|
299
|
+
def bucket_key_enabled: () -> bool
|
295
300
|
def credentials: () -> Types::SessionCredentials
|
296
301
|
end
|
297
302
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Client.html#create_session-instance_method
|
298
303
|
def create_session: (
|
299
304
|
?session_mode: ("ReadOnly" | "ReadWrite"),
|
300
|
-
bucket: ::String
|
305
|
+
bucket: ::String,
|
306
|
+
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
307
|
+
?ssekms_key_id: ::String,
|
308
|
+
?ssekms_encryption_context: ::String,
|
309
|
+
?bucket_key_enabled: bool
|
301
310
|
) -> _CreateSessionResponseSuccess
|
302
311
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSessionResponseSuccess
|
303
312
|
|
data/sig/resource.rbs
CHANGED
data/sig/types.rbs
CHANGED
@@ -381,14 +381,22 @@ module Aws::S3
|
|
381
381
|
end
|
382
382
|
|
383
383
|
class CreateSessionOutput
|
384
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
385
|
+
attr_accessor ssekms_key_id: ::String
|
386
|
+
attr_accessor ssekms_encryption_context: ::String
|
387
|
+
attr_accessor bucket_key_enabled: bool
|
384
388
|
attr_accessor credentials: Types::SessionCredentials
|
385
|
-
SENSITIVE: []
|
389
|
+
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
386
390
|
end
|
387
391
|
|
388
392
|
class CreateSessionRequest
|
389
393
|
attr_accessor session_mode: ("ReadOnly" | "ReadWrite")
|
390
394
|
attr_accessor bucket: ::String
|
391
|
-
|
395
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
396
|
+
attr_accessor ssekms_key_id: ::String
|
397
|
+
attr_accessor ssekms_encryption_context: ::String
|
398
|
+
attr_accessor bucket_key_enabled: bool
|
399
|
+
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
392
400
|
end
|
393
401
|
|
394
402
|
class DefaultRetention
|
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.164.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-09-
|
11
|
+
date: 2024-09-20 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.207.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.207.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:
|