authenticationMethodFeatureConfiguration 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.

Defines the features that are allowed for different authentication methods. For each authentication method, defines the users who are enabled to use or excluded from using the feature.

Properties

Property Type Description
excludeTarget featureTarget A single entity that's excluded from using this feature.
includeTarget featureTarget A single entity that's allowed to use this feature.
state advancedConfigState Enable or disable the feature. Possible values are: default, enabled, disabled, unknownFutureValue. The default value is used when the configuration hasn't been explicitly set and uses the default behavior of Microsoft Entra ID for the setting. The default value is disabled.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.authenticationMethodFeatureConfiguration",
  "state": "String",
  "includeTarget": {
    "@odata.type": "microsoft.graph.featureTarget"
  },
  "excludeTarget": {
    "@odata.type": "microsoft.graph.featureTarget"
  }
}