1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
require 'fog/openstack/models/model'
module Fog
module OpenStack
class Network
class LbPool < Fog::OpenStack::Model
identity :id
attribute :subnet_id
attribute :protocol
attribute :lb_method
attribute :name
attribute :description
attribute :health_monitors
attribute :members
attribute :status
attribute :admin_state_up
attribute :vip_id
attribute :tenant_id
attribute :active_connections
attribute :bytes_in
attribute :bytes_out
attribute :total_connections
def create
requires :subnet_id, :protocol, :lb_method
merge_attributes(service.create_lb_pool(subnet_id,
protocol,
lb_method,
attributes).body['pool'])
self
end
def update
requires :id, :subnet_id, :protocol, :lb_method
merge_attributes(service.update_lb_pool(id,
attributes).body['pool'])
self
end
def destroy
requires :id
service.delete_lb_pool(id)
true
end
def stats
requires :id
merge_attributes(service.get_lb_pool_stats(id).body['stats'])
self
end
def associate_health_monitor(health_monitor_id)
requires :id
service.associate_lb_health_monitor(id, health_monitor_id)
true
end
def disassociate_health_monitor(health_monitor_id)
requires :id
service.disassociate_lb_health_monitor(id, health_monitor_id)
true
end
end
end
end
end
|