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