FunctionAppRuntimeSettings Constructors

Definition

Overloads

FunctionAppRuntimeSettings()

Initializes a new instance of the FunctionAppRuntimeSettings class.

FunctionAppRuntimeSettings(String, Nullable<Boolean>, AppInsightsWebAppStackSettings, GitHubActionWebAppStackSettings, IDictionary<String,String>, SiteConfigPropertiesDictionary, IList<String>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<DateTime>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the FunctionAppRuntimeSettings class.

FunctionAppRuntimeSettings()

Initializes a new instance of the FunctionAppRuntimeSettings class.

public FunctionAppRuntimeSettings ();
Public Sub New ()

Applies to

FunctionAppRuntimeSettings(String, Nullable<Boolean>, AppInsightsWebAppStackSettings, GitHubActionWebAppStackSettings, IDictionary<String,String>, SiteConfigPropertiesDictionary, IList<String>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<DateTime>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the FunctionAppRuntimeSettings class.

public FunctionAppRuntimeSettings (string runtimeVersion = default, bool? remoteDebuggingSupported = default, Microsoft.Azure.Management.WebSites.Models.AppInsightsWebAppStackSettings appInsightsSettings = default, Microsoft.Azure.Management.WebSites.Models.GitHubActionWebAppStackSettings gitHubActionSettings = default, System.Collections.Generic.IDictionary<string,string> appSettingsDictionary = default, Microsoft.Azure.Management.WebSites.Models.SiteConfigPropertiesDictionary siteConfigPropertiesDictionary = default, System.Collections.Generic.IList<string> supportedFunctionsExtensionVersions = default, bool? isPreview = default, bool? isDeprecated = default, bool? isHidden = default, DateTime? endOfLifeDate = default, bool? isAutoUpdate = default, bool? isEarlyAccess = default, bool? isDefault = default);
new Microsoft.Azure.Management.WebSites.Models.FunctionAppRuntimeSettings : string * Nullable<bool> * Microsoft.Azure.Management.WebSites.Models.AppInsightsWebAppStackSettings * Microsoft.Azure.Management.WebSites.Models.GitHubActionWebAppStackSettings * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.WebSites.Models.SiteConfigPropertiesDictionary * System.Collections.Generic.IList<string> * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<DateTime> * Nullable<bool> * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.WebSites.Models.FunctionAppRuntimeSettings
Public Sub New (Optional runtimeVersion As String = Nothing, Optional remoteDebuggingSupported As Nullable(Of Boolean) = Nothing, Optional appInsightsSettings As AppInsightsWebAppStackSettings = Nothing, Optional gitHubActionSettings As GitHubActionWebAppStackSettings = Nothing, Optional appSettingsDictionary As IDictionary(Of String, String) = Nothing, Optional siteConfigPropertiesDictionary As SiteConfigPropertiesDictionary = Nothing, Optional supportedFunctionsExtensionVersions As IList(Of String) = Nothing, Optional isPreview As Nullable(Of Boolean) = Nothing, Optional isDeprecated As Nullable(Of Boolean) = Nothing, Optional isHidden As Nullable(Of Boolean) = Nothing, Optional endOfLifeDate As Nullable(Of DateTime) = Nothing, Optional isAutoUpdate As Nullable(Of Boolean) = Nothing, Optional isEarlyAccess As Nullable(Of Boolean) = Nothing, Optional isDefault As Nullable(Of Boolean) = Nothing)

Parameters

runtimeVersion
String

Function App stack minor version (runtime only).

remoteDebuggingSupported
Nullable<Boolean>

<code>true</code> if remote debugging is supported for the stack; otherwise, <code>false</code>.

appInsightsSettings
AppInsightsWebAppStackSettings

Application Insights settings associated with the minor version.

gitHubActionSettings
GitHubActionWebAppStackSettings

GitHub Actions settings associated with the minor version.

appSettingsDictionary
IDictionary<String,String>

Application settings associated with the minor version.

siteConfigPropertiesDictionary
SiteConfigPropertiesDictionary

Configuration settings associated with the minor version.

supportedFunctionsExtensionVersions
IList<String>

List of supported Functions extension versions.

isPreview
Nullable<Boolean>

<code>true</code> if the stack is in preview; otherwise, <code>false</code>.

isDeprecated
Nullable<Boolean>

<code>true</code> if the stack is deprecated; otherwise, <code>false</code>.

isHidden
Nullable<Boolean>

<code>true</code> if the stack should be hidden; otherwise, <code>false</code>.

endOfLifeDate
Nullable<DateTime>

End-of-life date for the minor version.

isAutoUpdate
Nullable<Boolean>

<code>true</code> if the stack version is auto-updated; otherwise, <code>false</code>.

isEarlyAccess
Nullable<Boolean>

<code>true</code> if the minor version is early-access; otherwise, <code>false</code>.

isDefault
Nullable<Boolean>

<code>true</code> if the minor version the default; otherwise, <code>false</code>.

Applies to