module Fog module Compute class XenServer module Models class Pbd < Fog::Model # API Reference here: # http://docs.vmd.citrix.com/XenServer/6.2.0/1.0/en_gb/api/?c=PBD provider_class :PBD identity :reference attribute :currently_attached attribute :device_config attribute :other_config attribute :uuid has_one :host, :hosts has_one :sr, :storage_repositories, :aliases => :SR alias_method :storage_repository, :sr def unplug service.unplug_pbd reference end end end end end end