continueState

Continues the current state of the deleted logical volume. If the current state is purging paused, it changes the state back to purging and resumes the purge of the deleted volume. If the current state is auto purging paused, it has the effect of changing the deleted volume back to the salvageable state and allows a future auto purge of the volume.

Request

<continueState>
   <deletedVolumeName/>
</continueState>

Reply

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

Elements

deletedVolumeName

(Required) Specifies the internal name of the deleted volume.

result

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

description

Specifies a text description of the result.

Example

A nssRequest packet to continue a volume's state is as follows:

<nssRequest>
   <deletedVolume>
      <continueState>
         <deletedVolumeName>2FNC78F4IHL3_DV
         </deletedVolumeName>
      </continueState>
   </deletedVolume>
</nssRequest>

A nssReply packet to the continue state command follows:

<nssReply>
   <deletedVolume>
      <continueState>
         <result value="0">
            <description/>success</description>
         </result>
      </continueState>
   </deletedVolume>

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