Share via


AssessmentStatus Constructors

Definition

Overloads

AssessmentStatus()

Initializes a new instance of the AssessmentStatus class.

AssessmentStatus(String, String, String)

Initializes a new instance of the AssessmentStatus class.

AssessmentStatus()

Initializes a new instance of the AssessmentStatus class.

public AssessmentStatus ();
Public Sub New ()

Applies to

AssessmentStatus(String, String, String)

Initializes a new instance of the AssessmentStatus class.

public AssessmentStatus (string code, string cause = default, string description = default);
new Microsoft.Azure.Management.Security.Models.AssessmentStatus : string * string * string -> Microsoft.Azure.Management.Security.Models.AssessmentStatus
Public Sub New (code As String, Optional cause As String = Nothing, Optional description As String = 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

Applies to