Filters
The /discoveryRules/{ID} has the /discoveryRules/{ID}/filters sub-resource with properties representing discovery filters.
Property | Type | Description |
---|---|---|
status | string | Status of a discovery filter. Possible values:
|
type | string | Type of a discovery filter. Possible values:
|
backupServers | boolean | Indicates whether server operation systems should be discovered. |
backupWorkstations | boolean | Indicates whether client operation systems should be discovered. |
backupExchange | boolean | Indicates whether Microsoft Exchange Server should be discovered on a remote computer. |
backupSql | boolean | Indicates whether Microsoft SQL Server should be discovered on a remote computer. |
backupAD | boolean | Indicates whether Microsoft Active Directory should be discovered on a remote computer. |
backupSharepoint | boolean | Indicates whether Microsoft SharePoint should be discovered on a remote computer. |
backupOracle | boolean | Indicates whether Oracle Database should be discovered on a remote computer. |
backupOtherapp | boolean | Indicates whether other applications should be discovered on a remote computer. |
backupVirtualMachine | boolean | Indicates whether computers that run on VMware vSphere and Microsoft Hyper-V should be discovered. |
backupPhysicalMachine | boolean | Indicates whether physical computers should be discovered. |
backupOtherMachine | boolean | Indicates whether computers that run on other platforms should be discovered. |
backupAzureMachine | boolean | Indicates whether computers that run on Microsoft Azure should be discovered. |
backupAWSmachine | boolean | Indicates whether computers that run on Amazon Web Services should be discovered. |
Example
[ { "backupExchange": false, "backupSql": true, "backupAD": true, "backupSharepoint": true, "backupOracle": false, "backupOtherapp": true, "status": "Enabled", "type": "Application" }, { "backupServers": true, "backupWorkstations": true, "status": "Disabled", "type": "Os" }, { "backupVirtualMachine": true, "backupPhysicalMachine": true, "backupOtherMachine": false, "backupAzureMachine": true, "backupAWSmachine": true, "status": "Enabled", "type": "Platform" } ] |