Sha256: f25fd5add06bf8dfd8d90a5e3cf0c52923fc76bb0f938345cff2a2a41224c191
Contents?: true
Size: 1005 Bytes
Versions: 20
Compression:
Stored size: 1005 Bytes
Contents
module Fog module Storage class Brightbox class Real # List existing storage containers # # ==== Parameters # * options<~Hash>: # * 'limit'<~Integer> - Upper limit to number of results returned # * 'marker'<~String> - Only return objects with name greater than this value # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # * container<~Hash>: # * 'bytes'<~Integer>: - Number of bytes used by container # * 'count'<~Integer>: - Number of items in container # * 'name'<~String>: - Name of container def get_containers(options = {}) options = options.reject { |_key, value| value.nil? } request( :expects => [200, 204], :method => "GET", :path => "", :query => { "format" => "json" }.merge!(options) ) end end end end end
Version data entries
20 entries across 18 versions & 3 rubygems