Sha256: 602f5953472c918c8b54a782cc8841126502497bd2984a384bbcbdae4d0d8e83
Contents?: true
Size: 1.36 KB
Versions: 4
Compression:
Stored size: 1.36 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Compute module Models # # Describes Boot Diagnostics. # class BootDiagnostics include MsRestAzure # @return [Boolean] whether boot diagnostics should be enabled on the # Virtual Machine. attr_accessor :enabled # @return [String] the boot diagnostics storage Uri. It should be a # valid Uri 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
4 entries across 4 versions & 1 rubygems