Sha256: d8b9a4a81fa854c2e84f0051fb663f50ddf53be902a42dc376aca1019e1453b0
Contents?: true
Size: 658 Bytes
Versions: 44
Compression:
Stored size: 658 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 class Mock def get_product(product_id) Fog::Mock.not_implemented end end end end end
Version data entries
44 entries across 44 versions & 3 rubygems