Skip to main content

multivariate_models

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

Overview

Namemultivariate_models
TypeResource
Idazure.ai_anomaly_detector.multivariate_models

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
createdTimestring (date-time)Date and time (UTC) when the model was created. Required.
lastUpdatedTimestring (date-time)Date and time (UTC) when the model was last updated. Required.
modelIdstringModel identifier. Required.
modelInfoobjectTraining result of a model including its status, errors and diagnostics information.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_multivariate_modelselectmodel_id, endpoint, api_versionGet Multivariate Model. Get detailed information of multivariate model, including the training status and variables used in the model.
list_multivariate_modelsselectendpoint, api_versionskip, topList Multivariate Models. List models of a resource.
delete_multivariate_modeldeletemodel_id, endpoint, api_versionDelete Multivariate Model. Delete an existing multivariate model according to the modelId.

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: )
model_idstringModel identifier. Required.
skipintegerSkip indicates how many models will be skipped. Default value is None.
topintegerTop indicates how many models will be fetched. Default value is None.

SELECT examples

Get Multivariate Model. Get detailed information of multivariate model, including the training status and variables used in the model.

SELECT
createdTime,
lastUpdatedTime,
modelId,
modelInfo
FROM azure.ai_anomaly_detector.multivariate_models
WHERE model_id = '{{ model_id }}' -- required
AND endpoint = '{{ endpoint }}' -- required
AND api_version = '{{ api_version }}' -- required
;

DELETE examples

Delete Multivariate Model. Delete an existing multivariate model according to the modelId.

DELETE FROM azure.ai_anomaly_detector.multivariate_models
WHERE model_id = '{{ model_id }}' --required
AND endpoint = '{{ endpoint }}' --required
AND api_version = '{{ api_version }}' --required
;