VulnerabilityAssessmentScanRecord Constructors

Definition

Overloads

VulnerabilityAssessmentScanRecord()

Initializes a new instance of the VulnerabilityAssessmentScanRecord class.

VulnerabilityAssessmentScanRecord(String, String, String, String, String, String, Nullable<DateTime>, Nullable<DateTime>, IList<VulnerabilityAssessmentScanError>, String, Nullable<Int32>)

Initializes a new instance of the VulnerabilityAssessmentScanRecord class.

VulnerabilityAssessmentScanRecord()

Initializes a new instance of the VulnerabilityAssessmentScanRecord class.

public VulnerabilityAssessmentScanRecord ();
Public Sub New ()

Applies to

VulnerabilityAssessmentScanRecord(String, String, String, String, String, String, Nullable<DateTime>, Nullable<DateTime>, IList<VulnerabilityAssessmentScanError>, String, Nullable<Int32>)

Initializes a new instance of the VulnerabilityAssessmentScanRecord class.

public VulnerabilityAssessmentScanRecord (string id = default, string name = default, string type = default, string scanId = default, string triggerType = default, string state = default, DateTime? startTime = default, DateTime? endTime = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.VulnerabilityAssessmentScanError> errors = default, string storageContainerPath = default, int? numberOfFailedSecurityChecks = default);
new Microsoft.Azure.Management.Sql.Models.VulnerabilityAssessmentScanRecord : string * string * string * string * string * string * Nullable<DateTime> * Nullable<DateTime> * System.Collections.Generic.IList<Microsoft.Azure.Management.Sql.Models.VulnerabilityAssessmentScanError> * string * Nullable<int> -> Microsoft.Azure.Management.Sql.Models.VulnerabilityAssessmentScanRecord
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional scanId As String = Nothing, Optional triggerType As String = Nothing, Optional state As String = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional errors As IList(Of VulnerabilityAssessmentScanError) = Nothing, Optional storageContainerPath As String = Nothing, Optional numberOfFailedSecurityChecks As Nullable(Of Integer) = Nothing)

Parameters

id
String

Resource ID.

name
String

Resource name.

type
String

Resource type.

scanId
String

The scan ID.

triggerType
String

The scan trigger type. Possible values include: 'OnDemand', 'Recurring'

state
String

The scan status. Possible values include: 'Passed', 'Failed', 'FailedToRun', 'InProgress'

startTime
Nullable<DateTime>

The scan start time (UTC).

endTime
Nullable<DateTime>

The scan end time (UTC).

errors
IList<VulnerabilityAssessmentScanError>

The scan errors.

storageContainerPath
String

The scan results storage container path.

numberOfFailedSecurityChecks
Nullable<Int32>

The number of failed security checks.

Applies to