authenticationCombinationConfiguration resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Sets restrictions on specific types, modes, or versions of an authentication method that is tied to specific auth method combinations used in an authentication strength. The following resources inherit from this abstract and define the various types of combination configurations:
Inherits from entity.
Methods
Method | Return type | Description |
---|---|---|
List | authenticationCombinationConfiguration collection | Get a list of the authenticationCombinationConfiguration objects and their properties. |
Create | authenticationCombinationConfiguration | Create a new authenticationCombinationConfiguration |
Get | authenticationCombinationConfiguration | Read the properties and relationships of a authenticationCombinationConfiguration object. |
Update | authenticationCombinationConfiguration | Update the properties of an authenticationCombinationConfiguration object. |
Delete | None | Delete an authenticationCombinationConfiguration obejct. |
Update allowed combinations | updateAllowedCombinationsResult | Update the allowed authenticationCombinationConfiguration for a given authenticationStrengthPolicy. |
Properties
Property | Type | Description |
---|---|---|
appliesToCombinations | authenticationMethodModes collection | Which authentication method combinations this configuration applies to. Must be an allowedCombinations object defined for the authenticationStrengthPolicy. For fido2combinationConfigurations use "fido2" , for x509certificatecombinationconfiguration use "x509CertificateSingleFactor" or "x509CertificateMultiFactor" . |
id | String | A unique system-generated identifier. Inherited from entity. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.authenticationCombinationConfiguration",
"id": "String (identifier)",
"appliesToCombinations": [
"String"
]
}