2011-05-23 21:17:16 -04:00
|
|
|
module Fog
|
|
|
|
module Vcloud
|
|
|
|
class Compute
|
|
|
|
class Vdc < 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-05-23 21:17:16 -04:00
|
|
|
|
|
|
|
attribute :name
|
|
|
|
attribute :type
|
|
|
|
attribute :description, :aliases => :Description
|
2011-10-05 05:58:50 -04:00
|
|
|
attribute :network_quota, :aliases => :NetworkQuota, :type => :integer
|
|
|
|
attribute :nic_quota, :aliases => :NicQuota, :type => :integer
|
|
|
|
attribute :vm_quota, :aliases => :VmQuota, :type => :integer
|
|
|
|
attribute :is_enabled, :aliases => :IsEnabled, :type => :boolean
|
2011-05-23 21:17:16 -04:00
|
|
|
attribute :compute_capacity, :aliases => :ComputeCapacity
|
|
|
|
attribute :storage_capacity, :aliases => :StorageCapacity
|
|
|
|
attribute :available_networks, :aliases => :AvailableNetworks, :squash => :Network
|
2011-10-05 05:58:50 -04:00
|
|
|
|
2011-05-23 21:17:16 -04:00
|
|
|
attribute :resource_entities, :aliases => :ResourceEntities, :squash => :ResourceEntity
|
|
|
|
|
2012-01-30 09:24:14 -05:00
|
|
|
has_up :organization
|
|
|
|
|
2011-05-23 21:17:16 -04:00
|
|
|
def networks
|
|
|
|
@networks ||= Fog::Vcloud::Compute::Networks.
|
2012-12-22 18:22:50 -05:00
|
|
|
new( :service => service,
|
2011-05-23 21:17:16 -04:00
|
|
|
:href => href )
|
|
|
|
end
|
|
|
|
|
2011-09-26 11:20:17 -04:00
|
|
|
def vapps
|
|
|
|
@vapps ||= Fog::Vcloud::Compute::Vapps.
|
2012-12-22 18:22:50 -05:00
|
|
|
new( :service => service,
|
2011-09-26 11:20:17 -04:00
|
|
|
:href => href
|
|
|
|
)
|
|
|
|
end
|
2011-05-23 21:17:16 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|