customCalloutExtension リソースの種類

名前空間: microsoft.graph

重要

Microsoft Graph の /beta バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。

顧客の ID フローを拡張できるアプリの構成を定義する抽象型。

この抽象型は、次の派生型によって継承されます。

エンティティ から継承します。

メソッド

なし。

プロパティ

プロパティ 説明
authenticationConfiguration customExtensionAuthenticationConfiguration ロジック アプリへの API 呼び出しをセキュリティで保護するための構成。 たとえば、OAuth クライアント資格情報フローを使用します。
clientConfiguration customExtensionClientConfiguration ロジック アプリへの接続を待機できるMicrosoft Entra ID時間、タイムアウト接続を再試行できる回数、再試行が許可されている場合の例外シナリオを定義する HTTP 接続設定。
説明 String customCalloutExtension オブジェクトの説明。
displayName String customCalloutExtension オブジェクトの表示名。
endpointConfiguration customExtensionEndpointConfiguration ロジック アプリのワークフローを呼び出すようにエンドポイントを構成するための型と詳細。
id String customCalloutExtension オブジェクトの識別子。 エンティティから継承 されます。

リレーションシップ

なし。

JSON 表記

リソースの JSON 表記を次に示します。

{
  "@odata.type": "#microsoft.graph.customCalloutExtension",
  "id": "String (identifier)",
  "displayName": "String",
  "description": "String",
  "endpointConfiguration": {
    "@odata.type": "microsoft.graph.customExtensionEndpointConfiguration"
  },
  "clientConfiguration": {
    "@odata.type": "microsoft.graph.customExtensionClientConfiguration"
  },
  "authenticationConfiguration": {
    "@odata.type": "microsoft.graph.customExtensionAuthenticationConfiguration"
  }
}