2011-05-24 11:17:16 +10:00
|
|
|
module Fog
|
|
|
|
module Vcloud
|
|
|
|
class Compute
|
|
|
|
class Vdc < Fog::Vcloud::Model
|
|
|
|
|
2012-01-30 15:24:14 +01:00
|
|
|
identity :href, :aliases => :Href
|
|
|
|
attribute :links, :aliases => :Link, :type => :array
|
|
|
|
ignore_attributes :xmlns, :xmlns_i, :xmlns_xsi, :xmlns_xsd
|
2011-05-24 11:17:16 +10:00
|
|
|
|
|
|
|
attribute :name
|
|
|
|
attribute :type
|
|
|
|
attribute :description, :aliases => :Description
|
2011-10-05 11:58:50 +02: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-24 11:17:16 +10:00
|
|
|
attribute :compute_capacity, :aliases => :ComputeCapacity
|
|
|
|
attribute :storage_capacity, :aliases => :StorageCapacity
|
|
|
|
attribute :available_networks, :aliases => :AvailableNetworks, :squash => :Network
|
2011-10-05 11:58:50 +02:00
|
|
|
|
2011-05-24 11:17:16 +10:00
|
|
|
attribute :resource_entities, :aliases => :ResourceEntities, :squash => :ResourceEntity
|
|
|
|
|
2012-01-30 15:24:14 +01:00
|
|
|
has_up :organization
|
|
|
|
|
2011-05-24 11:17:16 +10:00
|
|
|
def networks
|
|
|
|
@networks ||= Fog::Vcloud::Compute::Networks.
|
|
|
|
new( :connection => connection,
|
|
|
|
:href => href )
|
|
|
|
end
|
|
|
|
|
2011-09-26 17:20:17 +02:00
|
|
|
def vapps
|
|
|
|
@vapps ||= Fog::Vcloud::Compute::Vapps.
|
|
|
|
new( :connection => connection,
|
|
|
|
:href => href
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2011-05-24 11:17:16 +10:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|