Interface LoadBalancer.UpdateStages.WithInboundNatPool
-
- All Known Subinterfaces:
LoadBalancer.Update
- Enclosing interface:
- LoadBalancer.UpdateStages
public static interface LoadBalancer.UpdateStages.WithInboundNatPoolThe stage of a load balancer update allowing to create a new inbound NAT pool for a virtual machine scale set.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LoadBalancerInboundNatPool.UpdateDefinitionStages.Blank<LoadBalancer.Update>defineInboundNatPool(String name)Begins the definition of a new inbound NAT pool.LoadBalancerInboundNatPool.UpdateupdateInboundNatPool(String name)Begins the description of an update to an existing inbound NAT pool.LoadBalancer.UpdatewithoutInboundNatPool(String name)Removes the specified inbound NAT pool from the load balancer.
-
-
-
Method Detail
-
withoutInboundNatPool
LoadBalancer.Update withoutInboundNatPool(String name)
Removes the specified inbound NAT pool from the load balancer.- Parameters:
name- the name of an existing inbound NAT pool on this load balancer- Returns:
- the next stage of the update
-
defineInboundNatPool
LoadBalancerInboundNatPool.UpdateDefinitionStages.Blank<LoadBalancer.Update> defineInboundNatPool(String name)
Begins the definition of a new inbound NAT pool.- Parameters:
name- the name of the inbound NAT pool- Returns:
- the first stage of the new inbound NAT pool definition
-
updateInboundNatPool
LoadBalancerInboundNatPool.Update updateInboundNatPool(String name)
Begins the description of an update to an existing inbound NAT pool.- Parameters:
name- the name of the inbound NAT pool to update- Returns:
- the first stage of the inbound NAT pool update
-
-