# File lib/deltacloud/models/instance_profile.rb, line 43
  def overrides
    [:memory, :storage, :architecture, :cpu].inject({}) do |h, p|
      if v = instance_variable_get("@#{p}")
        h[p] = v
      end
      h
    end
  end