externalUsersSelfServiceSignUpEventsFlow 资源类型
命名空间:microsoft.graph
表示员工或外部租户中Microsoft Entra 外部 ID 中的外部标识的自助服务用户流。 用户流作为多事件策略实现,在用户交互的特定点执行特定事件。
方法
无。
有关管理此资源类型的 API 操作列表,请参阅 authenticationEventsFlow 资源类型。
属性
属性 | 类型 | 说明 |
---|---|---|
id | String | 实体的唯一标识符。 只读。 继承自 entity。 |
displayName | String | 必填。 事件策略的显示名称。 必须是唯一的。 继承自 authenticationEventsFlow。 |
说明 | String | 可选。 事件策略的说明。 继承自 authenticationEventsFlow。 |
conditions | authenticationConditions | 可选。 表示身份验证请求上下文的条件,用于确定是否调用事件策略。 继承自 authenticationEventsFlow。 |
onInteractiveAuthFlowStart | onInteractiveAuthFlowStartHandler | 必填。 在准备好启动身份验证流时要调用的内容的配置。 |
onAttributeCollection | onAttributeCollectionHandler | 在准备好从用户收集属性时要调用的内容的配置。 |
onAuthenticationMethodLoadStart | onAuthenticationMethodLoadStartHandler | 必填。 在身份验证方法准备好向用户显示时要调用的内容的配置。 必须至少链接一个标识提供者。 支持 $filter (eq )。 有关语法信息 ,请参阅支持对用户流进行筛选 。 |
onUserCreateStart | onUserCreateStartHandler | 用于在创建用户期间调用的内容的配置。 |
支持对用户流进行筛选
- 筛选 identityProviders:
?$filter=microsoft.graph.externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/microsoft.graph.onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/any(idp:idp/id eq '{identityProvider-id}')
- 筛选属性:
?$filter=microsoft.graph.externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/microsoft.graph.onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/any(attribute:attribute/id eq '{attribute-ID}')
- 筛选链接的应用程序:
?$filter=microsoft.graph.externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/any(appId:appId/appId eq '{appId}')
关系
无。
JSON 表示形式
以下 JSON 表示形式显示了资源类型。
{
"@odata.type": "#microsoft.graph.externalUsersSelfServiceSignUpEventsFlow",
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"conditions": {
"@odata.type": "microsoft.graph.authenticationConditions"
},
"onInteractiveAuthFlowStart": {
"@odata.type": "microsoft.graph.onInteractiveAuthFlowStartHandler"
},
"onAuthenticationMethodLoadStart": {
"@odata.type": "microsoft.graph.onAuthenticationMethodLoadStartHandler"
},
"onAttributeCollection": {
"@odata.type": "microsoft.graph.onAttributeCollectionHandler"
},
"onUserCreateStart": {
"@odata.type": "microsoft.graph.onUserCreateStartHandler"
}
}