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 プロバイダーがリンクされている必要があります。
onUserCreateStart onUserCreateStartHandler ユーザーの作成時に呼び出す内容の構成。

リレーションシップ

なし。

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"
  }
}