mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
25 lines
506 B
Ruby
25 lines
506 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/xenserver/models/compute/pci'
|
|
|
|
module Fog
|
|
module Compute
|
|
class XenServer
|
|
class Pcis < Fog::Collection
|
|
model Fog::Compute::XenServer::Pci
|
|
|
|
def all(options={})
|
|
data = service.get_records 'PCI'
|
|
load(data)
|
|
end
|
|
|
|
def get( pci_ref )
|
|
if pci_ref && pci = service.get_record( pci_ref, 'PCI' )
|
|
new(pci)
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|