mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
37 lines
773 B
Ruby
37 lines
773 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/6.2.0/1.0/en_gb/api/?c=PBD
|
|
|
|
identity :reference
|
|
|
|
attribute :uuid
|
|
attribute :__host, :aliases => :host
|
|
attribute :__sr, :aliases => :SR
|
|
attribute :currently_attached
|
|
attribute :device_config
|
|
attribute :other_config
|
|
|
|
def sr
|
|
service.storage_repositories.get __sr
|
|
end
|
|
|
|
def storage_repository
|
|
sr
|
|
end
|
|
|
|
def host
|
|
service.hosts.get __host
|
|
end
|
|
|
|
def unplug
|
|
service.unplug_pbd reference
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|