MultivariateLastDetectionOptions Class

Request of last detection.

All required parameters must be populated in order to send to Azure.

Inheritance
azure.ai.anomalydetector._model_base.Model
MultivariateLastDetectionOptions

Constructor

MultivariateLastDetectionOptions(*args: Any, **kwargs: Any)

Variables

Name Description
variables

This contains the inference data, including the name, timestamps(ISO 8601) and values of variables. Required.

top_contributor_count
int

An optional field, which is used to specify the number of top contributed variables for one anomalous timestamp in the response. The default number is 10. 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

top_contributor_count

An optional field, which is used to specify the number of top contributed variables for one anomalous timestamp in the response. The default number is 10. Required.

top_contributor_count: int

variables

This contains the inference data, including the name, timestamps(ISO 8601) and values of variables. Required.

variables: List[_models.VariableValues]