Class BootDiagnostics
Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. <br><br> You can easily view the output of your console log. <br><br> Azure also enables you to see a screenshot of the VM from the hypervisor.
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.Management.Compute.dll
Syntax
public class BootDiagnostics
Constructors
BootDiagnostics()
Initializes a new instance of the BootDiagnostics class.
Declaration
public BootDiagnostics ();
BootDiagnostics(Nullable<Boolean>, String)
Initializes a new instance of the BootDiagnostics class.
Declaration
public BootDiagnostics (Nullable<bool> enabled = null, string storageUri = null);
Parameters
|
Nullable<Boolean>
enabled
Whether boot diagnostics should be enabled on the Virtual Machine. |
|
String
storageUri
Uri of the storage account to use for placing the console output and screenshot. |
Properties
Enabled
Gets or sets whether boot diagnostics should be enabled on the Virtual Machine.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="enabled")]
public Nullable<bool> Enabled { get; set; }
Property Value
|
Nullable<Boolean>
|
StorageUri
Gets or sets uri of the storage account to use for placing the console output and screenshot.
Declaration
[Newtonsoft.Json.JsonProperty(PropertyName="storageUri")]
public string StorageUri { get; set; }
Property Value
|
String
|