authenticationMethodConfiguration 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.
An abstract type that represents the settings for each authentication method. It has the configuration of whether a specific authentication method is enabled or disabled for the tenant and which users and groups can register and use that method.
The following authentication methods are derived from the authenticationMethodConfiguration resource type:
- emailAuthenticationMethodConfiguration
- externalAuthenticationMethodConfiguration
- fido2AuthenticationMethodConfiguration
- hardwareOathAuthenticationMethodConfiguration
- microsoftAuthenticatorAuthenticationMethodConfiguration
- smsAuthenticationMethodConfiguration
- softwareOathAuthenticationMethodConfiguration
- temporaryAccessPassAuthenticationMethodConfiguration
- voiceAuthenticationMethodConfiguration
- x509CertificateAuthenticationMethodConfiguration
Properties
Property | Type | Description |
---|---|---|
excludeTargets | excludeTarget collection | Groups of users that are excluded from a policy. |
id | String | The policy name. |
state | authenticationMethodState | The state of the policy. Possible values are: enabled , disabled . |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.authenticationMethodConfiguration",
"id": "String (identifier)",
"state": "String",
"excludeTargets": [
{
"@odata.type": "microsoft.graph.excludeTarget"
}
]
}