multivariate_models
Creates, updates, deletes, gets or lists a multivariate_models resource.
Overview
| Name | multivariate_models |
| Type | Resource |
| Id | azure.ai_anomaly_detector.multivariate_models |
Fields
The following fields are returned by SELECT queries:
- get_multivariate_model
- list_multivariate_models
| Name | Datatype | Description |
|---|---|---|
createdTime | string (date-time) | Date and time (UTC) when the model was created. Required. |
lastUpdatedTime | string (date-time) | Date and time (UTC) when the model was last updated. Required. |
modelId | string | Model identifier. Required. |
modelInfo | object | Training result of a model including its status, errors and diagnostics information. |
| Name | Datatype | Description |
|---|---|---|
createdTime | string (date-time) | Date and time (UTC) when the model was created. Required. |
lastUpdatedTime | string (date-time) | Date and time (UTC) when the model was last updated. Required. |
modelId | string | Model identifier. Required. |
modelInfo | object | Training result of a model including its status, errors and diagnostics information. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_multivariate_model | select | model_id, endpoint, api_version | Get Multivariate Model. Get detailed information of multivariate model, including the training status and variables used in the model. | |
list_multivariate_models | select | endpoint, api_version | skip, top | List Multivariate Models. List models of a resource. |
delete_multivariate_model | delete | model_id, endpoint, api_version | Delete 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.
| 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: ) |
model_id | string | Model identifier. Required. |
skip | integer | Skip indicates how many models will be skipped. Default value is None. |
top | integer | Top indicates how many models will be fetched. Default value is None. |
SELECT examples
- get_multivariate_model
- list_multivariate_models
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
;
List Multivariate Models. List models of a resource.
SELECT
createdTime,
lastUpdatedTime,
modelId,
modelInfo
FROM azure.ai_anomaly_detector.multivariate_models
WHERE endpoint = '{{ endpoint }}' -- required
AND api_version = '{{ api_version }}' -- required
AND skip = '{{ skip }}'
AND top = '{{ top }}'
;
DELETE examples
- delete_multivariate_model
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
;