Volume Node Metadata (XML)

Volume node metadata is returned by the IFFFS Wiretap server when you call getMetaData on the WireTapNodeHandle object for the node. The metadata is read-only.

Valid Values for Volume Metadata

The following table shows valid values for each element in the volume XML stream.

Element Type Valid Range/Value Comment
<Volume> complex n/a Container for other elements. Required.
<Name> string No length restrictions Storage partition name.
<State> string mounted/unmounted
<CapacityMB> integer megabytes Total capacity of the volume
<FreeMB> integer megabytes Available space

Sample XML for Volume Metadata

The following is the metadata for a typical volume:

<Volume>
    <Name>AutodeskMediaStorage</Name>
    <State>mounted</State>
    <CapacityMB>1144220</CapacityMB>
    <FreeMB>853560</FreeMB>
</Volume>