Sha256: 2f133f50e3a50cd8e0abd0eafdfbc8e925dcc09067f998f1f6b7298eb41e45c2
Contents?: true
Size: 1.76 KB
Versions: 12
Compression:
Stored size: 1.76 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Compute::Mgmt::V2015_06_15 module Models # # 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. # class BootDiagnostics include MsRestAzure # @return [Boolean] Whether boot diagnostics should be enabled on the # Virtual Machine. attr_accessor :enabled # @return [String] Uri of the storage account to use for placing the # console output and screenshot. attr_accessor :storage_uri # # Mapper for BootDiagnostics class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'BootDiagnostics', type: { name: 'Composite', class_name: 'BootDiagnostics', model_properties: { enabled: { client_side_validation: true, required: false, serialized_name: 'enabled', type: { name: 'Boolean' } }, storage_uri: { client_side_validation: true, required: false, serialized_name: 'storageUri', type: { name: 'String' } } } } } end end end end
Version data entries
12 entries across 12 versions & 1 rubygems