InstanceViewStatus Constructors

Definition

Overloads

InstanceViewStatus()

Initializes a new instance of the InstanceViewStatus class.

InstanceViewStatus(String, Nullable<StatusLevelTypes>, String, String, Nullable<DateTime>)

Initializes a new instance of the InstanceViewStatus class.

InstanceViewStatus()

Initializes a new instance of the InstanceViewStatus class.

public InstanceViewStatus ();
Public Sub New ()

Applies to

InstanceViewStatus(String, Nullable<StatusLevelTypes>, String, String, Nullable<DateTime>)

Initializes a new instance of the InstanceViewStatus class.

public InstanceViewStatus (string code = default, Microsoft.Azure.Management.Compute.Models.StatusLevelTypes? level = default, string displayStatus = default, string message = default, DateTime? time = default);
new Microsoft.Azure.Management.Compute.Models.InstanceViewStatus : string * Nullable<Microsoft.Azure.Management.Compute.Models.StatusLevelTypes> * string * string * Nullable<DateTime> -> Microsoft.Azure.Management.Compute.Models.InstanceViewStatus
Public Sub New (Optional code As String = Nothing, Optional level As Nullable(Of StatusLevelTypes) = Nothing, Optional displayStatus As String = Nothing, Optional message As String = Nothing, Optional time As Nullable(Of DateTime) = Nothing)

Parameters

code
String

The status code.

level
Nullable<StatusLevelTypes>

The level code. Possible values include: 'Info', 'Warning', 'Error'

displayStatus
String

The short localizable label for the status.

message
String

The detailed status message, including for alerts and error messages.

time
Nullable<DateTime>

The time of the status.

Applies to