Sha256: e65acf242c489a83026444201f05a5b0343e3b48f660e3c9669528eae3de1c42
Contents?: true
Size: 691 Bytes
Versions: 44
Compression:
Stored size: 691 Bytes
Contents
module Fog module Bluebox class Compute class Real # Get list of products # # ==== Returns # * response<~Excon::Response>: # * body<~Array>: # * 'id'<~String> - UUID of the product # * 'description'<~String> - Description of the product # * 'cost'<~Decimal> - Hourly cost of the product def get_products request( :expects => 200, :method => 'GET', :path => 'api/block_products.json' ) end end class Mock def get_products Fog::Mock.not_implemented end end end end end
Version data entries
44 entries across 44 versions & 3 rubygems