2011-02-17 13:44:46 -05:00
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class Ecloud
|
2011-02-17 13:44:46 -05:00
|
|
|
class CatalogItem < Fog::Ecloud::Model
|
|
|
|
|
|
|
|
identity :href, :aliases => :Href
|
|
|
|
|
|
|
|
ignore_attributes :xmlns, :xmlns_i, :xmlns_xsi, :xmlns_xsd
|
|
|
|
|
|
|
|
attribute :type
|
|
|
|
attribute :name
|
|
|
|
attribute :entity, :aliases => :Entity
|
|
|
|
attribute :link, :aliases => :Link
|
|
|
|
attribute :property, :aliases => :Property
|
|
|
|
|
|
|
|
def customization_options
|
|
|
|
load_unless_loaded!
|
|
|
|
if data = connection.get_customization_options( link[:href] ).body
|
|
|
|
data.delete_if { |key, value| [:xmlns_i, :xmlns].include?(key) }
|
|
|
|
data
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|