AnomalyDetectorClient コンストラクター

定義

オーバーロード

AnomalyDetectorClient()

モック作成のために AnomalyDetectorClient の新しいインスタンスを初期化します。

AnomalyDetectorClient(Uri, AzureKeyCredential)

AnomalyDetectorClient の新しいインスタンスを初期化します。

AnomalyDetectorClient(Uri, AzureKeyCredential, AnomalyDetectorClientOptions)

AnomalyDetectorClient の新しいインスタンスを初期化します。

AnomalyDetectorClient()

Source:
AnomalyDetectorClient.cs

モック作成のために AnomalyDetectorClient の新しいインスタンスを初期化します。

protected AnomalyDetectorClient ();
Protected Sub New ()

適用対象

AnomalyDetectorClient(Uri, AzureKeyCredential)

Source:
AnomalyDetectorClient.cs

AnomalyDetectorClient の新しいインスタンスを初期化します。

public AnomalyDetectorClient (Uri endpoint, Azure.AzureKeyCredential credential);
new Azure.AI.AnomalyDetector.AnomalyDetectorClient : Uri * Azure.AzureKeyCredential -> Azure.AI.AnomalyDetector.AnomalyDetectorClient
Public Sub New (endpoint As Uri, credential As AzureKeyCredential)

パラメーター

endpoint
Uri

サポートされている Azure Cognitive Services エンドポイント (プロトコルとホスト名など https://westus2.api.cognitive.microsoft.com)。

credential
AzureKeyCredential

Azure サービスに対する認証に使用される資格情報。

例外

endpoint または credential が null です。

適用対象

AnomalyDetectorClient(Uri, AzureKeyCredential, AnomalyDetectorClientOptions)

Source:
AnomalyDetectorClient.cs

AnomalyDetectorClient の新しいインスタンスを初期化します。

public AnomalyDetectorClient (Uri endpoint, Azure.AzureKeyCredential credential, Azure.AI.AnomalyDetector.AnomalyDetectorClientOptions options);
new Azure.AI.AnomalyDetector.AnomalyDetectorClient : Uri * Azure.AzureKeyCredential * Azure.AI.AnomalyDetector.AnomalyDetectorClientOptions -> Azure.AI.AnomalyDetector.AnomalyDetectorClient
Public Sub New (endpoint As Uri, credential As AzureKeyCredential, options As AnomalyDetectorClientOptions)

パラメーター

endpoint
Uri

サポートされている Azure Cognitive Services エンドポイント (プロトコルとホスト名など https://westus2.api.cognitive.microsoft.com)。

credential
AzureKeyCredential

Azure サービスに対する認証に使用される資格情報。

options
AnomalyDetectorClientOptions

クライアントを構成するためのオプション。

例外

endpoint または credential が null です。

適用対象