Interface DeploymentSlot.DefinitionStages.WithConfiguration
-
- All Known Subinterfaces:
DeploymentSlot.Definition,DeploymentSlot.DefinitionStages.Blank
- Enclosing interface:
- DeploymentSlot.DefinitionStages
public static interface DeploymentSlot.DefinitionStages.WithConfigurationA deployment slot definition allowing the configuration to clone from to be specified.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeploymentSlot.DefinitionStages.WithCreatewithBrandNewConfiguration()Creates the deployment slot with brand new site configurations.DeploymentSlot.DefinitionStages.WithCreatewithConfigurationFromDeploymentSlot(DeploymentSlot deploymentSlot)Copies the site configurations from a given deployment slot.DeploymentSlot.DefinitionStages.WithCreatewithConfigurationFromParent()Copies the site configurations from the web app the deployment slot belongs to.DeploymentSlot.DefinitionStages.WithCreatewithConfigurationFromWebApp(WebApp webApp)Copies the site configurations from a given web app.
-
-
-
Method Detail
-
withBrandNewConfiguration
DeploymentSlot.DefinitionStages.WithCreate withBrandNewConfiguration()
Creates the deployment slot with brand new site configurations.- Returns:
- the next stage of the definition
-
withConfigurationFromParent
DeploymentSlot.DefinitionStages.WithCreate withConfigurationFromParent()
Copies the site configurations from the web app the deployment slot belongs to.- Returns:
- the next stage of the definition
-
withConfigurationFromWebApp
DeploymentSlot.DefinitionStages.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
-
withConfigurationFromDeploymentSlot
DeploymentSlot.DefinitionStages.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
-
-