Skip to main content

conditional_access_authentication_strength_authentication_method_modes

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

Overview

Nameconditional_access_authentication_strength_authentication_method_modes
TypeResource
Identra_id.identity.conditional_access_authentication_strength_authentication_method_modes

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
authenticationMethodstring (password, voice, hardwareOath, softwareOath, sms, fido2, windowsHelloForBusiness, microsoftAuthenticator, temporaryAccessPass, email, x509Certificate, federation, unknownFutureValue, qrCodePin) (title: baseAuthenticationMethod)
displayNamestringThe display name of this mode

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectauthentication_method_mode_detail_idNames and descriptions of all valid authentication method modes in the system.
listselectGet a list of all supported authentication methods, or all supported authentication method combinations as a list of authenticationMethodModes objects and their properties.
insertinsert
updateupdateauthentication_method_mode_detail_id
deletedeleteauthentication_method_mode_detail_idIf-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
authentication_method_mode_detail_idstringThe unique identifier of authenticationMethodModeDetail
If-MatchstringETag

SELECT examples

Names and descriptions of all valid authentication method modes in the system.

SELECT
id,
authenticationMethod,
displayName
FROM entra_id.identity.conditional_access_authentication_strength_authentication_method_modes
WHERE authentication_method_mode_detail_id = '{{ authentication_method_mode_detail_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.identity.conditional_access_authentication_strength_authentication_method_modes (
id,
authenticationMethod,
displayName
)
SELECT
'{{ id }}',
'{{ authenticationMethod }}',
'{{ displayName }}'
RETURNING
id,
authenticationMethod,
displayName
;

UPDATE examples

No description available.

UPDATE entra_id.identity.conditional_access_authentication_strength_authentication_method_modes
SET
id = '{{ id }}',
authenticationMethod = '{{ authenticationMethod }}',
displayName = '{{ displayName }}'
WHERE
authentication_method_mode_detail_id = '{{ authentication_method_mode_detail_id }}' --required
RETURNING
id,
authenticationMethod,
displayName;

DELETE examples

No description available.

DELETE FROM entra_id.identity.conditional_access_authentication_strength_authentication_method_modes
WHERE authentication_method_mode_detail_id = '{{ authentication_method_mode_detail_id }}' --required
AND If-Match = '{{ If-Match }}'
;