你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DeploymentSlot.DefinitionStages.WithConfiguration Interface

public interface WithConfiguration

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

Method Summary

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

Creates the deployment slot with brand new site configurations.

DeploymentSlot.DefinitionStages.WithCreate withConfigurationFromDeploymentSlot(DeploymentSlot deploymentSlot)

Copies the site configurations from a given deployment slot.

DeploymentSlot.DefinitionStages.WithCreate withConfigurationFromParent()

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

DeploymentSlot.DefinitionStages.WithCreate withConfigurationFromWebApp(WebApp webApp)

Copies the site configurations from a given web app.

Method Details

withBrandNewConfiguration

public WithCreate withBrandNewConfiguration()

Creates the deployment slot with brand new site configurations.

Returns:

the next stage of the definition

withConfigurationFromDeploymentSlot

public WithCreate withConfigurationFromDeploymentSlot(DeploymentSlot deploymentSlot)

Copies the site configurations from a given deployment slot.

Parameters:

deploymentSlot - the 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 deployment slot belongs to.

Returns:

the next stage of the definition

withConfigurationFromWebApp

public WithCreate withConfigurationFromWebApp(WebApp webApp)

Copies the site configurations from a given web app.

Parameters:

webApp - the web app to copy the configurations from

Returns:

the next stage of the definition

Applies to