apache2_mod_proxy: adjust docs (#10172)
Some checks are pending
EOL CI / EOL Sanity (Ⓐ2.15) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py2.7) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py3.10) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py3.5) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/3/) (push) Waiting to run
nox / Run extra sanity tests (push) Waiting to run

This commit is contained in:
Alexei Znamensky 2025-05-25 11:39:03 +12:00 committed by GitHub
parent 1db255ff2d
commit 9e317089a8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,8 +41,8 @@ options:
description: description:
- (IPv4|IPv6|FQDN) of the balancer member to get or to set attributes to. Port number is autodetected and should not - (IPv4|IPv6|FQDN) of the balancer member to get or to set attributes to. Port number is autodetected and should not
be specified here. be specified here.
- If undefined, the M(community.general.apache2_mod_proxy) module will return a members list of dictionaries of all the current - If undefined, the M(community.general.apache2_mod_proxy) module returns a members list of dictionaries of all the
balancer pool members' attributes. current balancer pool members' attributes.
state: state:
type: list type: list
elements: str elements: str
@ -116,9 +116,10 @@ member:
description: Specific balancer member information dictionary, returned when the module is invoked with O(member_host) parameter. description: Specific balancer member information dictionary, returned when the module is invoked with O(member_host) parameter.
type: dict type: dict
returned: success returned: success
sample: sample: |
{"attributes": {
{"Busy": "0", "attributes": {
"Busy": "0",
"Elected": "42", "Elected": "42",
"Factor": "1", "Factor": "1",
"From": "136K", "From": "136K",
@ -148,8 +149,10 @@ members:
O(state) args. O(state) args.
returned: success returned: success
type: list type: list
sample: sample: |-
[{"attributes": { [
{
"attributes": {
"Busy": "0", "Busy": "0",
"Elected": "42", "Elected": "42",
"Factor": "1", "Factor": "1",
@ -175,7 +178,8 @@ members:
"ignore_errors": false "ignore_errors": false
} }
}, },
{"attributes": { {
"attributes": {
"Busy": "0", "Busy": "0",
"Elected": "42", "Elected": "42",
"Factor": "1", "Factor": "1",
@ -198,7 +202,8 @@ members:
"disabled": false, "disabled": false,
"drained": false, "drained": false,
"hot_standby": false, "hot_standby": false,
"ignore_errors": false} "ignore_errors": false
}
} }
] ]
""" """