mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
34 lines
639 B
Ruby
34 lines
639 B
Ruby
module Fog
|
|
module Bluebox
|
|
class Compute
|
|
class Real
|
|
|
|
# Destroy a block
|
|
#
|
|
# ==== Parameters
|
|
# * block_id<~Integer> - Id of block to destroy
|
|
#
|
|
# ==== Returns
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# TODO
|
|
def destroy_block(block_id)
|
|
request(
|
|
:expects => 200,
|
|
:method => 'DELETE',
|
|
:path => "api/blocks/#{block_id}.json"
|
|
)
|
|
end
|
|
|
|
end
|
|
|
|
class Mock
|
|
|
|
def destroy_block(block_id)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|