authenticationEventListener 资源类型

命名空间:microsoft.graph

重要

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

若要自定义身份验证过程,可以注册侦听器,以指定对于某些事件,在某些情况下,可以调用某些自定义逻辑。 这是派生以下类型的抽象类型。

注意

最多可以有 250 个事件侦听器。

继承自 entity

Methods

方法 返回类型 Description
List authenticationEventListener 集合 检索派生自 authenticationEventListener 的对象类型的列表。
创建 authenticationEventListener Create派生自 authenticationEventListener 的新对象类型。
Get authenticationEventListener 读取派生自 authenticationEventListener 的对象类型的属性和关系。
更新 更新派生自 authenticationEventListener 的对象类型的属性。
删除 删除派生自 authenticationEventListener 的对象类型。

属性

属性 类型 说明
authenticationEventsFlowId String authenticationEventsFlow 对象的标识符。
conditions authenticationConditions 此 authenticationEventListener 应触发的条件。
id String 此 authenticationEventListener 的标识符。 继承自 entity
priority Int32 此处理程序的优先级。 在 0 (低优先级) 和 1000 (更高优先级) 之间。

关系

无。

JSON 表示形式

以下 JSON 表示形式显示了资源类型。

{
  "@odata.type": "#microsoft.graph.authenticationEventListener",
  "id": "String (identifier)",
  "priority": "Integer",
  "conditions": {
    "@odata.type": "microsoft.graph.authenticationConditions"
  },
  "authenticationEventsFlowId": "String"
}