risk_prevention
Creates, updates, deletes, gets or lists a risk_prevention resource.
Overview
| Name | risk_prevention |
| Type | Resource |
| Id | entra_id.identity.risk_prevention |
Fields
The following fields are returned by SELECT queries:
- get
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
fraudProtectionProviders | array | Represents entry point for fraud protection provider configurations for Microsoft Entra External ID tenants. |
webApplicationFirewallProviders | array | Collection of WAF provider configurations registered in the External ID tenant. |
webApplicationFirewallVerifications | array | Collection of verification operations performed for domains or hosts with WAF providers registered in the External ID tenant. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | Represents the entry point for fraud and risk prevention configurations in Microsoft Entra External ID, including third-party provider settings. | ||
update | update | |||
delete | delete | If-Match |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
If-Match | string | ETag |
SELECT examples
- get
Represents the entry point for fraud and risk prevention configurations in Microsoft Entra External ID, including third-party provider settings.
SELECT
fraudProtectionProviders,
webApplicationFirewallProviders,
webApplicationFirewallVerifications
FROM entra_id.identity.risk_prevention
;
UPDATE examples
- update
No description available.
UPDATE entra_id.identity.risk_prevention
SET
fraudProtectionProviders = '{{ fraudProtectionProviders }}',
webApplicationFirewallProviders = '{{ webApplicationFirewallProviders }}',
webApplicationFirewallVerifications = '{{ webApplicationFirewallVerifications }}'
RETURNING
fraudProtectionProviders,
webApplicationFirewallProviders,
webApplicationFirewallVerifications;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.identity.risk_prevention
WHERE If-Match = '{{ If-Match }}'
;