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

com.microsoft.azure.management.network.VirtualNetworkGatewayIPConfiguration 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.apigeneration.Method;
import com.microsoft.azure.management.network.implementation.VirtualNetworkGatewayIPConfigurationInner;
import com.microsoft.azure.management.network.model.HasPublicIPAddress;
import com.microsoft.azure.management.resources.fluentcore.arm.models.ChildResource;
import com.microsoft.azure.management.resources.fluentcore.arm.models.HasSubnet;
import com.microsoft.azure.management.resources.fluentcore.model.Attachable;
import com.microsoft.azure.management.resources.fluentcore.model.HasInner;
import com.microsoft.azure.management.resources.fluentcore.model.Settable;

/**
 * A client-side representation of an virtual network gateway IP configuration.
 */
@Fluent
@Beta(SinceVersion.V1_3_0)
public interface VirtualNetworkGatewayIPConfiguration extends
        HasInner,
        ChildResource {
    /**
     * @return the resource ID of the virtual network the application gateway is in
     */
    String networkId();

    /**
     * @return the resource id of associated public IP address
     */
    String publicIPAddressId();

    /**
     * @return the name of the subnet the virtual network gateway is in
     */
    String subnetName();

    /**
     * @return the private IP allocation method. Possible values are: 'Static' and
     * 'Dynamic'.
     */
    IPAllocationMethod privateIPAllocationMethod();

    /**
     * @return the subnet the virtual network gateway is in
     * Note, this results in a separate call to Azure.
     */
    @Method
    Subnet getSubnet();

    /**
     * Grouping of virtual network gateway IP configuration definition stages.
     */
    interface DefinitionStages {
        /**
         * The first stage of an virtual network gateway IP configuration definition.
         * @param  the stage of the parent definition to return to after attaching this definition
         */
        interface Blank extends WithSubnet {
        }

        /**
         * The stage of virtual network gateway IP configuration definition allowing to specify the subnet the virtual network gateway is on.
         * @param  the stage of the virtual network gateway definition to return to after attaching this definition
         */
        interface WithSubnet extends HasSubnet.DefinitionStages.WithSubnet> {
            /**
             * Specifies an existing subnet the virtual network gateway should be part of and get its private IP address from.
             * @param subnet an existing subnet
             * @return the next stage of the definition
             */
            WithAttach withExistingSubnet(Subnet subnet);

            /**
             * Specifies an existing subnet the virtual network gateway should be part of and get its private IP address from.
             * @param network an existing virtual network
             * @param subnetName the name of a subnet within the selected network
             * @return the next stage of the definition
             */
            WithAttach withExistingSubnet(Network network, String subnetName);
        }

        /**
         * The stage of virtual network gateway frontend definition allowing to specify an existing public IP address to make
         * the virtual network gateway available at as Internet-facing.
         * @param  the stage of the parent virtual network gateway definition to return to after attaching this definition
         */
        interface WithPublicIPAddress extends HasPublicIPAddress.DefinitionStages.WithExistingPublicIPAddress> {
        }

        /** The final stage of the virtual network gateway IP configuration definition.
         * 

* At this stage, any remaining optional settings can be specified, or the definition * can be attached to the parent virtual network gateway definition. * @param the stage of the parent application gateway definition to return to after attaching this definition */ interface WithAttach extends Attachable.InDefinition { } } /** The entirety of virtual network gateway IP configuration definition. * @param the stage of the parent application gateway definition to return to after attaching this definition */ interface Definition extends DefinitionStages.Blank, DefinitionStages.WithAttach, DefinitionStages.WithPublicIPAddress { } /** * Grouping of application gateway IP configuration update stages. */ interface UpdateStages { } /** * The entirety of an application gateway IP configuration update as part of a virtual network gateway update. */ interface Update extends Settable { } /** * Grouping of application gateway IP configuration definition stages applicable as part of a virtual network gateway update. */ interface UpdateDefinitionStages { /** * The first stage of a virtual network gateway IP configuration definition. * @param the stage of the parent definition to return to after attaching this definition */ interface Blank { } /** The final stage of a virtual network gateway IP configuration 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.InUpdate { } } /** The entirety of an application gateway IP configuration definition as part of a virtual network gateway update. * @param the parent type */ interface UpdateDefinition extends UpdateDefinitionStages.Blank, UpdateDefinitionStages.WithAttach { } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy