Class: Fog::Network::OpenStack::LbHealthMonitor

Inherits:
OpenStack::Model show all
Defined in:
lib/fog/openstack/models/network/lb_health_monitor.rb

Instance Attribute Summary

Attributes inherited from OpenStack::Model

#project

Instance Method Summary collapse

Methods inherited from OpenStack::Model

#initialize, #save

Constructor Details

This class inherits a constructor from Fog::OpenStack::Model

Instance Method Details

#associate_to_pool(pool_id) ⇒ Object



43
44
45
46
47
# File 'lib/fog/openstack/models/network/lb_health_monitor.rb', line 43

def associate_to_pool(pool_id)
  requires :id
  service.associate_lb_health_monitor(pool_id, self.id)
  true
end

#createObject



20
21
22
23
24
25
26
27
28
# File 'lib/fog/openstack/models/network/lb_health_monitor.rb', line 20

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

#destroyObject



37
38
39
40
41
# File 'lib/fog/openstack/models/network/lb_health_monitor.rb', line 37

def destroy
  requires :id
  service.delete_lb_health_monitor(self.id)
  true
end

#disassociate_from_pool(pool_id) ⇒ Object



49
50
51
52
53
# File 'lib/fog/openstack/models/network/lb_health_monitor.rb', line 49

def disassociate_from_pool(pool_id)
  requires :id
  service.disassociate_lb_health_monitor(pool_id, self.id)
  true
end

#updateObject



30
31
32
33
34
35
# File 'lib/fog/openstack/models/network/lb_health_monitor.rb', line 30

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