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/vbd.rb

50 lines
1.1 KiB
Ruby
Raw Normal View History

2012-04-02 13:25:03 +02:00
require 'fog/core/model'
module Fog
module Compute
class XenServer
class VBD < Fog::Model
# API Reference here:
# http://docs.vmd.citrix.com/XenServer/5.6.0/1.0/en_gb/api/?c=VBD
identity :reference
attribute :uuid
attribute :currently_attached
attribute :allowed_operations
attribute :current_operations
2012-04-02 13:25:03 +02:00
attribute :reserved
attribute :__vdi, :aliases => :VDI
attribute :__vm, :aliases => :VM
2012-04-02 13:25:03 +02:00
attribute :device
attribute :status_detail
attribute :status_code
2012-04-02 13:25:03 +02:00
attribute :type
attribute :userdevice
attribute :empty
attribute :type
attribute :mode
attribute :runtime_properties
attribute :unpluggable
#
# May return nil
#
2012-04-02 13:25:03 +02:00
def vdi
connection.vdis.get __vdi
end
#
# TODO: May it return nil?
#
def server
connection.servers.get __vm
end
2012-04-02 13:25:03 +02:00
end
end
end
end