Skip to content

Latest commit

 

History

History
48 lines (41 loc) · 1.83 KB

File metadata and controls

48 lines (41 loc) · 1.83 KB
title authenticationMethodFeatureConfiguration resource type
description Defines the features that are allowed for different authentication methods. For each authentication method, defines the users who are enabled or excluded from using the feature.
author mjsantani
ms.reviewer intelligentaccesspm
ms.localizationpriority medium
ms.subservice entra-sign-in
doc_type resourcePageType
ms.date 07/22/2024

authenticationMethodFeatureConfiguration resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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. The 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"
  }
}