Class: Fog::HP::LB::Nodes

Inherits:
Collection show all
Defined in:
lib/fog/hp/models/lb/nodes.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

#load_balancerObject

Returns the value of attribute load_balancer.



11
12
13
# File 'lib/fog/hp/models/lb/nodes.rb', line 11

def load_balancer
  @load_balancer
end

Instance Method Details

#allObject



13
14
15
16
17
# File 'lib/fog/hp/models/lb/nodes.rb', line 13

def all
  requires :load_balancer
  data = service.list_load_balancer_nodes(load_balancer.id).body['nodes']
  load(data)
end

#get(node_id) ⇒ Object



19
20
21
22
23
24
25
# File 'lib/fog/hp/models/lb/nodes.rb', line 19

def get(node_id)
  requires :load_balancer
  node = service.get_load_balancer_node(load_balancer.id, node_id).body
  new(node)
rescue Fog::HP::LB::NotFound
  nil
end