getTraditionalVolumeInfo

Returns detailed information about an existing traditional NetWare volume. To get information about an NSS logical volume, call the getVolumeInfo command.

Request

<getTraditionalVolumeInfo>
   <volumeName/>
</getTraditionalVolumeInfo>

Reply

<getTraditionalVolumeInfo>
   <volumeName/>
   <volumeState/>
   <nameSpaces value=" "/>
   <compression/>
   <suballocation/>
   <migration/>
   <blockSize/>
   <numBlocks/>
   <freeBytes/>
   <totalFiles/>
   <deletedFiles/>
   <compressedFiles/>
   <compressedDeletedFiles/>
   <createdTime value=" "/>
   <modifiedTime value=" "/>
   <archivedTime value=" "/>
   <result value = " ">
      <description/>
   </result>
</getTraditionalVolumeInfo>

Elements

volumeName

Specifies the name of the volume.

volumeState

Specifies the state of the volume:

  • mounted
  • dismounted
nameSpaces

Specifies a list of name space names, separated by spaces:

  • DOS
  • Long
  • Macintosh
  • Unix
compression

Specifies that compression is enabled.

suballocation

Specifies that suballocation is enabled.

migration

Specifies that migration is enabled.

blockSize

Specifies the volume's block size.

numBlocks

Specifies the number of blocks in the volume.

freeBytes

Specifies the number of bytes that are free.

totalFiles

Specifies the total number of file objects that are stored on the volume.

deletedFiles

Specifies the number of deleted files on the volume.

compressedFiles

Specifies the number of compressed files.

compressedDeletedFiles

Specifies the number of compressed deleted files.

createdTime

Specifies a string representation of the UTC time when the volume was created.

modifiedTime

Specifies a string representation of the UTC time when the volume was last modified.

archivedTime

Specifies a string representation of the UTC time when the volume was last archived.

result

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

description

Specifies a text description of the result.

Attributes

value

Specifies the decimal value of the name space mask for the volume.

or

Specifies the decimal UTC time.

Example

A nssRequest packet to return traditional volume information is as follows:

<nssRequest>
   <volume>
      <getTraditionalVolumeInfo>
         <volumeName>VOL1</volumeName>
      </getTraditionalVolumeInfo>
   </volume>
</nssRequest>

A nssReply packet to the get traditional volume information command follows:

<nssReply>
   <volume>
      <getTraditionalVolumeInfo>
         <volumeName>VOL1</volumeName>
         <volumeState>mounted</volumeState>
         <nameSpaces value="17">DOS Long </nameSpaces>
         <suballocation>
         <blockSize>65536</blockSize>
         <numBlocks>1582</numBlocks>
         <createdTime value="744977753">
            07-Mar-2002 14:42:50
         </createdTime>
         <modifiedTime value="744977754">
            07-Mar-2002 14:42:52
         </modifiedTime>
         <archivedTime value="0">Invalid DOS Time
         </archivedTime>
         <result value="0">
            <description/>success</description>
         </result>
      </getTraditionalVolumeInfo>
   </volume>

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