FunctionDeploymentSlot.DefinitionStages.WithConfiguration Interface

public interface WithConfiguration

A function deployment slot definition allowing the configuration to clone from to be specified.

Method Summary

Modifier and Type Method and Description
FunctionDeploymentSlot.DefinitionStages.WithCreate withBrandNewConfiguration()

Creates the function deployment slot with brand new site configurations.

FunctionDeploymentSlot.DefinitionStages.WithCreate withConfigurationFromDeploymentSlot(FunctionDeploymentSlot deploymentSlot)

Copies the site configurations from a givenfunction deployment slot.

FunctionDeploymentSlot.DefinitionStages.WithCreate withConfigurationFromParent()

Copies the site configurations from the web app the function deployment slot belongs to.

FunctionDeploymentSlot.DefinitionStages.WithCreate withConfigurationFromWebApp(FunctionApp app)

Copies the site configurations from a given web app.

Method Details

withBrandNewConfiguration

public WithCreate withBrandNewConfiguration()

Creates the function deployment slot with brand new site configurations.

Returns:

the next stage of the definition

withConfigurationFromDeploymentSlot

public WithCreate withConfigurationFromDeploymentSlot(FunctionDeploymentSlot deploymentSlot)

Copies the site configurations from a givenfunction deployment slot.

Parameters:

deploymentSlot - the function deployment slot to copy the configurations from

Returns:

the next stage of the definition

withConfigurationFromParent

public WithCreate withConfigurationFromParent()

Copies the site configurations from the web app the function deployment slot belongs to.

Returns:

the next stage of the definition

withConfigurationFromWebApp

public WithCreate withConfigurationFromWebApp(FunctionApp app)

Copies the site configurations from a given web app.

Parameters:

app - the function app to copy the configurations from

Returns:

the next stage of the definition

Applies to