externalUsersSelfServiceSignUpEventsFlow リソースの種類
名前空間: microsoft.graph
重要
Microsoft Graph の /beta
バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。
従業員または外部テナントの Microsoft Entra 外部 ID 内の外部 ID のセルフサービス ユーザー フローを表します。 ユーザー フローは、特定のユーザー操作ポイントで特定のイベントを実行するマルチイベント ポリシーとして実装されます。
authenticationEventsFlow から継承します。
メソッド
なし。
このリソースの種類を管理するための API 操作の一覧については、 authenticationEventsFlow リソースの種類に関するページを参照してください。
プロパティ
プロパティ | 型 | 説明 |
---|---|---|
id | String | エンティティの一意識別子。 読み取り専用です。 エンティティから継承 されます。 |
displayName | String | 必須です。 イベント ポリシーの表示名。 一意である必要があります。 authenticationEventsFlow から継承されます。 |
説明 | String | 省略可能。 イベント ポリシーの説明。 authenticationEventsFlow から継承されます。 |
conditions | authenticationConditions | 省略可能。 イベント ポリシーが呼び出されるかどうかを判断するために使用される認証要求のコンテキストを表す条件。 authenticationEventsFlow から継承されます。 |
priority | Int32 | 省略可能。 イベント ポリシーの個々のイベントに使用する優先順位。 1 つのイベントに対して競合する複数のリスナーが同じ優先順位を持つ場合は、1 つが選択され、エラーがサイレント ログに記録されます。 既定値は 500 です。 authenticationEventsFlow から継承されます。 |
onInteractiveAuthFlowStart | onInteractiveAuthFlowStartHandler | 必須。 認証フローを開始する準備ができたときに呼び出す内容の構成。 |
onAttributeCollection | onAttributeCollectionHandler | 属性をユーザーから収集する準備ができたときに呼び出す内容の構成。 |
onAttributeCollectionStart | onAttributeCollectionStartHandler | 属性コレクションが開始されたときに呼び出す内容の構成。 |
onAttributeCollectionSubmit | onAttributeCollectionSubmitHandler | 属性が属性コレクションの最後に送信されたときに呼び出す内容の構成。 |
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"
},
"priority": "Integer",
"onInteractiveAuthFlowStart": {
"@odata.type": "microsoft.graph.onInteractiveAuthFlowStartHandler"
},
"onAuthenticationMethodLoadStart": {
"@odata.type": "microsoft.graph.onAuthenticationMethodLoadStartHandler"
},
"onAttributeCollection": {
"@odata.type": "microsoft.graph.onAttributeCollectionHandler"
},
"onAttributeCollectionStart": {
"@odata.type": "microsoft.graph.onAttributeCollectionStartHandler"
},
"onAttributeCollectionSubmit": {
"@odata.type": "microsoft.graph.onAttributeCollectionSubmitHandler"
},
"onUserCreateStart": {
"@odata.type": "microsoft.graph.onUserCreateStartHandler"
}
}