multivariate_batch_detection_results
Creates, updates, deletes, gets or lists a multivariate_batch_detection_results resource.
Overview
| Name | multivariate_batch_detection_results |
| Type | Resource |
| Id | azure.ai_anomaly_detector.multivariate_batch_detection_results |
Fields
The following fields are returned by SELECT queries:
- get_multivariate_batch_detection_result
| Name | Datatype | Description |
|---|---|---|
resultId | string | Result identifier, which is used to fetch the results of an inference call. Required. |
results | array | Detection result for each timestamp. Required. |
summary | object | Multivariate anomaly detection status. Required. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_multivariate_batch_detection_result | select | result_id, endpoint, api_version | Get 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.
| Name | Datatype | Description |
|---|---|---|
api_version | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client ApiVersion parameter. (default: ) |
endpoint | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client Endpoint parameter. (default: ) |
result_id | string | ID of a batch detection result. Required. |
SELECT examples
- get_multivariate_batch_detection_result
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
;