conditional_access_authentication_strength_authentication_method_modes
Creates, updates, deletes, gets or lists a conditional_access_authentication_strength_authentication_method_modes resource.
Overview
| Name | conditional_access_authentication_strength_authentication_method_modes |
| Type | Resource |
| Id | entra_id.identity.conditional_access_authentication_strength_authentication_method_modes |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
authenticationMethod | string | (password, voice, hardwareOath, softwareOath, sms, fido2, windowsHelloForBusiness, microsoftAuthenticator, temporaryAccessPass, email, x509Certificate, federation, unknownFutureValue, qrCodePin) (title: baseAuthenticationMethod) |
displayName | string | The display name of this mode |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
authenticationMethod | string | (password, voice, hardwareOath, softwareOath, sms, fido2, windowsHelloForBusiness, microsoftAuthenticator, temporaryAccessPass, email, x509Certificate, federation, unknownFutureValue, qrCodePin) (title: baseAuthenticationMethod) |
displayName | string | The display name of this mode |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | authentication_method_mode_detail_id | Names and descriptions of all valid authentication method modes in the system. | |
list | select | Get a list of all supported authentication methods, or all supported authentication method combinations as a list of authenticationMethodModes objects and their properties. | ||
insert | insert | |||
update | update | authentication_method_mode_detail_id | ||
delete | delete | authentication_method_mode_detail_id | 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 |
|---|---|---|
authentication_method_mode_detail_id | string | The unique identifier of authenticationMethodModeDetail |
If-Match | string | ETag |
SELECT examples
- get
- list
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
;
Get a list of all supported authentication methods, or all supported authentication method combinations as a list of authenticationMethodModes objects and their properties.
SELECT
id,
authenticationMethod,
displayName
FROM entra_id.identity.conditional_access_authentication_strength_authentication_method_modes
;
INSERT examples
- insert
- Manifest
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
;
# Description fields are for documentation purposes
- name: conditional_access_authentication_strength_authentication_method_modes
props:
- name: id
value: "{{ id }}"
description: |
The unique identifier for an entity. Read-only.
- name: authenticationMethod
value: "{{ authenticationMethod }}"
valid_values: ['password', 'voice', 'hardwareOath', 'softwareOath', 'sms', 'fido2', 'windowsHelloForBusiness', 'microsoftAuthenticator', 'temporaryAccessPass', 'email', 'x509Certificate', 'federation', 'unknownFutureValue', 'qrCodePin']
- name: displayName
value: "{{ displayName }}"
description: |
The display name of this mode
UPDATE examples
- update
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
- delete
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 }}'
;