User Guide
23
2.1.4 Override process
Specifying '-override' option with the esmcli, following elements of an XML file will be overridden.
・ ufip element
・ val element belonging to option element
・ val element belonging to property element
The overridden element is specified by absolute path separated by '/'. To specify some elements, describe
them separated by ','.
・ esmcli –f filename.xml –override /request/<ElementName>/<ElementName>=<Value>,…
If there is more than one element corresponding to the specified path, specify the order of the element by
"ElementName[number]". If the number is not specified, all elements corresponding to the path will be
overridden.
In the following example,
/request/show/instance/options/option/value/val[1] matches [1]
/request/show/instance/options/option/value/val[2] matches [2]
/request/show/instance/options/option/value/val matches both [1] and [2]
<request>
<show>
<instance>
<ufip>/</ufip>
<options>
<option>
<name>name</name>
<value>
<val>val</val> <!-- [1] -->
</value>
</option>
<option>
<name>name</name>
<value>
<val>val</val> <!-- [2] -->
</value>
</option>
</options>
</instance>
</show>
</request>