Show / Hide Table of Contents

Class UpdateDetectorRuleDetails

Parameters to be updated for a detector rule within a detector recipe.

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

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 unique identifier of the attached data source

Description

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

Description for the 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

IsEnabled

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

Enablement status 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

Recommendation

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

Recommendation for the detector rule

RiskLevel

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

The risk level of the detector rule

In this article
Back to top