2012-04-04 03:01:55 -04:00
|
|
|
require 'fog/core/model'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class XenServer
|
|
|
|
|
|
|
|
class GuestMetrics < Fog::Model
|
|
|
|
# API Reference here:
|
2013-12-10 20:05:42 -05:00
|
|
|
# http://docs.vmd.citrix.com/XenServer/6.2.0/1.0/en_gb/api/?c=VM_guest_metrics
|
2012-04-04 03:01:55 -04:00
|
|
|
|
|
|
|
identity :reference
|
|
|
|
|
|
|
|
attribute :uuid
|
2013-12-10 20:05:42 -05:00
|
|
|
attribute :disk
|
2012-04-04 03:01:55 -04:00
|
|
|
attribute :last_updated
|
|
|
|
attribute :live
|
|
|
|
attribute :memory
|
|
|
|
attribute :networks
|
|
|
|
attribute :os_version
|
|
|
|
attribute :other
|
|
|
|
attribute :other_config
|
|
|
|
attribute :pv_drivers_up_to_date, :aliases => :PV_drivers_up_to_date
|
|
|
|
attribute :pv_drivers_version, :aliases => :PV_drivers_version
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|