mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-08-02 04:04:30 -07:00
Add max_connection/rate_per_endpoint to backend services (#280)
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
fd418283e1
commit
6cbcd4c21e
2 changed files with 69 additions and 12 deletions
|
@ -123,8 +123,8 @@ resources:
|
|||
description:
|
||||
- The max number of simultaneous connections for the group. Can be used
|
||||
with either CONNECTION or UTILIZATION balancing modes.
|
||||
- For CONNECTION mode, either maxConnections or maxConnectionsPerInstance
|
||||
must be set.
|
||||
- For CONNECTION mode, either maxConnections or one of maxConnectionsPerInstance
|
||||
or maxConnectionsPerEndpoint, as appropriate for group type, must be set.
|
||||
returned: success
|
||||
type: int
|
||||
maxConnectionsPerInstance:
|
||||
|
@ -136,12 +136,21 @@ resources:
|
|||
must be set.
|
||||
returned: success
|
||||
type: int
|
||||
maxConnectionsPerEndpoint:
|
||||
description:
|
||||
- The max number of simultaneous connections that a single backend network
|
||||
endpoint can handle. This is used to calculate the capacity of the group.
|
||||
Can be used in either CONNECTION or UTILIZATION balancing modes.
|
||||
- For CONNECTION mode, either maxConnections or maxConnectionsPerEndpoint
|
||||
must be set.
|
||||
returned: success
|
||||
type: int
|
||||
maxRate:
|
||||
description:
|
||||
- The max requests per second (RPS) of the group.
|
||||
- Can be used with either RATE or UTILIZATION balancing modes, but required
|
||||
if RATE mode. For RATE mode, either maxRate or maxRatePerInstance must
|
||||
be set.
|
||||
if RATE mode. For RATE mode, either maxRate or one of maxRatePerInstance
|
||||
or maxRatePerEndpoint, as appropriate for group type, must be set.
|
||||
returned: success
|
||||
type: int
|
||||
maxRatePerInstance:
|
||||
|
@ -152,6 +161,14 @@ resources:
|
|||
be set.
|
||||
returned: success
|
||||
type: str
|
||||
maxRatePerEndpoint:
|
||||
description:
|
||||
- The max requests per second (RPS) that a single backend network endpoint
|
||||
can handle. This is used to calculate the capacity of the group. Can be
|
||||
used in either balancing mode. For RATE mode, either maxRate or maxRatePerEndpoint
|
||||
must be set.
|
||||
returned: success
|
||||
type: str
|
||||
maxUtilization:
|
||||
description:
|
||||
- Used when balancingMode is UTILIZATION. This ratio defines the CPU utilization
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue