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
|
2013-06-24 07:46:30 -04:00
|
|
|
attribute :available_networks, :aliases => :AvailableNetworks, :squash => :Network
|
|
|
|
attribute :compute_capacity_cpu , :aliases => :ComputeCapacity, :squash => :Cpu
|
|
|
|
attribute :compute_capacity_memory , :aliases => :ComputeCapacity, :squash => :Memory
|
2013-06-19 11:07:42 -04:00
|
|
|
attribute :storage_capacity , :aliases => :StorageCapacity
|
|
|
|
attribute :allocation_model, :aliases => :AllocationModel
|
2013-06-24 07:46:30 -04:00
|
|
|
attribute :capabilities, :aliases => :Capabilities, :squash => :SupportedHardwareVersions
|
2013-06-19 11:07:42 -04:00
|
|
|
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
|
2013-06-20 13:36:34 -04:00
|
|
|
service.vapps(:vdc => self)
|
2013-06-19 11:07:42 -04:00
|
|
|
end
|
2013-06-18 14:50:37 -04:00
|
|
|
|
2013-06-24 11:04:55 -04:00
|
|
|
|
2013-06-18 14:50:37 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|