Interface LoadBalancer.UpdateStages.WithLoadBalancingRule
-
- All Known Subinterfaces:
LoadBalancer.Update
- Enclosing interface:
- LoadBalancer.UpdateStages
public static interface LoadBalancer.UpdateStages.WithLoadBalancingRuleThe stage of the load balancer update allowing to add, remove or modify load balancing rules.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LoadBalancingRule.UpdateDefinitionStages.Blank<LoadBalancer.Update>defineLoadBalancingRule(String name)Begins the definition of a new load balancing rule to add to the load balancer.LoadBalancingRule.UpdateupdateLoadBalancingRule(String name)Begins the description of an update to an existing load balancing rule on this load balancer.LoadBalancer.UpdatewithoutLoadBalancingRule(String name)Removes the specified load balancing rule from the load balancer, if present.
-
-
-
Method Detail
-
defineLoadBalancingRule
LoadBalancingRule.UpdateDefinitionStages.Blank<LoadBalancer.Update> defineLoadBalancingRule(String name)
Begins the definition of a new load balancing rule to add to the load balancer.- Parameters:
name- the name of the load balancing rule- Returns:
- the first stage of the new load balancing rule definition
-
withoutLoadBalancingRule
LoadBalancer.Update withoutLoadBalancingRule(String name)
Removes the specified load balancing rule from the load balancer, if present.- Parameters:
name- the name of the load balancing rule to remove- Returns:
- the next stage of the update
-
updateLoadBalancingRule
LoadBalancingRule.Update updateLoadBalancingRule(String name)
Begins the description of an update to an existing load balancing rule on this load balancer.- Parameters:
name- the name of the load balancing rule to update- Returns:
- the first stage of the load balancing rule update
-
-