Skip to main content

authentication_strength_policies_combination_configurations

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

Overview

Nameauthentication_strength_policies_combination_configurations
TypeResource
Identra_id.policies.authentication_strength_policies_combination_configurations

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
appliesToCombinationsarrayWhich authentication method combinations this configuration applies to. Must be an allowedCombinations object, part of the authenticationStrengthPolicy. The only possible value for fido2combinationConfigurations is 'fido2'.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectauthentication_strength_policy_id, authentication_combination_configuration_idSettings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods.
listselectauthentication_strength_policy_idSettings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods.
insertinsertauthentication_strength_policy_id
updateupdateauthentication_strength_policy_id, authentication_combination_configuration_id
deletedeleteauthentication_strength_policy_id, authentication_combination_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_combination_configuration_idstringThe unique identifier of authenticationCombinationConfiguration
authentication_strength_policy_idstringThe unique identifier of authenticationStrengthPolicy
If-MatchstringETag

SELECT examples

Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods.

SELECT
id,
appliesToCombinations
FROM entra_id.policies.authentication_strength_policies_combination_configurations
WHERE authentication_strength_policy_id = '{{ authentication_strength_policy_id }}' -- required
AND authentication_combination_configuration_id = '{{ authentication_combination_configuration_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.policies.authentication_strength_policies_combination_configurations (
id,
appliesToCombinations,
authentication_strength_policy_id
)
SELECT
'{{ id }}',
'{{ appliesToCombinations }}',
'{{ authentication_strength_policy_id }}'
RETURNING
id,
appliesToCombinations
;

UPDATE examples

No description available.

UPDATE entra_id.policies.authentication_strength_policies_combination_configurations
SET
id = '{{ id }}',
appliesToCombinations = '{{ appliesToCombinations }}'
WHERE
authentication_strength_policy_id = '{{ authentication_strength_policy_id }}' --required
AND authentication_combination_configuration_id = '{{ authentication_combination_configuration_id }}' --required
RETURNING
id,
appliesToCombinations;

DELETE examples

No description available.

DELETE FROM entra_id.policies.authentication_strength_policies_combination_configurations
WHERE authentication_strength_policy_id = '{{ authentication_strength_policy_id }}' --required
AND authentication_combination_configuration_id = '{{ authentication_combination_configuration_id }}' --required
AND If-Match = '{{ If-Match }}'
;