aws-sdk-s3 1.164.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 +102 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +112 -43
- data/lib/aws-sdk-s3/bucket_acl.rb +6 -5
- data/lib/aws-sdk-s3/bucket_cors.rb +6 -5
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +7 -2
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +60 -3
- data/lib/aws-sdk-s3/bucket_logging.rb +2 -2
- data/lib/aws-sdk-s3/bucket_policy.rb +10 -9
- data/lib/aws-sdk-s3/bucket_request_payment.rb +3 -3
- data/lib/aws-sdk-s3/bucket_tagging.rb +3 -3
- data/lib/aws-sdk-s3/bucket_versioning.rb +9 -9
- data/lib/aws-sdk-s3/bucket_website.rb +3 -3
- data/lib/aws-sdk-s3/client.rb +2144 -1325
- data/lib/aws-sdk-s3/client_api.rb +175 -3
- data/lib/aws-sdk-s3/customizations/object.rb +6 -0
- data/lib/aws-sdk-s3/customizations/object_summary.rb +5 -0
- data/lib/aws-sdk-s3/customizations/object_version.rb +13 -0
- data/lib/aws-sdk-s3/customizations.rb +24 -38
- data/lib/aws-sdk-s3/endpoint_parameters.rb +13 -18
- data/lib/aws-sdk-s3/endpoint_provider.rb +272 -253
- data/lib/aws-sdk-s3/endpoints.rb +445 -1403
- data/lib/aws-sdk-s3/errors.rb +47 -0
- data/lib/aws-sdk-s3/file_downloader.rb +4 -21
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +31 -13
- data/lib/aws-sdk-s3/multipart_upload.rb +84 -6
- data/lib/aws-sdk-s3/multipart_upload_part.rb +52 -36
- data/lib/aws-sdk-s3/object.rb +254 -113
- data/lib/aws-sdk-s3/object_acl.rb +4 -4
- data/lib/aws-sdk-s3/object_summary.rb +199 -82
- data/lib/aws-sdk-s3/object_version.rb +67 -17
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -204
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +3 -3
- data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
- data/lib/aws-sdk-s3/presigner.rb +5 -5
- data/lib/aws-sdk-s3/resource.rb +35 -10
- data/lib/aws-sdk-s3/types.rb +1921 -856
- data/lib/aws-sdk-s3.rb +35 -31
- data/sig/bucket.rbs +15 -6
- data/sig/bucket_acl.rbs +1 -1
- data/sig/bucket_cors.rbs +1 -1
- data/sig/bucket_lifecycle.rbs +1 -1
- data/sig/bucket_lifecycle_configuration.rbs +8 -4
- data/sig/bucket_logging.rbs +1 -1
- data/sig/bucket_policy.rbs +1 -1
- data/sig/bucket_request_payment.rbs +1 -1
- data/sig/bucket_tagging.rbs +1 -1
- data/sig/bucket_versioning.rbs +3 -3
- data/sig/bucket_website.rbs +1 -1
- data/sig/client.rbs +115 -40
- data/sig/errors.rbs +8 -0
- data/sig/multipart_upload.rbs +11 -2
- data/sig/multipart_upload_part.rbs +5 -1
- data/sig/object.rbs +22 -6
- data/sig/object_acl.rbs +1 -1
- data/sig/object_summary.rbs +17 -7
- data/sig/object_version.rbs +9 -3
- data/sig/resource.rbs +7 -3
- data/sig/types.rbs +163 -36
- metadata +6 -5
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
data/lib/aws-sdk-s3.rb
CHANGED
@@ -12,36 +12,7 @@ require 'aws-sdk-kms'
|
|
12
12
|
require 'aws-sigv4'
|
13
13
|
require 'aws-sdk-core'
|
14
14
|
|
15
|
-
|
16
|
-
require_relative 'aws-sdk-s3/client_api'
|
17
|
-
require_relative 'aws-sdk-s3/plugins/endpoints.rb'
|
18
|
-
require_relative 'aws-sdk-s3/client'
|
19
|
-
require_relative 'aws-sdk-s3/errors'
|
20
|
-
require_relative 'aws-sdk-s3/waiters'
|
21
|
-
require_relative 'aws-sdk-s3/resource'
|
22
|
-
require_relative 'aws-sdk-s3/endpoint_parameters'
|
23
|
-
require_relative 'aws-sdk-s3/endpoint_provider'
|
24
|
-
require_relative 'aws-sdk-s3/endpoints'
|
25
|
-
require_relative 'aws-sdk-s3/bucket'
|
26
|
-
require_relative 'aws-sdk-s3/bucket_acl'
|
27
|
-
require_relative 'aws-sdk-s3/bucket_cors'
|
28
|
-
require_relative 'aws-sdk-s3/bucket_lifecycle'
|
29
|
-
require_relative 'aws-sdk-s3/bucket_lifecycle_configuration'
|
30
|
-
require_relative 'aws-sdk-s3/bucket_logging'
|
31
|
-
require_relative 'aws-sdk-s3/bucket_notification'
|
32
|
-
require_relative 'aws-sdk-s3/bucket_policy'
|
33
|
-
require_relative 'aws-sdk-s3/bucket_request_payment'
|
34
|
-
require_relative 'aws-sdk-s3/bucket_tagging'
|
35
|
-
require_relative 'aws-sdk-s3/bucket_versioning'
|
36
|
-
require_relative 'aws-sdk-s3/bucket_website'
|
37
|
-
require_relative 'aws-sdk-s3/multipart_upload'
|
38
|
-
require_relative 'aws-sdk-s3/multipart_upload_part'
|
39
|
-
require_relative 'aws-sdk-s3/object'
|
40
|
-
require_relative 'aws-sdk-s3/object_acl'
|
41
|
-
require_relative 'aws-sdk-s3/object_summary'
|
42
|
-
require_relative 'aws-sdk-s3/object_version'
|
43
|
-
require_relative 'aws-sdk-s3/customizations'
|
44
|
-
require_relative 'aws-sdk-s3/event_streams'
|
15
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:s3)
|
45
16
|
|
46
17
|
# This module provides support for Amazon Simple Storage Service. This module is available in the
|
47
18
|
# `aws-sdk-s3` gem.
|
@@ -72,7 +43,40 @@ require_relative 'aws-sdk-s3/event_streams'
|
|
72
43
|
#
|
73
44
|
# @!group service
|
74
45
|
module Aws::S3
|
46
|
+
autoload :Types, 'aws-sdk-s3/types'
|
47
|
+
autoload :ClientApi, 'aws-sdk-s3/client_api'
|
48
|
+
module Plugins
|
49
|
+
autoload :Endpoints, 'aws-sdk-s3/plugins/endpoints.rb'
|
50
|
+
end
|
51
|
+
autoload :Client, 'aws-sdk-s3/client'
|
52
|
+
autoload :Errors, 'aws-sdk-s3/errors'
|
53
|
+
autoload :Waiters, 'aws-sdk-s3/waiters'
|
54
|
+
autoload :Resource, 'aws-sdk-s3/resource'
|
55
|
+
autoload :EndpointParameters, 'aws-sdk-s3/endpoint_parameters'
|
56
|
+
autoload :EndpointProvider, 'aws-sdk-s3/endpoint_provider'
|
57
|
+
autoload :Endpoints, 'aws-sdk-s3/endpoints'
|
58
|
+
autoload :Bucket, 'aws-sdk-s3/bucket'
|
59
|
+
autoload :BucketAcl, 'aws-sdk-s3/bucket_acl'
|
60
|
+
autoload :BucketCors, 'aws-sdk-s3/bucket_cors'
|
61
|
+
autoload :BucketLifecycle, 'aws-sdk-s3/bucket_lifecycle'
|
62
|
+
autoload :BucketLifecycleConfiguration, 'aws-sdk-s3/bucket_lifecycle_configuration'
|
63
|
+
autoload :BucketLogging, 'aws-sdk-s3/bucket_logging'
|
64
|
+
autoload :BucketNotification, 'aws-sdk-s3/bucket_notification'
|
65
|
+
autoload :BucketPolicy, 'aws-sdk-s3/bucket_policy'
|
66
|
+
autoload :BucketRequestPayment, 'aws-sdk-s3/bucket_request_payment'
|
67
|
+
autoload :BucketTagging, 'aws-sdk-s3/bucket_tagging'
|
68
|
+
autoload :BucketVersioning, 'aws-sdk-s3/bucket_versioning'
|
69
|
+
autoload :BucketWebsite, 'aws-sdk-s3/bucket_website'
|
70
|
+
autoload :MultipartUpload, 'aws-sdk-s3/multipart_upload'
|
71
|
+
autoload :MultipartUploadPart, 'aws-sdk-s3/multipart_upload_part'
|
72
|
+
autoload :Object, 'aws-sdk-s3/object'
|
73
|
+
autoload :ObjectAcl, 'aws-sdk-s3/object_acl'
|
74
|
+
autoload :ObjectSummary, 'aws-sdk-s3/object_summary'
|
75
|
+
autoload :ObjectVersion, 'aws-sdk-s3/object_version'
|
76
|
+
autoload :EventStreams, 'aws-sdk-s3/event_streams'
|
75
77
|
|
76
|
-
GEM_VERSION = '1.
|
78
|
+
GEM_VERSION = '1.182.0'
|
77
79
|
|
78
80
|
end
|
81
|
+
|
82
|
+
require_relative 'aws-sdk-s3/customizations'
|
data/sig/bucket.rbs
CHANGED
@@ -20,6 +20,9 @@ module Aws
|
|
20
20
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#creation_date-instance_method
|
21
21
|
def creation_date: () -> ::Time
|
22
22
|
|
23
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/Bucket.html#bucket_region-instance_method
|
24
|
+
def bucket_region: () -> ::String
|
25
|
+
|
23
26
|
def client: () -> Client
|
24
27
|
|
25
28
|
|
@@ -45,13 +48,13 @@ module Aws
|
|
45
48
|
def create: (
|
46
49
|
?acl: ("private" | "public-read" | "public-read-write" | "authenticated-read"),
|
47
50
|
?create_bucket_configuration: {
|
48
|
-
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")?,
|
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" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")?,
|
49
52
|
location: {
|
50
|
-
type: ("AvailabilityZone")?,
|
53
|
+
type: ("AvailabilityZone" | "LocalZone")?,
|
51
54
|
name: ::String?
|
52
55
|
}?,
|
53
56
|
bucket: {
|
54
|
-
data_redundancy: ("SingleAvailabilityZone")?,
|
57
|
+
data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")?,
|
55
58
|
type: ("Directory")?
|
56
59
|
}?
|
57
60
|
},
|
@@ -77,7 +80,10 @@ module Aws
|
|
77
80
|
objects: Array[
|
78
81
|
{
|
79
82
|
key: ::String,
|
80
|
-
version_id: ::String
|
83
|
+
version_id: ::String?,
|
84
|
+
etag: ::String?,
|
85
|
+
last_modified_time: ::Time?,
|
86
|
+
size: ::Integer?
|
81
87
|
},
|
82
88
|
],
|
83
89
|
quiet: bool?
|
@@ -86,7 +92,7 @@ module Aws
|
|
86
92
|
?request_payer: ("requester"),
|
87
93
|
?bypass_governance_retention: bool,
|
88
94
|
?expected_bucket_owner: ::String,
|
89
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
95
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
90
96
|
) -> Types::DeleteObjectsOutput
|
91
97
|
| (?Hash[Symbol, untyped]) -> Types::DeleteObjectsOutput
|
92
98
|
|
@@ -101,18 +107,21 @@ module Aws
|
|
101
107
|
?content_length: ::Integer,
|
102
108
|
?content_md5: ::String,
|
103
109
|
?content_type: ::String,
|
104
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
110
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
105
111
|
?checksum_crc32: ::String,
|
106
112
|
?checksum_crc32c: ::String,
|
113
|
+
?checksum_crc64nvme: ::String,
|
107
114
|
?checksum_sha1: ::String,
|
108
115
|
?checksum_sha256: ::String,
|
109
116
|
?expires: ::Time,
|
117
|
+
?if_match: ::String,
|
110
118
|
?if_none_match: ::String,
|
111
119
|
?grant_full_control: ::String,
|
112
120
|
?grant_read: ::String,
|
113
121
|
?grant_read_acp: ::String,
|
114
122
|
?grant_write_acp: ::String,
|
115
123
|
key: ::String,
|
124
|
+
?write_offset_bytes: ::Integer,
|
116
125
|
?metadata: Hash[::String, ::String],
|
117
126
|
?server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse"),
|
118
127
|
?storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE"),
|
data/sig/bucket_acl.rbs
CHANGED
@@ -58,7 +58,7 @@ module Aws
|
|
58
58
|
}?
|
59
59
|
},
|
60
60
|
?content_md5: ::String,
|
61
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
61
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
62
62
|
?grant_full_control: ::String,
|
63
63
|
?grant_read: ::String,
|
64
64
|
?grant_read_acp: ::String,
|
data/sig/bucket_cors.rbs
CHANGED
@@ -54,7 +54,7 @@ module Aws
|
|
54
54
|
]
|
55
55
|
},
|
56
56
|
?content_md5: ::String,
|
57
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
57
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
58
58
|
?expected_bucket_owner: ::String
|
59
59
|
) -> ::Aws::EmptyStructure
|
60
60
|
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
data/sig/bucket_lifecycle.rbs
CHANGED
@@ -42,7 +42,7 @@ module Aws
|
|
42
42
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycle.html#put-instance_method
|
43
43
|
def put: (
|
44
44
|
?content_md5: ::String,
|
45
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
45
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
46
46
|
?lifecycle_configuration: {
|
47
47
|
rules: Array[
|
48
48
|
{
|
@@ -20,6 +20,9 @@ module Aws
|
|
20
20
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycleConfiguration.html#rules-instance_method
|
21
21
|
def rules: () -> ::Array[Types::LifecycleRule]
|
22
22
|
|
23
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycleConfiguration.html#transition_default_minimum_object_size-instance_method
|
24
|
+
def transition_default_minimum_object_size: () -> ("varies_by_storage_class" | "all_storage_classes_128K")
|
25
|
+
|
23
26
|
def client: () -> Client
|
24
27
|
|
25
28
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycleConfiguration.html#load-instance_method
|
@@ -41,7 +44,7 @@ module Aws
|
|
41
44
|
|
42
45
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycleConfiguration.html#put-instance_method
|
43
46
|
def put: (
|
44
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
47
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
45
48
|
?lifecycle_configuration: {
|
46
49
|
rules: Array[
|
47
50
|
{
|
@@ -97,9 +100,10 @@ module Aws
|
|
97
100
|
},
|
98
101
|
]
|
99
102
|
},
|
100
|
-
?expected_bucket_owner: ::String
|
101
|
-
|
102
|
-
|
103
|
+
?expected_bucket_owner: ::String,
|
104
|
+
?transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
105
|
+
) -> Types::PutBucketLifecycleConfigurationOutput
|
106
|
+
| (?Hash[Symbol, untyped]) -> Types::PutBucketLifecycleConfigurationOutput
|
103
107
|
|
104
108
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketLifecycleConfiguration.html#bucket-instance_method
|
105
109
|
def bucket: () -> Bucket
|
data/sig/bucket_logging.rbs
CHANGED
@@ -61,7 +61,7 @@ module Aws
|
|
61
61
|
}?
|
62
62
|
},
|
63
63
|
?content_md5: ::String,
|
64
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
64
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
65
65
|
?expected_bucket_owner: ::String
|
66
66
|
) -> ::Aws::EmptyStructure
|
67
67
|
| (?Hash[Symbol, untyped]) -> ::Aws::EmptyStructure
|
data/sig/bucket_policy.rbs
CHANGED
@@ -42,7 +42,7 @@ module Aws
|
|
42
42
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketPolicy.html#put-instance_method
|
43
43
|
def put: (
|
44
44
|
?content_md5: ::String,
|
45
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
45
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
46
46
|
?confirm_remove_self_bucket_access: bool,
|
47
47
|
policy: ::String,
|
48
48
|
?expected_bucket_owner: ::String
|
@@ -36,7 +36,7 @@ module Aws
|
|
36
36
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketRequestPayment.html#put-instance_method
|
37
37
|
def put: (
|
38
38
|
?content_md5: ::String,
|
39
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
39
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
40
40
|
request_payment_configuration: {
|
41
41
|
payer: ("Requester" | "BucketOwner")
|
42
42
|
},
|
data/sig/bucket_tagging.rbs
CHANGED
@@ -42,7 +42,7 @@ module Aws
|
|
42
42
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketTagging.html#put-instance_method
|
43
43
|
def put: (
|
44
44
|
?content_md5: ::String,
|
45
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
45
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
46
46
|
tagging: {
|
47
47
|
tag_set: Array[
|
48
48
|
{
|
data/sig/bucket_versioning.rbs
CHANGED
@@ -39,7 +39,7 @@ module Aws
|
|
39
39
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketVersioning.html#enable-instance_method
|
40
40
|
def enable: (
|
41
41
|
?content_md5: ::String,
|
42
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
42
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
43
43
|
?mfa: ::String,
|
44
44
|
?expected_bucket_owner: ::String
|
45
45
|
) -> ::Aws::EmptyStructure
|
@@ -48,7 +48,7 @@ module Aws
|
|
48
48
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketVersioning.html#put-instance_method
|
49
49
|
def put: (
|
50
50
|
?content_md5: ::String,
|
51
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
51
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
52
52
|
?mfa: ::String,
|
53
53
|
versioning_configuration: {
|
54
54
|
mfa_delete: ("Enabled" | "Disabled")?,
|
@@ -61,7 +61,7 @@ module Aws
|
|
61
61
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketVersioning.html#suspend-instance_method
|
62
62
|
def suspend: (
|
63
63
|
?content_md5: ::String,
|
64
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
64
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
65
65
|
?mfa: ::String,
|
66
66
|
?expected_bucket_owner: ::String
|
67
67
|
) -> ::Aws::EmptyStructure
|
data/sig/bucket_website.rbs
CHANGED
@@ -51,7 +51,7 @@ module Aws
|
|
51
51
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/BucketWebsite.html#put-instance_method
|
52
52
|
def put: (
|
53
53
|
?content_md5: ::String,
|
54
|
-
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
|
54
|
+
?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME"),
|
55
55
|
website_configuration: {
|
56
56
|
error_document: {
|
57
57
|
key: ::String
|