Palo Alto Networks System Engineer – Prisma Cloud — Question 28
Which Resource Query Language (RQL) query returns a list of all Azure SQL Databases that have transparent data encryption turned on?
Answer options
- A. config from cloud.resource where api.name = 'azure-sql-db-list' and json.rule = transparentDataEncryption is false
- B. config from cloud.resource where api.name = 'azure-sql-db-list' and json.rule transparentDataEncryption is true
- C. config from cloud.resource where api.name = 'azure-sql-db-list' and json.rule transparentDataEncryption is on
- D. config from cloud.resource where api.name = 'azure-sql-db-list' and json.rule = transparentDataEncryption = true
Correct answer: B
Explanation
The correct answer, B, accurately checks if transparent data encryption is set to true, which is the requirement for retrieving the desired databases. Option A looks for databases where encryption is false, which doesn't meet the requirement. Option C uses 'on', which is not the correct syntax for RQL, and option D incorrectly uses an assignment operator '=' instead of a comparison.