adds receive_disable and time_until_up and some bugfixes

pull/4621/head
Serge van Ginderachter 11 years ago
parent d9bb38f7c7
commit 0c2e376d5e

@ -41,71 +41,58 @@ options:
- BIG-IP host - BIG-IP host
required: true required: true
default: null default: null
choices: []
aliases: []
user: user:
description: description:
- BIG-IP username - BIG-IP username
required: true required: true
default: null default: null
choices: []
aliases: []
password: password:
description: description:
- BIG-IP password - BIG-IP password
required: true required: true
default: null default: null
choices: []
aliases: []
state: state:
description: description:
- Monitor state - Monitor state
required: false required: false
default: 'present' default: 'present'
choices: ['present', 'absent'] choices: ['present', 'absent']
aliases: []
name: name:
description: description:
- Monitor name - Monitor name
required: true required: true
default: null default: null
choices: []
aliases: ['monitor'] aliases: ['monitor']
partition: partition:
description: description:
- Partition for the monitor - Partition for the monitor
required: false required: false
default: 'Common' default: 'Common'
choices: []
aliases: []
parent: parent:
description: description:
- The parent template of this monitor template - The parent template of this monitor template
required: false required: false
default: 'http' default: 'http'
choices: []
aliases: []
parent_partition: parent_partition:
description: description:
- Partition for the parent monitor - Partition for the parent monitor
required: false required: false
default: 'Common' default: 'Common'
choices: []
aliases: []
send: send:
description: description:
- The send string for the monitor call - The send string for the monitor call
required: true required: true
default: null default: ''
choices: []
aliases: []
receive: receive:
description: description:
- The receive string for the monitor call - The receive string for the monitor call
required: true required: true
default: null default: ''
choices: [] receive_disable:
aliases: [] description:
- The receive disable string for the monitor call
required: true
default: ''
ip: ip:
description: description:
- IP address part of the ipport definition - IP address part of the ipport definition
@ -131,8 +118,16 @@ options:
the set time period, it is considered down. You can change this the set time period, it is considered down. You can change this
number to any number you want, however, it should be 3 times the number to any number you want, however, it should be 3 times the
interval number of seconds plus 1 second. interval number of seconds plus 1 second.
required: true required: false
default: 16 default: 16
time_until_up:
description:
- Specifies the amount of time in seconds after the first successful
response before a node will be marked up. A value of 0 will cause a
node to be marked up immediately after a valid response is received
from the node. The default setting is 0.
required: false
default: 0
''' '''
EXAMPLES = ''' EXAMPLES = '''
@ -258,12 +253,14 @@ def main():
name = dict(required=True), name = dict(required=True),
parent = dict(default=DEFAULT_PARENT_TYPE), parent = dict(default=DEFAULT_PARENT_TYPE),
parent_partition = dict(default='Common'), parent_partition = dict(default='Common'),
send = dict(required=True), send = dict(required=True, default=''),
receive = dict(required=True), receive = dict(required=True, default=''),
receive_disable = dict(required=True, default=''),
ip = dict(required=False, default='0.0.0.0'), ip = dict(required=False, default='0.0.0.0'),
port = dict(required=False, type='int', default=0), port = dict(required=False, type='int', default=0),
interval = dict(required=False, type='int', default=5), interval = dict(required=False, type='int', default=5),
timeout = dict(required=False, type='int', default=16) timeout = dict(required=False, type='int', default=16)
time_until_up = dict(required=False, type='int', default=0)
), ),
supports_check_mode=True supports_check_mode=True
) )
@ -282,10 +279,12 @@ def main():
monitor = "/%s/%s" % (partition, name) monitor = "/%s/%s" % (partition, name)
send = module.params['send'] send = module.params['send']
receive = module.params['receive'] receive = module.params['receive']
receive_disable = module.params['receive_disable']
ip = module.params['ip'] ip = module.params['ip']
port = module.params['port'] port = module.params['port']
interval = module.params['interval'] interval = module.params['interval']
timeout = module.params['timeout'] timeout = module.params['timeout']
time_until_up = module.params['time_until_up']
if ip == '0.0.0.0' and port == 0: if ip == '0.0.0.0' and port == 0:
@ -307,7 +306,8 @@ def main():
if state == 'absent': if state == 'absent':
if monitor_exists: if monitor_exists:
delete_monitor(api, monitor) if not module.check_mode:
delete_monitor(api, monitor)
result['changed'] = True result['changed'] = True
else: else:
@ -325,11 +325,15 @@ def main():
template_string_properties = [{'type': 'STYPE_SEND', template_string_properties = [{'type': 'STYPE_SEND',
'value': send}, 'value': send},
{'type': 'STYPE_RECEIVE', {'type': 'STYPE_RECEIVE',
'value': receive}] 'value': receive}
{'type': 'STYPE_RECEIVE_DRAIN',
'value': receive_disable}]
template_integer_properties = [{'type': 'ITYPE_INTERVAL', template_integer_properties = [{'type': 'ITYPE_INTERVAL',
'value': interval}, 'value': interval},
{'type': 'ITYPE_TIMEOUT', {'type': 'ITYPE_TIMEOUT',
'value': timeout}] 'value': timeout},
{'type': 'ITYPE_TIME_UNTIL_UP',
'value': interval}]
if monitor_exists(module, api, monitor, parent): if monitor_exists(module, api, monitor, parent):
for str_property in template_string_properties: for str_property in template_string_properties:
if not check_string_property(api, monitor, str_property): if not check_string_property(api, monitor, str_property):

Loading…
Cancel
Save