Filter by a key
This filter displays resources tagged with tag key "A". The platform does not use the operation (Any match or Strict)
Filter by keys
Enter the Keys and select an operation.
Any match is the "or" case: resources tagged with tag key "A" or "B"
Strict is the "and" case: resources tagged with tag key "A" and "B".
Filter by values
Enter a list of Values and select an operation.
Any match is the "or" case: resources tagged with tags with values "1" or "2".
Strict is the "and" case: resources tagged with tags with values "1" and "2".
Filter by a key and a value
Example: resources tagged with tags with tags A=1. The platform does not use the operation (Any match or Strict).
Filter by a concrete key and values
Enter a key and a list of values.
Only the "or" case is valid: resources tagged with A=1 or A=2. The "and" case is not allowed because you cannot add the same key to a resource more than once.
Complete example 'OR'
{
"tags" : { "A" : ["1", "2"], "B" : ["3"]},
"keys": ["C", "D"],
"values": ["4", "5"],
"operation": "OR"
}
A=1 OR A=2 OR B=3 OR C=* OR D=* OR *=4 OR *=5
Complete example 'AND'
{
"tags" : { "A" : ["1", "2"], "B" : ["3"]},
"keys": ["C", "D"],
"values": ["4", "5"],
"operation": "AND"
}
(A=1 OR A=2) AND B=3 AND C=* AND D=* AND *=4 AND *=5