Interface LoadBalancer.UpdateStages.WithBackend
-
- All Known Subinterfaces:
LoadBalancer.Update
- Enclosing interface:
- LoadBalancer.UpdateStages
public static interface LoadBalancer.UpdateStages.WithBackendThe stage of the load balancer update allowing to add or remove backends.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LoadBalancerBackend.UpdateDefinitionStages.Blank<LoadBalancer.Update>defineBackend(String name)Begins the definition of a new backend as part of this load balancer update.LoadBalancerBackend.UpdateupdateBackend(String name)Begins the description of an update to an existing backend of this load balancer.LoadBalancer.UpdatewithoutBackend(String name)Removes the specified backend from the load balancer.
-
-
-
Method Detail
-
withoutBackend
LoadBalancer.Update withoutBackend(String name)
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
LoadBalancerBackend.UpdateDefinitionStages.Blank<LoadBalancer.Update> defineBackend(String name)
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
LoadBalancerBackend.Update updateBackend(String name)
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
-
-