class Fog::Compute::Packet::SpotMarketPrices
Public Instance Methods
all()
click to toggle source
# File lib/fog/compute/packet/models/spot_market_prices.rb, line 10 def all response = service.list_spotmarketprices new(response.body) end
get(facility, plan)
click to toggle source
# File lib/fog/compute/packet/models/spot_market_prices.rb, line 15 def get(facility, plan) response = service.list_spotmarketprices_history(facility, plan) new(response.body) end