Sha256: 85eaa07fc8caeed6a0c8e68701923d965008824d8edd6f49dba0a8c4aea9f5dc
Contents?: true
Size: 1.73 KB
Versions: 1
Compression:
Stored size: 1.73 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::ARM::Compute module Models # # Boot Diagnostics is a debugging feature which allows you to view Console # Output and Screenshot to diagnose VM status. <br><br> For Linux Virtual # Machines, you can easily view the output of your console log. <br><br> # For both Windows and Linux virtual machines, Azure also enables you to # see a screenshot of the VM from the hypervisor. # class BootDiagnostics include MsRestAzure include MsRest::JSONable # @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() { required: false, serialized_name: 'BootDiagnostics', type: { name: 'Composite', class_name: 'BootDiagnostics', model_properties: { enabled: { required: false, serialized_name: 'enabled', type: { name: 'Boolean' } }, storage_uri: { required: false, serialized_name: 'storageUri', type: { name: 'String' } } } } } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_compute-0.13.0 | lib/generated/azure_mgmt_compute/models/boot_diagnostics.rb |