# File lib/fog/openstack/requests/compute/get_quota.rb, line 18
        def get_quota(tenant_id)
          response = Excon::Response.new
          response.status = 200
          response.body = {
            'quota_set' => (self.data[:quota_updated] or self.data[:quota]).merge({'id' => tenant_id})
          }
          response
        end