fog/fog-azure-rm

View on GitHub
lib/fog/azurerm/models/dns/a_record.rb

Summary

Maintainability
A
0 mins
Test Coverage
C
75%
module Fog
  module DNS
    class AzureRM
      # This class is giving an implementation of 'A' RecordSet type
      class ARecord < Fog::Model
        attribute :ipv4address

        def self.parse(arecord)
          hash = get_hash_from_object(arecord)
          hash
        end
      end
    end
  end
end