mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
38 lines
769 B
Ruby
38 lines
769 B
Ruby
require 'fog/core/model'
|
|
|
|
module Fog
|
|
module Compute
|
|
class StormOnDemand
|
|
|
|
class Balancer < Fog::Model
|
|
|
|
identity :uniq_id
|
|
|
|
attribute :vip
|
|
attribute :price
|
|
attribute :name
|
|
attribute :session_persistence
|
|
attribute :ssl_termination
|
|
attribute :strategy
|
|
attribute :nodes
|
|
attribute :services
|
|
|
|
def initialize(attributes={})
|
|
super
|
|
end
|
|
|
|
def add_node(options)
|
|
requires :identity
|
|
service.add_balancer_node({:uniq_id => identity}.merge!(options))
|
|
end
|
|
|
|
def remove_node(options)
|
|
requires :identity
|
|
service.remove_balancer_node({:uniq_id => identity}.merge!(options))
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|