Sha256: e677753a1a5cb25980d422e8024d7c517989d5dbd63ab45f8515c55a6df810b5
Contents?: true
Size: 582 Bytes
Versions: 25
Compression:
Stored size: 582 Bytes
Contents
require 'fog/core/collection' require 'fog/xenserver/models/compute/pool' module Fog module Compute class XenServer class Pools < Fog::Collection model Fog::Compute::XenServer::Pool def initialize(attributes) super end def all(options = {}) data = service.get_records 'pool' load(data) end def get( pool_ref ) if pool_ref && pool = service.get_record( pool_ref, 'pool' ) new(pool) else nil end end end end end end
Version data entries
25 entries across 25 versions & 4 rubygems