Sha256: 596a325b6d42ae33f7b72d6276902aa8e491f4a3e3e44d5d686231a49558762f
Contents?: true
Size: 768 Bytes
Versions: 9
Compression:
Stored size: 768 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 end end end
Version data entries
9 entries across 9 versions & 1 rubygems