Show / Hide Table of Contents

Class TargetDetectorDetails

Overriden settings of a detector rule in recipe attached to target.

Inheritance
object
TargetDetectorDetails
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 TargetDetectorDetails

Properties

ConditionGroups

Declaration
[JsonProperty(PropertyName = "conditionGroups")]
public List<ConditionGroup> ConditionGroups { get; set; }
Property Value
Type Description
List<ConditionGroup>

Condition group corresponding to each compartment

Configurations

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

List of detector rule configurations

IsConfigurationAllowed

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

Configuration allowed or not

IsEnabled

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

Enablement state of the detector 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?

Point at which an elevated resource risk score creates a problem

RiskLevel

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

The risk level of the detector 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