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.



10
11
12
# File 'lib/fog/xenserver/models/compute/pifs.rb', line 10

def initialize(attributes)
  super
end

Instance Method Details

#all(options = {}) ⇒ Object



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

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

#get(ref) ⇒ Object



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

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