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

41 lines
784 B
Ruby
Raw Normal View History

2012-04-02 13:25:03 +02:00
require 'fog/core/model'
module Fog
module Compute
class XenServer
2012-04-02 13:25:03 +02:00
class PBD < Fog::Model
# API Reference here:
# http://docs.vmd.citrix.com/XenServer/6.2.0/1.0/en_gb/api/?c=PBD
2012-04-02 13:25:03 +02:00
identity :reference
2012-04-02 13:25:03 +02:00
attribute :uuid
attribute :__host, :aliases => :host
attribute :__sr, :aliases => :SR
attribute :currently_attached
attribute :device_config
attribute :other_config
2012-04-02 13:25:03 +02:00
def sr
service.storage_repositories.get __sr
2012-04-02 13:25:03 +02:00
end
def storage_repository
sr
end
def host
service.hosts.get __host
2012-04-02 13:25:03 +02:00
end
def unplug
service.unplug_pbd reference
end
2012-04-02 13:25:03 +02:00
end
2012-04-02 13:25:03 +02:00
end
end
end