Sha256: e8b4bb44eec45311cc21faa75edfbbcf2b1d8b03a65490975b3c04aff6f7505d
Contents?: true
Size: 549 Bytes
Versions: 39
Compression:
Stored size: 549 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
39 entries across 37 versions & 5 rubygems