conditional_access_authentication_strength
Creates, updates, deletes, gets or lists a conditional_access_authentication_strength resource.
Overview
| Name | conditional_access_authentication_strength |
| Type | Resource |
| Id | entra_id.identity.conditional_access_authentication_strength |
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. |
authenticationMethodModes | array | Names and descriptions of all valid authentication method modes in the system. |
combinations | array | |
policies | array | A collection of authentication strength policies that exist for this tenant, including both built-in and custom policies. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | |||
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
Retrieved navigation property
SELECT
id,
authenticationMethodModes,
combinations,
policies
FROM entra_id.identity.conditional_access_authentication_strength
;
UPDATE examples
- update
No description available.
UPDATE entra_id.identity.conditional_access_authentication_strength
SET
id = '{{ id }}',
combinations = '{{ combinations }}',
authenticationMethodModes = '{{ authenticationMethodModes }}',
policies = '{{ policies }}'
RETURNING
id,
authenticationMethodModes,
combinations,
policies;
DELETE examples
- delete
No description available.
DELETE FROM entra_id.identity.conditional_access_authentication_strength
WHERE If-Match = '{{ If-Match }}'
;