Delen via


StaticSiteBuildProperties Constructors

Definition

Overloads

StaticSiteBuildProperties()

Initializes a new instance of the StaticSiteBuildProperties class.

StaticSiteBuildProperties(String, String, String, String, String, String, Nullable<Boolean>, String)

Initializes a new instance of the StaticSiteBuildProperties class.

StaticSiteBuildProperties()

Initializes a new instance of the StaticSiteBuildProperties class.

public StaticSiteBuildProperties ();
Public Sub New ()

Applies to

StaticSiteBuildProperties(String, String, String, String, String, String, Nullable<Boolean>, String)

Initializes a new instance of the StaticSiteBuildProperties class.

public StaticSiteBuildProperties (string appLocation = default, string apiLocation = default, string appArtifactLocation = default, string outputLocation = default, string appBuildCommand = default, string apiBuildCommand = default, bool? skipGithubActionWorkflowGeneration = default, string githubActionSecretNameOverride = default);
new Microsoft.Azure.Management.WebSites.Models.StaticSiteBuildProperties : string * string * string * string * string * string * Nullable<bool> * string -> Microsoft.Azure.Management.WebSites.Models.StaticSiteBuildProperties
Public Sub New (Optional appLocation As String = Nothing, Optional apiLocation As String = Nothing, Optional appArtifactLocation As String = Nothing, Optional outputLocation As String = Nothing, Optional appBuildCommand As String = Nothing, Optional apiBuildCommand As String = Nothing, Optional skipGithubActionWorkflowGeneration As Nullable(Of Boolean) = Nothing, Optional githubActionSecretNameOverride As String = Nothing)

Parameters

appLocation
String

The path to the app code within the repository.

apiLocation
String

The path to the api code within the repository.

appArtifactLocation
String

Deprecated: The path of the app artifacts after building (deprecated in favor of OutputLocation)

outputLocation
String

The output path of the app after building.

appBuildCommand
String

A custom command to run during deployment of the static content application.

apiBuildCommand
String

A custom command to run during deployment of the Azure Functions API application.

skipGithubActionWorkflowGeneration
Nullable<Boolean>

Skip Github Action workflow generation.

githubActionSecretNameOverride
String

Github Action secret name override.

Applies to