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/vcloud_director/models/compute/vdc.rb

34 lines
1 KiB
Ruby
Raw Normal View History

2013-06-18 14:50:37 -04:00
require 'fog/core/model'
module Fog
module Compute
2013-08-27 05:19:54 -04:00
class VcloudDirector
2013-06-18 14:50:37 -04:00
2013-07-09 09:09:08 -04:00
class Vdc < Model
2013-09-16 13:13:09 -04:00
2013-06-18 14:50:37 -04:00
identity :id
2013-09-16 13:13:09 -04:00
2013-06-18 14:50:37 -04:00
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, :aliases => :ComputeCapacity
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
2013-09-16 13:13:09 -04:00
2013-06-19 11:07:42 -04:00
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-09-16 13:13:09 -04:00
2013-06-18 14:50:37 -04:00
end
end
end
2013-09-16 13:13:09 -04:00
end