Sha256: ad5668ceccafb75c95bf5e19d0f5c51a8d3d0e0f22f8ddda3157366718d9673f
Contents?: true
Size: 545 Bytes
Versions: 23
Compression:
Stored size: 545 Bytes
Contents
require "fog/brightbox/models/compute/server_group" module Fog module Brightbox class Compute class ServerGroups < Fog::Collection model Fog::Brightbox::Compute::ServerGroup def all data = service.list_server_groups load(data) end def get(identifier) return nil if identifier.nil? || identifier == "" data = service.get_server_group(identifier) new(data) rescue Excon::Errors::NotFound nil end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems