Show / Hide Table of Contents

Class CreateTargetDetectorRecipeDetails

Parameters to use to create a target detector recipe.

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

Properties

DetectorRecipeId

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

Unique identifier for the target detector recipe

Remarks

Required

DetectorRules

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

List of overrides to be applied to detector rules associated with the target

In this article
Back to top