mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-03 23:14:02 -07:00
[PR #10513/3b551f92 backport][stable-11] arg_spec adjustments: modules [t-z]* (#10535)
Some checks are pending
EOL CI / EOL Sanity (Ⓐ2.16) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py2.7) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py3.11) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py3.6) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/3/) (push) Waiting to run
nox / Run extra sanity tests (push) Waiting to run
Some checks are pending
EOL CI / EOL Sanity (Ⓐ2.16) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py2.7) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py3.11) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.16+py3.6) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+alpine3+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+fedora38+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.16+opensuse15+py:azp/posix/3/) (push) Waiting to run
nox / Run extra sanity tests (push) Waiting to run
arg_spec adjustments: modules [t-z]* (#10513)
* arg_spec adjustments: modules [t-z]*
* add changelog frag
(cherry picked from commit 3b551f92fc
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
57c523af55
commit
ccc2fcefdd
18 changed files with 161 additions and 143 deletions
|
@ -251,26 +251,26 @@ def main():
|
|||
module = UTMModule(
|
||||
argument_spec=dict(
|
||||
name=dict(type='str', required=True),
|
||||
add_content_type_header=dict(type='bool', required=False, default=False),
|
||||
address=dict(type='str', required=False, default="REF_DefaultInternalAddress"),
|
||||
allowed_networks=dict(type='list', elements='str', required=False, default=["REF_NetworkAny"]),
|
||||
certificate=dict(type='str', required=False, default=""),
|
||||
comment=dict(type='str', required=False, default=""),
|
||||
disable_compression=dict(type='bool', required=False, default=False),
|
||||
domain=dict(type='list', elements='str', required=False),
|
||||
exceptions=dict(type='list', elements='str', required=False, default=[]),
|
||||
htmlrewrite=dict(type='bool', required=False, default=False),
|
||||
htmlrewrite_cookies=dict(type='bool', required=False, default=False),
|
||||
implicitredirect=dict(type='bool', required=False, default=False),
|
||||
lbmethod=dict(type='str', required=False, default="bybusyness",
|
||||
add_content_type_header=dict(type='bool', default=False),
|
||||
address=dict(type='str', default="REF_DefaultInternalAddress"),
|
||||
allowed_networks=dict(type='list', elements='str', default=["REF_NetworkAny"]),
|
||||
certificate=dict(type='str', default=""),
|
||||
comment=dict(type='str', default=""),
|
||||
disable_compression=dict(type='bool', default=False),
|
||||
domain=dict(type='list', elements='str'),
|
||||
exceptions=dict(type='list', elements='str', default=[]),
|
||||
htmlrewrite=dict(type='bool', default=False),
|
||||
htmlrewrite_cookies=dict(type='bool', default=False),
|
||||
implicitredirect=dict(type='bool', default=False),
|
||||
lbmethod=dict(type='str', default="bybusyness",
|
||||
choices=['bybusyness', 'bytraffic', 'byrequests', '']),
|
||||
locations=dict(type='list', elements='str', required=False, default=[]),
|
||||
port=dict(type='int', required=False, default=80),
|
||||
preservehost=dict(type='bool', required=False, default=False),
|
||||
profile=dict(type='str', required=False, default=""),
|
||||
status=dict(type='bool', required=False, default=True),
|
||||
type=dict(type='str', required=False, default="http", choices=['http', 'https']),
|
||||
xheaders=dict(type='bool', required=False, default=False),
|
||||
locations=dict(type='list', elements='str', default=[]),
|
||||
port=dict(type='int', default=80),
|
||||
preservehost=dict(type='bool', default=False),
|
||||
profile=dict(type='str', default=""),
|
||||
status=dict(type='bool', default=True),
|
||||
type=dict(type='str', default="http", choices=['http', 'https']),
|
||||
xheaders=dict(type='bool', default=False),
|
||||
)
|
||||
)
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue