Sha256: 575a5e07197f933b02526faa9d171d23ad7d695d904f2db5d675ad3f089b25c2
Contents?: true
Size: 542 Bytes
Versions: 39
Compression:
Stored size: 542 Bytes
Contents
module Fog module Compute class Bluebox 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
39 entries across 37 versions & 5 rubygems