PoolEndpointConfiguration Class

  • java.lang.Object
    • com.microsoft.azure.management.batch.PoolEndpointConfiguration

public class PoolEndpointConfiguration

The endpoint configuration for a pool.

Constructor Summary

Constructor Description
PoolEndpointConfiguration()

Method Summary

Modifier and Type Method and Description
java.util.List<InboundNatPool> inboundNatPools()

Get the maximum number of inbound NAT pools per Batch pool is 5.

PoolEndpointConfiguration withInboundNatPools(List<InboundNatPool> inboundNatPools)

Set the maximum number of inbound NAT pools per Batch pool is 5.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

PoolEndpointConfiguration

public PoolEndpointConfiguration()

Method Details

inboundNatPools

public List inboundNatPools()

Get the maximum number of inbound NAT pools per Batch pool is 5. If the maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400. This cannot be specified if the IPAddressProvisioningType is NoPublicIPAddresses.

Returns:

the inboundNatPools value

withInboundNatPools

public PoolEndpointConfiguration withInboundNatPools(List inboundNatPools)

Set the maximum number of inbound NAT pools per Batch pool is 5. If the maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400. This cannot be specified if the IPAddressProvisioningType is NoPublicIPAddresses.

Parameters:

inboundNatPools - the inboundNatPools value to set

Returns:

the PoolEndpointConfiguration object itself.

Applies to