Sha256: 7385afabdfea627448f056575989f4c5dca858f979b4b920f1c119b51e195904
Contents?: true
Size: 551 Bytes
Versions: 61
Compression:
Stored size: 551 Bytes
Contents
require 'fog/bluebox/models/blb/lb_application' module Fog module Bluebox class BLB class LbApplications < Fog::Collection model Fog::Bluebox::BLB::LbApplication def all data = service.get_lb_applications.body load(data) end def get(application_id) if application_id && application = service.get_lb_application(application_id).body new(application) end rescue Fog::Bluebox::BLB::NotFound nil end end end end end
Version data entries
61 entries across 61 versions & 6 rubygems