Class InstanceViewStatus
Instance view status.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class InstanceViewStatus
Constructors
InstanceViewStatus()
Initializes a new instance of the InstanceViewStatus class.
Declaration
public InstanceViewStatus ();
InstanceViewStatus(String, Nullable<StatusLevelTypes>, String, String, Nullable<DateTime>)
Initializes a new instance of the InstanceViewStatus class.
Declaration
public InstanceViewStatus (string code = null, Nullable<Microsoft.Azure.Management.Compute.Models.StatusLevelTypes> level = null, string displayStatus = null, string message = null, Nullable<DateTime> time = null);
Parameters
|
String
code
The status code. |
|
Nullable<StatusLevelTypes>
level
The level code. Possible values include: 'Info', 'Warning', 'Error' |
|
String
displayStatus
The short localizable label for the status. |
|
String
message
The detailed status message, including for alerts and error messages. |
|
Nullable<DateTime>
time
The time of the status. |
Properties
Code
Gets or sets the status code.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="code")]
public string Code { get; set; }
Property Value
|
String
|
DisplayStatus
Gets or sets the short localizable label for the status.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="displayStatus")]
public string DisplayStatus { get; set; }
Property Value
|
String
|
Level
Gets or sets the level code. Possible values include: 'Info', 'Warning', 'Error'
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="level")]
public Nullable<Microsoft.Azure.Management.Compute.Models.StatusLevelTypes> Level { get; set; }
Property Value
|
Nullable<StatusLevelTypes>
|
Message
Gets or sets the detailed status message, including for alerts and error messages.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="message")]
public string Message { get; set; }
Property Value
|
String
|