Class ApplicationGatewayBackendAddress
- java.lang.Object
-
- com.microsoft.azure.management.network.ApplicationGatewayBackendAddress
-
public class ApplicationGatewayBackendAddress extends Object
Backend address of an application gateway.
-
-
Constructor Summary
Constructors Constructor Description ApplicationGatewayBackendAddress()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringfqdn()Get the fqdn value.StringipAddress()Get the ipAddress value.ApplicationGatewayBackendAddresswithFqdn(String fqdn)Set the fqdn value.ApplicationGatewayBackendAddresswithIpAddress(String ipAddress)Set the ipAddress value.
-
-
-
Method Detail
-
fqdn
public String fqdn()
Get the fqdn value.- Returns:
- the fqdn value
-
withFqdn
public ApplicationGatewayBackendAddress withFqdn(String fqdn)
Set the fqdn value.- Parameters:
fqdn- the fqdn value to set- Returns:
- the ApplicationGatewayBackendAddress object itself.
-
ipAddress
public String ipAddress()
Get the ipAddress value.- Returns:
- the ipAddress value
-
withIpAddress
public ApplicationGatewayBackendAddress withIpAddress(String ipAddress)
Set the ipAddress value.- Parameters:
ipAddress- the ipAddress value to set- Returns:
- the ApplicationGatewayBackendAddress object itself.
-
-