1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/vcloudng/models/compute/vdc.rb
Rodrigo Estebanez 60e8a5ec2a many changes...
2013-06-20 19:36:34 +02:00

33 lines
No EOL
1 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
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.vapps(:vdc => self)
end
end
end
end
end