다음을 통해 공유


PatchInstallationDetail Constructors

Definition

Overloads

PatchInstallationDetail()

Initializes a new instance of the PatchInstallationDetail class.

PatchInstallationDetail(String, String, String, String, IList<String>, String)

Initializes a new instance of the PatchInstallationDetail class.

PatchInstallationDetail()

Initializes a new instance of the PatchInstallationDetail class.

public PatchInstallationDetail ();
Public Sub New ()

Applies to

PatchInstallationDetail(String, String, String, String, IList<String>, String)

Initializes a new instance of the PatchInstallationDetail class.

public PatchInstallationDetail (string patchId = default, string name = default, string version = default, string kbId = default, System.Collections.Generic.IList<string> classifications = default, string installationState = default);
new Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail : string * string * string * string * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.Management.Compute.Models.PatchInstallationDetail
Public Sub New (Optional patchId As String = Nothing, Optional name As String = Nothing, Optional version As String = Nothing, Optional kbId As String = Nothing, Optional classifications As IList(Of String) = Nothing, Optional installationState As String = Nothing)

Parameters

patchId
String

A unique identifier for the patch.

name
String

The friendly name of the patch.

version
String

The version string of the package. It may conform to Semantic Versioning. Only applies to Linux.

kbId
String

The KBID of the patch. Only applies to Windows patches.

classifications
IList<String>

The classification(s) of the patch as provided by the patch publisher.

installationState
String

The state of the patch after the installation operation completed. Possible values include: 'Unknown', 'Installed', 'Failed', 'Excluded', 'NotSelected', 'Pending'

Applies to