poolThaw

Allows a pool to thaw. After poolThaw is called, the following tags from poolFreezeStatus must have a value of 0 to indicate a successful freeze/thaw operation: freezeStatus, thawStatus, and thawOperationReturnCode. In addition, the results content should indicate that all applications were successful in the quiescent attempts.

Request

<poolThaw>
   <userKey/>
   <thawOperationReturnCode/>
</poolThaw>

Reply

<poolThaw>
    <userKey value=" "/>
    <poolName value=" "/>
    <result value=" ">
       <description/>
    </result>
</poolThaw>

Elements

userKey

Specifies a key that indicates from which freeze to return the status.

thawOperationReturnCode

Specifies a zERR code that indicates any errors. zOK indicates there were no errors.

poolName

Specifies the name of the pool.

result

Specifies an error value or 0 (for no error). The result applies directly to the thaw operation.

description

Specifies a text description of the result.

Example

The nssRequest packet to thaw a pool follows:

<nssRequest>
   <pool>
      <poolThaw>
         <userKey>28B95AB0-DBB4-01D6-80-00-B78907429F66</userKey>
      </poolThaw>
   </pool>
</nssRequest>

The nssReply packet from a pool thaw follows:

<nssReply>
   <pool>
      <poolThaw>
         <userKey value="28B95AB0-DBB4-01D6-80-00-B78907429F66">
         <poolName value="SM">
         <result value="0">
            <description/>success</description>
         </result>
      </poolThaw>
   </pool>
   <result value="0">
      <description/>zOK</description>
   </result>
</nssReply>