agentEndpointConfiguration リソースの種類

名前空間: microsoft.graph

重要

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

エージェントがボットまたは API コールバックを介してメッセージを受信するために使用するエンドポイント バインディングを表します。

この複合型は、agentCommunicationConfigurationendpointConfiguration プロパティで構成されます。

メソッド

なし。

プロパティ

プロパティ 説明
apiBased agentBlueprintApiBasedEndpointConfigurationDetails API ベースのエンドポイントの詳細。 configurationTypeapiBasedされたときに設定されます。Teams の投稿先のコールバック URI を保持します。 configurationTypebotBased の場合は null にする必要があります。
botBased agentBlueprintBotBasedEndpointConfigurationDetails ボットベースのエンドポイントの詳細。 configurationTypebotBasedされたときに設定されます。Teams がメッセージを送信するボット ID を保持します。 configurationTypeapiBased の場合は null にする必要があります。
configurationType agentEndpointConfigurationType どのエンドポイント バリアントが有効かを示す識別子。 使用可能な値: apiBasedbotBasedunknownFutureValue。 null 許容型ではありません。

リレーションシップ

なし。

JSON 表記

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

{
  "@odata.type": "#microsoft.graph.agentEndpointConfiguration",
  "configurationType": "String",
  "botBased": {"@odata.type": "microsoft.graph.agentBlueprintBotBasedEndpointConfigurationDetails"},
  "apiBased": {"@odata.type": "microsoft.graph.agentBlueprintApiBasedEndpointConfigurationDetails"}
}