2013-06-18 14:50:37 -04:00
|
|
|
require 'fog/core/model'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Vcloudng
|
|
|
|
|
|
|
|
class Vdc < Fog::Model
|
|
|
|
|
|
|
|
identity :id
|
|
|
|
|
|
|
|
attribute :name
|
|
|
|
attribute :type
|
|
|
|
attribute :href
|
2013-06-19 11:07:42 -04:00
|
|
|
attribute :description, :aliases => :Description
|
|
|
|
attribute :available_networks, :aliases => :AvailableNetworks
|
|
|
|
attribute :compute_capacity , :aliases => :ComputeCapacity
|
|
|
|
attribute :storage_capacity , :aliases => :StorageCapacity
|
|
|
|
attribute :allocation_model, :aliases => :AllocationModel
|
|
|
|
attribute :capabilities, :aliases => :Capabilities
|
|
|
|
attribute :nic_quota, :aliases => :NicQuota, :type => :integer
|
|
|
|
attribute :network_quota ,:aliases => :NetworkQuota, :type => :integer
|
|
|
|
attribute :vm_quota ,:aliases => :VmQuota, :type => :integer
|
|
|
|
attribute :is_enabled ,:aliases => :IsEnabled, :type => :boolean
|
|
|
|
|
|
|
|
def vapps
|
|
|
|
requires :id
|
|
|
|
service.vdcs(:vdc => self)
|
|
|
|
end
|
2013-06-18 14:50:37 -04:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|