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.appservice; import com.microsoft.azure.management.apigeneration.Beta; import com.microsoft.azure.management.apigeneration.Fluent; import com.microsoft.azure.management.appservice.implementation.AppServiceManager; import com.microsoft.azure.management.appservice.implementation.SiteInner; import com.microsoft.azure.management.resources.fluentcore.arm.models.HasParent; import com.microsoft.azure.management.resources.fluentcore.arm.models.IndependentChildResource; 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;
An immutable client-side representation of an Azure Function App deployment slot.
/** * An immutable client-side representation of an Azure Function App deployment slot. */
@Fluent(ContainerName = "/Microsoft.Azure.Management.AppService.Fluent") @Beta(Beta.SinceVersion.V1_3_0) public interface FunctionDeploymentSlot extends IndependentChildResource<AppServiceManager, SiteInner>, DeploymentSlotBase<FunctionDeploymentSlot>, Refreshable<FunctionDeploymentSlot>, Updatable<DeploymentSlotBase.Update<FunctionDeploymentSlot>>, HasParent<FunctionApp> { /************************************************************** * Fluent interfaces to provision a function deployment slot **************************************************************/
Container interface for all the definitions that need to be implemented.
/** * Container interface for all the definitions that need to be implemented. */
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithConfiguration, DefinitionStages.WithCreate { }
Grouping of all the function deployment slot definition stages.
/** * Grouping of all the function deployment slot definition stages. */
interface DefinitionStages {
The first stage of the function deployment slot definition.
/** * The first stage of the function deployment slot definition. */
interface Blank extends WithConfiguration { }
A function deployment slot definition allowing the configuration to clone from to be specified.
/** * A function deployment slot definition allowing the configuration to clone from to be specified. */
interface WithConfiguration {
Creates the function deployment slot with brand new site configurations.
Returns:the next stage of the definition
/** * Creates the function deployment slot with brand new site configurations. * * @return the next stage of the definition */
@Deprecated WithCreate withBrandNewConfiguration();
Copies the site configurations from the web app the function deployment slot belongs to.
Returns:the next stage of the definition
/** * Copies the site configurations from the web app the function deployment slot belongs to. * * @return the next stage of the definition */
WithCreate withConfigurationFromParent();
Copies the site configurations from a given function app.
Params:
  • app – the function app to copy the configurations from
Returns:the next stage of the definition
/** * Copies the site configurations from a given function app. * * @param app the function app to copy the configurations from * @return the next stage of the definition */
WithCreate withConfigurationFromFunctionApp(FunctionApp app);
Copies the site configurations from a givenfunction deployment slot.
Params:
  • deploymentSlot – the function deployment slot to copy the configurations from
Returns:the next stage of the definition
/** * Copies the site configurations from a givenfunction deployment slot. * * @param deploymentSlot the function deployment slot to copy the configurations from * @return the next stage of the definition */
WithCreate withConfigurationFromDeploymentSlot(FunctionDeploymentSlot deploymentSlot); }
A site definition with sufficient inputs to create a new web app / deployments slot in the cloud, but exposing additional optional inputs to specify.
/** * A site definition with sufficient inputs to create a new web app / * deployments slot in the cloud, but exposing additional optional * inputs to specify. */
interface WithCreate extends Creatable<FunctionDeploymentSlot>, WebAppBase.DefinitionStages.WithCreate<FunctionDeploymentSlot> { } } }