mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
34 lines
792 B
Ruby
34 lines
792 B
Ruby
module Fog
|
|
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
|
|
|
|
class Mock
|
|
|
|
def get_slices
|
|
Fog::Mock.not_implemented
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|