getLSSInfo

Returns information about the Loadable Storage Systems on a server. This command is implemented only on NetWare and not on Linux.

Request

<getLssInfo/>

Reply

<getLssInfo>
   <lssInfo>
      <lssName/>
      <lssID/>
      <createAllowed/>
      <poolSupportedFeatures value="">
         <readonly/>
         <shared/>
      </poolSupportedFeatures>
      <poolDefaultFeatures value="">
         <readonly/>
         <shared/>
      </poolDefaultFeatures>
      <poolChangeableFeatures value="">
         <readonly/>
         <shared/>
      </poolChangeableFeatures>
      <volSupportedFeatures>
         <readonly/>
         <salvage/>
         <compression/>
         <directoryQuota/>
         <userQuota/>
         <flushFiles/>
         <mfl/>
         <snapshot/>
         <backup/>
         <shredding/>
         <userTransaction/>
         <migration/>
      </volSupportedFeatures>
      <volDefaultFeatures>
         <readonly/>
         <salvage/>
         <compression/>
         <directoryQuota/>
         <userQuota/>
         <flushFiles/>
         <mfl/>
         <snapshot/>
         <backup/>
         <shredding/>
         <userTransaction/>
         <migration/>
      </volDefaultFeatures>
      <volChangeableFeatures>
         <readonly/>
         <salvage/>
         <compression/>
         <directoryQuota/>
         <userQuota/>
         <flushFiles/>
         <mfl/>
         <snapshot/>
         <backup/>
         <shredding/>
         <userTransaction/>
         <migration/>
      </volChangeableFeatures>
   </lssInfo>
   <result value=" ">
      <description/>
   </result>
</getLssInfo>

Elements

lssInfo

Repeats for each LSS on the system.

lssName

Specifies the name of the LSS.

lssID

Specifies the ID that is associated with the LSS.

createAllowed

Specifies that the LSS allows new volumes and pools to be created.

poolSupportedFeatures

Specifies a list of elements that represent pool features that are supported by the LSS type.

readonly

Specifies that read only is supported, enabled by default, or changeable for the pool or volume.

shared

Specifies that shared is supported, enabled by default, or changeable for the pool or volume.

poolDefaultFeatures

Specifies a list of elements that represent pool features that are enabled by default when pools are created on the LSS type.

poolChangeableFeatures

Specifies a list of elements that represent pool features that can be changed for the LSS type.

volSupportedFeatures

Specifies a list of elements that represent volume features that are supported by the LSS type.

salvage

Specifies that salvage is supported, enabled by default, or changeable on the volume.

compression

Specifies that compression is supported, enabled by default, or changeable on the volume.

directoryQuota

Specifies that a directory quota is supported, enabled by default, or changeable on the volume.

userQuota

Specifies that a user quota is supported, enabled by default, or changeable on the volume.

flushFiles

Specifies that flushing files is supported, enabled by default, or changeable on the volume.

mfl

Specifies that mfl is supported, enabled by default, or changeable on the volume.

snapshot

Specifies that snapshots are supported, enabled by default, or changeable on the volume.

backup

Specifies that back ups are supported, enabled by default, or changeable on the volume.

shredding

Specifies that shredding is supported, enabled by default, or changeable on the volume.

userTransaction

Specifies that user transactions are supported, enabled by default, or changeable on the volume.

migration

Specifies that migration is supported, enabled by default, or changeable on the volume.

volDefaultFeatures

Specifies a list of elements that represent volume features that are enabled by default when volumes are created on the LSS type.

volChangeableFeatures

Specifies a list of elements that represent volume features that are changeable for volumes on the LSS type.

result

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

description

Specifies a text description of the result.

Atrributes

value

Specifies the decimal value of the LSS's supported, default, or changeable pool or volume features bit mask.

Example

A nssRequest packet to return the LSS information is as follows:

<nssRequest>
   <lss>
      <getLSSInfo>
      </getLSSInfo>
   </lss>
</nssRequest>

In the following example, the server has the standard ZLSS loaded, as well as DOSFAT and CD9660

<nssReply>
   <lss>
      <getLSSInfo>
         <lssInfo>
            <lssName>ZLSS</lssName>
            <lssID>20</lssID>
            <createAllowed>
            <poolSupportedFeatures value="123">
               <shared>
            </poolSupportedFeatures>
            <poolDefaultFeatures value="57">
            </poolDefaultFeatures>
            <poolChangeableFeatures value="123">
               <shared>
            </poolChangeableFeatures>
            <volSupportedFeatures value="469762043">
               <salvage/>
               <compression>
               <directoryQuota>
               <userQuota>
               <flushFiles>
               <mfl>
               <snapshot>
               <shredding>
               <userTransaction>
               <migration>
            </volSupportedFeatures>
            <volDefaultFeatures value="262129">
               <salvage/>
               <backup>
            </volDefaultFeatures>
            <volChangeableFeatures value="468975627">
               <salvage/>
               <compression>
               <directoryQuota>
               <userQuota>
               <flushFiles>
               <mfl>
               <snapshot>
               <shredding>
               <userTransaction>
               <migration>
            </volChangeableFeatures>
         </lssInfo>

         <lssInfo>
            <lssName>DOSFAT</lssName>
            <lssID>30</lssID>
            <poolSupportedFeatures value="0">
            </poolSupportedFeatures>
            <poolDefaultFeatures value="0">
            </poolDefaultFeatures>
            <poolChangeableFeatures value="0">
            </poolChangeableFeatures>
            <volSupportedFeatures value="64"> 
               <backup>
            </volSupportedFeatures>
            <volDefaultFeatures value="64">
               <backup>
            </volDefaultFeatures>
            <volChangeableFeatures value="0">
               <backup>
            </volChangeableFeatures>
         </lssInfo>

         <lssInfo>
            <lssName>CD9660</lssName>
            <lssID>40</lssID>
            <poolSupportedFeatures value="0">
            </poolSupportedFeatures>
            <poolDefaultFeatures value="0">
            </poolDefaultFeatures>
            <poolChangeableFeatures value="0">
            </poolChangeableFeatures>
            <volSupportedFeatures value="68">
               <readOnly>
               <backup>
            </volSupportedFeatures>
            <volDefaultFeatures value="68">
               <readOnly>
               <backup>
            </volDefaultFeatures>
            <volChangeableFeatures value="0">
               <backup>
            </volChangeableFeatures>
         </lssInfo>

      <result value="0">
         <description/>success</description>
      </result>
      </getLSSInfo>
   </lss>

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