mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
34 lines
No EOL
1.2 KiB
Ruby
34 lines
No EOL
1.2 KiB
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module Compute
|
|
class Vcloudng
|
|
|
|
class Vdc < Fog::Model
|
|
|
|
identity :id
|
|
|
|
attribute :name
|
|
attribute :type
|
|
attribute :href
|
|
attribute :description, :aliases => :Description
|
|
attribute :available_networks, :aliases => :AvailableNetworks, :squash => :Network
|
|
attribute :compute_capacity_cpu , :aliases => :ComputeCapacity, :squash => :Cpu
|
|
attribute :compute_capacity_memory , :aliases => :ComputeCapacity, :squash => :Memory
|
|
attribute :storage_capacity , :aliases => :StorageCapacity
|
|
attribute :allocation_model, :aliases => :AllocationModel
|
|
attribute :capabilities, :aliases => :Capabilities, :squash => :SupportedHardwareVersions
|
|
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.vapps(:vdc => self)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end |