Sha256: 36be7176e12c17ba4535b82c6868cde41779ee404fe727a2d6344187b27f66e0
Contents?: true
Size: 816 Bytes
Versions: 11
Compression:
Stored size: 816 Bytes
Contents
module Fog module Vcloud class Compute class CatalogItems < Fog::Vcloud::Collection undef_method :create model Fog::Vcloud::Compute::CatalogItem attribute :href, :aliases => :Href def all catalog_item_info = connection.get_catalog_item(self.href) items = connection.get_catalog_item(self.href).body[:CatalogItems] if items.size > 0 data = items[:CatalogItem] load(data) end end def get(uri) if data = connection.get_catalog_item(uri) new(data.body) end rescue Fog::Errors::NotFound nil end def organization_uri @organization_uri ||= connection.default_organization_uri end end end end end
Version data entries
11 entries across 11 versions & 7 rubygems