2011-09-26 04:54:36 -04:00
|
|
|
module Fog
|
|
|
|
module Vcloud
|
|
|
|
class Compute
|
|
|
|
class Organization < Fog::Vcloud::Model
|
|
|
|
|
2012-01-30 09:24:14 -05:00
|
|
|
identity :href, :aliases => :Href
|
|
|
|
attribute :links, :aliases => :Link, :type => :array
|
|
|
|
ignore_attributes :xmlns, :xmlns_i, :xmlns_xsi, :xmlns_xsd
|
2011-09-26 04:54:36 -04:00
|
|
|
|
|
|
|
attribute :name
|
2011-10-05 05:58:50 -04:00
|
|
|
attribute :description, :aliases => :Description
|
2011-09-26 04:54:36 -04:00
|
|
|
attribute :type
|
|
|
|
attribute :full_name, :aliases => :FullName
|
|
|
|
|
|
|
|
def networks
|
|
|
|
@networks ||= Fog::Vcloud::Compute::Networks.
|
2012-12-22 18:22:50 -05:00
|
|
|
new( :service => service,
|
2011-09-26 04:54:36 -04:00
|
|
|
:href => href )
|
|
|
|
end
|
|
|
|
|
|
|
|
def tasks
|
|
|
|
load_unless_loaded!
|
|
|
|
@tasks ||= Fog::Vcloud::Compute::Tasks.
|
2012-12-22 18:22:50 -05:00
|
|
|
new( :service => service,
|
2011-09-26 04:54:36 -04:00
|
|
|
:href => other_links.find{|l| l[:type] == 'application/vnd.vmware.vcloud.tasksList+xml'}[:href] )
|
|
|
|
end
|
|
|
|
|
|
|
|
def vdcs
|
|
|
|
@vdcs ||= Fog::Vcloud::Compute::Vdcs.
|
2012-12-22 18:22:50 -05:00
|
|
|
new( :service => service,
|
2011-09-26 04:54:36 -04:00
|
|
|
:href => href )
|
|
|
|
end
|
|
|
|
|
2011-09-26 08:13:10 -04:00
|
|
|
def catalogs
|
|
|
|
@catalogs ||= Fog::Vcloud::Compute::Catalogs.
|
2012-12-22 18:22:50 -05:00
|
|
|
new( :service => service,
|
2011-09-26 08:13:10 -04:00
|
|
|
:href => href )
|
|
|
|
end
|
|
|
|
|
2011-09-26 04:54:36 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|