class EasyAwscr::S3::Client
- EasyAwscr::S3::Client
- Reference
- Object
Defined in:
easy-awscr/s3/client.crConstructors
Instance Method Summary
-
#abort_multipart_upload(bucket : String, object : String, upload_id : String)
Aborts a multi part upload.
-
#batch_delete(bucket, keys : Array(String))
Batch deletes a list of object keys in a single request.
-
#complete_multipart_upload(bucket : String, object : String, upload_id : String, parts : Array(Response::UploadPartOutput))
Complete a multipart upload
-
#copy_object(bucket, source : String, destination : String, headers = Hash(String, String).new)
Copy an object from
source
todestination
in a bucket. -
#delete_bucket(bucket)
Delete a bucket, note: it must be empty
-
#delete_object(bucket, object, headers = Hash(String, String).new)
Delete an object from a bucket, returns
true
if successful,false
otherwise. -
#get_object(bucket, object : String, headers = Hash(String, String).new)
Get the contents of an object in a bucket
-
#get_object(bucket, object : String, headers = Hash(String, String).new, &)
Get the contents of an object in a bucket as an IO object
-
#head_bucket(bucket)
Get information about a bucket, useful for determining if a bucket exists.
-
#head_object(bucket, object : String, headers = Hash(String, String).new)
Get the metadata of an object in a bucket
-
#list_buckets
List s3 buckets
-
#list_objects(bucket, *, prefix = nil, max_keys = nil) : Awscr::S3::Paginator::ListObjectsV2
List all the items in a bucket
-
#put_bucket(bucket, region : String | Nil = nil, headers = Hash(String, String).new)
Create a bucket, optionally place it in a region.
-
#put_object(bucket, object : String, body : IO | String | Bytes, headers = Hash(String, String).new)
Add an object to a bucket.
-
#start_multipart_upload(bucket : String, object : String, headers = Hash(String, String).new)
Start a multipart upload
-
#upload_file(bucket : String, object : String, io : IO, *, headers = Hash(String, String).new, with_content_type = true, simultaneous_parts = 5) : Bool
Upload a file to a bucket.
-
#upload_part(bucket : String, object : String, upload_id : String, part_number : Int32, part : IO | String)
Upload a part, for use in multipart uploading
Constructor Detail
Instance Method Detail
Aborts a multi part upload. Returns true if the abort was a success, false otherwise.
resp = client.abort_multipart_upload("bucket1", "obj", "123")
p resp # => true
Batch deletes a list of object keys in a single request.
resp = client.batch_delete("bucket1", ["obj", "obj2"])
p resp.success? # => true
Complete a multipart upload
resp = client.complete_multipart_upload("bucket1", "obj", "123", parts)
p resp.key # => obj
Copy an object from source
to destination
in a bucket.
client.copy_object("bucket1", "source_object", "destination_object")
Delete a bucket, note: it must be empty
resp = client.delete_bucket("test")
p resp # => true
Delete an object from a bucket, returns true
if successful, false
otherwise.
resp = client.delete_object("bucket1", "obj")
p resp # => true
Get the contents of an object in a bucket
resp = client.get_object("bucket1", "obj")
p resp.body # => "MY DATA"
Get the contents of an object in a bucket as an IO object
client.get_object("bucket1", "obj") do |resp|
IO.copy(resp.body_io, STDOUT) # => "MY DATA"
end
Get information about a bucket, useful for determining if a bucket exists.
Raises a Http::ServerError
if the bucket does not exist.
resp = client.head_bucket("bucket1")
p resp # => true
Get the metadata of an object in a bucket
resp = client.head_object("bucket1", "obj")
p resp.size # => 123
p resp.status # => HTTP::Status::OK
p resp.last_modified # => "Wed, 19 Jun 2019 11:55:33 GMT"
p resp.etag # => ""
p resp.meta # => {"my_tag" => "my_value"}
List s3 buckets
resp = client.list_buckets
p resp.buckets.map(&.name) # => ["bucket1", "bucket2"]
List all the items in a bucket
resp = client.list_objects("bucket1", prefix: "test")
p resp.map(&.key) # => ["obj"]
Create a bucket, optionally place it in a region.
resp = client.create_bucket("test")
p resp # => true
Add an object to a bucket.
resp = client.put_object("bucket1", "obj", "MY DATA")
p resp.key # => "obj"
Start a multipart upload
resp = client.start_multipart_upload("bucket1", "obj")
p resp.upload_id # => someid
Upload a file to a bucket. Returns true if successful; otherwise an
Http::ServerError
is thrown.
File.open("/path/some/big/file.txt") do |io|
success = client.upload_file("bucket1", "obj", io)
p success => true
end
It uses Awscr::S3::FileUploader internally:
- If the file is 5MB or lower, it will be uploaded in a single request; but if the file is greater than 5MB, it will be uploaded in parts.
- If
with_content_type
is true, the uploader will automatically add a content type header
Upload a part, for use in multipart uploading
resp = client.upload_part("bucket1", "obj", "someid", 123, "MY DATA")
p resp.upload_id # => someid