Class: Fog::Compute::XenServer::Pifs

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

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Pifs

Returns a new instance of Pifs.



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

def initialize(attributes)
  super
end

Instance Method Details

#all(options = {}) ⇒ Object



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

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

#get(ref) ⇒ Object



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

def get( ref )
  if ref && obj = service.get_record( ref, 'PIF' )
    new(obj)
  end
rescue Fog::XenServer::NotFound
  nil
end