Share via


ServerVulnerabilityProperties Constructors

Definition

Overloads

ServerVulnerabilityProperties()

Initializes a new instance of the ServerVulnerabilityProperties class.

ServerVulnerabilityProperties(String, IDictionary<String,Cvss>, Nullable<Boolean>, IList<CVE>, String, Nullable<DateTime>, IList<VendorReference>)

Initializes a new instance of the ServerVulnerabilityProperties class.

ServerVulnerabilityProperties()

Initializes a new instance of the ServerVulnerabilityProperties class.

public ServerVulnerabilityProperties ();
Public Sub New ()

Applies to

ServerVulnerabilityProperties(String, IDictionary<String,Cvss>, Nullable<Boolean>, IList<CVE>, String, Nullable<DateTime>, IList<VendorReference>)

Initializes a new instance of the ServerVulnerabilityProperties class.

public ServerVulnerabilityProperties (string type = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.Security.Models.Cvss> cvss = default, bool? patchable = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.CVE> cve = default, string threat = default, DateTime? publishedTime = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.VendorReference> vendorReferences = default);
new Microsoft.Azure.Management.Security.Models.ServerVulnerabilityProperties : string * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.Security.Models.Cvss> * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.CVE> * string * Nullable<DateTime> * System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.VendorReference> -> Microsoft.Azure.Management.Security.Models.ServerVulnerabilityProperties
Public Sub New (Optional type As String = Nothing, Optional cvss As IDictionary(Of String, Cvss) = Nothing, Optional patchable As Nullable(Of Boolean) = Nothing, Optional cve As IList(Of CVE) = Nothing, Optional threat As String = Nothing, Optional publishedTime As Nullable(Of DateTime) = Nothing, Optional vendorReferences As IList(Of VendorReference) = Nothing)

Parameters

type
String

Vulnerability Type. e.g: Vulnerability, Potential Vulnerability, Information Gathered

cvss
IDictionary<String,Cvss>

Dictionary from cvss version to cvss details object

patchable
Nullable<Boolean>

Indicates whether a patch is available or not

cve
IList<CVE>

List of CVEs

threat
String

Threat name

publishedTime
Nullable<DateTime>

Published time

vendorReferences
IList<VendorReference>

Applies to