Sha256: 4b459846cb4e04504602eb494e1b0a9db7f626517a60491bf8b2d10eb398750c
Contents?: true
Size: 507 Bytes
Versions: 22
Compression:
Stored size: 507 Bytes
Contents
require "fog/brightbox/models/compute/zone" module Fog module Brightbox class Compute class Zones < Fog::Collection model Fog::Brightbox::Compute::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
22 entries across 22 versions & 1 rubygems