NicIPConfiguration.DefinitionStages.WithLoadBalancer<ParentT> Interface

Type Parameters

ParentT

the stage of the parent network interface definition to return to after attaching this definition

public static interface NicIPConfiguration.DefinitionStages.WithLoadBalancer

The stage of the network interface IP configuration definition allowing to specify the load balancer to associate this IP configuration with.

Method Summary

Modifier and Type Method and Description
abstract WithAttach<ParentT> withExistingLoadBalancerBackend(LoadBalancer loadBalancer, String backendName)

Specifies the load balancer backend to associate this IP configuration with.

abstract WithAttach<ParentT> withExistingLoadBalancerInboundNatRule(LoadBalancer loadBalancer, String inboundNatRuleName)

Specifies the load balancer inbound NAT rule to associate this IP configuration with.

Method Details

withExistingLoadBalancerBackend

public abstract NicIPConfiguration.DefinitionStages.WithAttach withExistingLoadBalancerBackend(LoadBalancer loadBalancer, String backendName)

Specifies the load balancer backend to associate this IP configuration with.

Parameters:

loadBalancer - an existing load balancer
backendName - the name of an existing backend on that load balancer

Returns:

the next stage of the definition

withExistingLoadBalancerInboundNatRule

public abstract NicIPConfiguration.DefinitionStages.WithAttach withExistingLoadBalancerInboundNatRule(LoadBalancer loadBalancer, String inboundNatRuleName)

Specifies the load balancer inbound NAT rule to associate this IP configuration with.

Parameters:

loadBalancer - an existing load balancer
inboundNatRuleName - the name of an existing inbound NAT rule on the selected load balancer

Returns:

the next stage of the definition

Applies to