2010-05-16 12:09:25 -04:00
|
|
|
module Fog
|
2010-09-03 04:11:45 -04:00
|
|
|
class Vcloud
|
2010-05-16 12:09:25 -04:00
|
|
|
class Vdc < Fog::Vcloud::Model
|
|
|
|
|
|
|
|
identity :href
|
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
ignore_attributes :xmlns, :xmlns_xsi, :xmlns_xsd
|
2010-05-16 12:09:25 -04:00
|
|
|
|
2010-06-17 19:58:09 -04: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-16 12:09:25 -04:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|