onPasswordSubmitCustomExtension リソースの種類

名前空間: microsoft.graph

onPasswordSubmit イベントのカスタム認証拡張機能を表します。 この拡張機能を使用すると、組織はサインイン プロセス中にレガシ認証システムに対してユーザー資格情報を検証でき、従来のシステムからパスワードをエクスポートできない Just-In-Time (JIT) 移行シナリオが容易になります。

ユーザーがサインインしようとすると、この拡張機能は顧客が提供する API エンドポイントを呼び出して、レガシ システムに対してパスワードを検証します。 検証が成功すると、ユーザーの資格情報がMicrosoft Entra IDに保持され、そのユーザーの移行が完了します。

customAuthenticationExtension から継承します。

メソッド

なし。

このリソースの種類を管理するための API 操作の一覧については、 customAuthenticationExtension リソースの種類に関するページを参照してください。

プロパティ

プロパティ 説明
authenticationConfiguration customExtensionAuthenticationConfiguration 外部システムへの API 呼び出しをセキュリティで保護するための構成。 customAuthenticationExtension から継承されます。
behaviorOnError customExtensionBehaviorOnError 外部 API が失敗した場合、または到達できない場合のエラー処理の動作。 customAuthenticationExtension から継承されます。
clientConfiguration customExtensionClientConfiguration タイムアウトと再試行の設定を含む HTTP クライアント構成。 customAuthenticationExtension から継承されます。
説明 String カスタム認証拡張機能の説明。 customAuthenticationExtension から継承されます。
displayName 文字列 カスタム認証拡張機能の表示名。 customAuthenticationExtension から継承されます。
endpointConfiguration customExtensionEndpointConfiguration 外部 API の HTTP エンドポイント構成。 customAuthenticationExtension から継承されます。
id 文字列 カスタム認証拡張機能の一意識別子。 customAuthenticationExtension から継承されます。

リレーションシップ

なし。

JSON 表記

次の JSON 表現は、リソースの種類を示しています。

{
  "@odata.type": "#microsoft.graph.onPasswordSubmitCustomExtension",
  "id": "String (identifier)",
  "displayName": "String",
  "description": "String",
  "endpointConfiguration": {
    "@odata.type": "microsoft.graph.httpRequestEndpoint",
    "targetUrl": "String"
  },
  "authenticationConfiguration": {
    "@odata.type": "microsoft.graph.azureAdTokenAuthentication",
    "resourceId": "String"
  },
  "clientConfiguration": {
    "@odata.type": "microsoft.graph.customExtensionClientConfiguration"
  },
  "behaviorOnError": {
    "@odata.type": "microsoft.graph.customExtensionBehaviorOnError"
  }
}