Show / Hide Table of Contents

    Class BootDiagnosticsInstanceView

    The instance view of a virtual machine boot diagnostics.

    Inheritance
    Object
    BootDiagnosticsInstanceView
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Compute.dll
    Syntax
    public class BootDiagnosticsInstanceView

    Constructors

    BootDiagnosticsInstanceView()

    Initializes a new instance of the BootDiagnosticsInstanceView class.

    Declaration
    public BootDiagnosticsInstanceView ();

    BootDiagnosticsInstanceView(String, String, InstanceViewStatus)

    Initializes a new instance of the BootDiagnosticsInstanceView class.

    Declaration
    public BootDiagnosticsInstanceView (string consoleScreenshotBlobUri = null, string serialConsoleLogBlobUri = null, Microsoft.Azure.Management.Compute.Models.InstanceViewStatus status = null);
    Parameters
    String consoleScreenshotBlobUri

    The console screenshot blob URI.

    String serialConsoleLogBlobUri

    The Linux serial console log blob Uri.

    InstanceViewStatus status

    The boot diagnostics status information for the VM. <br><br> NOTE: It will be set only if there are errors encountered in enabling boot diagnostics.

    Properties

    ConsoleScreenshotBlobUri

    Gets the console screenshot blob URI.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="consoleScreenshotBlobUri")]
    public string ConsoleScreenshotBlobUri { get; }
    Property Value
    String

    SerialConsoleLogBlobUri

    Gets the Linux serial console log blob Uri.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="serialConsoleLogBlobUri")]
    public string SerialConsoleLogBlobUri { get; }
    Property Value
    String

    Status

    Gets the boot diagnostics status information for the VM. &lt;br&gt;&lt;br&gt; NOTE: It will be set only if there are errors encountered in enabling boot diagnostics.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="status")]
    public Microsoft.Azure.Management.Compute.Models.InstanceViewStatus Status { get; }
    Property Value
    InstanceViewStatus

    Back to top Azure SDK for Net