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