# File lib/fog/openstack/requests/identity/update_tenant.rb, line 5
        def update_tenant(id, attributes)
          request(
            :expects => [200],
            :method  => 'PUT',
            :path    => "tenants/#{id}",
            :body    => {
              'tenant' => attributes
            }.to_json
          )
        end