WebAppRuntimeSettings Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
WebAppRuntimeSettings() |
Initializes a new instance of the WebAppRuntimeSettings class. |
WebAppRuntimeSettings(String, Nullable<Boolean>, AppInsightsWebAppStackSettings, GitHubActionWebAppStackSettings, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<DateTime>, Nullable<Boolean>, Nullable<Boolean>) |
Initializes a new instance of the WebAppRuntimeSettings class. |
WebAppRuntimeSettings()
Initializes a new instance of the WebAppRuntimeSettings class.
public WebAppRuntimeSettings ();
Public Sub New ()
Applies to
WebAppRuntimeSettings(String, Nullable<Boolean>, AppInsightsWebAppStackSettings, GitHubActionWebAppStackSettings, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<DateTime>, Nullable<Boolean>, Nullable<Boolean>)
Initializes a new instance of the WebAppRuntimeSettings class.
public WebAppRuntimeSettings (string runtimeVersion = default, bool? remoteDebuggingSupported = default, Microsoft.Azure.Management.WebSites.Models.AppInsightsWebAppStackSettings appInsightsSettings = default, Microsoft.Azure.Management.WebSites.Models.GitHubActionWebAppStackSettings gitHubActionSettings = default, bool? isPreview = default, bool? isDeprecated = default, bool? isHidden = default, DateTime? endOfLifeDate = default, bool? isAutoUpdate = default, bool? isEarlyAccess = default);
new Microsoft.Azure.Management.WebSites.Models.WebAppRuntimeSettings : string * Nullable<bool> * Microsoft.Azure.Management.WebSites.Models.AppInsightsWebAppStackSettings * Microsoft.Azure.Management.WebSites.Models.GitHubActionWebAppStackSettings * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<DateTime> * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.WebSites.Models.WebAppRuntimeSettings
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 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)
Parameters
- runtimeVersion
- String
Web App stack minor version (runtime only).
<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.
<code>true</code> if the stack is in preview; otherwise, <code>false</code>.
<code>true</code> if the stack is deprecated; otherwise, <code>false</code>.
<code>true</code> if the stack should be hidden; otherwise, <code>false</code>.
<code>true</code> if the stack version is auto-updated; otherwise, <code>false</code>.
<code>true</code> if the minor version is early-access; otherwise, <code>false</code>.
Applies to
Azure SDK for .NET