Skip to main content

conditional_access_authentication_strength

Creates, updates, deletes, gets or lists a conditional_access_authentication_strength resource.

Overview

Nameconditional_access_authentication_strength
TypeResource
Identra_id.identity.conditional_access_authentication_strength

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
authenticationMethodModesarrayNames and descriptions of all valid authentication method modes in the system.
combinationsarray
policiesarrayA 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:

NameAccessible byRequired ParamsOptional ParamsDescription
getselect
updateupdate
deletedeleteIf-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.

NameDatatypeDescription
If-MatchstringETag

SELECT examples

Retrieved navigation property

SELECT
id,
authenticationMethodModes,
combinations,
policies
FROM entra_id.identity.conditional_access_authentication_strength
;

UPDATE examples

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

No description available.

DELETE FROM entra_id.identity.conditional_access_authentication_strength
WHERE If-Match = '{{ If-Match }}'
;