Class: Fog::HP::LB::Node

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/hp/models/lb/node.rb

Instance Method Summary collapse

Instance Method Details

#destroyObject



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

def destroy
  requires :id, :load_balancer
  service.delete_load_balancer_node(load_balancer.id, id)
  true
end

#ready?Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/fog/hp/models/lb/node.rb', line 20

def ready?
  self.status == 'ONLINE'
end

#saveObject



24
25
26
# File 'lib/fog/hp/models/lb/node.rb', line 24

def save
  identity ? update : create
end