fog/fog-azure-rm

View on GitHub
lib/fog/azurerm/models/compute/image_disk_reference.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
87%
module Fog
  module Compute
    class AzureRM
      # ImageReference model for Compute Service
      class ImageDiskReference < Fog::Model
        attribute :id
        attribute :lun

        def self.parse(image_reference)
          get_hash_from_object(image_reference)
        end
      end
    end
  end
end