Class: Fog::HP::LB::Node
- Inherits:
-
Model
- Object
- Model
- Fog::HP::LB::Node
- Defined in:
- lib/fog/hp/models/lb/node.rb
Instance Method Summary collapse
Instance Method Details
#destroy ⇒ Object
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
20 21 22 |
# File 'lib/fog/hp/models/lb/node.rb', line 20 def ready? self.status == 'ONLINE' end |
#save ⇒ Object
24 25 26 |
# File 'lib/fog/hp/models/lb/node.rb', line 24 def save identity ? update : create end |