Sha256: 1702d6db5904fc8a46cda66659c421c76852fe1039bddcbf47e5065987113fad
Contents?: true
Size: 544 Bytes
Versions: 111
Compression:
Stored size: 544 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
111 entries across 111 versions & 19 rubygems