microsoftAuthenticatorAuthenticationMethodConfiguration 资源类型

命名空间:microsoft.graph

重要

Microsoft Graph /beta 版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。

表示 Microsoft Authenticator 身份验证方法策略。 身份验证方法策略定义配置设置以及启用以使用身份验证方法的用户或组。

继承自 authenticationMethodConfiguration

方法

方法 返回类型 说明
Get microsoftAuthenticatorAuthenticationMethodConfiguration 读取 microsoftAuthenticatorAuthenticationMethodConfiguration 对象的属性和关系。
更新 更新 microsoftAuthenticatorAuthenticationMethodConfiguration 对象的属性。
删除 将 microsoftAuthenticatorAuthenticationMethodConfiguration 对象还原为其默认配置。

属性

属性 类型 说明
excludeTargets excludeTarget 集合 从策略中排除的用户组。
id String 身份验证方法策略标识符。
isSoftwareOathEnabled 布尔值 true 如果用户可以使用 Microsoft Authenticator 应用生成的 OTP 代码, false 则为 ;否则为 。
state authenticationMethodState 可取值为:enableddisabled
featureSettings microsoftAuthenticatorFeatureSettings Microsoft Authenticator 设置的集合,例如数字匹配和位置上下文,以及是否仅为所有用户或特定用户启用它们。

关系

关系 类型 说明
includeTargets microsoftAuthenticatorAuthenticationMethodTarget 集合 启用以使用身份验证方法的组的集合。 默认情况下展开。

JSON 表示形式

下面是资源的 JSON 表示形式。

{
  "@odata.type": "#microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration",
  "id": "String (identifier)",
  "state": "String",
  "excludeTargets": [
    {
      "@odata.type": "microsoft.graph.excludeTarget"
    }
  ],
  "isSoftwareOathEnabled": "Boolean",
  "featureSettings": {
    "@odata.type": "microsoft.graph.microsoftAuthenticatorFeatureSettings"
  }
}