Interface ApplicationGatewayBackend
-
- All Superinterfaces:
com.microsoft.azure.management.resources.fluentcore.arm.models.ChildResource<ApplicationGateway>,HasBackendNics,com.microsoft.azure.management.resources.fluentcore.model.HasInner<com.microsoft.azure.management.network.implementation.ApplicationGatewayBackendAddressPoolInner>,com.microsoft.azure.management.resources.fluentcore.arm.models.HasName,com.microsoft.azure.management.resources.fluentcore.arm.models.HasParent<ApplicationGateway>,com.microsoft.azure.management.resources.fluentcore.model.Indexable
public interface ApplicationGatewayBackend extends com.microsoft.azure.management.resources.fluentcore.model.HasInner<com.microsoft.azure.management.network.implementation.ApplicationGatewayBackendAddressPoolInner>, com.microsoft.azure.management.resources.fluentcore.arm.models.ChildResource<ApplicationGateway>, HasBackendNics
A client-side representation of an application gateway backend.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceApplicationGatewayBackend.Definition<ParentT>The entirety of an application gateway backend definition.static interfaceApplicationGatewayBackend.DefinitionStagesGrouping of application gateway backend definition stages.static interfaceApplicationGatewayBackend.UpdateThe entirety of an application gateway backend update as part of an application gateway update.static interfaceApplicationGatewayBackend.UpdateDefinition<ParentT>The entirety of an application gateway backend definition as part of an application gateway update.static interfaceApplicationGatewayBackend.UpdateDefinitionStagesGrouping of application gateway backend definition stages applicable as part of an application gateway update.static interfaceApplicationGatewayBackend.UpdateStagesGrouping of application gateway backend update stages.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<ApplicationGatewayBackendAddress>addresses()booleancontainsFqdn(String fqdn)Checks whether the specified FQDN is referenced by this backend address pool.booleancontainsIPAddress(String ipAddress)Checks whether the specified IP address is referenced by this backend address pool.-
Methods inherited from interface com.microsoft.azure.management.network.model.HasBackendNics
backendNicIPConfigurationNames
-
Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.model.HasInner
inner
-
Methods inherited from interface com.microsoft.azure.management.resources.fluentcore.arm.models.HasName
name
-
-
-
-
Method Detail
-
addresses
Collection<ApplicationGatewayBackendAddress> addresses()
- Returns:
- addresses on the backend of the application gateway
-
containsIPAddress
boolean containsIPAddress(String ipAddress)
Checks whether the specified IP address is referenced by this backend address pool.- Parameters:
ipAddress- an IP address- Returns:
- true if the specified IP address is referenced by this backend, else false
-
containsFqdn
boolean containsFqdn(String fqdn)
Checks whether the specified FQDN is referenced by this backend address pool.- Parameters:
fqdn- a fully qualified domain name (FQDN)- Returns:
- true if the specified FQDN is referenced by this backend, else false
-
-