authentication_strength_policies_combination_configurations
Creates, updates, deletes, gets or lists an authentication_strength_policies_combination_configurations resource.
Overview
| Name | authentication_strength_policies_combination_configurations |
| Type | Resource |
| Id | entra_id.policies.authentication_strength_policies_combination_configurations |
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. |
appliesToCombinations | array | Which authentication method combinations this configuration applies to. Must be an allowedCombinations object, part of the authenticationStrengthPolicy. The only possible value for fido2combinationConfigurations is 'fido2'. |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
appliesToCombinations | array | Which 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | authentication_strength_policy_id, authentication_combination_configuration_id | 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. | |
list | select | authentication_strength_policy_id | 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. | |
insert | insert | authentication_strength_policy_id | ||
update | update | authentication_strength_policy_id, authentication_combination_configuration_id | ||
delete | delete | authentication_strength_policy_id, authentication_combination_configuration_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_combination_configuration_id | string | The unique identifier of authenticationCombinationConfiguration |
authentication_strength_policy_id | string | The unique identifier of authenticationStrengthPolicy |
If-Match | string | ETag |
SELECT examples
- get
- list
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
;
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
;
INSERT examples
- insert
- Manifest
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
;
# Description fields are for documentation purposes
- name: authentication_strength_policies_combination_configurations
props:
- name: authentication_strength_policy_id
value: "{{ authentication_strength_policy_id }}"
description: Required parameter for the authentication_strength_policies_combination_configurations resource.
- name: id
value: "{{ id }}"
description: |
The unique identifier for an entity. Read-only.
- name: appliesToCombinations
value:
- "{{ appliesToCombinations }}"
description: |
Which authentication method combinations this configuration applies to. Must be an allowedCombinations object, part of the authenticationStrengthPolicy. The only possible value for fido2combinationConfigurations is 'fido2'.
UPDATE examples
- update
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
- delete
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 }}'
;