# File lib/openstack/identity/connection_v2.rb, line 4
      def list_tenants
        response = @connection.req('GET', '/tenants')
        tenants_hash = JSON.parse(response.body)['tenants']
        tenants_hash.map { |res| OpenStack::Identity::Tenant.new(res) }
      end