mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
22 lines
456 B
Ruby
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
|