Package com.ibm.cloud.is.vpc.v1.model
Interface LoadBalancerPoolFailsafePolicyPatch.Action
-
- Enclosing class:
- LoadBalancerPoolFailsafePolicyPatch
public static interface LoadBalancerPoolFailsafePolicyPatch.Action
A load balancer failsafe policy action: - `bypass`: Bypasses the members and sends requests directly to their destination IPs. If specified, this load balancer must have `route_mode` enabled. - `drop`: Drops requests. If specified, the pool protocol must be `tcp`. - `fail`: Fails requests with an HTTP `503` status code. If specified, the pool protocol must be `http` or `https`. - `forward`: Forwards requests to the `target` pool. If specified, the pool protocol must be `http` or `https`. The specified value must be listed in the `failsafe_policy_actions` for this pool's load balancer.
-
-
Field Detail
-
BYPASS
static final String BYPASS
bypass.- See Also:
- Constant Field Values
-
DROP
static final String DROP
drop.- See Also:
- Constant Field Values
-
FAIL
static final String FAIL
fail.- See Also:
- Constant Field Values
-
FORWARD
static final String FORWARD
forward.- See Also:
- Constant Field Values
-
-