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
Sergio Rubio 9ef0aa59ca * Added create_vbd and provision_server requests
* Do not provision server when :auto_start is false
* Add Server.provisio method
* Add VBD.save method
2012-04-12 14:16:14 +02:00

82 lines
2 KiB
Ruby

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
attribute :__vdi, :aliases => :VDI
attribute :__vm, :aliases => :VM
attribute :device
attribute :status_detail
attribute :status_code
attribute :type
attribute :userdevice
attribute :empty
attribute :type
attribute :mode
attribute :storage_lock
attribute :runtime_properties
attribute :unpluggable
attribute :bootable
attribute :qos_supported_algorithms
attribute :qos_algorithm_params
attribute :qos_algorithm_type
attribute :empty
attribute :__metrics, :aliases => :metrics
#
# May return nil
#
def vdi
connection.vdis.get __vdi
end
#
# TODO: May it return nil?
#
def server
connection.servers.get __vm
end
def save
requires :vdi, :server
ref = connection.create_vbd attributes[:server], attributes[:vdi], attributes
merge_attributes connection.vbds.get(ref).attributes
end
def unplug
connection.unplug_vbd reference
end
def unplug_force
connection.unplug_force_vbd reference
end
def eject
connection.eject_vbd reference
end
def insert(vdi)
connection.insert_vbd reference, vdi.reference
end
def metrics
rec = connection.get_record( __metrics, 'VBD_metrics' )
Fog::Compute::XenServer::VbdMetrics.new(rec)
end
end
end
end
end