다음을 통해 공유


OSVersionProperties Constructors

Definition

Overloads

OSVersionProperties()

Initializes a new instance of the OSVersionProperties class.

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

Initializes a new instance of the OSVersionProperties class.

OSVersionProperties()

Initializes a new instance of the OSVersionProperties class.

public OSVersionProperties ();
Public Sub New ()

Applies to

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

Initializes a new instance of the OSVersionProperties class.

public OSVersionProperties (string family = default, string familyLabel = default, string version = default, string label = default, bool? isDefault = default, bool? isActive = default);
new Microsoft.Azure.Management.Compute.Models.OSVersionProperties : string * string * string * string * Nullable<bool> * Nullable<bool> -> Microsoft.Azure.Management.Compute.Models.OSVersionProperties
Public Sub New (Optional family As String = Nothing, Optional familyLabel As String = Nothing, Optional version As String = Nothing, Optional label As String = Nothing, Optional isDefault As Nullable(Of Boolean) = Nothing, Optional isActive As Nullable(Of Boolean) = Nothing)

Parameters

family
String

The family of this OS version.

familyLabel
String

The family label of this OS version.

version
String

The OS version.

label
String

The OS version label.

isDefault
Nullable<Boolean>

Specifies whether this is the default OS version for its family.

isActive
Nullable<Boolean>

Specifies whether this OS version is active.

Applies to