DetectorInfo Class

Definition of Detector.

Constructor

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

Variables

Name Description
id
str

Id of detector.

name
str

Name of detector.

description
str

Short description of the detector and its purpose.

author
str

Author of the detector.

category
str

Problem category. This serves for organizing group for detectors.

support_topic_list

List of Support Topics for which this detector is enabled.

analysis_type

Analysis Types for which this detector should apply to.

type

Whether this detector is an Analysis Detector or not. Known values are: "Detector", "Analysis", and "CategoryOverview".

score

Defines score of a detector to power ML based matching.

Attributes

analysis_type

Analysis Types for which this detector should apply to.

analysis_type: list[str] | None

author

Author of the detector.

author: str | None

category

Problem category. This serves for organizing group for detectors.

category: str | None

description

Short description of the detector and its purpose.

description: str | None

id

Id of detector.

id: str | None

name

Name of detector.

name: str | None

score

Defines score of a detector to power ML based matching.

score: float | None

support_topic_list

List of Support Topics for which this detector is enabled.

support_topic_list: list['_models.SupportTopic'] | None

type

"Detector", "Analysis", and "CategoryOverview".

type: str | _models.DetectorType | None