Sha256: fc664e9a9e30ac6f5a7586b8ce16bedafc1647b1b7cbc17ce810a6592e1f9a41
Contents?: true
Size: 616 Bytes
Versions: 61
Compression:
Stored size: 616 Bytes
Contents
require 'fog/core/collection' require 'fog/bluebox/models/blb/lb_service' module Fog module Bluebox class BLB class LbServices < Fog::Collection model Fog::Bluebox::BLB::LbService attr_accessor :lb_application def all data = service.get_lb_services(lb_application.id).body load(data) end def get(lb_service_id) if lb_service = service.get_lb_service(lb_application.id, lb_service_id).body new(lb_service) end rescue Fog::Bluebox::BLB::NotFound nil end end end end end
Version data entries
61 entries across 61 versions & 6 rubygems