Sha256: 57738f5b12f3d6f66375bd4c470f7c887a8280e6a6d29dff216ee0e1bd74bd4b
Contents?: true
Size: 523 Bytes
Versions: 39
Compression:
Stored size: 523 Bytes
Contents
module Fog module Compute class Bluebox 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 end end end
Version data entries
39 entries across 37 versions & 5 rubygems