Share via


DetectorInfo Constructors

Definition

Overloads

DetectorInfo()

Initializes a new instance of the DetectorInfo class.

DetectorInfo(String, String, String, String, String, IList<SupportTopic>, IList<String>, Nullable<DetectorType>, Nullable<Double>)

Initializes a new instance of the DetectorInfo class.

DetectorInfo()

Initializes a new instance of the DetectorInfo class.

public DetectorInfo ();
Public Sub New ()

Applies to

DetectorInfo(String, String, String, String, String, IList<SupportTopic>, IList<String>, Nullable<DetectorType>, Nullable<Double>)

Initializes a new instance of the DetectorInfo class.

public DetectorInfo (string id = default, string name = default, string description = default, string author = default, string category = default, System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.SupportTopic> supportTopicList = default, System.Collections.Generic.IList<string> analysisType = default, Microsoft.Azure.Management.WebSites.Models.DetectorType? type = default, double? score = default);
new Microsoft.Azure.Management.WebSites.Models.DetectorInfo : string * string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.SupportTopic> * System.Collections.Generic.IList<string> * Nullable<Microsoft.Azure.Management.WebSites.Models.DetectorType> * Nullable<double> -> Microsoft.Azure.Management.WebSites.Models.DetectorInfo
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional description As String = Nothing, Optional author As String = Nothing, Optional category As String = Nothing, Optional supportTopicList As IList(Of SupportTopic) = Nothing, Optional analysisType As IList(Of String) = Nothing, Optional type As Nullable(Of DetectorType) = Nothing, Optional score As Nullable(Of Double) = Nothing)

Parameters

id
String

Id of detector

name
String

Name of detector

description
String

Short description of the detector and its purpose.

author
String

Author of the detector.

category
String

Problem category. This serves for organizing group for detectors.

supportTopicList
IList<SupportTopic>

List of Support Topics for which this detector is enabled.

analysisType
IList<String>

Analysis Types for which this detector should apply to.

type
Nullable<DetectorType>

Whether this detector is an Analysis Detector or not. Possible values include: 'Detector', 'Analysis', 'CategoryOverview'

score
Nullable<Double>

Defines score of a detector to power ML based matching.

Applies to