removePool

Removes an eDirectory pool object.

Request

 <removePool>
   <name/>
   <context/>
</removePool>

Reply

<removePool>
   <result value=" ">
      <description/>
   </result>
</removePool>

Elements

name

(Required) Specifies the eDirectory name of the pool object to remove.

context

(Required) Specifies the eDirectory context where the object is found.

result

Specifies an error value or 0 (for no error).

description

Specifies a text description of the result.

Example

A nssRequest packet to remove a pool is as follows:

<ndsRequest>
   <ndsPool>
      <removePool>
         <name>MYSERVER_MYPOOL_POOL</name>
         <context>
      </removePool>
   </ndsPool>
</ndsRequest>

A nssReply packet to the remove pool command follows:

<nssReply>
   <ndsPool>
      <removePool>
         <result value="0">
            <description/>success</description>
         </result>
      </removePool>
   </ndsPool>

   <result value="0">
      <description/>zOK</description>
   </result>
</nssReply>