Class: Fog::Compute::StormOnDemand::Products

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/compute/storm_on_demand/models/products.rb

Instance Method Summary collapse

Instance Method Details

#all(options = {}) ⇒ Object



16
17
18
# File 'lib/fog/compute/storm_on_demand/models/products.rb', line 16

def all(options = {})
  service.list_products(options).body["items"]
end

#get(product_code) ⇒ Object



7
8
9
10
# File 'lib/fog/compute/storm_on_demand/models/products.rb', line 7

def get(product_code)
  prod = service.get_product(:code => product_code).body
  new(prod)
end

#get_product_code(options) ⇒ Object



12
13
14
# File 'lib/fog/compute/storm_on_demand/models/products.rb', line 12

def get_product_code(options)
  service.get_product_code(options).body
end