Sha256: 5c5af79a8ce1e4ed866882adf7d17f89caff39d6268318e5986af5e6485a93eb
Contents?: true
Size: 577 Bytes
Versions: 37
Compression:
Stored size: 577 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
37 entries across 37 versions & 2 rubygems