Sha256: 4116395bd8a52c850fe9380d0bf62872a36399eef7b024dc24ab85931237ff7e
Contents?: true
Size: 490 Bytes
Versions: 23
Compression:
Stored size: 490 Bytes
Contents
require "fog/brightbox/models/compute/load_balancer" module Fog module Brightbox class Compute class LoadBalancers < Fog::Collection model Fog::Brightbox::Compute::LoadBalancer def all data = service.list_load_balancers load(data) end def get(identifier) data = service.get_load_balancer(identifier) new(data) rescue Excon::Errors::NotFound nil end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems