All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.management.network.ApplicationGatewayUrlPathMap Maven / Gradle / Ivy

There is a newer version: 1.41.4
Show newest version
/**
 * 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 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.network.implementation.ApplicationGatewayUrlPathMapInner;
import com.microsoft.azure.management.resources.fluentcore.arm.models.ChildResource;
import com.microsoft.azure.management.resources.fluentcore.model.Attachable;
import com.microsoft.azure.management.resources.fluentcore.model.Settable;
import com.microsoft.azure.management.resources.fluentcore.model.HasInner;

import java.util.Map;

/**
 * A client-side representation of an application gateway's URL path map.
 */
@Fluent
@Beta(SinceVersion.V1_10_0)
public interface ApplicationGatewayUrlPathMap extends
    HasInner,
    ChildResource {

    /**
     * @return default backend address pool
     */
    ApplicationGatewayBackend defaultBackend();

    /**
     * @return default backend HTTP settings configuration
     */
    ApplicationGatewayBackendHttpConfiguration defaultBackendHttpConfiguration();

    /**
     * @return default redirect configuration
     */
    ApplicationGatewayRedirectConfiguration defaultRedirectConfiguration();

    /**
     * @return path rules of URL path map resource
     */
    Map pathRules();

    /**
     * Grouping of application gateway URL path map definition stages.
     */
    interface DefinitionStages {
        /**
         * The first stage of an application gateway URL path map definition.
         * @param  the stage of the parent application gateway definition to return to after attaching this definition
         */
        interface Blank extends WithListener {
        }

        /**
         * The stage of an application gateway URL path map definition allowing to specify an existing listener to
         * associate the URL path map with.
         * @param  the stage of the application gateway definition to return to after attaching this definition
         */
        interface WithListener {
            /**
             * Associates the application gateway URL path map with a frontend listener.
             * 

* If the listener with the specified name does not yet exist, it must be defined separately in the optional stages * of the application gateway definition. This only adds a reference to the listener by its name. *

* Also, note that a given listener can be used by no more than one request routing rule at a time. * @param name the name of a listener to reference * @return the next stage of the definition */ WithBackendHttpConfiguration fromListener(String name); } /** * The stage of an application gateway URL path map definition allowing to specify the backend HTTP settings configuration * to associate the routing rule with. * @param the stage of the application gateway definition to return to after attaching this definition */ interface WithBackendHttpConfiguration { /** * Associates the specified backend HTTP settings configuration with this application gateway URL path map. *

* If the backend configuration does not exist yet, it must be defined in the optional part of the application gateway * definition. The request routing rule references it only by name. * @param name the name of a backend HTTP settings configuration * @return the next stage of the definition */ WithBackend toBackendHttpConfiguration(String name); /** * Creates a backend HTTP settings configuration for the specified backend port and the HTTP protocol, and associates it with this * URL path map. *

* An auto-generated name will be used for this newly created configuration. * @param portNumber the port number for a new backend HTTP settings configuration * @return the next stage of the definition */ WithBackend toBackendHttpPort(int portNumber); } /** * The stage of an application gateway URL path map definition allowing to specify the backend to associate the URL path map with. * @param the stage of the application gateway definition to return to after attaching this definition */ interface WithBackend { /** * Associates the URL path map with a backend on this application gateway. *

* If the backend does not yet exist, it will be automatically created. * @param name the name of an existing backend * @return the next stage of the definition */ WithPathRule toBackend(String name); } /** * The stage of an application gateway URL path map definition allowing to associate the URL path map with a redirect configuration. * @param the stage of the application gateway definition to return to after attaching this definition */ interface WithRedirectConfig { /** * Associates the specified redirect configuration with this URL path map. * @param name the name of a redirect configuration on this application gateway * @return the next stage of the definition */ WithAttach withRedirectConfiguration(String name); } /** * The stage of an application gateway URL path map definition allowing to specify path rules. * @param the stage of the application gateway definition to return to after attaching this definition */ interface WithPathRule { /** * Begins the definition of path rule. * @param name name of the path rule * @return next stage of the path rule definition */ ApplicationGatewayPathRule.DefinitionStages.Blank> definePathRule(String name); } /** * The final stage of an application gateway URL path map definition. *

* At this stage, any remaining optional settings can be specified, or the definition * can be attached to the parent application gateway definition. * @param the stage of the parent application gateway definition to return to after attaching this definition */ interface WithAttach extends Attachable.InDefinition, WithPathRule, WithRedirectConfig { } } /** The entirety of an application gateway URL path map definition. * @param the stage of the parent application gateway definition to return to after attaching this definition */ interface Definition extends DefinitionStages.Blank, DefinitionStages.WithBackendHttpConfiguration, DefinitionStages.WithBackend, DefinitionStages.WithPathRule, DefinitionStages.WithAttach { } /** * The entirety of an application gateway URL path map update as part of an application gateway update. */ interface Update extends Settable { } /** * Grouping of application gateway URL path map definition stages applicable as part of an application gateway update. */ interface UpdateDefinitionStages { /** * The first stage of an application gateway URL path map definition. * @param the stage of the parent application gateway definition to return to after attaching this definition */ interface Blank extends WithListener { } /** * The stage of an application gateway URL path map definition allowing to specify an existing listener to * associate the URL path map with. * @param the stage of the application gateway definition to return to after attaching this definition */ interface WithListener { /** * Associates the URL path map with a frontend listener. *

* If the listener with the specified name does not yet exist, it must be defined separately in the optional stages * of the application gateway definition. This only adds a reference to the listener by its name. *

* Also, note that a given listener can be used by no more than one request routing rule at a time. * @param name the name of a listener to reference * @return the next stage of the definition */ WithBackendHttpConfiguration fromListener(String name); } /** * The stage of an application gateway URL path map definition allowing to specify the backend HTTP settings configuration * to associate the URL path map with. * @param the stage of the application gateway definition to return to after attaching this definition */ interface WithBackendHttpConfiguration { /** * Associates the specified backend HTTP settings configuration with this URL path map. *

* If the backend configuration does not exist yet, it must be defined in the optional part of the application gateway * definition. The URL path map references it only by name. * @param name the name of a backend HTTP settings configuration * @return the next stage of the definition */ WithBackend toBackendHttpConfiguration(String name); /** * Creates a backend HTTP settings configuration for the specified backend port and the HTTP protocol, and associates it with this * URL path map. *

* An auto-generated name will be used for this newly created configuration. * @param portNumber the port number for a new backend HTTP settings configuration * @return the next stage of the definition */ WithBackendOrAddress toBackendHttpPort(int portNumber); } /** * The stage of an application gateway URL path map definition allowing to add an address to specify an existing * backend to associate with this URL path map or create a new backend with an auto-generated name and addresses to it. * @param the stage of the application gateway definition to return to after attaching this definition */ interface WithBackendOrAddress extends WithBackend, WithBackendAddress { } /** * The stage of an application gateway URL path map definition allowing to add an address to the backend used by this URL path map. *

* A new backend will be created if none is associated with this rule yet. * @param the stage of the application gateway definition to return to after attaching this definition */ interface WithBackendAddress { /** * Adds an IP address to the backend associated with this URL path map. *

* If no backend has been associated with this URL path map yet, a new one will be created with an auto-generated name. *

* This call can be used in a sequence to add multiple IP addresses. * @param ipAddress an IP address * @return the next stage of the definition */ WithBackendAddressOrPath toBackendIPAddress(String ipAddress); /** * Adds the specified IP addresses to the backend associated with this URL path map. * @param ipAddresses IP addresses to add * @return the next stage of the definition */ WithBackendAddressOrPath toBackendIPAddresses(String...ipAddresses); /** * Adds an FQDN (fully qualified domain name) to the backend associated with this URL path map. *

* If no backend has been associated with this URL path map yet, a new one will be created with an auto-generated name. *

* This call can be used in a sequence to add multiple FQDNs. * @param fqdn a fully qualified domain name * @return the next stage of the definition */ WithBackendAddressOrPath toBackendFqdn(String fqdn); } /** * The stage of an application gateway URL path map definition allowing to add more backend addresses, * start specifying optional settings, or finish the definition by attaching it to the parent application gateway. * @param the stage of the application gateway definition to return to after attaching this definition */ interface WithBackendAddressOrPath extends WithBackendAddress, WithPathRule { } /** * The stage of an application gateway URL path map definition allowing to specify the backend to associate the URL path map with. * @param the stage of the application gateway definition to return to after attaching this definition */ interface WithBackend { /** * Associates the URL path map with a backend on this application gateway. *

* If the backend does not yet exist, it will be automatically created. * @param name the name of an existing backend * @return the next stage of the definition */ WithPathRule toBackend(String name); } interface WithPathRule { ApplicationGatewayPathRule.UpdateDefinitionStages.Blank> definePathRule(String name); } /** * The stage of an application gateway URL path map definition allowing to associate the URL path map with a redirect configuration. * @param the stage of the application gateway definition to return to after attaching this definition */ interface WithRedirectConfig { /** * Associates the specified redirect configuration with this request routing rule. * @param name the name of a redirect configuration on this application gateway * @return the next stage of the definition */ WithAttach withRedirectConfiguration(String name); } /** The final stage of an application gateway URL path map definition. *

* At this stage, any remaining optional settings can be specified, or the definition * can be attached to the parent application gateway definition. * @param the stage of the parent application gateway definition to return to after attaching this definition */ interface WithAttach extends Attachable.InDefinitionAlt, WithPathRule, WithRedirectConfig { } } /** The entirety of an application gateway URL path map definition as part of an application gateway update. * @param the stage of the parent application gateway definition to return to after attaching this definition */ interface UpdateDefinition extends UpdateDefinitionStages.Blank, UpdateDefinitionStages.WithBackendOrAddress, UpdateDefinitionStages.WithBackendHttpConfiguration, UpdateDefinitionStages.WithBackendAddressOrPath, UpdateDefinitionStages.WithPathRule, UpdateDefinitionStages.WithAttach { } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy