Sha256: 965734845e8e14db07d740302aefc8f41c876f3d72f48933a01c26862868cedc
Contents?: true
Size: 639 Bytes
Versions: 44
Compression:
Stored size: 639 Bytes
Contents
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
Version data entries
44 entries across 44 versions & 3 rubygems