Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.network; import java.util.Collection; import java.util.Map; import java.util.Set; import com.microsoft.azure.management.apigeneration.Beta; import com.microsoft.azure.management.apigeneration.Beta.SinceVersion; import com.microsoft.azure.management.apigeneration.Fluent; import com.microsoft.azure.management.apigeneration.Method; import com.microsoft.azure.management.network.implementation.ApplicationGatewayInner; import com.microsoft.azure.management.network.implementation.NetworkManager; import com.microsoft.azure.management.network.model.HasPrivateIPAddress; import com.microsoft.azure.management.network.model.HasPublicIPAddress; import com.microsoft.azure.management.network.model.UpdatableWithTags; import com.microsoft.azure.management.resources.fluentcore.arm.AvailabilityZoneId; import com.microsoft.azure.management.resources.fluentcore.arm.models.GroupableResource; import com.microsoft.azure.management.resources.fluentcore.arm.models.HasSubnet; import com.microsoft.azure.management.resources.fluentcore.arm.models.Resource; import com.microsoft.azure.management.resources.fluentcore.model.Appliable; import com.microsoft.azure.management.resources.fluentcore.model.Creatable; import com.microsoft.azure.management.resources.fluentcore.model.Refreshable; import com.microsoft.azure.management.resources.fluentcore.model.Updatable; import rx.Completable; import rx.Observable;
Entry point for application gateway management API in Azure.
/** * Entry point for application gateway management API in Azure. */
@Fluent public interface ApplicationGateway extends GroupableResource<NetworkManager, ApplicationGatewayInner>, Refreshable<ApplicationGateway>, Updatable<ApplicationGateway.Update>, UpdatableWithTags<ApplicationGateway>, HasSubnet, HasPrivateIPAddress { // Actions
Starts the application gateway.
/** * Starts the application gateway. */
@Method void start();
Checks the backend health.
Returns:backend healths indexed by backend name
/** * Checks the backend health. * @return backend healths indexed by backend name */
@Method @Beta(SinceVersion.V1_4_0) Map<String, ApplicationGatewayBackendHealth> checkBackendHealth();
Checks the backend health asynchronously.
Returns:a representation of the future computation of this call
/** * Checks the backend health asynchronously. * @return a representation of the future computation of this call */
@Method @Beta(SinceVersion.V1_4_0) Observable<Map<String, ApplicationGatewayBackendHealth>> checkBackendHealthAsync();
Stops the application gateway.
/** * Stops the application gateway. */
@Method void stop();
Starts the application gateway asynchronously.
Returns:a representation of the deferred computation of this call
/** * Starts the application gateway asynchronously. * @return a representation of the deferred computation of this call */
@Method Completable startAsync();
Stops the application gateway asynchronously.
Returns:a representation of the deferred computation of this call
/** * Stops the application gateway asynchronously. * @return a representation of the deferred computation of this call */
@Method Completable stopAsync(); // Getters
Returns:disabled SSL protocols
/** * @return disabled SSL protocols */
@Beta(SinceVersion.V1_1_0) Collection<ApplicationGatewaySslProtocol> disabledSslProtocols();
Returns:true if the application gateway has at least one internally load balanced frontend accessible within the virtual network
/** * @return true if the application gateway has at least one internally load balanced frontend accessible within the virtual network */
boolean isPrivate();
Returns:true if the application gateway has at least one Internet-facing frontend
/** * @return true if the application gateway has at least one Internet-facing frontend */
boolean isPublic();
Returns:the frontend IP configuration associated with a public IP address, if any, that frontend listeners and request routing rules can reference implicitly
/** * @return the frontend IP configuration associated with a public IP address, if any, that frontend listeners and request routing rules can reference implicitly */
ApplicationGatewayFrontend defaultPublicFrontend();
Returns:the frontend IP configuration associated with a private IP address, if any, that frontend listeners and request routing rules can reference implicitly
/** * @return the frontend IP configuration associated with a private IP address, if any, that frontend listeners and request routing rules can reference implicitly */
ApplicationGatewayFrontend defaultPrivateFrontend();
Returns:the SKU of this application gateway
/** * @return the SKU of this application gateway */
ApplicationGatewaySku sku();
Returns:number of instances
/** * @return number of instances */
int instanceCount();
Returns:the size of the application gateway
/** * @return the size of the application gateway */
ApplicationGatewaySkuName size();
Returns:the tier of the application gateway
/** * @return the tier of the application gateway */
ApplicationGatewayTier tier();
Returns:the autoscaleConfiguration value.
/** * @return the autoscaleConfiguration value. */
ApplicationGatewayAutoscaleConfiguration autoscaleConfiguration();
Returns:the webApplicationFirewallConfiguration value.
/** * @return the webApplicationFirewallConfiguration value. */
ApplicationGatewayWebApplicationFirewallConfiguration webApplicationFirewallConfiguration();
Returns:the operational state of the application gateway
/** * @return the operational state of the application gateway */
ApplicationGatewayOperationalState operationalState();
Returns:IP configurations of this application gateway, indexed by name
/** * @return IP configurations of this application gateway, indexed by name */
Map<String, ApplicationGatewayIPConfiguration> ipConfigurations();
Returns:backend address pools of this application gateway, indexed by name
/** * @return backend address pools of this application gateway, indexed by name */
Map<String, ApplicationGatewayBackend> backends();
Returns:probes of this application gateway, indexed by name
/** * @return probes of this application gateway, indexed by name */
Map<String, ApplicationGatewayProbe> probes();
Returns:the existing IP configurations if only one exists, else null
/** * @return the existing IP configurations if only one exists, else null */
ApplicationGatewayIPConfiguration defaultIPConfiguration();
Returns:frontend IP configurations, indexed by name
/** * @return frontend IP configurations, indexed by name */
Map<String, ApplicationGatewayFrontend> frontends();
Returns:frontend IP configurations with a public IP address, indexed by name
/** * @return frontend IP configurations with a public IP address, indexed by name */
Map<String, ApplicationGatewayFrontend> publicFrontends();
Returns:frontend IP configurations with a private IP address within a subnet, indexed by name
/** * @return frontend IP configurations with a private IP address within a subnet, indexed by name */
Map<String, ApplicationGatewayFrontend> privateFrontends();
Returns:named frontend ports of this application gateway, indexed by name
/** * @return named frontend ports of this application gateway, indexed by name */
Map<String, Integer> frontendPorts();
Returns:backend HTTP configurations of this application gateway, indexed by name
/** * @return backend HTTP configurations of this application gateway, indexed by name */
Map<String, ApplicationGatewayBackendHttpConfiguration> backendHttpConfigurations();
Returns:SSL certificates, indexed by name
/** * @return SSL certificates, indexed by name */
Map<String, ApplicationGatewaySslCertificate> sslCertificates();
Returns:frontend listeners, indexed by name
/** * @return frontend listeners, indexed by name */
Map<String, ApplicationGatewayListener> listeners();
Returns:redirect configurations, indexed by name
/** * @return redirect configurations, indexed by name */
@Beta(SinceVersion.V1_4_0) Map<String, ApplicationGatewayRedirectConfiguration> redirectConfigurations();
Returns:URL path maps, indexed by name (case sensitive)
/** * @return URL path maps, indexed by name (case sensitive) */
@Beta(SinceVersion.V1_11_0) Map<String, ApplicationGatewayUrlPathMap> urlPathMaps();
Returns:request routing rules, indexed by name
/** * @return request routing rules, indexed by name */
Map<String, ApplicationGatewayRequestRoutingRule> requestRoutingRules();
Returns:authentication certificates
/** * @return authentication certificates */
@Beta(SinceVersion.V1_4_0) Map<String, ApplicationGatewayAuthenticationCertificate> authenticationCertificates();
Returns:whether HTTP2 enabled for the application gateway
/** * @return whether HTTP2 enabled for the application gateway */
@Beta(SinceVersion.V1_14_0) boolean isHttp2Enabled();
The availability zones assigned to the application gateway.

Note, this functionality is not enabled for most subscriptions and is subject to significant redesign and/or removal in the future.

Returns:the availability zones assigned to the application gateway.
/** * The availability zones assigned to the application gateway. * <p> * Note, this functionality is not enabled for most subscriptions and is subject to significant redesign * and/or removal in the future. * * @return the availability zones assigned to the application gateway. */
@Beta(Beta.SinceVersion.V1_4_0) Set<AvailabilityZoneId> availabilityZones();
Returns the name of the existing port, if any, that is associated with the specified port number.
Params:
  • portNumber – a port number
Returns:the existing port name for that port number, or null if none found
/** * Returns the name of the existing port, if any, that is associated with the specified port number. * @param portNumber a port number * @return the existing port name for that port number, or null if none found */
String frontendPortNameFromNumber(int portNumber);
Finds a front end listener associated with the specified front end port number, if any.
Params:
  • portNumber – a used port number
Returns:a front end listener, or null if none found
/** * Finds a front end listener associated with the specified front end port number, if any. * @param portNumber a used port number * @return a front end listener, or null if none found */
ApplicationGatewayListener listenerByPortNumber(int portNumber);
Grouping of application gateway definition stages.
/** * Grouping of application gateway definition stages. */
interface DefinitionStages {
The first stage of an application gateway definition.
/** * The first stage of an application gateway definition. */
interface Blank extends GroupableResource.DefinitionWithRegion<WithGroup> { }
The stage of an application gateway definition allowing to specify the resource group.
/** * The stage of an application gateway definition allowing to specify the resource group. */
interface WithGroup extends GroupableResource.DefinitionStages.WithGroup<WithRequestRoutingRule> { }
The stage of an application gateway definition allowing to add a new Internet-facing frontend with a public IP address.
/** * The stage of an application gateway definition allowing to add a new Internet-facing frontend with a public IP address. */
interface WithPublicIPAddress extends HasPublicIPAddress.DefinitionStages.WithPublicIPAddressNoDnsLabel<WithCreate> { }
The stage of an application gateway definition allowing to define one or more public, or Internet-facing, frontends.
/** * The stage of an application gateway definition allowing to define one or more public, or Internet-facing, frontends. */
interface WithPublicFrontend extends WithPublicIPAddress {
Specifies that the application gateway should not be Internet-facing.
Returns:the next stage of the definition
/** * Specifies that the application gateway should not be Internet-facing. * @return the next stage of the definition */
@Method WithCreate withoutPublicFrontend(); }
The stage of an internal application gateway definition allowing to make the application gateway accessible to its virtual network.
/** * The stage of an internal application gateway definition allowing to make the application gateway accessible to its * virtual network. */
interface WithPrivateFrontend {
Enables a private (internal) default frontend within the subnet containing the application gateway.

A frontend with an automatically generated name will be created if none exists.

Returns:the next stage of the definition
/** * Enables a private (internal) default frontend within the subnet containing the application gateway. * <p> * A frontend with an automatically generated name will be created if none exists. * @return the next stage of the definition */
@Method WithCreate withPrivateFrontend();
Specifies that no private (internal) frontend should be enabled.
Returns:the next stage of the definition
/** * Specifies that no private (internal) frontend should be enabled. * @return the next stage of the definition */
@Method WithCreate withoutPrivateFrontend(); }
The stage of an application gateway definition allowing to add a listener.
/** * The stage of an application gateway definition allowing to add a listener. */
interface WithListener {
Begins the definition of a new application gateway listener to be attached to the gateway.
Params:
  • name – a unique name for the listener
Returns:the first stage of the listener definition
/** * Begins the definition of a new application gateway listener to be attached to the gateway. * @param name a unique name for the listener * @return the first stage of the listener definition */
ApplicationGatewayListener.DefinitionStages.Blank<WithCreate> defineListener(String name); }
The stage of an application gateway definition allowing to add a redirect configuration.
/** * The stage of an application gateway definition allowing to add a redirect configuration. */
interface WithRedirectConfiguration {
Begins the definition of a new application gateway redirect configuration to be attached to the gateway.
Params:
  • name – a unique name for the redirect configuration
Returns:the first stage of the redirect configuration definition
/** * Begins the definition of a new application gateway redirect configuration to be attached to the gateway. * @param name a unique name for the redirect configuration * @return the first stage of the redirect configuration definition */
@Beta(SinceVersion.V1_4_0) ApplicationGatewayRedirectConfiguration.DefinitionStages.Blank<WithCreate> defineRedirectConfiguration(String name); }
The stage of an application gateway definition allowing to add a probe.
/** * The stage of an application gateway definition allowing to add a probe. */
interface WithProbe {
Begins the definition of a new probe.
Params:
  • name – a unique name for the probe
Returns:the first stage of a probe definition
/** * Begins the definition of a new probe. * @param name a unique name for the probe * @return the first stage of a probe definition */
ApplicationGatewayProbe.DefinitionStages.Blank<WithCreate> defineProbe(String name); }
The stage of an application gateway definition allowing to add a frontend port.
/** * The stage of an application gateway definition allowing to add a frontend port. */
interface WithFrontendPort {
Creates a frontend port with an auto-generated name and the specified port number, unless one already exists.
Params:
  • portNumber – a port number
Returns:the next stage of the definition
/** * Creates a frontend port with an auto-generated name and the specified port number, unless one already exists. * @param portNumber a port number * @return the next stage of the definition */
WithCreate withFrontendPort(int portNumber);
Creates a frontend port with the specified name and port number, unless a port matching this name and/or number already exists.
Params:
  • portNumber – a port number
  • name – the name to assign to the port
Returns:the next stage of the definition, or null if a port matching either the name or the number, but not both, already exists.
/** * Creates a frontend port with the specified name and port number, unless a port matching this name and/or number already exists. * @param portNumber a port number * @param name the name to assign to the port * @return the next stage of the definition, or null if a port matching either the name or the number, but not both, already exists. */
WithCreate withFrontendPort(int portNumber, String name); }
The stage of an application gateway definition allowing to add an SSL certificate to be used by HTTPS listeners.
/** * The stage of an application gateway definition allowing to add an SSL certificate to be used by HTTPS listeners. */
interface WithSslCert {
Begins the definition of a new application gateway SSL certificate to be attached to the gateway for use in HTTPS listeners.
Params:
  • name – a unique name for the certificate
Returns:the first stage of the certificate definition
/** * Begins the definition of a new application gateway SSL certificate to be attached to the gateway for use in HTTPS listeners. * @param name a unique name for the certificate * @return the first stage of the certificate definition */
ApplicationGatewaySslCertificate.DefinitionStages.Blank<WithCreate> defineSslCertificate(String name); }
The stage of an application gateway definition allowing to add an authentication certificate for the backends to use.
/** * The stage of an application gateway definition allowing to add an authentication certificate for the backends to use. */
interface WithAuthenticationCertificate {
Begins the definition of a new application gateway authentication certificate to be attached to the gateway for use by the backends.
Params:
  • name – a unique name for the certificate
Returns:the first stage of the certificate definition
/** * Begins the definition of a new application gateway authentication certificate to be attached to the gateway for use by the backends. * @param name a unique name for the certificate * @return the first stage of the certificate definition */
@Beta(SinceVersion.V1_4_0) ApplicationGatewayAuthenticationCertificate.DefinitionStages.Blank<WithCreate> defineAuthenticationCertificate(String name); }
The stage of an application gateway definition allowing to add a backend.
/** * The stage of an application gateway definition allowing to add a backend. */
interface WithBackend {
Begins the definition of a new application gateway backend to be attached to the gateway.
Params:
  • name – a unique name for the backend
Returns:the first stage of the backend definition
/** * Begins the definition of a new application gateway backend to be attached to the gateway. * @param name a unique name for the backend * @return the first stage of the backend definition */
ApplicationGatewayBackend.DefinitionStages.Blank<WithCreate> defineBackend(String name); }
The stage of an application gateway definition allowing to add a backend HTTP configuration.
/** * The stage of an application gateway definition allowing to add a backend HTTP configuration. */
interface WithBackendHttpConfig {
Begins the definition of a new application gateway backend HTTP configuration to be attached to the gateway.
Params:
  • name – a unique name for the backend HTTP configuration
Returns:the first stage of the backend HTTP configuration definition
/** * Begins the definition of a new application gateway backend HTTP configuration to be attached to the gateway. * @param name a unique name for the backend HTTP configuration * @return the first stage of the backend HTTP configuration definition */
ApplicationGatewayBackendHttpConfiguration.DefinitionStages.Blank<WithCreate> defineBackendHttpConfiguration(String name); }
The stage of an application gateway definition allowing to add a request routing rule.
/** * The stage of an application gateway definition allowing to add a request routing rule. */
interface WithRequestRoutingRule {
Begins the definition of a request routing rule for this application gateway.
Params:
  • name – a unique name for the request routing rule
Returns:the first stage of the request routing rule
/** * Begins the definition of a request routing rule for this application gateway. * @param name a unique name for the request routing rule * @return the first stage of the request routing rule */
ApplicationGatewayRequestRoutingRule.DefinitionStages.Blank<WithRequestRoutingRuleOrCreate> defineRequestRoutingRule(String name);
Begins the definition of a new application gateway path-based request routing rule and URL path map to be attached to the gateway. Note: both will be created with the same name and attached to the gateway.
Params:
  • name – a unique name for the URL path map
Returns:the first stage of the URL path map definition
/** * Begins the definition of a new application gateway path-based request routing rule and URL path map to be attached to the gateway. * Note: both will be created with the same name and attached to the gateway. * @param name a unique name for the URL path map * @return the first stage of the URL path map definition */
@Beta(SinceVersion.V1_11_0) ApplicationGatewayUrlPathMap.DefinitionStages.Blank<WithRequestRoutingRuleOrCreate> definePathBasedRoutingRule(String name); }
The stage of an application gateway definition allowing to continue adding more request routing rules, or start specifying optional settings, or create the application gateway.
/** * The stage of an application gateway definition allowing to continue adding more request routing rules, * or start specifying optional settings, or create the application gateway. */
interface WithRequestRoutingRuleOrCreate extends WithRequestRoutingRule, WithCreate { }
The stage of an application gateway update allowing to specify the sku.
/** * The stage of an application gateway update allowing to specify the sku. */
interface WithSku {
Set tier of an application gateway. Possible values include: 'Standard', 'WAF', 'Standard_v2', 'WAF_v2'.
Params:
  • tier – the tier value to set
Returns:the next stage of the definition
/** * Set tier of an application gateway. Possible values include: 'Standard', 'WAF', 'Standard_v2', 'WAF_v2'. * @param tier the tier value to set * @return the next stage of the definition */
WithCreate withTier(ApplicationGatewayTier tier);
Specifies the size of the application gateway to create within the context of the selected tier.

By default, the smallest size is used.

Params:
  • size – an application gateway SKU name
Returns:the next stage of the definition
/** * Specifies the size of the application gateway to create within the context of the selected tier. * <p> * By default, the smallest size is used. * @param size an application gateway SKU name * @return the next stage of the definition */
/* * The API refers to this as the "SKU"/"SkuName", the docs refer to this as the "size" (and docs call Standard vs WAF as the "SKU"), * while the portal refers to this as the "SKU size"... The documentation naming sounds the most correct, so following that here. */ WithCreate withSize(ApplicationGatewaySkuName size); }
The stage of the applicationgateway update allowing to specify WebApplicationFirewallConfiguration.
/** * The stage of the applicationgateway update allowing to specify WebApplicationFirewallConfiguration. */
interface WithWebApplicationFirewall {
Specifies webApplicationFirewallConfiguration with default values.
Params:
  • enabled – enable the firewall when created
  • mode – Web application firewall mode.
Returns:the next stage of the definition
/** * Specifies webApplicationFirewallConfiguration with default values. * @param enabled enable the firewall when created * @param mode Web application firewall mode. * @return the next stage of the definition */
WithCreate withWebApplicationFirewall(boolean enabled, ApplicationGatewayFirewallMode mode);
Specifies webApplicationFirewallConfiguration.
Params:
  • webApplicationFirewallConfiguration – Web application firewall configuration
Returns:the next stage of the definition
/** * Specifies webApplicationFirewallConfiguration. * @param webApplicationFirewallConfiguration Web application firewall configuration * @return the next stage of the definition */
WithCreate withWebApplicationFirewall(ApplicationGatewayWebApplicationFirewallConfiguration webApplicationFirewallConfiguration); }
The stage of an application gateway definition allowing to specify the capacity (number of instances) of the application gateway.
/** * The stage of an application gateway definition allowing to specify the capacity (number of instances) of the application gateway. */
interface WithInstanceCount {
Specifies the capacity (number of instances) for the application gateway.

By default, 1 instance is used.

Params:
  • instanceCount – the capacity as a number between 1 and 10 but also based on the limits imposed by the selected application gateway size
Returns:the next stage of the definition
/** * Specifies the capacity (number of instances) for the application gateway. * <p> * By default, 1 instance is used. * @param instanceCount the capacity as a number between 1 and 10 but also based on the limits imposed by the selected application gateway size * @return the next stage of the definition */
/* * The API refers to this as "Capacity", but the portal and the docs refer to this as "instance count", so using that naming here */ WithCreate withInstanceCount(int instanceCount);
Specifies the min and max auto scale bound.
Params:
  • minCapacity – Lower bound on number of Application Gateway capacity.
  • maxCapacity – Upper bound on number of Application Gateway capacity.
Returns:the next stage of the definition
/** * Specifies the min and max auto scale bound. * @param minCapacity Lower bound on number of Application Gateway capacity. * @param maxCapacity Upper bound on number of Application Gateway capacity. * @return the next stage of the definition */
WithCreate withAutoScale(int minCapacity, int maxCapacity); }
The stage of an application gateway definition allowing to specify the subnet the app gateway is getting its private IP address from.
/** * The stage of an application gateway definition allowing to specify the subnet the app gateway is getting * its private IP address from. */
interface WithExistingSubnet extends HasSubnet.DefinitionStages.WithSubnet<WithCreate> {
Specifies the subnet the application gateway gets its private IP address from.

This will create a new IP configuration, if it does not already exist.

Private (internal) frontends, if any have been enabled, will be configured to use this subnet as well.

Params:
  • subnet – an existing subnet
Returns:the next stage of the definition
/** * Specifies the subnet the application gateway gets its private IP address from. * <p> * This will create a new IP configuration, if it does not already exist. * <p> * Private (internal) frontends, if any have been enabled, will be configured to use this subnet as well. * @param subnet an existing subnet * @return the next stage of the definition */
WithCreate withExistingSubnet(Subnet subnet);
Specifies the subnet the application gateway gets its private IP address from.

This will create a new IP configuration, if it does not already exist.

Private (internal) frontends, if any have been enabled, will be configured to use this subnet as well.

Params:
  • network – the virtual network the subnet is part of
  • subnetName – the name of a subnet within the selected network
Returns:the next stage of the definition
/** * Specifies the subnet the application gateway gets its private IP address from. * <p> * This will create a new IP configuration, if it does not already exist. * <p> * Private (internal) frontends, if any have been enabled, will be configured to use this subnet as well. * @param network the virtual network the subnet is part of * @param subnetName the name of a subnet within the selected network * @return the next stage of the definition */
WithCreate withExistingSubnet(Network network, String subnetName); }
The stage of an application gateway definition allowing to specify the default IP address the app gateway will be internally available at, if a default private frontend has been enabled.
/** * The stage of an application gateway definition allowing to specify the default IP address the app gateway will be internally available at, * if a default private frontend has been enabled. */
interface WithPrivateIPAddress extends HasPrivateIPAddress.DefinitionStages.WithPrivateIPAddress<WithCreate> { }
The stage of an application gateway definition allowing to specify Managed Service Identities.
/** * The stage of an application gateway definition allowing to specify Managed Service Identities. */
interface WithManagedServiceIdentity {
Specifies an identity to be associated with the application gateway.
Params:
  • identity – the identity
Returns:the next stage of the definition
/** * Specifies an identity to be associated with the application gateway. * * @param identity the identity * @return the next stage of the definition */
WithCreate withIdentity(ManagedServiceIdentity identity); }
The stage of an application gateway definition allowing to specify the SSL protocols to disable.
/** * The stage of an application gateway definition allowing to specify the SSL protocols to disable. */
interface WithDisabledSslProtocol {
Disables the specified SSL protocol.
Params:
  • protocol – an SSL protocol
Returns:the next stage of the definition
/** * Disables the specified SSL protocol. * @param protocol an SSL protocol * @return the next stage of the definition */
@Beta(SinceVersion.V1_1_0) WithCreate withDisabledSslProtocol(ApplicationGatewaySslProtocol protocol);
Disables the specified SSL protocols.
Params:
  • protocols – SSL protocols
Returns:the next stage of the definition
/** * Disables the specified SSL protocols. * @param protocols SSL protocols * @return the next stage of the definition */
@Beta(SinceVersion.V1_1_0) WithCreate withDisabledSslProtocols(ApplicationGatewaySslProtocol...protocols); }
The stage of the application gateway definition allowing to specify availability zone.
/** * The stage of the application gateway definition allowing to specify availability zone. */
@Beta(Beta.SinceVersion.V1_4_0) interface WithAvailabilityZone {
Specifies the availability zone for the application gateway.

Note, this functionality is not enabled for most subscriptions and is subject to significant redesign and/or removal in the future.

Params:
  • zoneId – the zone identifier.
Returns:the next stage of the definition
/** * Specifies the availability zone for the application gateway. * <p> * Note, this functionality is not enabled for most subscriptions and is subject to significant redesign * and/or removal in the future. * * @param zoneId the zone identifier. * @return the next stage of the definition */
@Beta(SinceVersion.V1_4_0) WithCreate withAvailabilityZone(AvailabilityZoneId zoneId); }
The stage of the application gateway definition allowing to specify whether HTTP2 is enabled on the application gateway.
/** * The stage of the application gateway definition allowing to specify whether HTTP2 is enabled on the application gateway. */
@Beta(SinceVersion.V1_14_0) interface WithHttp2 {
Enables HTTP2 for the application gateway.
Returns:the next stage of the definition
/** * Enables HTTP2 for the application gateway. * @return the next stage of the definition */
@Beta(SinceVersion.V1_14_0) WithCreate withHttp2();
Disables HTTP2 for the application gateway.
Returns:the next stage of the definition
/** * Disables HTTP2 for the application gateway. * @return the next stage of the definition */
@Beta(SinceVersion.V1_14_0) WithCreate withoutHttp2(); }
The stage of an application gateway definition containing all the required inputs for the resource to be created, but also allowing for any other optional settings to be specified.
/** * The stage of an application gateway definition containing all the required inputs for * the resource to be created, but also allowing * for any other optional settings to be specified. */
interface WithCreate extends Creatable<ApplicationGateway>, Resource.DefinitionWithTags<WithCreate>, WithSku, WithInstanceCount, WithWebApplicationFirewall, WithSslCert, WithFrontendPort, WithListener, WithBackendHttpConfig, WithBackend, WithExistingSubnet, WithPrivateIPAddress, WithPrivateFrontend, WithPublicFrontend, WithPublicIPAddress, WithProbe, WithDisabledSslProtocol, WithAuthenticationCertificate, WithRedirectConfiguration, WithAvailabilityZone, WithManagedServiceIdentity, WithHttp2 { } }
The entirety of the application gateway definition.
/** * The entirety of the application gateway definition. */
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithGroup, DefinitionStages.WithCreate, DefinitionStages.WithRequestRoutingRule, DefinitionStages.WithRequestRoutingRuleOrCreate { }
Grouping of application gateway update stages.
/** * Grouping of application gateway update stages. */
interface UpdateStages {
The stage of an application gateway update allowing to manage authentication certificates for the backends to use.
/** * The stage of an application gateway update allowing to manage authentication certificates for the backends to use. */
interface WithAuthenticationCertificate {
Begins the definition of a new application gateway authentication certificate to be attached to the gateway for use by the backends.
Params:
  • name – a unique name for the certificate
Returns:the first stage of the certificate definition
/** * Begins the definition of a new application gateway authentication certificate to be attached to the gateway for use by the backends. * @param name a unique name for the certificate * @return the first stage of the certificate definition */
@Beta(SinceVersion.V1_4_0) ApplicationGatewayAuthenticationCertificate.UpdateDefinitionStages.Blank<Update> defineAuthenticationCertificate(String name);
Removes an existing application gateway authentication certificate.
Params:
  • name – the name of an existing certificate
Returns:the next stage of the update
/** * Removes an existing application gateway authentication certificate. * @param name the name of an existing certificate * @return the next stage of the update */
@Beta(SinceVersion.V1_4_0) Update withoutAuthenticationCertificate(String name); }
The stage of an internal application gateway update allowing to make the application gateway accessible to its virtual network.
/** * The stage of an internal application gateway update allowing to make the application gateway accessible to its * virtual network. */
interface WithPrivateFrontend {
Enables a private (internal) default front end in the subnet containing the application gateway.

A front end with an automatically generated name will be created if none exists.

Returns:the next stage of the update
/** * Enables a private (internal) default front end in the subnet containing the application gateway. * <p> * A front end with an automatically generated name will be created if none exists. * @return the next stage of the update */
@Method Update withPrivateFrontend();
Specifies that no private, or internal, front end should be enabled.
Returns:the next stage of the definition
/** * Specifies that no private, or internal, front end should be enabled. * @return the next stage of the definition */
@Method Update withoutPrivateFrontend(); }
The stage of an application gateway update allowing to specify the subnet the app gateway is getting its private IP address from.
/** * The stage of an application gateway update allowing to specify the subnet the app gateway is getting * its private IP address from. */
interface WithExistingSubnet extends HasSubnet.UpdateStages.WithSubnet<Update> {
Specifies the subnet the application gateway gets its private IP address from.

This will create a new IP configuration, if it does not already exist.

Private (internal) frontends, if any have been enabled, will be configured to use this subnet as well.

Params:
  • subnet – an existing subnet
Returns:the next stage of the update
/** * Specifies the subnet the application gateway gets its private IP address from. * <p> * This will create a new IP configuration, if it does not already exist. * <p> * Private (internal) frontends, if any have been enabled, will be configured to use this subnet as well. * @param subnet an existing subnet * @return the next stage of the update */
Update withExistingSubnet(Subnet subnet);
Specifies the subnet the application gateway gets its private IP address from.

This will create a new IP configuration, if it does not already exist.

Private (internal) front ends, if any have been enabled, will be configured to use this subnet as well.

Params:
  • network – the virtual network the subnet is part of
  • subnetName – the name of a subnet within the selected network
Returns:the next stage of the update
/** * Specifies the subnet the application gateway gets its private IP address from. * <p> * This will create a new IP configuration, if it does not already exist. * <p> * Private (internal) front ends, if any have been enabled, will be configured to use this subnet as well. * @param network the virtual network the subnet is part of * @param subnetName the name of a subnet within the selected network * @return the next stage of the update */
Update withExistingSubnet(Network network, String subnetName); }
The stage of an application gateway update allowing to modify IP configurations.
/** * The stage of an application gateway update allowing to modify IP configurations. */
interface WithIPConfig {
Removes the specified IP configuration.

Note that removing an IP configuration referenced by other settings may break the application gateway. Also, there must be at least one IP configuration for the application gateway to function.

Params:
  • ipConfigurationName – the name of the IP configuration to remove
Returns:the next stage of the update
/** * Removes the specified IP configuration. * <p> * Note that removing an IP configuration referenced by other settings may break the application gateway. * Also, there must be at least one IP configuration for the application gateway to function. * @param ipConfigurationName the name of the IP configuration to remove * @return the next stage of the update */
Update withoutIPConfiguration(String ipConfigurationName);
Begins the update of an existing IP configuration.
Params:
  • ipConfigurationName – the name of an existing IP configuration
Returns:the first stage of an IP configuration update
/** * Begins the update of an existing IP configuration. * @param ipConfigurationName the name of an existing IP configuration * @return the first stage of an IP configuration update */
ApplicationGatewayIPConfiguration.Update updateIPConfiguration(String ipConfigurationName);
Begins the update of the default IP configuration i.e. the only one IP configuration that exists, assuming only one exists.
Returns:the first stage of an IP configuration update.
/** * Begins the update of the default IP configuration i.e. the only one IP configuration that exists, assuming only one exists. * @return the first stage of an IP configuration update. */
@Method ApplicationGatewayIPConfiguration.Update updateDefaultIPConfiguration();
Begins the definition of the default IP configuration.

If a default IP configuration already exists, it will be this is equivalent to updateDefaultIPConfiguration().

Returns:the first stage of an IP configuration update
/** * Begins the definition of the default IP configuration. * <p> * If a default IP configuration already exists, it will be this is equivalent to <code>updateDefaultIPConfiguration()</code>. * @return the first stage of an IP configuration update */
@Method ApplicationGatewayIPConfiguration.UpdateDefinitionStages.Blank<Update> defineDefaultIPConfiguration(); }
The stage of an application gateway update allowing to modify front end ports.
/** * The stage of an application gateway update allowing to modify front end ports. */
interface WithFrontendPort {
Creates a front end port with an auto-generated name and the specified port number, unless one already exists.
Params:
  • portNumber – a port number
Returns:the next stage of the definition
/** * Creates a front end port with an auto-generated name and the specified port number, unless one already exists. * @param portNumber a port number * @return the next stage of the definition */
Update withFrontendPort(int portNumber);
Creates a front end port with the specified name and port number, unless a port matching this name and/or number already exists.
Params:
  • portNumber – a port number
  • name – the name to assign to the port
Returns:the next stage of the definition, or null if a port matching either the name or the number, but not both, already exists.
/** * Creates a front end port with the specified name and port number, unless a port matching this name and/or number already exists. * @param portNumber a port number * @param name the name to assign to the port * @return the next stage of the definition, or null if a port matching either the name or the number, but not both, already exists. */
Update withFrontendPort(int portNumber, String name);
Removes the specified frontend port.

Note that removing a frontend port referenced by other settings may break the application gateway.

Params:
  • name – the name of the frontend port to remove
Returns:the next stage of the update
/** * Removes the specified frontend port. * <p> * Note that removing a frontend port referenced by other settings may break the application gateway. * @param name the name of the frontend port to remove * @return the next stage of the update */
Update withoutFrontendPort(String name);
Removes the specified frontend port.

Note that removing a frontend port referenced by other settings may break the application gateway.

Params:
  • portNumber – the port number of the frontend port to remove
Returns:the next stage of the update
/** * Removes the specified frontend port. * <p> * Note that removing a frontend port referenced by other settings may break the application gateway. * @param portNumber the port number of the frontend port to remove * @return the next stage of the update */
Update withoutFrontendPort(int portNumber); }
The stage of an application gateway update allowing to specify a public IP address for the public frontend.
/** * The stage of an application gateway update allowing to specify a public IP address for the public frontend. */
interface WithPublicIPAddress extends HasPublicIPAddress.UpdateStages.WithPublicIPAddressNoDnsLabel<Update> { }
The stage of an application gateway update allowing to modify frontend IP configurations.
/** * The stage of an application gateway update allowing to modify frontend IP configurations. */
interface WithFrontend {
Removes the specified front end IP configuration.

Note that removing a front end referenced by other settings may break the application gateway.

Params:
  • frontendName – the name of the front end IP configuration to remove
Returns:the next stage of the update
/** * Removes the specified front end IP configuration. * <p> * Note that removing a front end referenced by other settings may break the application gateway. * @param frontendName the name of the front end IP configuration to remove * @return the next stage of the update */
Update withoutFrontend(String frontendName);
Begins the update of an existing front end IP configuration.
Params:
  • frontendName – the name of an existing front end IP configuration
Returns:the first stage of the front end IP configuration update
/** * Begins the update of an existing front end IP configuration. * @param frontendName the name of an existing front end IP configuration * @return the first stage of the front end IP configuration update */
ApplicationGatewayFrontend.Update updateFrontend(String frontendName);
Specifies that the application gateway should not be Internet-facing.

Note that if there are any other settings referencing the public front end, removing it may break the application gateway.

Returns:the next stage of the update
/** * Specifies that the application gateway should not be Internet-facing. * <p> * Note that if there are any other settings referencing the public front end, removing it may break the application gateway. * @return the next stage of the update */
@Method Update withoutPublicFrontend();
Specifies that the application gateway should not be private, i.e. its endpoints should not be internally accessible from within the virtual network.

Note that if there are any other settings referencing the private front end, removing it may break the application gateway.

Returns:the next stage of the update
/** * Specifies that the application gateway should not be private, i.e. its endpoints should not be internally accessible * from within the virtual network. * <p> * Note that if there are any other settings referencing the private front end, removing it may break the application gateway. * @return the next stage of the update */
@Method Update withoutPrivateFrontend();
Begins the update of the public front end IP configuration, if it exists.
Returns:the first stage of a front end update or null if no public front end exists
/** * Begins the update of the public front end IP configuration, if it exists. * @return the first stage of a front end update or null if no public front end exists */
@Method ApplicationGatewayFrontend.Update updatePublicFrontend(); /** * Begins the update of the private front end IP configuration, if it exists. * @return the first stage of a front end update or null if no private front end exists */ /* TODO: Nothing to update in the private frontend today - changing Subnet and/or private IP not supported * @Method * ApplicationGatewayFrontend.Update updatePrivateFrontend(); */
Begins the definition of the default public front end IP configuration, creating one if it does not already exist.
Returns:the first stage of a front end definition
/** * Begins the definition of the default public front end IP configuration, creating one if it does not already exist. * @return the first stage of a front end definition */
@Method ApplicationGatewayFrontend.UpdateDefinitionStages.Blank<Update> definePublicFrontend();
Begins the definition of the default private front end IP configuration, creating one if it does not already exist.
Returns:the first stage of a front end definition
/** * Begins the definition of the default private front end IP configuration, creating one if it does not already exist. * @return the first stage of a front end definition */
@Method ApplicationGatewayFrontend.UpdateDefinitionStages.Blank<Update> definePrivateFrontend(); }
The stage of an application gateway update allowing to modify backends.
/** * The stage of an application gateway update allowing to modify backends. */
interface WithBackend {
Begins the definition of a new application gateway backend to be attached to the gateway.
Params:
  • name – a unique name for the backend
Returns:the first stage of the backend definition
/** * Begins the definition of a new application gateway backend to be attached to the gateway. * @param name a unique name for the backend * @return the first stage of the backend definition */
ApplicationGatewayBackend.UpdateDefinitionStages.Blank<Update> defineBackend(String name);
Ensures the specified fully qualified domain name (FQDN) is not associated with any backend.
Params:
  • fqdn – a fully qualified domain name (FQDN)
Returns:the next stage of the update
/** * Ensures the specified fully qualified domain name (FQDN) is not associated with any backend. * @param fqdn a fully qualified domain name (FQDN) * @return the next stage of the update */
Update withoutBackendFqdn(String fqdn);
Ensures the specified IP address is not associated with any backend.
Params:
  • ipAddress – an IP address
Returns:the next stage of the update
/** * Ensures the specified IP address is not associated with any backend. * @param ipAddress an IP address * @return the next stage of the update */
Update withoutBackendIPAddress(String ipAddress);
Removes the specified backend.

Note that removing a backend referenced by other settings may break the application gateway.

Params:
  • backendName – the name of an existing backend on this application gateway
Returns:the next stage of the update
/** * Removes the specified backend. * <p> * Note that removing a backend referenced by other settings may break the application gateway. * @param backendName the name of an existing backend on this application gateway * @return the next stage of the update */
Update withoutBackend(String backendName);
Begins the update of an existing backend on this application gateway.
Params:
  • name – the name of the backend
Returns:the first stage of an update of the backend
/** * Begins the update of an existing backend on this application gateway. * @param name the name of the backend * @return the first stage of an update of the backend */
ApplicationGatewayBackend.Update updateBackend(String name); }
The stage of an application gateway update allowing to modify probes.
/** * The stage of an application gateway update allowing to modify probes. */
interface WithProbe {
Begins the definition of a new probe.
Params:
  • name – a unique name for the probe
Returns:the first stage of a probe definition
/** * Begins the definition of a new probe. * @param name a unique name for the probe * @return the first stage of a probe definition */
ApplicationGatewayProbe.UpdateDefinitionStages.Blank<Update> defineProbe(String name);
Begins the update of an existing probe.
Params:
  • name – the name of an existing probe
Returns:the first stage of a probe update
/** * Begins the update of an existing probe. * @param name the name of an existing probe * @return the first stage of a probe update */
ApplicationGatewayProbe.Update updateProbe(String name);
Removes a probe from the application gateway.

Any references to this probe from backend HTTP configurations will be automatically removed.

Params:
  • name – the name of an existing probe
Returns:the next stage of the update
/** * Removes a probe from the application gateway. * <p> * Any references to this probe from backend HTTP configurations will be automatically removed. * @param name the name of an existing probe * @return the next stage of the update */
Update withoutProbe(String name); }
The stage of an application gateway update allowing to specify the sku.
/** * The stage of an application gateway update allowing to specify the sku. */
interface WithSku {
Set tier of an application gateway. Possible values include: 'Standard', 'WAF', 'Standard_v2', 'WAF_v2'.
Params:
  • tier – the tier value to set
Returns:the next stage of the update
/** * Set tier of an application gateway. Possible values include: 'Standard', 'WAF', 'Standard_v2', 'WAF_v2'. * @param tier the tier value to set * @return the next stage of the update */
Update withTier(ApplicationGatewayTier tier);
Specifies the size of the application gateway to use within the context of the selected tier.
Params:
  • size – an application gateway size name
Returns:the next stage of the update
/** * Specifies the size of the application gateway to use within the context of the selected tier. * @param size an application gateway size name * @return the next stage of the update */
Update withSize(ApplicationGatewaySkuName size); }
The stage of the applicationgateway update allowing to specify WebApplicationFirewallConfiguration.
/** * The stage of the applicationgateway update allowing to specify WebApplicationFirewallConfiguration. */
interface WithWebApplicationFirewall {
Specifies webApplicationFirewallConfiguration.
Params:
  • config – Web application firewall configuration
Returns:the next update stage
/** * Specifies webApplicationFirewallConfiguration. * @param config Web application firewall configuration * @return the next update stage */
Update withWebApplicationFirewall(ApplicationGatewayWebApplicationFirewallConfiguration config); }
The stage of an application gateway update allowing to specify the capacity (number of instances) of the application gateway.
/** * The stage of an application gateway update allowing to specify the capacity (number of instances) of * the application gateway. */
interface WithInstanceCount {
Specifies the capacity (number of instances) for the application gateway.
Params:
  • instanceCount – the capacity as a number between 1 and 10 but also based on the limits imposed by the selected applicatiob gateway size
Returns:the next stage of the update
/** * Specifies the capacity (number of instances) for the application gateway. * @param instanceCount the capacity as a number between 1 and 10 but also based on the limits imposed by the selected applicatiob gateway size * @return the next stage of the update */
Update withInstanceCount(int instanceCount);
Specifies the min and max auto scale bound.
Params:
  • minCapacity – lower bound on number of Application Gateway capacity.
  • maxCapacity – upper bound on number of Application Gateway capacity.
Returns:the next stage of the update
/** * Specifies the min and max auto scale bound. * @param minCapacity lower bound on number of Application Gateway capacity. * @param maxCapacity upper bound on number of Application Gateway capacity. * @return the next stage of the update */
Update withAutoScale(int minCapacity, int maxCapacity); }
The stage of an application gateway update allowing to modify SSL certificates.
/** * The stage of an application gateway update allowing to modify SSL certificates. */
interface WithSslCert {
Begins the definition of a new application gateway SSL certificate to be attached to the gateway for use in frontend HTTPS listeners.
Params:
  • name – a unique name for the certificate
Returns:the first stage of the certificate definition
/** * Begins the definition of a new application gateway SSL certificate to be attached to the gateway for use in frontend HTTPS listeners. * @param name a unique name for the certificate * @return the first stage of the certificate definition */
ApplicationGatewaySslCertificate.UpdateDefinitionStages.Blank<Update> defineSslCertificate(String name);
Removes the specified SSL certificate from the application gateway.

Note that removing a certificate referenced by other settings may break the application gateway.

Params:
  • name – the name of the certificate to remove
Returns:the next stage of the update
Deprecated:Use withoutSslCertificate instead
/** * Removes the specified SSL certificate from the application gateway. * <p> * Note that removing a certificate referenced by other settings may break the application gateway. * @param name the name of the certificate to remove * @return the next stage of the update * @deprecated Use {@link #withoutSslCertificate} instead */
@Deprecated Update withoutCertificate(String name);
Removes the specified SSL certificate from the application gateway.

Note that removing a certificate referenced by other settings may break the application gateway.

Params:
  • name – the name of the certificate to remove
Returns:the next stage of the update
/** * Removes the specified SSL certificate from the application gateway. * <p> * Note that removing a certificate referenced by other settings may break the application gateway. * @param name the name of the certificate to remove * @return the next stage of the update */
Update withoutSslCertificate(String name); }
The stage of an application gateway update allowing to modify frontend listeners.
/** * The stage of an application gateway update allowing to modify frontend listeners. */
interface WithListener {
Begins the definition of a new application gateway listener to be attached to the gateway.
Params:
  • name – a unique name for the listener
Returns:the first stage of the listener definition
/** * Begins the definition of a new application gateway listener to be attached to the gateway. * @param name a unique name for the listener * @return the first stage of the listener definition */
ApplicationGatewayListener.UpdateDefinitionStages.Blank<Update> defineListener(String name);
Removes a frontend listener from the application gateway.

Note that removing a listener referenced by other settings may break the application gateway.

Params:
  • name – the name of the listener to remove
Returns:the next stage of the update
/** * Removes a frontend listener from the application gateway. * <p> * Note that removing a listener referenced by other settings may break the application gateway. * @param name the name of the listener to remove * @return the next stage of the update */
Update withoutListener(String name);
Begins the update of a listener.
Params:
  • name – the name of an existing listener to update
Returns:the next stage of the definition or null if the requested listener does not exist
/** * Begins the update of a listener. * @param name the name of an existing listener to update * @return the next stage of the definition or null if the requested listener does not exist */
ApplicationGatewayListener.Update updateListener(String name); }
The stage of an application gateway definition allowing to add a redirect configuration.
/** * The stage of an application gateway definition allowing to add a redirect configuration. */
interface WithRedirectConfiguration {
Begins the definition of a new application gateway redirect configuration to be attached to the gateway.
Params:
  • name – a unique name for the redirect configuration
Returns:the first stage of the redirect configuration definition
/** * Begins the definition of a new application gateway redirect configuration to be attached to the gateway. * @param name a unique name for the redirect configuration * @return the first stage of the redirect configuration definition */
@Beta(SinceVersion.V1_4_0) ApplicationGatewayRedirectConfiguration.UpdateDefinitionStages.Blank<Update> defineRedirectConfiguration(String name);
Removes a redirect configuration from the application gateway.

Note that removing a redirect configuration referenced by other settings may break the application gateway.

Params:
  • name – the name of the redirect configuration to remove
Returns:the next stage of the update
/** * Removes a redirect configuration from the application gateway. * <p> * Note that removing a redirect configuration referenced by other settings may break the application gateway. * @param name the name of the redirect configuration to remove * @return the next stage of the update */
@Beta(SinceVersion.V1_4_0) Update withoutRedirectConfiguration(String name);
Begins the update of a redirect configuration.
Params:
  • name – the name of an existing redirect configuration to update
Returns:the next stage of the definition or null if the requested redirect configuration does not exist
/** * Begins the update of a redirect configuration. * @param name the name of an existing redirect configuration to update * @return the next stage of the definition or null if the requested redirect configuration does not exist */
@Beta(SinceVersion.V1_4_0) ApplicationGatewayRedirectConfiguration.Update updateRedirectConfiguration(String name); }
The stage of an application gateway definition allowing to modify URL path maps.
/** * The stage of an application gateway definition allowing to modify URL path maps. */
interface WithUrlPathMap {
Removes a URL path map from the application gateway.

Note that removing a URL path map referenced by other settings may break the application gateway.

Params:
  • name – the name of the URL path map to remove (case sensitive)
Returns:the next stage of the update
/** * Removes a URL path map from the application gateway. * <p> * Note that removing a URL path map referenced by other settings may break the application gateway. * @param name the name of the URL path map to remove (case sensitive) * @return the next stage of the update */
@Beta(SinceVersion.V1_11_0) Update withoutUrlPathMap(String name);
Begins the update of a URL path map.
Params:
  • name – the name of an existing redirect configuration to update (case sensitive)
Returns:the next stage of the definition or null if the requested URL path map does not exist
/** * Begins the update of a URL path map. * @param name the name of an existing redirect configuration to update (case sensitive) * @return the next stage of the definition or null if the requested URL path map does not exist */
@Beta(SinceVersion.V1_11_0) ApplicationGatewayUrlPathMap.Update updateUrlPathMap(String name); }
The stage of an application gateway update allowing to modify backend HTTP configurations.
/** * The stage of an application gateway update allowing to modify backend HTTP configurations. */
interface WithBackendHttpConfig {
Begins the definition of a new application gateway backend HTTP configuration to be attached to the gateway.
Params:
  • name – a unique name for the backend HTTP configuration
Returns:the first stage of the backend HTTP configuration definition
/** * Begins the definition of a new application gateway backend HTTP configuration to be attached to the gateway. * @param name a unique name for the backend HTTP configuration * @return the first stage of the backend HTTP configuration definition */
ApplicationGatewayBackendHttpConfiguration.UpdateDefinitionStages.Blank<Update> defineBackendHttpConfiguration(String name);
Removes the specified backend HTTP configuration from this application gateway.

Note that removing a backend HTTP configuration referenced by other settings may break the application gateway.

Params:
  • name – the name of an existing backend HTTP configuration on this application gateway
Returns:the next stage of the update
/** * Removes the specified backend HTTP configuration from this application gateway. * <p> * Note that removing a backend HTTP configuration referenced by other settings may break the application gateway. * @param name the name of an existing backend HTTP configuration on this application gateway * @return the next stage of the update */
Update withoutBackendHttpConfiguration(String name);
Begins the update of a backend HTTP configuration.
Params:
  • name – the name of an existing backend HTTP configuration on this application gateway
Returns:the next stage of the update
/** * Begins the update of a backend HTTP configuration. * @param name the name of an existing backend HTTP configuration on this application gateway * @return the next stage of the update */
ApplicationGatewayBackendHttpConfiguration.Update updateBackendHttpConfiguration(String name); }
The stage of an application gateway update allowing to modify request routing rules.
/** * The stage of an application gateway update allowing to modify request routing rules. */
interface WithRequestRoutingRule {
Begins the definition of a request routing rule for this application gateway.
Params:
  • name – a unique name for the request routing rule
Returns:the first stage of the request routing rule
/** * Begins the definition of a request routing rule for this application gateway. * @param name a unique name for the request routing rule * @return the first stage of the request routing rule */
ApplicationGatewayRequestRoutingRule.UpdateDefinitionStages.Blank<Update> defineRequestRoutingRule(String name);
Removes a request routing rule from the application gateway.
Params:
  • name – the name of the request routing rule to remove
Returns:the next stage of the update
/** * Removes a request routing rule from the application gateway. * @param name the name of the request routing rule to remove * @return the next stage of the update */
Update withoutRequestRoutingRule(String name);
Begins the update of a request routing rule.
Params:
  • name – the name of an existing request routing rule
Returns:the first stage of a request routing rule update or null if the requested rule does not exist
/** * Begins the update of a request routing rule. * @param name the name of an existing request routing rule * @return the first stage of a request routing rule update or null if the requested rule does not exist */
ApplicationGatewayRequestRoutingRule.Update updateRequestRoutingRule(String name);
Begins the definition of a new application gateway path-based request routing rule and URL path map to be attached to the gateway. Note: both will be created with the same name and attached to the gateway.
Params:
  • name – a unique name for the URL path map
Returns:the first stage of the URL path map definition
/** * Begins the definition of a new application gateway path-based request routing rule and URL path map to be attached to the gateway. * Note: both will be created with the same name and attached to the gateway. * @param name a unique name for the URL path map * @return the first stage of the URL path map definition */
@Beta(SinceVersion.V1_11_0) ApplicationGatewayUrlPathMap.UpdateDefinitionStages.Blank<Update> definePathBasedRoutingRule(String name); }
The stage of an application gateway update allowing to specify Managed Service Identities.
/** * The stage of an application gateway update allowing to specify Managed Service Identities. */
interface WithManagedServiceIdentity {
Specifies an identity to be associated with the application gateway.
Params:
  • identity – the identity
Returns:the next stage of the update
/** * Specifies an identity to be associated with the application gateway. * * @param identity the identity * @return the next stage of the update */
Update withIdentity(ManagedServiceIdentity identity); }
The stage of an application gateway definition allowing to specify the SSL protocols to disable.
/** * The stage of an application gateway definition allowing to specify the SSL protocols to disable. */
interface WithDisabledSslProtocol {
Disables the specified SSL protocol.
Params:
  • protocol – an SSL protocol
Returns:the next stage of the update
/** * Disables the specified SSL protocol. * @param protocol an SSL protocol * @return the next stage of the update */
@Beta(SinceVersion.V1_1_0) Update withDisabledSslProtocol(ApplicationGatewaySslProtocol protocol);
Disables the specified SSL protocols.
Params:
  • protocols – SSL protocols
Returns:the next stage of the update
/** * Disables the specified SSL protocols. * @param protocols SSL protocols * @return the next stage of the update */
@Beta(SinceVersion.V1_1_0) Update withDisabledSslProtocols(ApplicationGatewaySslProtocol...protocols);
Enables the specified SSL protocol, if previously disabled.
Params:
  • protocol – an SSL protocol
Returns:the next stage of the update
/** * Enables the specified SSL protocol, if previously disabled. * @param protocol an SSL protocol * @return the next stage of the update */
@Beta(SinceVersion.V1_1_0) Update withoutDisabledSslProtocol(ApplicationGatewaySslProtocol protocol);
Enables the specified SSL protocols, if previously disabled.
Params:
  • protocols – SSL protocols
Returns:the next stage of the update
/** * Enables the specified SSL protocols, if previously disabled. * @param protocols SSL protocols * @return the next stage of the update */
@Beta(SinceVersion.V1_1_0) Update withoutDisabledSslProtocols(ApplicationGatewaySslProtocol...protocols);
Enables all SSL protocols, if previously disabled.
Returns:the next stage of the update
/** * Enables all SSL protocols, if previously disabled. * @return the next stage of the update */
@Beta(SinceVersion.V1_1_0) @Method Update withoutAnyDisabledSslProtocols(); }
The stage of the application gateway update allowing to specify whether HTTP2 is enabled on the application gateway.
/** * The stage of the application gateway update allowing to specify whether HTTP2 is enabled on the application gateway. */
@Beta(SinceVersion.V1_14_0) interface WithHttp2 {
Enables HTTP2 for the application gateway.
Returns:the next stage of the update
/** * Enables HTTP2 for the application gateway. * @return the next stage of the update */
@Beta(SinceVersion.V1_14_0) Update withHttp2();
Disables HTTP2 for the application gateway.
Returns:the next stage of the update
/** * Disables HTTP2 for the application gateway. * @return the next stage of the update */
@Beta(SinceVersion.V1_14_0) Update withoutHttp2(); } }
The template for an application gateway update operation, containing all the settings that can be modified.
/** * The template for an application gateway update operation, containing all the settings that * can be modified. */
interface Update extends Appliable<ApplicationGateway>, Resource.UpdateWithTags<Update>, UpdateStages.WithSku, UpdateStages.WithInstanceCount, UpdateStages.WithWebApplicationFirewall, UpdateStages.WithBackend, UpdateStages.WithBackendHttpConfig, UpdateStages.WithIPConfig, UpdateStages.WithFrontend, UpdateStages.WithPublicIPAddress, UpdateStages.WithFrontendPort, UpdateStages.WithSslCert, UpdateStages.WithListener, UpdateStages.WithRequestRoutingRule, UpdateStages.WithExistingSubnet, UpdateStages.WithProbe, UpdateStages.WithDisabledSslProtocol, UpdateStages.WithAuthenticationCertificate, UpdateStages.WithRedirectConfiguration, UpdateStages.WithUrlPathMap, UpdateStages.WithManagedServiceIdentity, UpdateStages.WithHttp2 { } }