Sha256: f54e93891617fd0cfe2a84b1a113ca51bf0b5c4c359905434bfa27026de01945
Contents?: true
Size: 556 Bytes
Versions: 19
Compression:
Stored size: 556 Bytes
Contents
require 'fog/core/collection' require 'fog/compute/models/brightbox/server' module Fog module Brightbox class Compute class Servers < Fog::Collection model Fog::Brightbox::Compute::Server def all data = connection.list_servers load(data) end def get(identifier) return nil if identifier.nil? || identifier == "" data = connection.get_server(identifier) new(data) rescue Excon::Errors::NotFound nil end end end end end
Version data entries
19 entries across 19 versions & 3 rubygems