Searching the Help
To search for information in the Help, type a word or phrase in the Search box. When you enter a group of words, OR is inferred. You can use Boolean operators to refine your search.
Results returned are case insensitive. However, results ranking takes case into account and assigns higher scores to case matches. Therefore, a search for "cats" followed by a search for "Cats" would return the same number of Help topics, but the order in which the topics are listed would be different.
Search for | Example | Results |
---|---|---|
A single word | cat
|
Topics that contain the word "cat". You will also find its grammatical variations, such as "cats". |
A phrase. You can specify that the search results contain a specific phrase. |
"cat food" (quotation marks) |
Topics that contain the literal phrase "cat food" and all its grammatical variations. Without the quotation marks, the query is equivalent to specifying an OR operator, which finds topics with one of the individual words instead of the phrase. |
Search for | Operator | Example |
---|---|---|
Two or more words in the same topic |
|
|
Either word in a topic |
|
|
Topics that do not contain a specific word or phrase |
|
|
Topics that contain one string and do not contain another | ^ (caret) |
cat ^ mouse
|
A combination of search types | ( ) parentheses |
|
Operator Elements
<True/>
This operator always returns true when all nested operators return true. It is useful for declaring default (fall-back) rules. In a mapping engine that is using the early-out mode, make sure that this operator is only used at the end of the synchronization package with the lowest priority.
<False/>
Always returns false. You can use the False
element to temporarily disable rules.
<And> <!-- Operator --> <!-- Operator --> [... more operators ...] </And>
Returns true when all nested operators return true.
The <And>
operator is exclusive. This means that if the result of the first operator is false, the next operator is not evaluated. Use this operator to implement rules with higher performance by placing the simplest condition first and the most complex condition at the end.
<Or> <!-- Operator --> <!-- Operator --> [... more operators ...] </Or>
Returns true if at least one of the operators returns true.
<Not> <!-- Operator --> </Not>
Returns true if the operator does not return true.
The <Not>
operator is exclusive. This means that evaluation stops as soon as a child operator returns true.
<Exists> <!-- Operand --> <Exists>
The value of the operand must not be null.
<IsNode/>
True if the CI is imported as a node, which is the case if the CI type is listed in the nodetypes.xml
file.
True if the element is a managed node in OM.
<IsRootCI/>
True if the CI is a root CI (a root CI has no parent).
<Equals> <!-- Operand --> <!-- Operand --> <!-- ... --> </Equals>
<Equals ignoreCase="[true|false]"> <!-- Operand --> <!-- Operand --> <!-- ... --> </Equals>
The values of the operands must be equal. If there are more than two operands, all operands must be equal to each other. Using the optional attribute ignoreCase
, you can also compare the string values of the operands independent of capitalization. By default the equals operator does not ignore case.
<StartsWith> <!-- Operand --> <!-- Operand --> </StartsWith>
The string value of the first operand must start with the value of the second operand.
<EndsWith> <!-- Operand --> <!-- Operand --> </EndsWith>
The string value of the first operand must end with the value of the second operand.
<Matches> <!-- Operand --> <!-- Operand --> </Matches>
The string value of the first operand must match the regular expression of the second operand.
Example:
<Matches> <Attribute>host_dnsname</Attribute> <Value>.*\.example\.com</Value> </Matches>
For more information on applicable regular expressions, see:
http://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html
<Contains> <!-- Operand --> <!-- Operand --> <Contains>
The value returned by the first operand must contain the value of the second operand. If the operand’s return type is a list, the list must contain at least one element that is equal to the second operand. If the operand’s return type is a string, the value of the second operand must be a substring of the first operand.
<IsDeletionCI/>
True if the CI is used to delete CIs.IsDeletionCI
operator.
We welcome your comments!
To open the configured email client on this computer, open an email window.
Otherwise, copy the information below to a web mail client, and send this email to ovdoc-asm@hpe.com.
Help Topic ID:
Product:
Topic Title:
Feedback: