You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"version": "[13.0,)", //Applies to SQL Server 2016 and higher
28
-
/*Another example: [12.0,13.0) reads as any SQL Server version >= 12.0 and < 13.0*/
28
+
//Another example: "[12.0,13.0)" reads as "any SQL Server version >= 12.0 and < 13.0"
29
29
"platform": "/^(Windows|Linux)$/", //Applies to SQL Server on Windows and Linux
30
30
"engineEdition": "OnPremises, ManagedInstance", //Applies to SQL on Premises and Azure SQL Managed Instance. Here you can also filter specific editions of SQL Server
31
31
"name": { "not": "/^(master|tempdb|model)$/" } //Applies to any database excluding master, tempdb, and msdb
@@ -50,7 +50,7 @@ Demonstrates how to make a custom ruleset containing two checks. The sample cont
50
50
51
51
`Probes` describes how and where to get the required data to check compliance with a rule. You can use T-SQL queries as well as methods from some assemblies. The probe below uses a T-SQL query.
52
52
53
-
```json
53
+
```
54
54
"Custom_DatabaseConfiguration": [ //Probe name is used to reference the probe from a rule
55
55
//Probe can have a few implementations that will be used for different targets
56
56
//This probe has two implementations for different version of SQL Server
0 commit comments