risk_prevention_fraud_protection_providers
Creates, updates, deletes, gets or lists a risk_prevention_fraud_protection_providers resource.
Overview
| Name | risk_prevention_fraud_protection_providers |
| Type | Resource |
| Id | entra_id.identity.risk_prevention_fraud_protection_providers |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
displayName | string | The display name of the fraud protection provider configuration. |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
displayName | string | The display name of the fraud protection provider configuration. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | fraud_protection_provider_id | Read the properties and relationships of fraudProtectionProvider object. The following derived types are currently supported. | |
list | select | Get a list of the fraudProtectionProvider object and their properties. The following derived types are supported: | ||
insert | insert | Create a new fraudProtectionProvider object. You can create one of the following subtypes that are derived from fraudProtectionProvider. | ||
update | update | fraud_protection_provider_id | Update the properties of a fraudProtectionProvider object. The following derived types are currently supported. | |
delete | delete | fraud_protection_provider_id | If-Match | Delete a fraudProtectionProvider object. |
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 |
|---|---|---|
fraud_protection_provider_id | string | The unique identifier of fraudProtectionProvider |
If-Match | string | ETag |
SELECT examples
- get
- list
Read the properties and relationships of fraudProtectionProvider object. The following derived types are currently supported.
SELECT
id,
displayName
FROM entra_id.identity.risk_prevention_fraud_protection_providers
WHERE fraud_protection_provider_id = '{{ fraud_protection_provider_id }}' -- required
;
Get a list of the fraudProtectionProvider object and their properties. The following derived types are supported:
SELECT
id,
displayName
FROM entra_id.identity.risk_prevention_fraud_protection_providers
;
INSERT examples
- insert
- Manifest
Create a new fraudProtectionProvider object. You can create one of the following subtypes that are derived from fraudProtectionProvider.
INSERT INTO entra_id.identity.risk_prevention_fraud_protection_providers (
id,
displayName
)
SELECT
'{{ id }}',
'{{ displayName }}'
RETURNING
id,
displayName
;
# Description fields are for documentation purposes
- name: risk_prevention_fraud_protection_providers
props:
- name: id
value: "{{ id }}"
description: |
The unique identifier for an entity. Read-only.
- name: displayName
value: "{{ displayName }}"
description: |
The display name of the fraud protection provider configuration.
UPDATE examples
- update
Update the properties of a fraudProtectionProvider object. The following derived types are currently supported.
UPDATE entra_id.identity.risk_prevention_fraud_protection_providers
SET
id = '{{ id }}',
displayName = '{{ displayName }}'
WHERE
fraud_protection_provider_id = '{{ fraud_protection_provider_id }}' --required
RETURNING
id,
displayName;
DELETE examples
- delete
Delete a fraudProtectionProvider object.
DELETE FROM entra_id.identity.risk_prevention_fraud_protection_providers
WHERE fraud_protection_provider_id = '{{ fraud_protection_provider_id }}' --required
AND If-Match = '{{ If-Match }}'
;