Options
All
  • Public
  • Public/Protected
  • All
Menu

Class AnomalyDetectorClient

Package version

Client class for interacting with Azure Anomaly Detector service.

Hierarchy

Index

Constructors

constructor

  • new AnomalyDetectorClient(endpointUrl: string, credential: TokenCredential | KeyCredential, options?: PipelineOptions): AnomalyDetectorClient
  • Creates an instance of AnomalyDetectorClient.

    Example usage:

    import { AnomalyDetectorClient, AzureKeyCredential } from "@azure/ai-anomaly-detector";
    
    const client = new AnomalyDetectorClient(
       "<service endpoint>",
       new AzureKeyCredential("<api key>")
    );

    Parameters

    • endpointUrl: string

      Url to an Azure Anomaly Detector service endpoint

    • credential: TokenCredential | KeyCredential

      Used to authenticate requests to the service.

    • Optional options: PipelineOptions

      Used to configure the Form Recognizer client.

    Returns AnomalyDetectorClient

Properties

apiVersion

apiVersion: string

endpoint

endpoint: string

Methods

deleteMultivariateModel

detectAnomaly

  • Submit detection multivariate anomaly task with the trained model of modelId, the input schema should be the same with the training request. Thus request will be complete asynchronously and will return a resultId for querying the detection result.The request should be a source link to indicate an externally accessible Azure storage Uri (preferably a Shared Access Signature Uri). All time-series used in generate the model must be zipped into one single file. Each time-series will be as follows: the first column is timestamp and the second column is value.

    Parameters

    Returns Promise<AnomalyDetectorDetectAnomalyResponse>

detectChangePoint

detectEntireSeries

detectLastPoint

exportModel

getDetectionResult

getMultivariateModel

lastDetectAnomaly

listMultivariateModel

trainMultivariateModel

Generated using TypeDoc