2012-06-07 12:50:11 -04:00
|
|
|
require 'fog/ecloud/models/compute/catalog_configuration'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Ecloud
|
|
|
|
class CatalogConfigurations < Fog::Ecloud::Collection
|
|
|
|
|
|
|
|
identity :href
|
|
|
|
|
|
|
|
model Fog::Compute::Ecloud::CatalogConfiguration
|
|
|
|
|
|
|
|
def all
|
2012-12-22 18:27:38 -05:00
|
|
|
data = service.get_catalog_configurations(href).body
|
2012-06-07 12:50:11 -04:00
|
|
|
load(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get(uri)
|
2012-12-22 18:27:38 -05:00
|
|
|
if data = service.get_catalog_configuration(uri)
|
2012-06-07 12:50:11 -04:00
|
|
|
new(data.body)
|
|
|
|
end
|
|
|
|
rescue Fog::Errors::NotFound
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|