class Fog::Compute::StormOnDemand::Product

Public Instance Methods

price(options) click to toggle source
# File lib/fog/compute/storm_on_demand/models/product.rb, line 19
def price(options)
  requires :identity
  service.get_product_price({:code => identity}.merge!(options)).body
end
starting_price() click to toggle source
# File lib/fog/compute/storm_on_demand/models/product.rb, line 24
def starting_price
  requires :identity
  service.get_product_starting_price(:code => identity).body["items"]
end