Sha256: 3990f26e21b8078b2bd9d3d9a0c35da43ae314e3cfdbf05b2d36c3cef309451e
Contents?: true
Size: 579 Bytes
Versions: 78
Compression:
Stored size: 579 Bytes
Contents
require 'fog/core/collection' require 'fog/brightbox/models/compute/server_group' module Fog module Compute class Brightbox class ServerGroups < Fog::Collection model Fog::Compute::Brightbox::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
78 entries across 78 versions & 7 rubygems