MultivariateBatchDetectionResultSummary Class
Multivariate anomaly detection status.
All required parameters must be populated in order to send to Azure.
- Inheritance
-
azure.ai.anomalydetector._model_base.ModelMultivariateBatchDetectionResultSummary
Constructor
MultivariateBatchDetectionResultSummary(*args: Any, **kwargs: Any)
Variables
Name | Description |
---|---|
status
|
Status of detection results. One of CREATED, RUNNING, READY, and FAILED. Required. Known values are: "CREATED", "RUNNING", "READY", and "FAILED". |
errors
|
Error message when detection is failed. |
variable_states
|
Variable Status. |
setup_info
|
Detection request for batch inference. This is an asynchronous inference which will need another API to get detection results. Required. |
Methods
clear | |
copy | |
get | |
items | |
keys | |
pop | |
popitem | |
setdefault | |
update | |
values |
clear
clear() -> None
copy
copy()
get
get(key: str, default: Any = None) -> Any
Parameters
Name | Description |
---|---|
key
Required
|
|
default
|
Default value: None
|
items
items() -> ItemsView
keys
keys() -> KeysView
pop
pop(key: ~typing.Any, default: ~typing.Any = <object object>) -> Any
Parameters
Name | Description |
---|---|
key
Required
|
|
default
|
|
popitem
popitem() -> Tuple[str, Any]
setdefault
setdefault(key: ~typing.Any, default: ~typing.Any = <object object>) -> Any
Parameters
Name | Description |
---|---|
key
Required
|
|
default
|
|
update
update(*args: Any, **kwargs: Any) -> None
values
values() -> ValuesView
Attributes
errors
Error message when detection is failed.
errors: List[_models.ErrorResponse] | None
setup_info
Detection request for batch inference. This is an asynchronous inference which will need another API to get detection results. Required.
setup_info: _models.MultivariateBatchDetectionOptions
status
"CREATED", "RUNNING", "READY", and "FAILED".
status: str | _models.MultivariateBatchDetectionStatus
variable_states
Variable Status.
variable_states: List[_models.VariableState] | None
Azure SDK for Python