class Azure::Compute::Mgmt::V2018_10_01::Models::DiagnosticsProfile

Specifies the boot diagnostic settings state.
Minimum api-version: 2015-06-15.

Attributes

boot_diagnostics[RW]

@return [BootDiagnostics] Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status.
You can easily view the output of your console log.
Azure also enables you to see a screenshot of the VM from the hypervisor.

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-10-01/generated/azure_mgmt_compute/models/diagnostics_profile.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DiagnosticsProfile',
    type: {
      name: 'Composite',
      class_name: 'DiagnosticsProfile',
      model_properties: {
        boot_diagnostics: {
          client_side_validation: true,
          required: false,
          serialized_name: 'bootDiagnostics',
          type: {
            name: 'Composite',
            class_name: 'BootDiagnostics'
          }
        }
      }
    }
  }
end