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



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

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

#ready?Boolean

Returns:

  • (Boolean)


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

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

#saveObject



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

def save
  identity ? update : create
end