Sha256: 2a1115c2015bc66f553bb3d2940a5fcf1b96439f05d49fa616281b5e5a3b8fbf
Contents?: true
Size: 544 Bytes
Versions: 9
Compression:
Stored size: 544 Bytes
Contents
module Fog module Bluebox class Compute class Real # Get details of a product # # ==== Parameters # * product_id<~Integer> - Id of flavor to lookup # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # TODO def get_product(product_id) request( :expects => 200, :method => 'GET', :path => "api/block_products/#{product_id}.json" ) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems