2010-05-17 00:09:25 +08:00
|
|
|
module Fog
|
2010-09-03 01:11:45 -07:00
|
|
|
class Vcloud
|
2010-05-17 00:09:25 +08:00
|
|
|
class Vdc < Fog::Vcloud::Model
|
|
|
|
|
|
|
|
identity :href
|
|
|
|
|
2010-06-18 07:58:09 +08:00
|
|
|
ignore_attributes :xmlns, :xmlns_xsi, :xmlns_xsd
|
2010-05-17 00:09:25 +08:00
|
|
|
|
2010-06-18 07:58:09 +08:00
|
|
|
attribute :name
|
|
|
|
attribute :type
|
|
|
|
attribute :description, :aliases => :Description
|
|
|
|
attribute :other_links, :aliases => :Link
|
|
|
|
attribute :compute_capacity, :aliases => :ComputeCapacity
|
|
|
|
attribute :storage_capacity, :aliases => :StorageCapacity
|
|
|
|
attribute :available_networks, :aliases => :AvailableNetworks, :squash => :Network
|
|
|
|
attribute :resource_entities, :aliases => :ResourceEntities, :squash => :ResourceEntity
|
|
|
|
attribute :enabled, :aliases => :IsEnabled
|
|
|
|
attribute :vm_quota, :aliases => :VmQuota
|
|
|
|
attribute :nic_quota, :aliases => :NicQuota
|
|
|
|
attribute :network_quota, :aliases => :NetworkQuota
|
|
|
|
attribute :allocation_model, :aliases => :AllocationModel
|
2010-05-17 00:09:25 +08:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|