Sha256: 956fcc203b72234239b561b7db2d8902b77707c79a237a70b902eca0d322bc04
Contents?: true
Size: 546 Bytes
Versions: 19
Compression:
Stored size: 546 Bytes
Contents
require 'fog/core/collection' require 'fog/compute/models/brightbox/zone' module Fog module Brightbox class Compute class Zones < Fog::Collection model Fog::Brightbox::Compute::Zone def all data = connection.list_zones load(data) end def get(identifier) return nil if identifier.nil? || identifier == "" data = connection.get_zone(identifier) new(data) rescue Excon::Errors::NotFound nil end end end end end
Version data entries
19 entries across 19 versions & 3 rubygems