Interface LoadBalancer.UpdateStages.WithInboundNatRule
-
- All Known Subinterfaces:
LoadBalancer.Update
- Enclosing interface:
- LoadBalancer.UpdateStages
public static interface LoadBalancer.UpdateStages.WithInboundNatRuleThe stage of a load balancer update allowing to define, remove or edit inbound NAT rules.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LoadBalancerInboundNatRule.UpdateDefinitionStages.Blank<LoadBalancer.Update>defineInboundNatRule(String name)Begins the definition of a new inbound NAT rule.LoadBalancerInboundNatRule.UpdateupdateInboundNatRule(String name)Begins the description of an update to an existing inbound NAT rule.LoadBalancer.UpdatewithoutInboundNatRule(String name)Removes the specified inbound NAT rule from the load balancer.
-
-
-
Method Detail
-
withoutInboundNatRule
LoadBalancer.Update withoutInboundNatRule(String name)
Removes the specified inbound NAT rule from the load balancer.- Parameters:
name- the name of an existing inbound NAT rule on this load balancer- Returns:
- the next stage of the update
-
defineInboundNatRule
LoadBalancerInboundNatRule.UpdateDefinitionStages.Blank<LoadBalancer.Update> defineInboundNatRule(String name)
Begins the definition of a new inbound NAT rule.The definition must be completed with a call to
Attachable.InUpdate.attach()- Parameters:
name- the name for the inbound NAT rule- Returns:
- the first stage of the new inbound NAT rule definition
-
updateInboundNatRule
LoadBalancerInboundNatRule.Update updateInboundNatRule(String name)
Begins the description of an update to an existing inbound NAT rule.- Parameters:
name- the name of the inbound NAT rule to update- Returns:
- the first stage of the inbound NAT rule update
-
-