# 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 the uri of a disk. # class VirtualHardDisk include MsRestAzure # @return [String] the virtual hard disk's uri. It should be a valid Uri # to a virtual hard disk. attr_accessor :uri # # Mapper for VirtualHardDisk class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'VirtualHardDisk', type: { name: 'Composite', class_name: 'VirtualHardDisk', model_properties: { uri: { required: false, serialized_name: 'uri', type: { name: 'String' } } } } } end end end end