Sha256: 5e89da9934472b826aa1ad333889da63584225af8058e8da00bc9c32706a87d9
Contents?: true
Size: 576 Bytes
Versions: 20
Compression:
Stored size: 576 Bytes
Contents
module Fog module Compute class Ecloud class Location < Fog::Ecloud::Model identity :href ignore_attributes :xmlns, :xmlns_xsi, :xmlns_xsd, :xmlns_i attribute :name, :aliases => :Name attribute :type, :aliases => :Type def catalog(org_href) @catalog ||= Fog::Compute::Ecloud::Catalog.new(:service => service, :href => "#{service.base_path}/admin/catalog/organizations/#{org_href.scan(/\d+/)[0]}/locations/#{id}") end def id href.scan(/\d+/)[0] end end end end end
Version data entries
20 entries across 20 versions & 5 rubygems