1
0
mirror of https://github.com/minio/mc.git synced 2025-11-13 12:22:45 +03:00

Bring old documentation back

This commit is contained in:
Harshavardhana
2015-04-28 10:19:19 -07:00
parent c3b79d24f4
commit 744ed7dcd1
75 changed files with 474 additions and 101 deletions

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env ruby
require 'aws-sdk'
s3 = Aws::S3::Client.new(endpoint: "http://localhost:9000/",
require_https_for_sse_cpk: false,
region: "minio")
resp = s3.list_buckets
resp.buckets.each do |bucket|
puts "#{bucket.name} => #{bucket.creation_date}"
end