Interface FunctionDeploymentSlot.DefinitionStages.WithConfiguration
-
- All Known Subinterfaces:
FunctionDeploymentSlot.Definition,FunctionDeploymentSlot.DefinitionStages.Blank
- Enclosing interface:
- FunctionDeploymentSlot.DefinitionStages
public static interface FunctionDeploymentSlot.DefinitionStages.WithConfigurationA function 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 FunctionDeploymentSlot.DefinitionStages.WithCreatewithBrandNewConfiguration()Creates the function deployment slot with brand new site configurations.FunctionDeploymentSlot.DefinitionStages.WithCreatewithConfigurationFromDeploymentSlot(FunctionDeploymentSlot deploymentSlot)Copies the site configurations from a givenfunction deployment slot.FunctionDeploymentSlot.DefinitionStages.WithCreatewithConfigurationFromFunctionApp(FunctionApp app)Copies the site configurations from a given function app.FunctionDeploymentSlot.DefinitionStages.WithCreatewithConfigurationFromParent()Copies the site configurations from the web app the function deployment slot belongs to.
-
-
-
Method Detail
-
withBrandNewConfiguration
FunctionDeploymentSlot.DefinitionStages.WithCreate withBrandNewConfiguration()
Creates the function deployment slot with brand new site configurations.- Returns:
- the next stage of the definition
-
withConfigurationFromParent
FunctionDeploymentSlot.DefinitionStages.WithCreate withConfigurationFromParent()
Copies the site configurations from the web app the function deployment slot belongs to.- Returns:
- the next stage of the definition
-
withConfigurationFromFunctionApp
FunctionDeploymentSlot.DefinitionStages.WithCreate withConfigurationFromFunctionApp(FunctionApp app)
Copies the site configurations from a given function app.- Parameters:
app- the function app to copy the configurations from- Returns:
- the next stage of the definition
-
withConfigurationFromDeploymentSlot
FunctionDeploymentSlot.DefinitionStages.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
-
-