Show / Hide Table of Contents

Class CreateTargetResponderRecipeDetails

Parameters to be used to create a new target responder recipe (TargetDetectorRecipe resource).

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

Properties

ResponderRecipeId

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

Unique identifier for responder recipe

Remarks

Required

ResponderRules

Declaration
[JsonProperty(PropertyName = "responderRules")]
public List<UpdateTargetRecipeResponderRuleDetails> ResponderRules { get; set; }
Property Value
Type Description
List<UpdateTargetRecipeResponderRuleDetails>

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

In this article
Back to top