共用方式為


ResourceInstanceViewStatus Constructors

Definition

Overloads

ResourceInstanceViewStatus()

Initializes a new instance of the ResourceInstanceViewStatus class.

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

Initializes a new instance of the ResourceInstanceViewStatus class.

ResourceInstanceViewStatus()

Initializes a new instance of the ResourceInstanceViewStatus class.

public ResourceInstanceViewStatus ();
Public Sub New ()

Applies to

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

Initializes a new instance of the ResourceInstanceViewStatus class.

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

Parameters

code
String

The status code.

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.

level
Nullable<StatusLevelTypes>

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

Applies to