Skip to main content

multivariate_batch_detection_results

Creates, updates, deletes, gets or lists a multivariate_batch_detection_results resource.

Overview

Namemultivariate_batch_detection_results
TypeResource
Idazure.ai_anomaly_detector.multivariate_batch_detection_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
resultIdstringResult identifier, which is used to fetch the results of an inference call. Required.
resultsarrayDetection result for each timestamp. Required.
summaryobjectMultivariate anomaly detection status. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_multivariate_batch_detection_resultselectresult_id, endpoint, api_versionGet Multivariate Anomaly Detection Result. For asynchronous inference, get multivariate anomaly detection result based on resultId returned by the BatchDetectAnomaly api.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
api_versionstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client ApiVersion parameter. (default: )
endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client Endpoint parameter. (default: )
result_idstringID of a batch detection result. Required.

SELECT examples

Get Multivariate Anomaly Detection Result. For asynchronous inference, get multivariate anomaly detection result based on resultId returned by the BatchDetectAnomaly api.

SELECT
resultId,
results,
summary
FROM azure.ai_anomaly_detector.multivariate_batch_detection_results
WHERE result_id = '{{ result_id }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND api_version = '{{ api_version }}' -- required
;