Class: Fog::Bluebox::BLB::LbBackends

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/bluebox/models/blb/lb_backends.rb

Instance Attribute Summary collapse

Attributes inherited from Collection

#service

Instance Method Summary collapse

Methods inherited from Collection

#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Attribute Details

#lb_serviceObject

Returns the value of attribute lb_service.



11
12
13
# File 'lib/fog/bluebox/models/blb/lb_backends.rb', line 11

def lb_service
  @lb_service
end

Instance Method Details

#allObject



13
14
15
16
# File 'lib/fog/bluebox/models/blb/lb_backends.rb', line 13

def all
  data = service.get_lb_backends(lb_service.id).body
  load(data)
end

#get(lb_backend_id) ⇒ Object



18
19
20
21
22
23
24
# File 'lib/fog/bluebox/models/blb/lb_backends.rb', line 18

def get(lb_backend_id)
  if lb_backend = service.get_lb_backend(lb_service.id, lb_backend_id).body
    new(lb_backend)
  end
rescue Fog::Compute::Bluebox::NotFound
  nil
end