Sha256: 4a7a7e6189cc7c80468f2941d85bec682ecb02c4a4b3bc347dc566983cc484e6
Contents?: true
Size: 768 Bytes
Versions: 111
Compression:
Stored size: 768 Bytes
Contents
module Fog module Compute class Bluebox 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 end end end
Version data entries
111 entries across 111 versions & 19 rubygems