Show / Hide Table of Contents

Class UpdateTargetDetectorRecipe

Parameters to update a detector recipe attached to a target.

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

Properties

DetectorRules

Declaration
[Required(ErrorMessage = "DetectorRules is required.")]
[JsonProperty(PropertyName = "detectorRules")]
public List<UpdateTargetRecipeDetectorRuleDetails> DetectorRules { get; set; }
Property Value
Type Description
List<UpdateTargetRecipeDetectorRuleDetails>

Updates to be applied to detector rules in target detector recipe

Remarks

Required

TargetDetectorRecipeId

Declaration
[Required(ErrorMessage = "TargetDetectorRecipeId is required.")]
[JsonProperty(PropertyName = "targetDetectorRecipeId")]
public string TargetDetectorRecipeId { get; set; }
Property Value
Type Description
string

Unique identifier for target detector recipe

Remarks

Required

In this article
Back to top