WindowsJavaContainerSettings Constructors

Definition

Overloads

WindowsJavaContainerSettings()

Initializes a new instance of the WindowsJavaContainerSettings class.

WindowsJavaContainerSettings(String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<DateTime>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the WindowsJavaContainerSettings class.

WindowsJavaContainerSettings()

Initializes a new instance of the WindowsJavaContainerSettings class.

public WindowsJavaContainerSettings ();
Public Sub New ()

Applies to

WindowsJavaContainerSettings(String, String, Nullable<Boolean>, Nullable<Boolean>, Nullable<Boolean>, Nullable<DateTime>, Nullable<Boolean>, Nullable<Boolean>)

Initializes a new instance of the WindowsJavaContainerSettings class.

public WindowsJavaContainerSettings (string javaContainer = default, string javaContainerVersion = 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.WindowsJavaContainerSettings : string * string * Nullable<bool> * Nullable<bool> * Nullable<bool> * Nullable<DateTime> * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.WebSites.Models.WindowsJavaContainerSettings
Public Sub New (Optional javaContainer As String = Nothing, Optional javaContainerVersion As 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)

Parameters

javaContainer
String

Java container (runtime only).

javaContainerVersion
String

Java container version (runtime only).

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>.

Applies to