authentication_flows_policy
Creates, updates, deletes, gets or lists an authentication_flows_policy resource.
Overview
| Name | authentication_flows_policy |
| Type | Resource |
| Id | entra_id.policies.authentication_flows_policy |
Fields
The following fields are returned by SELECT queries:
- get
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
description | string | Inherited property. A description of the policy. Optional. Read-only. |
displayName | string | Inherited property. The human-readable name of the policy. Optional. Read-only. |
selfServiceSignUp | | Contains selfServiceSignUpAuthenticationFlowConfiguration settings that convey whether self-service sign-up is enabled or disabled. Optional. Read-only. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | Read the properties and relationships of an authenticationFlowsPolicy object. | ||
update | update | Update the selfServiceSignUp property of an authenticationFlowsPolicy object. The properties id, type, and description cannot be modified. | ||
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
Read the properties and relationships of an authenticationFlowsPolicy object.
SELECT
id,
description,
displayName,
selfServiceSignUp
FROM entra_id.policies.authentication_flows_policy
;
UPDATE examples
- update
Update the selfServiceSignUp property of an authenticationFlowsPolicy object. The properties id, type, and description cannot be modified.
UPDATE entra_id.policies.authentication_flows_policy
SET
id = '{{ id }}',
description = '{{ description }}',
displayName = '{{ displayName }}',
selfServiceSignUp = '{{ selfServiceSignUp }}'
RETURNING
id,
description,
displayName,
selfServiceSignUp;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.policies.authentication_flows_policy
WHERE If-Match = '{{ If-Match }}'
;