authentication_events_flows_conditions
Creates, updates, deletes, gets or lists an authentication_events_flows_conditions resource.
Overview
| Name | authentication_events_flows_conditions |
| Type | Resource |
| Id | entra_id.identity.authentication_events_flows_conditions |
Fields
The following fields are returned by SELECT queries:
- get
Entity result.
| Name | Datatype | Description |
|---|---|---|
applications | object | Applications which trigger a custom authentication extension. (title: authenticationConditionsApplications) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | authentication_events_flow_id | The conditions representing the context of the authentication request that's used to decide whether the events policy is invoked. Supports $filter (eq). See support for filtering on user flows for syntax information. |
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 |
|---|---|---|
authentication_events_flow_id | string | The unique identifier of authenticationEventsFlow |
SELECT examples
- get
The conditions representing the context of the authentication request that's used to decide whether the events policy is invoked. Supports $filter (eq). See support for filtering on user flows for syntax information.
SELECT
applications
FROM entra_id.identity.authentication_events_flows_conditions
WHERE authentication_events_flow_id = '{{ authentication_events_flow_id }}' -- required
;