Class: Fog::OpenStack::Network::LbHealthMonitor
- Inherits:
-
Model
- Object
- Model
- Model
- Fog::OpenStack::Network::LbHealthMonitor
show all
- Defined in:
- lib/fog/openstack/network/models/lb_health_monitor.rb
Instance Attribute Summary
Attributes inherited from Model
#project
Instance Method Summary
collapse
Methods inherited from Model
#initialize, #save
Instance Method Details
#associate_to_pool(pool_id) ⇒ Object
43
44
45
46
47
|
# File 'lib/fog/openstack/network/models/lb_health_monitor.rb', line 43
def associate_to_pool(pool_id)
requires :id
service.associate_lb_health_monitor(pool_id, id)
true
end
|
#create ⇒ Object
20
21
22
23
24
25
26
27
28
|
# File 'lib/fog/openstack/network/models/lb_health_monitor.rb', line 20
def create
requires :type, :delay, :timeout, :max_retries
merge_attributes(service.create_lb_health_monitor(type,
delay,
timeout,
max_retries,
attributes).body['health_monitor'])
self
end
|
#destroy ⇒ Object
37
38
39
40
41
|
# File 'lib/fog/openstack/network/models/lb_health_monitor.rb', line 37
def destroy
requires :id
service.delete_lb_health_monitor(id)
true
end
|
#disassociate_from_pool(pool_id) ⇒ Object
49
50
51
52
53
|
# File 'lib/fog/openstack/network/models/lb_health_monitor.rb', line 49
def disassociate_from_pool(pool_id)
requires :id
service.disassociate_lb_health_monitor(pool_id, id)
true
end
|
#update ⇒ Object
30
31
32
33
34
35
|
# File 'lib/fog/openstack/network/models/lb_health_monitor.rb', line 30
def update
requires :id, :type, :delay, :timeout, :max_retries
merge_attributes(service.update_lb_health_monitor(id,
attributes).body['health_monitor'])
self
end
|