AnomalyDetectorClient Class

Definition

The Anomaly Detector API detects anomalies automatically in time series data. It supports two functionalities, one is for detecting the whole series with model trained by the timeseries, another is detecting last point with model trained by points before. By using this service, business customers can discover incidents and establish a logic flow for root cause analysis.

public class AnomalyDetectorClient : Microsoft.Rest.ServiceClient<Microsoft.Azure.CognitiveServices.AnomalyDetector.AnomalyDetectorClient>, IDisposable, Microsoft.Azure.CognitiveServices.AnomalyDetector.IAnomalyDetectorClient
type AnomalyDetectorClient = class
    inherit ServiceClient<AnomalyDetectorClient>
    interface IAnomalyDetectorClient
    interface IDisposable
Public Class AnomalyDetectorClient
Inherits ServiceClient(Of AnomalyDetectorClient)
Implements IAnomalyDetectorClient, IDisposable
Inheritance
AnomalyDetectorClient
Implements

Constructors

AnomalyDetectorClient(DelegatingHandler[])

Initializes a new instance of the AnomalyDetectorClient class.

AnomalyDetectorClient(HttpClient, Boolean)

Initializes a new instance of the AnomalyDetectorClient class.

AnomalyDetectorClient(HttpClientHandler, DelegatingHandler[])

Initializes a new instance of the AnomalyDetectorClient class.

AnomalyDetectorClient(ServiceClientCredentials, DelegatingHandler[])

Initializes a new instance of the AnomalyDetectorClient class.

AnomalyDetectorClient(ServiceClientCredentials, HttpClient, Boolean)

Initializes a new instance of the AnomalyDetectorClient class.

AnomalyDetectorClient(ServiceClientCredentials, HttpClientHandler, DelegatingHandler[])

Initializes a new instance of the AnomalyDetectorClient class.

Properties

Credentials

Subscription credentials which uniquely identify client subscription.

DeserializationSettings

Gets or sets json deserialization settings.

Endpoint

Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus2.api.cognitive.microsoft.com).

FirstMessageHandler (Inherited from ServiceClient<T>)
HttpClient (Inherited from ServiceClient<T>)
HttpClientHandler (Inherited from ServiceClient<T>)
HttpMessageHandlers (Inherited from ServiceClient<T>)
SerializationSettings

Gets or sets json serialization settings.

UserAgent (Inherited from ServiceClient<T>)

Methods

ChangePointDetectWithHttpMessagesAsync(ChangePointDetectRequest, Dictionary<String,List<String>>, CancellationToken)
CreateHttpHandlerPipeline(HttpClientHandler, DelegatingHandler[]) (Inherited from ServiceClient<T>)
Dispose() (Inherited from ServiceClient<T>)
Dispose(Boolean) (Inherited from ServiceClient<T>)
EntireDetectWithHttpMessagesAsync(Request, Dictionary<String,List<String>>, CancellationToken)

Detect anomalies for the entire series in batch.

InitializeHttpClient(HttpClient, HttpClientHandler, DelegatingHandler[]) (Inherited from ServiceClient<T>)
InitializeHttpClient(HttpClientHandler, DelegatingHandler[]) (Inherited from ServiceClient<T>)
LastDetectWithHttpMessagesAsync(Request, Dictionary<String,List<String>>, CancellationToken)

Detect anomaly status of the latest point in time series.

SetRetryPolicy(RetryPolicy) (Inherited from ServiceClient<T>)
SetUserAgent(String) (Inherited from ServiceClient<T>)
SetUserAgent(String, String) (Inherited from ServiceClient<T>)

Extension Methods

ChangePointDetectAsync(IAnomalyDetectorClient, ChangePointDetectRequest, CancellationToken)
EntireDetectAsync(IAnomalyDetectorClient, Request, CancellationToken)

Detect anomalies for the entire series in batch.

LastDetectAsync(IAnomalyDetectorClient, Request, CancellationToken)

Detect anomaly status of the latest point in time series.

Applies to