mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
35 lines
628 B
Ruby
35 lines
628 B
Ruby
![]() |
module Fog
|
||
|
module Bluebox
|
||
|
class Blocks
|
||
|
class Real
|
||
|
|
||
|
# Get details of a block.
|
||
|
#
|
||
|
# ==== Parameters
|
||
|
# * block_id<~Integer> - Id of block to lookup
|
||
|
#
|
||
|
# ==== Returns
|
||
|
# * response<~Excon::Response>:
|
||
|
# * body<~Hash>:
|
||
|
# TODO
|
||
|
def get_block(block_id)
|
||
|
request(
|
||
|
:expects => 200,
|
||
|
:method => 'GET',
|
||
|
:path => "api/blocks/#{block_id}.json"
|
||
|
)
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
class Mock
|
||
|
|
||
|
def get_slice(id)
|
||
|
Fog::Mock.not_implemented
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|