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