mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-09 04:10:27 -07:00
Add path_rules to RegionUrlMap (#109)
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
8928425c5c
commit
29001a3c6a
2 changed files with 5 additions and 5 deletions
|
@ -514,7 +514,7 @@ options:
|
||||||
type: str
|
type: str
|
||||||
retry_conditions:
|
retry_conditions:
|
||||||
description:
|
description:
|
||||||
- 'Specfies one or more conditions when this retry rule applies.
|
- 'Specifies one or more conditions when this retry rule applies.
|
||||||
Valid values are: - 5xx: Loadbalancer will attempt a retry if
|
Valid values are: - 5xx: Loadbalancer will attempt a retry if
|
||||||
the backend service responds with any 5xx response code, or
|
the backend service responds with any 5xx response code, or
|
||||||
if the backend service does not respond at all, example: disconnects,
|
if the backend service does not respond at all, example: disconnects,
|
||||||
|
@ -691,7 +691,7 @@ options:
|
||||||
subsequent requests will be sent to the same backendService
|
subsequent requests will be sent to the same backendService
|
||||||
as determined by the BackendService's session affinity policy.
|
as determined by the BackendService's session affinity policy.
|
||||||
- The value must be between 0 and 1000 .
|
- The value must be between 0 and 1000 .
|
||||||
required: false
|
required: true
|
||||||
type: int
|
type: int
|
||||||
url_redirect:
|
url_redirect:
|
||||||
description:
|
description:
|
||||||
|
@ -2090,7 +2090,7 @@ pathMatchers:
|
||||||
type: str
|
type: str
|
||||||
retryConditions:
|
retryConditions:
|
||||||
description:
|
description:
|
||||||
- 'Specfies one or more conditions when this retry rule applies.
|
- 'Specifies one or more conditions when this retry rule applies.
|
||||||
Valid values are: - 5xx: Loadbalancer will attempt a retry if
|
Valid values are: - 5xx: Loadbalancer will attempt a retry if
|
||||||
the backend service responds with any 5xx response code, or if
|
the backend service responds with any 5xx response code, or if
|
||||||
the backend service does not respond at all, example: disconnects,
|
the backend service does not respond at all, example: disconnects,
|
||||||
|
@ -3244,7 +3244,7 @@ def main():
|
||||||
response_headers_to_remove=dict(type='list', elements='str'),
|
response_headers_to_remove=dict(type='list', elements='str'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
weight=dict(type='int'),
|
weight=dict(required=True, type='int'),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -572,7 +572,7 @@ resources:
|
||||||
type: str
|
type: str
|
||||||
retryConditions:
|
retryConditions:
|
||||||
description:
|
description:
|
||||||
- 'Specfies one or more conditions when this retry rule applies.
|
- 'Specifies one or more conditions when this retry rule applies.
|
||||||
Valid values are: - 5xx: Loadbalancer will attempt a retry
|
Valid values are: - 5xx: Loadbalancer will attempt a retry
|
||||||
if the backend service responds with any 5xx response code,
|
if the backend service responds with any 5xx response code,
|
||||||
or if the backend service does not respond at all, example:
|
or if the backend service does not respond at all, example:
|
||||||
|
|
Loading…
Add table
Reference in a new issue