View all questions & answers for the PSE-PrismaCloud exam
Which RQL string returns a list of all Azure virtual machines that are not currently running?
config where api.name = 'azure-vm-list' AND json.rule = powerState = "off'
config where api.name = 'azure-vm-list' AND json.rule = powerState does not contain "running"
config where api.name = 'azure-vm-list' AND json.rule = powerState = "running"
config where api.name = 'azure-vm-list' AND json.rule = powerState contains "running"
Submit