Interface LoadBalancer.UpdateStages.WithOutboundRule
- All Known Subinterfaces:
LoadBalancer.Update
- Enclosing interface:
LoadBalancer.UpdateStages
public static interface LoadBalancer.UpdateStages.WithOutboundRule
The stage of a load balancer update allowing to define, remove or edit outbound rules.
-
Method Summary
Modifier and TypeMethodDescriptiondefineOutboundRule(String name) Begins the definition of a new inbound NAT rule.updateOutboundRule(String name) Begins the description of an update to an existing outbound rule.withoutOutboundRule(String name) Removes the specified outbound rule from the load balancer.
-
Method Details
-
withoutOutboundRule
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
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
-