Class: Azure::ARM::Compute::Models::DiagnosticsProfile

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_compute/models/diagnostics_profile.rb

Overview

Describes a diagnostics profile.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#boot_diagnosticsBootDiagnostics

allows the user to view console output and/or a screenshot of the virtual machine from the hypervisor.

Returns:



18
19
20
# File 'lib/generated/azure_mgmt_compute/models/diagnostics_profile.rb', line 18

def boot_diagnostics
  @boot_diagnostics
end

Class Method Details

.mapperObject

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



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'lib/generated/azure_mgmt_compute/models/diagnostics_profile.rb', line 25

def self.mapper()
  {
    required: false,
    serialized_name: 'DiagnosticsProfile',
    type: {
      name: 'Composite',
      class_name: 'DiagnosticsProfile',
      model_properties: {
        boot_diagnostics: {
          required: false,
          serialized_name: 'bootDiagnostics',
          type: {
            name: 'Composite',
            class_name: 'BootDiagnostics'
          }
        }
      }
    }
  }
end