Interface ApplicationGatewayBackend
-
- All Superinterfaces:
ChildResource<ApplicationGateway>,HasBackendNics,HasInnerModel<ApplicationGatewayBackendAddressPool>,HasName,HasParent<ApplicationGateway>,Indexable
public interface ApplicationGatewayBackend extends HasInnerModel<ApplicationGatewayBackendAddressPool>, 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.azure.resourcemanager.network.models.HasBackendNics
backendNicIPConfigurationNames
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel
innerModel
-
Methods inherited from interface com.azure.resourcemanager.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
-
-