Class: Fog::Rackspace::LoadBalancers::Nodes
- Inherits:
-
Collection
- Object
- Array
- Collection
- Fog::Rackspace::LoadBalancers::Nodes
- Defined in:
- lib/fog/rackspace/models/load_balancers/nodes.rb
Instance Attribute Summary collapse
-
#load_balancer ⇒ Object
Returns the value of attribute load_balancer.
Attributes inherited from Collection
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 Attributes::InstanceMethods
#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one
Constructor Details
This class inherits a constructor from Fog::Collection
Instance Attribute Details
#load_balancer ⇒ Object
Returns the value of attribute load_balancer.
10 11 12 |
# File 'lib/fog/rackspace/models/load_balancers/nodes.rb', line 10 def load_balancer @load_balancer end |
Instance Method Details
#all ⇒ Object
12 13 14 15 16 |
# File 'lib/fog/rackspace/models/load_balancers/nodes.rb', line 12 def all requires :load_balancer data = connection.list_nodes(load_balancer.id).body['nodes'] load(data) end |
#get(node_id) ⇒ Object
18 19 20 21 22 23 24 25 |
# File 'lib/fog/rackspace/models/load_balancers/nodes.rb', line 18 def get(node_id) requires :load_balancer if node = connection.get_node(load_balancer.id, node_id).body['node'] new(node) end rescue Fog::Rackspace::LoadBalancers::NotFound nil end |