1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/bluebox/requests/reboot_block.rb

34 lines
692 B
Ruby
Raw Normal View History

module Fog
module Bluebox
class Real
2010-06-02 11:20:38 -04:00
# Reboot block
#
# ==== Parameters
2010-06-02 11:20:38 -04:00
# * block_id<~String> - Id of block to reboot
# * type<~String> - Type of reboot, must be in ['HARD', 'SOFT']
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
2010-06-02 11:20:38 -04:00
# TODO
def reboot_block(block_id, type = 'SOFT')
request(
:expects => 200,
:method => 'PUT',
:path => "api/blocks/#{block_id}/#{'soft_' if type == 'SOFT'}reboot.json"
)
end
end
class Mock
2010-06-02 11:09:54 -04:00
def reboot_block(block_id, type = 'SOFT')
Fog::Mock.not_implemented
end
end
end
end