Show / Hide Table of Contents

Class DetectorDetails

Detailed information for a detector.

Inheritance
object
DetectorDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CloudguardService.Models
Assembly: OCI.DotNetSDK.Cloudguard.dll
Syntax
public class DetectorDetails

Properties

Condition

Declaration
[JsonProperty(PropertyName = "condition")]
public Condition Condition { get; set; }
Property Value
Type Description
Condition

Configurations

Declaration
[JsonProperty(PropertyName = "configurations")]
public List<DetectorConfiguration> Configurations { get; set; }
Property Value
Type Description
List<DetectorConfiguration>

List of detector rule configurations

DataSourceId

Declaration
[JsonProperty(PropertyName = "dataSourceId")]
public string DataSourceId { get; set; }
Property Value
Type Description
string

The ID of the attached data source

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

Description for detector recipe detector rule

EntitiesMappings

Declaration
[JsonProperty(PropertyName = "entitiesMappings")]
public List<EntitiesMapping> EntitiesMappings { get; set; }
Property Value
Type Description
List<EntitiesMapping>

Data source entities mapping for a detector rule

IsConfigurationAllowed

Declaration
[JsonProperty(PropertyName = "isConfigurationAllowed")]
public bool? IsConfigurationAllowed { get; set; }
Property Value
Type Description
bool?

Can the rule be configured?

IsEnabled

Declaration
[Required(ErrorMessage = "IsEnabled is required.")]
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Enablement status for the rule

Remarks

Required

Labels

Declaration
[JsonProperty(PropertyName = "labels")]
public List<string> Labels { get; set; }
Property Value
Type Description
List<string>

User-defined labels for a detector rule

ProblemThreshold

Declaration
[JsonProperty(PropertyName = "problemThreshold")]
public int? ProblemThreshold { get; set; }
Property Value
Type Description
int?

The point at which an elevated resource risk score creates a problem

Recommendation

Declaration
[JsonProperty(PropertyName = "recommendation")]
public string Recommendation { get; set; }
Property Value
Type Description
string

Recommendation for detector recipe detector rule

RiskLevel

Declaration
[JsonProperty(PropertyName = "riskLevel")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RiskLevel? RiskLevel { get; set; }
Property Value
Type Description
RiskLevel?

The risk level for the rule

SightingTypes

Declaration
[JsonProperty(PropertyName = "sightingTypes")]
public List<SightingType> SightingTypes { get; set; }
Property Value
Type Description
List<SightingType>

List of sighting types

TargetTypes

Declaration
[JsonProperty(PropertyName = "targetTypes")]
public List<string> TargetTypes { get; set; }
Property Value
Type Description
List<string>

List of target types for which the detector rule is applicable

In this article
Back to top