aws-sdk-s3 1.142.0 → 1.143.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/errors.rbs ADDED
@@ -0,0 +1,34 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module S3
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class BucketAlreadyExists < ::Aws::Errors::ServiceError
15
+ end
16
+ class BucketAlreadyOwnedByYou < ::Aws::Errors::ServiceError
17
+ end
18
+ class InvalidObjectState < ::Aws::Errors::ServiceError
19
+ def storage_class: () -> ::String
20
+ def access_tier: () -> ::String
21
+ end
22
+ class NoSuchBucket < ::Aws::Errors::ServiceError
23
+ end
24
+ class NoSuchKey < ::Aws::Errors::ServiceError
25
+ end
26
+ class NoSuchUpload < ::Aws::Errors::ServiceError
27
+ end
28
+ class ObjectAlreadyInActiveTierError < ::Aws::Errors::ServiceError
29
+ end
30
+ class ObjectNotInActiveTierError < ::Aws::Errors::ServiceError
31
+ end
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,110 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module S3
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html
11
+ class MultipartUpload
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#initialize-instance_method
13
+ def initialize: (String bucket_name, String object_key, String id, Hash[Symbol, untyped] options) -> void
14
+ | (bucket_name: String, object_key: String, id: String, ?client: Client) -> void
15
+ | (Hash[Symbol, untyped] args) -> void
16
+
17
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#bucket_name-instance_method
18
+ def bucket_name: () -> String
19
+
20
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#object_key-instance_method
21
+ def object_key: () -> String
22
+
23
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#id-instance_method
24
+ def id: () -> String
25
+
26
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#upload_id-instance_method
27
+ def upload_id: () -> ::String
28
+
29
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#key-instance_method
30
+ def key: () -> ::String
31
+
32
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#initiated-instance_method
33
+ def initiated: () -> ::Time
34
+
35
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#storage_class-instance_method
36
+ def storage_class: () -> ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
37
+
38
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#owner-instance_method
39
+ def owner: () -> Types::Owner
40
+
41
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#initiator-instance_method
42
+ def initiator: () -> Types::Initiator
43
+
44
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#checksum_algorithm-instance_method
45
+ def checksum_algorithm: () -> ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
46
+
47
+ def client: () -> Client
48
+
49
+
50
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#data-instance_method
51
+ def data: () -> Types::MultipartUpload
52
+
53
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#data_loaded?-instance_method
54
+ def data_loaded?: () -> bool
55
+
56
+
57
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#abort-instance_method
58
+ def abort: (
59
+ ?request_payer: ("requester"),
60
+ ?expected_bucket_owner: ::String
61
+ ) -> Types::AbortMultipartUploadOutput
62
+ | (?Hash[Symbol, untyped]) -> Types::AbortMultipartUploadOutput
63
+
64
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#complete-instance_method
65
+ def complete: (
66
+ ?multipart_upload: {
67
+ parts: Array[
68
+ {
69
+ etag: ::String?,
70
+ checksum_crc32: ::String?,
71
+ checksum_crc32c: ::String?,
72
+ checksum_sha1: ::String?,
73
+ checksum_sha256: ::String?,
74
+ part_number: ::Integer?
75
+ },
76
+ ]?
77
+ },
78
+ ?checksum_crc32: ::String,
79
+ ?checksum_crc32c: ::String,
80
+ ?checksum_sha1: ::String,
81
+ ?checksum_sha256: ::String,
82
+ ?request_payer: ("requester"),
83
+ ?expected_bucket_owner: ::String,
84
+ ?sse_customer_algorithm: ::String,
85
+ ?sse_customer_key: ::String,
86
+ ?sse_customer_key_md5: ::String
87
+ ) -> Object
88
+ | (?Hash[Symbol, untyped]) -> Object
89
+
90
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#object-instance_method
91
+ def object: () -> Object
92
+
93
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#part-instance_method
94
+ def part: (String part_number) -> MultipartUploadPart
95
+
96
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUpload.html#parts-instance_method
97
+ def parts: (
98
+ ?request_payer: ("requester"),
99
+ ?expected_bucket_owner: ::String,
100
+ ?sse_customer_algorithm: ::String,
101
+ ?sse_customer_key: ::String,
102
+ ?sse_customer_key_md5: ::String
103
+ ) -> MultipartUploadPart::Collection
104
+ | (?Hash[Symbol, untyped]) -> MultipartUploadPart::Collection
105
+
106
+ class Collection < ::Aws::Resources::Collection[MultipartUpload]
107
+ end
108
+ end
109
+ end
110
+ end
@@ -0,0 +1,105 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module S3
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html
11
+ class MultipartUploadPart
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#initialize-instance_method
13
+ def initialize: (String bucket_name, String object_key, String multipart_upload_id, Integer part_number, Hash[Symbol, untyped] options) -> void
14
+ | (bucket_name: String, object_key: String, multipart_upload_id: String, part_number: Integer, ?client: Client) -> void
15
+ | (Hash[Symbol, untyped] args) -> void
16
+
17
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#bucket_name-instance_method
18
+ def bucket_name: () -> String
19
+
20
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#object_key-instance_method
21
+ def object_key: () -> String
22
+
23
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#multipart_upload_id-instance_method
24
+ def multipart_upload_id: () -> String
25
+
26
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#part_number-instance_method
27
+ def part_number: () -> Integer
28
+
29
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#last_modified-instance_method
30
+ def last_modified: () -> ::Time
31
+
32
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#etag-instance_method
33
+ def etag: () -> ::String
34
+
35
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#size-instance_method
36
+ def size: () -> ::Integer
37
+
38
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#checksum_crc32-instance_method
39
+ def checksum_crc32: () -> ::String
40
+
41
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#checksum_crc32c-instance_method
42
+ def checksum_crc32c: () -> ::String
43
+
44
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#checksum_sha1-instance_method
45
+ def checksum_sha1: () -> ::String
46
+
47
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#checksum_sha256-instance_method
48
+ def checksum_sha256: () -> ::String
49
+
50
+ def client: () -> Client
51
+
52
+
53
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#data-instance_method
54
+ def data: () -> Types::Part
55
+
56
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#data_loaded?-instance_method
57
+ def data_loaded?: () -> bool
58
+
59
+
60
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#copy_from-instance_method
61
+ def copy_from: (
62
+ copy_source: ::String,
63
+ ?copy_source_if_match: ::String,
64
+ ?copy_source_if_modified_since: ::Time,
65
+ ?copy_source_if_none_match: ::String,
66
+ ?copy_source_if_unmodified_since: ::Time,
67
+ ?copy_source_range: ::String,
68
+ ?sse_customer_algorithm: ::String,
69
+ ?sse_customer_key: ::String,
70
+ ?sse_customer_key_md5: ::String,
71
+ ?copy_source_sse_customer_algorithm: ::String,
72
+ ?copy_source_sse_customer_key: ::String,
73
+ ?copy_source_sse_customer_key_md5: ::String,
74
+ ?request_payer: ("requester"),
75
+ ?expected_bucket_owner: ::String,
76
+ ?expected_source_bucket_owner: ::String
77
+ ) -> Types::UploadPartCopyOutput
78
+ | (?Hash[Symbol, untyped]) -> Types::UploadPartCopyOutput
79
+
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#upload-instance_method
81
+ def upload: (
82
+ ?body: ::String | ::StringIO | ::File,
83
+ ?content_length: ::Integer,
84
+ ?content_md5: ::String,
85
+ ?checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256"),
86
+ ?checksum_crc32: ::String,
87
+ ?checksum_crc32c: ::String,
88
+ ?checksum_sha1: ::String,
89
+ ?checksum_sha256: ::String,
90
+ ?sse_customer_algorithm: ::String,
91
+ ?sse_customer_key: ::String,
92
+ ?sse_customer_key_md5: ::String,
93
+ ?request_payer: ("requester"),
94
+ ?expected_bucket_owner: ::String
95
+ ) -> Types::UploadPartOutput
96
+ | (?Hash[Symbol, untyped]) -> Types::UploadPartOutput
97
+
98
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3/MultipartUploadPart.html#multipart_upload-instance_method
99
+ def multipart_upload: () -> MultipartUpload
100
+
101
+ class Collection < ::Aws::Resources::Collection[MultipartUploadPart]
102
+ end
103
+ end
104
+ end
105
+ end