Share via


AssessmentStatusResponse Constructors

Definition

Overloads

AssessmentStatusResponse()

Initializes a new instance of the AssessmentStatusResponse class.

AssessmentStatusResponse(String, String, String, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the AssessmentStatusResponse class.

AssessmentStatusResponse()

Initializes a new instance of the AssessmentStatusResponse class.

public AssessmentStatusResponse ();
Public Sub New ()

Applies to

AssessmentStatusResponse(String, String, String, Nullable<DateTime>, Nullable<DateTime>)

Initializes a new instance of the AssessmentStatusResponse class.

public AssessmentStatusResponse (string code, string cause = default, string description = default, DateTime? firstEvaluationDate = default, DateTime? statusChangeDate = default);
new Microsoft.Azure.Management.Security.Models.AssessmentStatusResponse : string * string * string * Nullable<DateTime> * Nullable<DateTime> -> Microsoft.Azure.Management.Security.Models.AssessmentStatusResponse
Public Sub New (code As String, Optional cause As String = Nothing, Optional description As String = Nothing, Optional firstEvaluationDate As Nullable(Of DateTime) = Nothing, Optional statusChangeDate As Nullable(Of DateTime) = Nothing)

Parameters

code
String

Programmatic code for the status of the assessment Possible values include: 'Healthy', 'Unhealthy', 'NotApplicable'

cause
String

Programmatic code for the cause of the assessment status

description
String

Human readable description of the assessment status

firstEvaluationDate
Nullable<DateTime>

The time that the assessment was created and first evaluated. Returned as UTC time in ISO 8601 format

statusChangeDate
Nullable<DateTime>

The time that the status of the assessment last changed. Returned as UTC time in ISO 8601 format

Applies to