Method: Fog::Compute::XenServer::Network#pifs

Defined in:
lib/fog/xenserver/models/compute/network.rb

#pifsObject

Return the list of network related PIFs



35
36
37
38
39
40
41
# File 'lib/fog/xenserver/models/compute/network.rb', line 35

def pifs
  p = []
  __pifs.each do |pif|
    p << connection.pifs.get(pif)
  end
  p
end