class Fog::Network::OpenStack::LbHealthMonitor
Public Class Methods
new(attributes)
click to toggle source
Calls superclass method
Fog::Model::new
# File lib/fog/openstack/models/network/lb_health_monitor.rb, line 20 def initialize(attributes) prepare_service_value(attributes) super end
Public Instance Methods
associate_to_pool(pool_id)
click to toggle source
# File lib/fog/openstack/models/network/lb_health_monitor.rb, line 53 def associate_to_pool(pool_id) requires :id service.associate_lb_health_monitor(pool_id, self.id) true end
create()
click to toggle source
# File lib/fog/openstack/models/network/lb_health_monitor.rb, line 30 def create requires :type, :delay, :timeout, :max_retries merge_attributes(service.create_lb_health_monitor(self.type, self.delay, self.timeout, self.max_retries, self.attributes).body['health_monitor']) self end
destroy()
click to toggle source
# File lib/fog/openstack/models/network/lb_health_monitor.rb, line 47 def destroy requires :id service.delete_lb_health_monitor(self.id) true end
disassociate_from_pool(pool_id)
click to toggle source
# File lib/fog/openstack/models/network/lb_health_monitor.rb, line 59 def disassociate_from_pool(pool_id) requires :id service.disassociate_lb_health_monitor(pool_id, self.id) true end
save()
click to toggle source
# File lib/fog/openstack/models/network/lb_health_monitor.rb, line 25 def save requires :type, :delay, :timeout, :max_retries identity ? update : create end
update()
click to toggle source
# File lib/fog/openstack/models/network/lb_health_monitor.rb, line 40 def update requires :id, :type, :delay, :timeout, :max_retries merge_attributes(service.update_lb_health_monitor(self.id, self.attributes).body['health_monitor']) self end