removePartitionFromMirror

Removes a partition from another existing mirror group. Use removePartitionFromMirror only if the mirror group contains more than one partition. If the partition is the only partition in the group, there is no need to remove it.

Request

<removePartitionFromMirror>  
    <partitionID/>
</removePartitionFromMirror>

Reply

<remmovePartitionFromMirror>
   <result value=" ">
      <description/>
   </result>
</removePartitionFromMirror>

Elements

partitionID

Specifies the physical partition ID of the partition to be removed.

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 partition from a mirror group is as follows:

<nssRequest>
   <partition>
      <removePartitionFromMirror>
         <partitionID>14</partitionID>
      </removePartitionFromMirror>
   </partition>
</nssRequest>

A nssReply packet to the remove partition from a mirror group command follows:

<nssReply>
   <partition>
      <removePartitionFromMirror>
         <result value="0">
            <description/>success</description>
         </result>
      </removePartitionFromMirror>
   </partition>

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