mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
48 lines
1,002 B
Ruby
48 lines
1,002 B
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module HP
|
|
class LB
|
|
class Node < Fog::Model
|
|
|
|
identity :id
|
|
attribute :address
|
|
attribute :port
|
|
attribute :condition
|
|
attribute :status
|
|
attribute :load_balancer_id
|
|
|
|
def destroy
|
|
requires :id
|
|
requires :load_balancer_id
|
|
service.delete_load_balancer_node(load_balancer_id, id)
|
|
true
|
|
end
|
|
|
|
def ready?
|
|
self.status == 'ACTIVE'
|
|
end
|
|
|
|
def save
|
|
identity ? update : create
|
|
end
|
|
|
|
private
|
|
|
|
def create
|
|
requires :load_balancer_id
|
|
merge_attributes(service.create_load_balancer_node(load_balancer_id, {'nodes' => [attributes]}).body)
|
|
true
|
|
end
|
|
|
|
def update
|
|
requires :id
|
|
requires :load_balancer_id
|
|
service.update_load_balancer_node(load_balancer_id, id, attributes[:condition])
|
|
true
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|