externalUsersSelfServiceSignUpEventsFlow リソースの種類
名前空間: microsoft.graph
従業員または外部テナントの Microsoft Entra 外部 ID 内の外部 ID のセルフサービス ユーザー フローを表します。 ユーザー フローは、特定のユーザー操作ポイントで特定のイベントを実行するマルチイベント ポリシーとして実装されます。
authenticationEventsFlow から継承します。
メソッド
なし。
このリソースの種類を管理するための API 操作の一覧については、 authenticationEventsFlow リソースの種類に関するページを参照してください。
プロパティ
プロパティ | 型 | 説明 |
---|---|---|
id | String | エンティティの一意識別子。 読み取り専用です。 エンティティから継承 されます。 |
displayName | String | 必須です。 イベント ポリシーの表示名。 一意である必要があります。 authenticationEventsFlow から継承されます。 |
説明 | String | 省略可能。 イベント ポリシーの説明。 authenticationEventsFlow から継承されます。 |
conditions | authenticationConditions | 省略可能。 イベント ポリシーが呼び出されるかどうかを判断するために使用される認証要求のコンテキストを表す条件。 authenticationEventsFlow から継承されます。 |
onInteractiveAuthFlowStart | onInteractiveAuthFlowStartHandler | 必須です。 認証フローを開始する準備ができたときに呼び出す内容の構成。 |
onAttributeCollection | onAttributeCollectionHandler | 属性をユーザーから収集する準備ができたときに呼び出す内容の構成。 |
onAuthenticationMethodLoadStart | onAuthenticationMethodLoadStartHandler | 必須。 認証方法をユーザーに提示する準備ができたときに呼び出す内容の構成。 少なくとも 1 つの ID プロバイダーがリンクされている必要があります。 $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"
}
}