class Azure::Compute::Mgmt::V2020_12_01::Models::BootDiagnosticsInstanceView

The instance view of a virtual machine boot diagnostics.

Attributes

console_screenshot_blob_uri[RW]

@return [String] The console screenshot blob URI.
NOTE: This will *not* be set if boot diagnostics is currently enabled with managed storage.

serial_console_log_blob_uri[RW]

@return [String] The serial console log blob Uri.
NOTE: This will *not* be set if boot diagnostics is currently enabled with managed storage.

status[RW]

@return [InstanceViewStatus] The boot diagnostics status information for the VM.
NOTE: It will be set only if there are errors encountered in enabling boot diagnostics.

Private Class Methods

mapper() click to toggle source

Mapper for BootDiagnosticsInstanceView class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2020-12-01/generated/azure_mgmt_compute/models/boot_diagnostics_instance_view.rb, line 35
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'BootDiagnosticsInstanceView',
    type: {
      name: 'Composite',
      class_name: 'BootDiagnosticsInstanceView',
      model_properties: {
        console_screenshot_blob_uri: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'consoleScreenshotBlobUri',
          type: {
            name: 'String'
          }
        },
        serial_console_log_blob_uri: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'serialConsoleLogBlobUri',
          type: {
            name: 'String'
          }
        },
        status: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'status',
          type: {
            name: 'Composite',
            class_name: 'InstanceViewStatus'
          }
        }
      }
    }
  }
end