Skip to main content

authentication_methods_policy_authentication_method_configurations

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

Overview

Nameauthentication_methods_policy_authentication_method_configurations
TypeResource
Identra_id.policies.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_idRead the properties and relationships of an externalAuthenticationMethodConfiguration object.
listselectRead the properties and relationships of an externalAuthenticationMethodConfiguration object.
insertinsert
updateupdateauthentication_method_configuration_idUpdate the properties of an externalAuthenticationMethodConfiguration object.
deletedeleteauthentication_method_configuration_idIf-MatchDelete an externalAuthenticationMethodConfiguration object.

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

Read the properties and relationships of an externalAuthenticationMethodConfiguration object.

SELECT
id,
excludeTargets,
state
FROM entra_id.policies.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.policies.authentication_methods_policy_authentication_method_configurations (
id,
excludeTargets,
state
)
SELECT
'{{ id }}',
'{{ excludeTargets }}',
'{{ state }}'
RETURNING
id,
excludeTargets,
state
;

UPDATE examples

Update the properties of an externalAuthenticationMethodConfiguration object.

UPDATE entra_id.policies.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

Delete an externalAuthenticationMethodConfiguration object.

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