risk_prevention_web_application_firewall_verifications
Creates, updates, deletes, gets or lists a risk_prevention_web_application_firewall_verifications resource.
Overview
| Name | risk_prevention_web_application_firewall_verifications |
| Type | Resource |
| Id | entra_id.identity.risk_prevention_web_application_firewall_verifications |
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. |
provider | | Reference to a provider resource associated with this verification model. Represents a WAF provider that can be used to verify or manage the host. |
providerType | string | (akamai, cloudflare, unknownFutureValue) (title: webApplicationFirewallProviderType) |
verificationResult | | An object describing the outcome of the verification operation, including status, errors or warnings |
verifiedDetails | | Details of DNS configuration |
verifiedHost | string | The host (domain or subdomain) that was verified as part of this verification operation. |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
provider | | Reference to a provider resource associated with this verification model. Represents a WAF provider that can be used to verify or manage the host. |
providerType | string | (akamai, cloudflare, unknownFutureValue) (title: webApplicationFirewallProviderType) |
verificationResult | | An object describing the outcome of the verification operation, including status, errors or warnings |
verifiedDetails | | Details of DNS configuration |
verifiedHost | string | The host (domain or subdomain) that was verified as part of this verification operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | web_application_firewall_verification_model_id | Read the properties and relationships of webApplicationFirewallVerificationModel object. | |
list | select | Get a list of the webApplicationFirewallVerificationModel objects and their properties. | ||
insert | insert | |||
update | update | web_application_firewall_verification_model_id | ||
delete | delete | web_application_firewall_verification_model_id | If-Match | Delete a webApplicationFirewallVerificationModel 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 |
|---|---|---|
web_application_firewall_verification_model_id | string | The unique identifier of webApplicationFirewallVerificationModel |
If-Match | string | ETag |
SELECT examples
- get
- list
Read the properties and relationships of webApplicationFirewallVerificationModel object.
SELECT
id,
provider,
providerType,
verificationResult,
verifiedDetails,
verifiedHost
FROM entra_id.identity.risk_prevention_web_application_firewall_verifications
WHERE web_application_firewall_verification_model_id = '{{ web_application_firewall_verification_model_id }}' -- required
;
Get a list of the webApplicationFirewallVerificationModel objects and their properties.
SELECT
id,
provider,
providerType,
verificationResult,
verifiedDetails,
verifiedHost
FROM entra_id.identity.risk_prevention_web_application_firewall_verifications
;
INSERT examples
- insert
- Manifest
No description available.
INSERT INTO entra_id.identity.risk_prevention_web_application_firewall_verifications (
id,
providerType,
verificationResult,
verifiedDetails,
verifiedHost,
provider
)
SELECT
'{{ id }}',
'{{ providerType }}',
'{{ verificationResult }}',
'{{ verifiedDetails }}',
'{{ verifiedHost }}',
'{{ provider }}'
RETURNING
id,
provider,
providerType,
verificationResult,
verifiedDetails,
verifiedHost
;
# Description fields are for documentation purposes
- name: risk_prevention_web_application_firewall_verifications
props:
- name: id
value: "{{ id }}"
description: |
The unique identifier for an entity. Read-only.
- name: providerType
value: "{{ providerType }}"
valid_values: ['akamai', 'cloudflare', 'unknownFutureValue']
- name: verificationResult
value: "{{ verificationResult }}"
description: |
An object describing the outcome of the verification operation, including status, errors or warnings
- name: verifiedDetails
value: "{{ verifiedDetails }}"
description: |
Details of DNS configuration
- name: verifiedHost
value: "{{ verifiedHost }}"
description: |
The host (domain or subdomain) that was verified as part of this verification operation.
- name: provider
value: "{{ provider }}"
description: |
Reference to a provider resource associated with this verification model. Represents a WAF provider that can be used to verify or manage the host.
UPDATE examples
- update
No description available.
UPDATE entra_id.identity.risk_prevention_web_application_firewall_verifications
SET
id = '{{ id }}',
providerType = '{{ providerType }}',
verificationResult = '{{ verificationResult }}',
verifiedDetails = '{{ verifiedDetails }}',
verifiedHost = '{{ verifiedHost }}',
provider = '{{ provider }}'
WHERE
web_application_firewall_verification_model_id = '{{ web_application_firewall_verification_model_id }}' --required
RETURNING
id,
provider,
providerType,
verificationResult,
verifiedDetails,
verifiedHost;
DELETE examples
- delete
Delete a webApplicationFirewallVerificationModel object.
DELETE FROM entra_id.identity.risk_prevention_web_application_firewall_verifications
WHERE web_application_firewall_verification_model_id = '{{ web_application_firewall_verification_model_id }}' --required
AND If-Match = '{{ If-Match }}'
;