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
Paul Thornthwaite 2e0b7e545a Standardise empty lines throughout codebase
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
2014-05-26 14:20:02 +01:00

35 lines
1.1 KiB
Ruby

require 'fog/core/model'
module Fog
module Compute
class VcloudDirector
class Vdc < Model
identity :id
attribute :name
attribute :type
attribute :href
attribute :description, :aliases => :Description
attribute :available_networks, :aliases => :AvailableNetworks, :squash => :Network
attribute :compute_capacity, :aliases => :ComputeCapacity
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 medias
requires :id
service.medias(:vdc => self)
end
def vapps
requires :id
service.vapps(:vdc => self)
end
end
end
end
end