mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
29 lines
616 B
Ruby
29 lines
616 B
Ruby
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
|