mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-22 05:09:12 +00:00
[PR #11055/a9a4f890 backport][stable-12] remove required=false from docs (#11065)
remove required=false from docs (#11055)
(cherry picked from commit a9a4f89033)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
b732bd5b9e
commit
1eca76969a
158 changed files with 0 additions and 743 deletions
|
|
@ -26,7 +26,6 @@ options:
|
|||
description:
|
||||
- Define a load balancer state to create, remove, or update.
|
||||
type: str
|
||||
required: false
|
||||
default: 'present'
|
||||
choices: ["present", "absent", "update"]
|
||||
auth_token:
|
||||
|
|
@ -41,7 +40,6 @@ options:
|
|||
description:
|
||||
- Custom API URL. Overrides the E(ONEANDONE_API_URL) environment variable.
|
||||
type: str
|
||||
required: false
|
||||
name:
|
||||
description:
|
||||
- Load balancer name used with present state. Used as identifier (ID or name) when used with absent state. maxLength=128.
|
||||
|
|
@ -59,12 +57,10 @@ options:
|
|||
description:
|
||||
- URL to call for checking. Required for HTTP health check. maxLength=1000.
|
||||
type: str
|
||||
required: false
|
||||
health_check_parse:
|
||||
description:
|
||||
- Regular expression to check. Required for HTTP health check. maxLength=64.
|
||||
type: str
|
||||
required: false
|
||||
persistence:
|
||||
description:
|
||||
- Persistence.
|
||||
|
|
@ -84,7 +80,6 @@ options:
|
|||
- If not specified, it defaults to V(US).
|
||||
type: str
|
||||
choices: ["US", "ES", "DE", "GB"]
|
||||
required: false
|
||||
rules:
|
||||
description:
|
||||
- A list of rule objects that are set for the load balancer. Each rule must contain protocol, port_balancer, and port_server
|
||||
|
|
@ -96,20 +91,17 @@ options:
|
|||
description:
|
||||
- Description of the load balancer. maxLength=256.
|
||||
type: str
|
||||
required: false
|
||||
add_server_ips:
|
||||
description:
|
||||
- A list of server identifiers (id or name) to be assigned to a load balancer. Used in combination with O(state=update).
|
||||
type: list
|
||||
elements: str
|
||||
required: false
|
||||
default: []
|
||||
remove_server_ips:
|
||||
description:
|
||||
- A list of server IP IDs to be unassigned from a load balancer. Used in combination with O(state=update).
|
||||
type: list
|
||||
elements: str
|
||||
required: false
|
||||
default: []
|
||||
add_rules:
|
||||
description:
|
||||
|
|
@ -117,19 +109,16 @@ options:
|
|||
Used in combination with O(state=update).
|
||||
type: list
|
||||
elements: dict
|
||||
required: false
|
||||
default: []
|
||||
remove_rules:
|
||||
description:
|
||||
- A list of rule IDs that are removed from an existing load balancer. Used in combination with O(state=update).
|
||||
type: list
|
||||
elements: str
|
||||
required: false
|
||||
default: []
|
||||
wait:
|
||||
description:
|
||||
- Wait for the instance to be in state 'running' before returning.
|
||||
required: false
|
||||
default: true
|
||||
type: bool
|
||||
wait_timeout:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue