mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Lowercase enabled, disabled option values (#27764)
This commit is contained in:
parent
c01dd6470c
commit
8d14f9d578
21 changed files with 247 additions and 209 deletions
|
@ -128,18 +128,18 @@ options:
|
|||
|
||||
stateupdate:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
Enable state updates for a specific content switching virtual server. By default, the Content
|
||||
Switching virtual server is always UP, regardless of the state of the Load Balancing virtual servers
|
||||
bound to it. This parameter interacts with the global setting as follows:
|
||||
- "Global Level | Vserver Level | Result"
|
||||
- "ENABLED ENABLED ENABLED"
|
||||
- "ENABLED DISABLED ENABLED"
|
||||
- "DISABLED ENABLED ENABLED"
|
||||
- "DISABLED DISABLED DISABLED"
|
||||
- "enabled enabled enabled"
|
||||
- "enabled disabled enabled"
|
||||
- "disabled enabled enabled"
|
||||
- "disabled disabled disabled"
|
||||
- >-
|
||||
If you want to enable state updates for only some content switching virtual servers, be sure to
|
||||
disable the state update parameter.
|
||||
|
@ -202,8 +202,8 @@ options:
|
|||
|
||||
sopersistence:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "Maintain source-IP based persistence on primary and backup virtual servers."
|
||||
|
||||
|
@ -233,15 +233,15 @@ options:
|
|||
|
||||
redirectportrewrite:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "State of port rewrite while performing HTTP redirect."
|
||||
|
||||
downstateflush:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
Flush all active transactions associated with a virtual server whose state transitions from UP to
|
||||
|
@ -259,8 +259,8 @@ options:
|
|||
|
||||
disableprimaryondown:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
Continue forwarding the traffic to backup virtual server even after the primary server comes UP from
|
||||
|
@ -326,8 +326,8 @@ options:
|
|||
|
||||
push:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
Process traffic with the push virtual server that is bound to this content switching virtual server
|
||||
|
@ -423,8 +423,8 @@ options:
|
|||
|
||||
appflowlog:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "Enable logging appflow flow information."
|
||||
|
||||
|
@ -788,8 +788,8 @@ def main():
|
|||
stateupdate=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
cacheable=dict(type='bool'),
|
||||
|
@ -816,8 +816,8 @@ def main():
|
|||
sopersistence=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
sopersistencetimeout=dict(type='float'),
|
||||
|
@ -833,22 +833,22 @@ def main():
|
|||
redirectportrewrite=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
downstateflush=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
disableprimaryondown=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
insertvserveripport=dict(
|
||||
|
@ -869,8 +869,8 @@ def main():
|
|||
push=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
pushvserver=dict(type='str'),
|
||||
|
@ -908,8 +908,8 @@ def main():
|
|||
appflowlog=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
netprofile=dict(type='str'),
|
||||
|
@ -1087,6 +1087,13 @@ def main():
|
|||
'authentication': ['bool_on_off'],
|
||||
'l2conn': ['bool_on_off'],
|
||||
'pushmulticlients': ['bool_yes_no'],
|
||||
'stateupdate': [lambda v: v.upper()],
|
||||
'sopersistence': [lambda v: v.upper()],
|
||||
'redirectportrewrite': [lambda v: v.upper()],
|
||||
'downstateflush': [lambda v: v.upper()],
|
||||
'disableprimaryondown': [lambda v: v.upper()],
|
||||
'push': [lambda v: v.upper()],
|
||||
'appflowlog': [lambda v: v.upper()],
|
||||
}
|
||||
|
||||
# Instantiate config proxy
|
||||
|
|
|
@ -174,15 +174,15 @@ options:
|
|||
|
||||
mir:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "Include multiple IP addresses in the DNS responses sent to clients."
|
||||
|
||||
disableprimaryondown:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
Continue to direct traffic to the backup chain even after the primary GSLB virtual server returns to
|
||||
|
@ -246,8 +246,8 @@ options:
|
|||
|
||||
sopersistence:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
If spillover occurs, maintain source IP address based persistence for both primary and backup GSLB
|
||||
|
@ -281,8 +281,8 @@ options:
|
|||
|
||||
appflowlog:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "Enable logging appflow flow information."
|
||||
|
||||
|
@ -323,8 +323,8 @@ options:
|
|||
|
||||
disabled:
|
||||
description:
|
||||
- When set to C(yes) the GSLB Vserver state will be set to DISABLED.
|
||||
- When set to C(no) the GSLB Vserver state will be set to ENABLED.
|
||||
- When set to C(yes) the GSLB Vserver state will be set to C(disabled).
|
||||
- When set to C(no) the GSLB Vserver state will be set to C(enabled).
|
||||
- >-
|
||||
Note that due to limitations of the underlying NITRO API a C(disabled) state change alone
|
||||
does not cause the module result to report a changed status.
|
||||
|
@ -680,15 +680,15 @@ def main():
|
|||
mir=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
disableprimaryondown=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
dynamicweight=dict(
|
||||
|
@ -720,8 +720,8 @@ def main():
|
|||
sopersistence=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
sopersistencetimeout=dict(type='float'),
|
||||
|
@ -737,8 +737,8 @@ def main():
|
|||
appflowlog=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
domainname=dict(type='str'),
|
||||
|
@ -844,6 +844,13 @@ def main():
|
|||
'servicetype',
|
||||
]
|
||||
|
||||
transforms = {
|
||||
'mir': [lambda v: v.upper()],
|
||||
'disableprimaryondown': [lambda v: v.upper()],
|
||||
'sopersistence': [lambda v: v.upper()],
|
||||
'appflowlog': [lambda v: v.upper()],
|
||||
}
|
||||
|
||||
# Instantiate config proxy
|
||||
gslb_vserver_proxy = ConfigProxy(
|
||||
actual=gslbvserver(),
|
||||
|
@ -852,6 +859,7 @@ def main():
|
|||
readwrite_attrs=readwrite_attrs,
|
||||
readonly_attrs=readonly_attrs,
|
||||
immutable_attrs=immutable_attrs,
|
||||
transforms=transforms,
|
||||
)
|
||||
|
||||
try:
|
||||
|
|
|
@ -284,8 +284,8 @@ options:
|
|||
|
||||
lrtm:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
Calculate the least response times for bound services. If this parameter is not enabled, the
|
||||
|
@ -419,12 +419,12 @@ options:
|
|||
|
||||
state:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
State of the monitor. The C(DISABLED) setting disables not only the monitor being configured, but all
|
||||
monitors of the same type, until the parameter is set to C(ENABLED). If the monitor is bound to a
|
||||
State of the monitor. The C(disabled) setting disables not only the monitor being configured, but all
|
||||
monitors of the same type, until the parameter is set to C(enabled). If the monitor is bound to a
|
||||
service, the state of the monitor is not taken into account when the state of the service is
|
||||
determined.
|
||||
|
||||
|
@ -757,8 +757,8 @@ options:
|
|||
|
||||
storedb:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
Store the database list populated with the responses to monitor probes. Used in database specific
|
||||
|
@ -997,8 +997,8 @@ def main():
|
|||
lrtm=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
deviation=dict(type='float'),
|
||||
|
@ -1114,8 +1114,8 @@ def main():
|
|||
storedb=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
storefrontcheckbackendservices=dict(type='bool'),
|
||||
|
@ -1292,6 +1292,8 @@ def main():
|
|||
'iptunnel': ['bool_yes_no'],
|
||||
'transparent': ['bool_yes_no'],
|
||||
'reverse': ['bool_yes_no'],
|
||||
'lrtm': [lambda v: v.upper()],
|
||||
'storedb': [lambda v: v.upper()],
|
||||
}
|
||||
|
||||
lbmonitor_proxy = ConfigProxy(
|
||||
|
|
|
@ -382,8 +382,8 @@ options:
|
|||
|
||||
sessionless:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
Perform load balancing on a per-packet basis, without establishing sessions. Recommended for load
|
||||
|
@ -458,8 +458,8 @@ options:
|
|||
|
||||
sopersistence:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
If spillover occurs, maintain source IP address based persistence for both primary and backup virtual
|
||||
|
@ -500,15 +500,15 @@ options:
|
|||
|
||||
redirectportrewrite:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "Rewrite the port and change the protocol to ensure successful HTTP redirects from services."
|
||||
|
||||
downstateflush:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
Flush all active transactions associated with a virtual server whose state transitions from UP to
|
||||
|
@ -516,8 +516,8 @@ options:
|
|||
|
||||
disableprimaryondown:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
If the primary virtual server goes down, do not allow it to return to primary status until manually
|
||||
|
@ -554,7 +554,7 @@ options:
|
|||
description:
|
||||
- >-
|
||||
Fully qualified domain name (FQDN) of the authentication virtual server to which the user must be
|
||||
redirected for authentication. Make sure that the Authentication parameter is set to ENABLED.
|
||||
redirected for authentication. Make sure that the Authentication parameter is set to C(yes).
|
||||
- "Minimum length = 3"
|
||||
- "Maximum length = 252"
|
||||
|
||||
|
@ -576,8 +576,8 @@ options:
|
|||
|
||||
push:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "Process traffic with the push virtual server that is bound to this load balancing virtual server."
|
||||
|
||||
|
@ -675,8 +675,8 @@ options:
|
|||
|
||||
appflowlog:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "Apply AppFlow logging to the virtual server."
|
||||
|
||||
|
@ -802,22 +802,22 @@ options:
|
|||
|
||||
macmoderetainvlan:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "This option is used to retain vlan information of incoming packet when macmode is enabled."
|
||||
|
||||
dbslb:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "Enable database specific load balancing for MySQL and MSSQL service types."
|
||||
|
||||
dns64:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "This argument is for enabling/disabling the C(dns64) on lbvserver."
|
||||
|
||||
|
@ -838,8 +838,8 @@ options:
|
|||
|
||||
processlocal:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
By turning on this option packets destined to a vserver in a cluster will not under go any steering.
|
||||
|
@ -1421,8 +1421,8 @@ def main():
|
|||
sessionless=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
connfailover=dict(
|
||||
|
@ -1449,8 +1449,8 @@ def main():
|
|||
sopersistence=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
sopersistencetimeout=dict(type='float'),
|
||||
|
@ -1467,22 +1467,22 @@ def main():
|
|||
redirectportrewrite=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
downstateflush=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
disableprimaryondown=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
insertvserveripport=dict(
|
||||
|
@ -1501,8 +1501,8 @@ def main():
|
|||
push=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
pushvserver=dict(type='str'),
|
||||
|
@ -1540,8 +1540,8 @@ def main():
|
|||
appflowlog=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
netprofile=dict(type='str'),
|
||||
|
@ -1582,22 +1582,22 @@ def main():
|
|||
macmoderetainvlan=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
dbslb=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
dns64=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
bypassaaaa=dict(type='bool'),
|
||||
|
@ -1605,8 +1605,8 @@ def main():
|
|||
processlocal=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
dnsprofilename=dict(type='str'),
|
||||
|
@ -1805,6 +1805,17 @@ def main():
|
|||
'l2conn': ['bool_on_off'],
|
||||
'pushmulticlients': ['bool_yes_no'],
|
||||
'recursionavailable': ['bool_yes_no'],
|
||||
'sessionless': [lambda v: v.upper()],
|
||||
'sopersistence': [lambda v: v.upper()],
|
||||
'redirectportrewrite': [lambda v: v.upper()],
|
||||
'downstateflush': [lambda v: v.upper()],
|
||||
'disableprimaryondown': [lambda v: v.upper()],
|
||||
'push': [lambda v: v.upper()],
|
||||
'appflowlog': [lambda v: v.upper()],
|
||||
'macmoderetainvlan': [lambda v: v.upper()],
|
||||
'dbslb': [lambda v: v.upper()],
|
||||
'dns64': [lambda v: v.upper()],
|
||||
'processlocal': [lambda v: v.upper()],
|
||||
}
|
||||
|
||||
lbvserver_proxy = ConfigProxy(
|
||||
|
|
|
@ -89,8 +89,8 @@ options:
|
|||
|
||||
disabled:
|
||||
description:
|
||||
- When set to C(true) the server state will be set to DISABLED.
|
||||
- When set to C(false) the server state will be set to ENABLED.
|
||||
- When set to C(true) the server state will be set to C(disabled).
|
||||
- When set to C(false) the server state will be set to C(enabled).
|
||||
- >-
|
||||
Note that due to limitations of the underlying NITRO API a C(disabled) state change alone
|
||||
does not cause the module result to report a changed status.
|
||||
|
|
|
@ -136,8 +136,8 @@ options:
|
|||
|
||||
cip:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
Before forwarding a request to the service, insert an HTTP header with the client's IPv4 or IPv6
|
||||
|
@ -247,13 +247,12 @@ options:
|
|||
|
||||
downstateflush:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
Flush all active transactions associated with a service whose state transitions from UP to DOWN. Do
|
||||
not enable this option for applications that must complete their transactions.
|
||||
default: ENABLED
|
||||
|
||||
tcpprofilename:
|
||||
description:
|
||||
|
@ -280,11 +279,10 @@ options:
|
|||
|
||||
appflowlog:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "Enable logging of AppFlow information."
|
||||
default: ENABLED
|
||||
|
||||
netprofile:
|
||||
description:
|
||||
|
@ -303,14 +301,13 @@ options:
|
|||
|
||||
processlocal:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
By turning on this option packets destined to a service in a cluster will not under go any steering.
|
||||
Turn this option for single packet request response mode or when the upstream device is performing a
|
||||
proper RSS for connection based distribution.
|
||||
default: DISABLED
|
||||
|
||||
dnsprofilename:
|
||||
description:
|
||||
|
@ -345,8 +342,8 @@ options:
|
|||
- Weight to assign to the binding between the monitor and service.
|
||||
dup_state:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- State of the monitor.
|
||||
- The state setting for a monitor of a given type affects all monitors of that type.
|
||||
|
@ -629,8 +626,8 @@ def main():
|
|||
cip=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
cipheader=dict(type='str'),
|
||||
|
@ -659,10 +656,9 @@ def main():
|
|||
downstateflush=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
],
|
||||
default='ENABLED',
|
||||
),
|
||||
tcpprofilename=dict(type='str'),
|
||||
httpprofilename=dict(type='str'),
|
||||
|
@ -671,19 +667,17 @@ def main():
|
|||
appflowlog=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
],
|
||||
default='ENABLED',
|
||||
),
|
||||
netprofile=dict(type='str'),
|
||||
processlocal=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
],
|
||||
default='DISABLED',
|
||||
),
|
||||
dnsprofilename=dict(type='str'),
|
||||
ipaddress=dict(type='str'),
|
||||
|
@ -844,6 +838,10 @@ def main():
|
|||
'rtspsessionidremap': ['bool_on_off'],
|
||||
'accessdown': ['bool_yes_no'],
|
||||
'cmp': ['bool_yes_no'],
|
||||
'cip': [lambda v: v.upper()],
|
||||
'downstateflush': [lambda v: v.upper()],
|
||||
'appflowlog': [lambda v: v.upper()],
|
||||
'processlocal': [lambda v: v.upper()],
|
||||
}
|
||||
|
||||
monitor_bindings_rw_attrs = [
|
||||
|
|
|
@ -105,8 +105,8 @@ options:
|
|||
|
||||
cip:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "Insert the Client IP header in requests forwarded to the service."
|
||||
|
||||
|
@ -204,8 +204,8 @@ options:
|
|||
|
||||
downstateflush:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- >-
|
||||
Flush all active transactions associated with all the services in the service group whose state
|
||||
|
@ -230,8 +230,8 @@ options:
|
|||
|
||||
appflowlog:
|
||||
choices:
|
||||
- 'ENABLED'
|
||||
- 'DISABLED'
|
||||
- 'enabled'
|
||||
- 'disabled'
|
||||
description:
|
||||
- "Enable logging of AppFlow information for the specified service group."
|
||||
|
||||
|
@ -698,8 +698,8 @@ def main():
|
|||
cip=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
cipheader=dict(type='str'),
|
||||
|
@ -720,8 +720,8 @@ def main():
|
|||
downstateflush=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
tcpprofilename=dict(type='str'),
|
||||
|
@ -730,8 +730,8 @@ def main():
|
|||
appflowlog=dict(
|
||||
type='str',
|
||||
choices=[
|
||||
'ENABLED',
|
||||
'DISABLED',
|
||||
'enabled',
|
||||
'disabled',
|
||||
]
|
||||
),
|
||||
netprofile=dict(type='str'),
|
||||
|
@ -881,6 +881,9 @@ def main():
|
|||
'rtspsessionidremap': ['bool_on_off'],
|
||||
'graceful': ['bool_yes_no'],
|
||||
'cmp': ['bool_yes_no'],
|
||||
'cip': [lambda v: v.upper()],
|
||||
'downstateflush': [lambda v: v.upper()],
|
||||
'appflowlog': [lambda v: v.upper()],
|
||||
}
|
||||
|
||||
# Instantiate config proxy
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue