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/xenserver/models/compute/host_cpu.rb
Sergio Rubio f12faea594 [xenserver] replace #connection with #service in models
connection is now deprecated as per #1415, #1392
2013-01-08 00:14:13 +01:00

37 lines
777 B
Ruby

require 'fog/core/model'
module Fog
module Compute
class XenServer
#
# A physical CPU
#
# @see http://docs.vmd.citrix.com/XenServer/6.0.0/1.0/en_gb/api/?c=host_cpu
#
class HostCpu < Fog::Model
identity :reference
attribute :uuid
attribute :family
attribute :flags
attribute :__host, :aliases => :host
attribute :model
attribute :model_name, :aliases => :modelname
attribute :number
attribute :other_config
attribute :speed
attribute :stepping
attribute :utilisation
attribute :vendor
def host
service.hosts.get __host
end
end
end
end
end