Class FunctionsDeployOptions
- Namespace
- Ando.Operations
- Assembly
- ando.dll
Fluent options for configuring Azure Functions deployments.
public class FunctionsDeployOptions
- Inheritance
-
FunctionsDeployOptions
- Inherited Members
Methods
WithConfiguration(string)
Sets the build configuration for publishing.
public FunctionsDeployOptions WithConfiguration(string configuration)
Parameters
configurationstringBuild configuration (e.g., "Release", "Debug").
Returns
WithDeploymentSlot(string)
Sets the deployment slot for the function app.
public FunctionsDeployOptions WithDeploymentSlot(string slot)
Parameters
slotstringDeployment slot name (e.g., "staging", "preview"). If not specified, deploys to the production slot.
Returns
WithForceRestart()
Forces a restart of the function app after deployment.
public FunctionsDeployOptions WithForceRestart()
Returns
WithNoWait()
Don't wait for deployment to complete (async deployment).
public FunctionsDeployOptions WithNoWait()