Interface LoadBalancer.UpdateStages.WithBackend
- All Known Subinterfaces:
LoadBalancer.Update
- Enclosing interface:
- LoadBalancer.UpdateStages
public static interface LoadBalancer.UpdateStages.WithBackend
The stage of the load balancer update allowing to add or remove backends.
-
Method Summary
Modifier and TypeMethodDescriptiondefineBackend(String name) Begins the definition of a new backend as part of this load balancer update.updateBackend(String name) Begins the description of an update to an existing backend of this load balancer.withoutBackend(String name) Removes the specified backend from the load balancer.
-
Method Details
-
withoutBackend
Removes the specified backend from the load balancer.- Parameters:
name- the name of the backend to remove- Returns:
- the next stage of the update
-
defineBackend
Begins the definition of a new backend as part of this load balancer update.- Parameters:
name- the name for the new backend- Returns:
- the first stage of the backend definition
-
updateBackend
Begins the description of an update to an existing backend of this load balancer.- Parameters:
name- the name of the backend to update- Returns:
- the first stage of the update
-