Sha256: 02190c3f367cfd8a7e5b3b76dcaedaeaab0c1496650ac69e9d1b500f5a138335
Contents?: true
Size: 1005 Bytes
Versions: 21
Compression:
Stored size: 1005 Bytes
Contents
module Fog module Brightbox class Storage 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
21 entries across 21 versions & 1 rubygems