2011-05-23 21:17:16 -04:00
|
|
|
module Fog
|
|
|
|
module Vcloud
|
|
|
|
class Compute
|
|
|
|
class Vdc < Fog::Vcloud::Model
|
|
|
|
|
|
|
|
identity :href
|
|
|
|
|
|
|
|
ignore_attributes :xmlns, :xmlns_xsi, :xmlns_xsd
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
attribute :other_links, :aliases => :Link
|
|
|
|
|
2011-05-23 21:17:16 -04:00
|
|
|
attribute :resource_entities, :aliases => :ResourceEntities, :squash => :ResourceEntity
|
|
|
|
|
|
|
|
def networks
|
|
|
|
@networks ||= Fog::Vcloud::Compute::Networks.
|
|
|
|
new( :connection => connection,
|
|
|
|
:href => href )
|
|
|
|
end
|
|
|
|
|
2011-09-26 11:20:17 -04:00
|
|
|
def vapps
|
|
|
|
@vapps ||= Fog::Vcloud::Compute::Vapps.
|
|
|
|
new( :connection => connection,
|
|
|
|
:href => href
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2011-05-23 21:17:16 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|