mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
34 lines
634 B
Ruby
34 lines
634 B
Ruby
|
require 'fog/core/model'
|
||
|
|
||
|
module Fog
|
||
|
module Compute
|
||
|
class XenServer
|
||
|
|
||
|
class PBD < Fog::Model
|
||
|
# API Reference here:
|
||
|
# http://docs.vmd.citrix.com/XenServer/5.6.0/1.0/en_gb/api/?c=PBD
|
||
|
|
||
|
identity :reference
|
||
|
|
||
|
attribute :uuid
|
||
|
attribute :__host, :aliases => :host
|
||
|
attribute :__sr, :aliases => :SR
|
||
|
|
||
|
def sr
|
||
|
connection.storage_repositories.get __sr
|
||
|
end
|
||
|
|
||
|
def storage_repository
|
||
|
sr
|
||
|
end
|
||
|
|
||
|
def host
|
||
|
connection.hosts.get __host
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|
||
|
end
|