Table of Contents

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

configuration string

Build configuration (e.g., "Release", "Debug").

Returns

FunctionsDeployOptions

WithDeploymentSlot(string)

Sets the deployment slot for the function app.

public FunctionsDeployOptions WithDeploymentSlot(string slot)

Parameters

slot string

Deployment slot name (e.g., "staging", "preview"). If not specified, deploys to the production slot.

Returns

FunctionsDeployOptions

WithForceRestart()

Forces a restart of the function app after deployment.

public FunctionsDeployOptions WithForceRestart()

Returns

FunctionsDeployOptions

WithNoWait()

Don't wait for deployment to complete (async deployment).

public FunctionsDeployOptions WithNoWait()

Returns

FunctionsDeployOptions