StackMajorVersion Constructors

Definition

Overloads

StackMajorVersion()

Initializes a new instance of the StackMajorVersion class.

StackMajorVersion(String, String, Nullable<Boolean>, IList<StackMinorVersion>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the StackMajorVersion class.

StackMajorVersion()

Initializes a new instance of the StackMajorVersion class.

public StackMajorVersion ();
Public Sub New ()

Applies to

StackMajorVersion(String, String, Nullable<Boolean>, IList<StackMinorVersion>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the StackMajorVersion class.

public StackMajorVersion (string displayVersion = default, string runtimeVersion = default, bool? isDefault = default, System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.StackMinorVersion> minorVersions = default, bool? applicationInsights = default, bool? isPreview = default, bool? isDeprecated = default, bool? isHidden = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.StackMajorVersion : string * string * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.StackMinorVersion> * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.AppService.Fluent.Models.StackMajorVersion
Public Sub New (Optional displayVersion As String = Nothing, Optional runtimeVersion As String = Nothing, Optional isDefault As Nullable(Of Boolean) = Nothing, Optional minorVersions As IList(Of StackMinorVersion) = Nothing, Optional applicationInsights As Nullable(Of Boolean) = Nothing, Optional isPreview As Nullable(Of Boolean) = Nothing, Optional isDeprecated As Nullable(Of Boolean) = Nothing, Optional isHidden As Nullable(Of Boolean) = Nothing)

Parameters

displayVersion
String

Application stack major version (display only).

runtimeVersion
String

Application stack major version (runtime only).

isDefault
Nullable<Boolean>

<code>true</code> if this is the default major version; otherwise, <code>false</code>.

minorVersions
IList<StackMinorVersion>

Minor versions associated with the major version.

applicationInsights
Nullable<Boolean>

<code>true</code> if this supports Application Insights; otherwise, <code>false</code>.

isPreview
Nullable<Boolean>

<code>true</code> if this stack is in Preview, otherwise <code>false</code>.

isDeprecated
Nullable<Boolean>

<code>true</code> if this stack has been deprecated, otherwise <code>false</code>.

isHidden
Nullable<Boolean>

<code>true</code> if this stack should be hidden for new customers on portal, otherwise <code>false</code>.

Applies to