Class: Fog::Compute::XenServer::Pbds

Inherits:
Fog::Collection
  • Object
show all
Defined in:
lib/fog/xenserver/models/compute/pbds.rb

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Pbds

Returns a new instance of Pbds.



12
13
14
# File 'lib/fog/xenserver/models/compute/pbds.rb', line 12

def initialize(attributes)
  super
end

Instance Method Details

#all(options = {}) ⇒ Object



16
17
18
19
# File 'lib/fog/xenserver/models/compute/pbds.rb', line 16

def all(options = {})
  data = service.get_records 'PBD'
  load(data)
end

#get(ref) ⇒ Object



21
22
23
24
25
26
27
# File 'lib/fog/xenserver/models/compute/pbds.rb', line 21

def get( ref )
  if ref && obj = service.get_record( ref, 'PBD' )
    new(obj)
  else
    nil
  end
end