Interface LoadBalancer.UpdateStages.WithOutboundRule
-
- All Known Subinterfaces:
LoadBalancer.Update
- Enclosing interface:
- LoadBalancer.UpdateStages
public static interface LoadBalancer.UpdateStages.WithOutboundRuleThe stage of a load balancer update allowing to define, remove or edit outbound rules.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LoadBalancerOutboundRule.DefinitionStages.Blank<? extends LoadBalancer.Update>defineOutboundRule(String name)Begins the definition of a new inbound NAT rule.LoadBalancerOutboundRule.Update<? extends LoadBalancer.Update>updateOutboundRule(String name)Begins the description of an update to an existing outbound rule.LoadBalancer.UpdatewithoutOutboundRule(String name)Removes the specified outbound rule from the load balancer.
-
-
-
Method Detail
-
withoutOutboundRule
LoadBalancer.Update withoutOutboundRule(String name)
Removes the specified outbound rule from the load balancer.- Parameters:
name- the name of an existing outbound rule on this load balancer- Returns:
- the next stage of the update
-
defineOutboundRule
LoadBalancerOutboundRule.DefinitionStages.Blank<? extends LoadBalancer.Update> defineOutboundRule(String name)
Begins the definition of a new inbound NAT rule.The definition must be completed with a call to
Attachable.InDefinition.attach()- Parameters:
name- the name for the outbound rule- Returns:
- the first stage of the new outbound rule definition
-
updateOutboundRule
LoadBalancerOutboundRule.Update<? extends LoadBalancer.Update> updateOutboundRule(String name)
Begins the description of an update to an existing outbound rule.- Parameters:
name- the name of the outbound rule to update- Returns:
- the first stage of the outbound rule update
-
-