v8.3.3
I'm trying to return the Alarm(s) Configured property:
when running this query via a script, however the "Copy query as script" option completely disregards the Alarms configured return property configured in the tag report tool:
provider = 'default'
query = {
"options": {
"includeUdtMembers": True,
"includeUdtDefinitions": True
},
"condition": {
"attributes": {
"values": [],
"requireAll": True
},
"properties": {
"op": "Or",
"conditions": [
{
"op": "And",
"conditions": [
{
"prop": "tagType",
"comp": "Equal",
"value": "AtomicTag"
}
]
}
]
}
}
}
results = system.tag.query(provider, query)
I don't know what this prop is called to be able to add it manually as the User Manual has no information about the query param..
I don't really want to return all alarms configured as this will significantly increase the size of the data
