com.microsoft.azure.management.network.LoadBalancerPublicFrontend Maven / Gradle / Ivy
Show all versions of azure-mgmt-network Show documentation
/**
* 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.Fluent;
import com.microsoft.azure.management.network.model.HasPublicIPAddress;
import com.microsoft.azure.management.resources.fluentcore.model.Attachable;
import com.microsoft.azure.management.resources.fluentcore.model.Settable;
/**
* A client-side representation of a public frontend of an Internet-facing load balancer.
*/
@Fluent()
@Beta
public interface LoadBalancerPublicFrontend extends
LoadBalancerFrontend,
HasPublicIPAddress {
/**
* Grouping of public frontend definition stages.
*/
interface DefinitionStages {
/**
* The first stage of a public frontend definition.
* @param the stage of the parent definition to return to after attaching this definition
*/
interface Blank extends WithPublicIPAddress {
}
/**
* The stage of a public frontend definition allowing to specify an existing public IP address.
* @param the stage of the parent definition to return to after attaching this definition
*/
interface WithPublicIPAddress extends HasPublicIPAddress.DefinitionStages.WithPublicIPAddress> {
}
/**
* The final stage of a public frontend definition.
*
* At this stage, any remaining optional settings can be specified, or the frontend definition
* can be attached to the parent load balancer definition.
* @param the stage of the parent definition to return to after attaching this definition
*/
interface WithAttach extends
Attachable.InDefinition {
}
}
/** The entirety of a public frontend definition.
* @param the stage of the parent definition to return to after attaching this definition
*/
interface Definition extends
DefinitionStages.Blank,
DefinitionStages.WithAttach,
DefinitionStages.WithPublicIPAddress {
}
/**
* Grouping of public frontend update stages.
*/
interface UpdateStages {
/**
* The stage of a public frontend update allowing to specify an existing public IP address.
*/
interface WithPublicIPAddress extends HasPublicIPAddress.UpdateStages.WithPublicIPAddress {
}
}
/**
* The entirety of a public frontend update as part of an Internet-facing load balancer update.
*/
interface Update extends
Settable,
UpdateStages.WithPublicIPAddress {
}
/**
* Grouping of public frontend definition stages applicable as part of an Internet-facing load balancer update.
*/
interface UpdateDefinitionStages {
/**
* The first stage of a public frontend definition.
* @param the stage of the parent definition to return to after attaching this definition
*/
interface Blank extends WithPublicIPAddress {
}
/**
* The stage of a public frontend definition allowing to specify an existing public IP address.
* @param the stage of the parent definition to return to after attaching this definition
*/
interface WithPublicIPAddress extends HasPublicIPAddress.UpdateDefinitionStages.WithPublicIPAddress> {
}
/** The final stage of the public frontend definition.
*
* At this stage, any remaining optional settings can be specified, or the frontend definition
* can be attached to the parent load balancer definition.
* @param the stage of the parent definition to return to after attaching this definition
*/
interface WithAttach extends
Attachable.InUpdate {
}
}
/** The entirety of a public frontend definition as part of an Internet-facing load balancer update.
* @param the stage of the parent definition to return to after attaching this definition
*/
interface UpdateDefinition extends
UpdateDefinitionStages.Blank,
UpdateDefinitionStages.WithAttach,
UpdateDefinitionStages.WithPublicIPAddress {
}
}