Help Center
Choose product document...
Veeam ONE 9.0 (Archived)
Business View User Guide

Operators

To manipulate values in grouping expressions, you can use the following operators:

Operator

Return Data Type

Description

Example

+

Text (string)

Numeric

Joins two string values to one string.

Adds two numeric values.

For a VM included in a replication job, expression "Replication Job: " + ReplicationJob retuns a string similar to Replication Job: Webserver Daily Replication.

Expression 2 + 2 returns 4. Expression 2.05 + 1 returns 3.05.

<

Boolean

Less than.

Returns True if the value of left operand is less than the value of right operand. Otherwise, returns False.

For a VM, expression Memory < 2048 returns True if the amount of memory configured for a VM is less than 2048 GB.

<=

Boolean

Less than or equal to.

Returns True if the value of left operand is less than or equal to the value of right operand. Otherwise, returns False.

For a VM, expression Memory <= 2048 returns True if the amount of memory configured for a VM is less than or equal to 2048 GB.

>

Boolean

Greater than.

Returns True if the value of left operand is greater than the value of right operand. Otherwise, returns False.

For a VM, expression Memory > 2048 returns True if the amount of memory configured for a VM is greater than 2048 GB.

>=

Boolean

Greater than or equal to.

Returns True if the value of left operand is greater than or equal to the value of right operand. Otherwise, returns False.

For a VM, expression Memory >= 2048 returns True if the amount of memory configured for a VM is greater than or equal to 2048 GB.

=

Boolean

Equal.

Returns True if the value of left operand is the same as the value of right operand. Otherwise, returns False.

For a VM, expression Memory = 2048 returns True if the amount of memory configured for a VM is equal to 2048 GB.

For a VM, expression Name = "vdi001" returns True if the VM name is vdi001.

<>

Boolean

Not equal.

Returns True if the value of left operand is not the same as the value of right operand. Otherwise, returns False.

For a VM, expression Memory <> 2048 returns True if the amount of memory configured for a VM is less or greater than 2048 GB.

For a VM, expression Tag(department) <> "support" returns True if a tag of the department category assigned to a VM is other than support.

 

Veeam Large Logo

Business View User Guide