Method: Fog::Compute::Bluebox::Real#get_blocks
- Defined in:
- lib/fog/bluebox/requests/compute/get_blocks.rb
#get_blocks ⇒ Object
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
-
-
17 18 19 20 21 22 23 |
# File 'lib/fog/bluebox/requests/compute/get_blocks.rb', line 17 def get_blocks request( :expects => 200, :method => 'GET', :path => 'api/blocks.json' ) end |