Class: Fog::Bluebox::BLB::LbServices
- Inherits:
-
Collection
- Object
- Collection
- Fog::Bluebox::BLB::LbServices
- Defined in:
- lib/fog/bluebox/models/blb/lb_services.rb
Instance Attribute Summary collapse
-
#lb_application ⇒ Object
Returns the value of attribute lb_application.
Instance Method Summary collapse
Instance Attribute Details
#lb_application ⇒ Object
Returns the value of attribute lb_application.
10 11 12 |
# File 'lib/fog/bluebox/models/blb/lb_services.rb', line 10 def lb_application @lb_application end |
Instance Method Details
#all ⇒ Object
12 13 14 15 |
# File 'lib/fog/bluebox/models/blb/lb_services.rb', line 12 def all data = service.get_lb_services(lb_application.id).body load(data) end |
#get(lb_service_id) ⇒ Object
17 18 19 20 21 22 23 |
# File 'lib/fog/bluebox/models/blb/lb_services.rb', line 17 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 |