Sha256: ba39395ba323999d535cdfe67f655830c94f35d9b03411f1e49f2725b057145d
Contents?: true
Size: 869 Bytes
Versions: 36
Compression:
Stored size: 869 Bytes
Contents
module Fog module Bluebox class Compute class Real # Get list of blocks # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # * 'ips'<~Array> - Ip addresses for the block # * 'id'<~String> - Id of the block # * 'storage'<~Integer> - Disk space quota for the block # * 'memory'<~Integer> - RAM quota for the block # * 'cpu'<~Float> - The fractional CPU quota for this block # * 'hostname'<~String> - The hostname for the block def get_blocks request( :expects => 200, :method => 'GET', :path => 'api/blocks.json' ) end end class Mock def get_blocks Fog::Mock.not_implemented end end end end end
Version data entries
36 entries across 36 versions & 3 rubygems