1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/vcloud/models/compute/catalog.rb

22 lines
456 B
Ruby

module Fog
module Vcloud
class Compute
class Catalog < Fog::Vcloud::Model
identity :href, :aliases => :Href
ignore_attributes :xmlns, :xmlns_i, :xmlns_xsi, :xmlns_xsd
attribute :type
attribute :name
def catalog_items
@catalog_items ||= Fog::Vcloud::Compute::CatalogItems.
new( :connection => connection,
:href => href )
end
end
end
end
end