Skip to main content

authentication_method_configurations

Creates, updates, deletes, gets or lists an authentication_method_configurations resource.

Overview

Nameauthentication_method_configurations
TypeResource
Identra_id.authentication_methods_policy.authentication_method_configurations

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
excludeTargetsarrayGroups of users that are excluded from a policy.
stateThe state of the policy. The possible values are: enabled, disabled.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectauthentication_method_configuration_idRepresents the settings for each authentication method. Automatically expanded on GET /policies/authenticationMethodsPolicy.
listselectRepresents the settings for each authentication method. Automatically expanded on GET /policies/authenticationMethodsPolicy.
insertinsert
updateupdateauthentication_method_configuration_id
deletedeleteauthentication_method_configuration_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_configuration_idstringThe unique identifier of authenticationMethodConfiguration
If-MatchstringETag

SELECT examples

Represents the settings for each authentication method. Automatically expanded on GET /policies/authenticationMethodsPolicy.

SELECT
id,
excludeTargets,
state
FROM entra_id.authentication_methods_policy.authentication_method_configurations
WHERE authentication_method_configuration_id = '{{ authentication_method_configuration_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.authentication_methods_policy.authentication_method_configurations (
id,
excludeTargets,
state
)
SELECT
'{{ id }}',
'{{ excludeTargets }}',
'{{ state }}'
RETURNING
id,
excludeTargets,
state
;

UPDATE examples

No description available.

UPDATE entra_id.authentication_methods_policy.authentication_method_configurations
SET
id = '{{ id }}',
excludeTargets = '{{ excludeTargets }}',
state = '{{ state }}'
WHERE
authentication_method_configuration_id = '{{ authentication_method_configuration_id }}' --required
RETURNING
id,
excludeTargets,
state;

DELETE examples

No description available.

DELETE FROM entra_id.authentication_methods_policy.authentication_method_configurations
WHERE authentication_method_configuration_id = '{{ authentication_method_configuration_id }}' --required
AND If-Match = '{{ If-Match }}'
;