mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-02 19:32:47 +00:00
Various small fixes (#27766)
This commit is contained in:
committed by
Brian Coca
parent
b52aeeabfa
commit
b339f23485
@@ -204,8 +204,6 @@ def main():
|
||||
transforms = {
|
||||
}
|
||||
|
||||
json_encodes = ['targetvserverexpr']
|
||||
|
||||
# Instantiate config proxy
|
||||
csaction_proxy = ConfigProxy(
|
||||
actual=csaction(),
|
||||
@@ -215,7 +213,6 @@ def main():
|
||||
readonly_attrs=readonly_attrs,
|
||||
immutable_attrs=immutable_attrs,
|
||||
transforms=transforms,
|
||||
json_encodes=json_encodes,
|
||||
)
|
||||
|
||||
try:
|
||||
|
||||
@@ -180,11 +180,6 @@ options:
|
||||
setting, the client-side connection port is used as the source port for the server-side connection.
|
||||
- "Note: This parameter is available only when the Use Source IP (USIP) parameter is set to YES."
|
||||
|
||||
sc:
|
||||
description:
|
||||
- "State of SureConnect for the service."
|
||||
default: off
|
||||
|
||||
sp:
|
||||
description:
|
||||
- "Enable surge protection for the service."
|
||||
@@ -621,10 +616,6 @@ def main():
|
||||
cipheader=dict(type='str'),
|
||||
usip=dict(type='bool'),
|
||||
useproxyport=dict(type='bool'),
|
||||
sc=dict(
|
||||
type='bool',
|
||||
default=False,
|
||||
),
|
||||
sp=dict(type='bool'),
|
||||
rtspsessionidremap=dict(
|
||||
type='bool',
|
||||
@@ -742,7 +733,6 @@ def main():
|
||||
'cipheader',
|
||||
'usip',
|
||||
'useproxyport',
|
||||
'sc',
|
||||
'sp',
|
||||
'rtspsessionidremap',
|
||||
'clttimeout',
|
||||
@@ -828,7 +818,6 @@ def main():
|
||||
'healthmonitor': ['bool_yes_no'],
|
||||
'useproxyport': ['bool_yes_no'],
|
||||
'rtspsessionidremap': ['bool_on_off'],
|
||||
'sc': ['bool_on_off'],
|
||||
'accessdown': ['bool_yes_no'],
|
||||
'cmp': ['bool_yes_no'],
|
||||
}
|
||||
|
||||
@@ -151,11 +151,6 @@ options:
|
||||
the service as UP at all times.
|
||||
type: bool
|
||||
|
||||
sc:
|
||||
description:
|
||||
- "State of the SureConnect feature for the service group."
|
||||
type: bool
|
||||
|
||||
sp:
|
||||
description:
|
||||
- "Enable surge protection for the service group."
|
||||
@@ -693,7 +688,6 @@ def main():
|
||||
pathmonitorindv=dict(type='bool'),
|
||||
useproxyport=dict(type='bool'),
|
||||
healthmonitor=dict(type='bool'),
|
||||
sc=dict(type='bool'),
|
||||
sp=dict(type='bool'),
|
||||
rtspsessionidremap=dict(type='bool'),
|
||||
clttimeout=dict(type='float'),
|
||||
@@ -789,7 +783,6 @@ def main():
|
||||
'pathmonitorindv',
|
||||
'useproxyport',
|
||||
'healthmonitor',
|
||||
'sc',
|
||||
'sp',
|
||||
'rtspsessionidremap',
|
||||
'clttimeout',
|
||||
@@ -862,7 +855,6 @@ def main():
|
||||
'healthmonitor': ['bool_yes_no'],
|
||||
'useproxyport': ['bool_yes_no'],
|
||||
'rtspsessionidremap': ['bool_on_off'],
|
||||
'sc': ['bool_on_off'],
|
||||
'graceful': ['bool_yes_no'],
|
||||
'cmp': ['bool_yes_no'],
|
||||
}
|
||||
@@ -926,7 +918,11 @@ def main():
|
||||
if not servicegroup_exists(client, module):
|
||||
module.fail_json(msg='Service group is not present', **module_result)
|
||||
if not servicegroup_identical(client, module, servicegroup_proxy):
|
||||
module.fail_json(msg='Service group is not identical to configuration', **module_result)
|
||||
module.fail_json(
|
||||
msg='Service group is not identical to configuration',
|
||||
diff=diff(client, module, servicegroup_proxy),
|
||||
**module_result
|
||||
)
|
||||
if not servicemembers_identical(client, module):
|
||||
module.fail_json(msg='Service group members differ from configuration', **module_result)
|
||||
if not monitor_bindings_identical(client, module):
|
||||
|
||||
@@ -796,6 +796,7 @@ class TestNetscalerLBVServerModule(TestModule):
|
||||
ConfigProxy=Mock(return_value=lb_vserver_proxy_mock),
|
||||
ensure_feature_is_enabled=Mock(return_value=True),
|
||||
lb_vserver_exists=Mock(side_effect=[True, True]),
|
||||
nitro_exception=self.MockException,
|
||||
do_state_change=do_state_change_mock,
|
||||
):
|
||||
self.module = netscaler_lb_vserver
|
||||
|
||||
Reference in New Issue
Block a user