Show / Hide Table of Contents

Class TargetResponderRecipe

A TargetResponderRecipe resource contains a specific instance of one of the supported detector types (for example, activity, configuration, or threat) in which some settings can be modified specifically for a single target.
A TargetResponderRecipe resource:

  • Is effectively a copy of a ResponderRecipe resource in which users can make very limited changes if it\u2019s Oracle-managed, and more changes if it\u2019s user-managed.
  • Is visible on the Cloud Guard Targets, Target Details page.
  • Is located in a specific OCI compartment.
  • Can be modified by users, programmatically or through the UI.
  • Changes that can be made here override any settings in the corresponding ResponderRecipe, of which the TargetResponderRecipe resource is effectively a copy of the ResponderRecipe resource (effectively created when the detector recipe is attached to the target).
Inheritance
object
TargetResponderRecipe
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 TargetResponderRecipe

Properties

CompartmentId

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

Compartment OCID

Remarks

Required

Description

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

Target responder description

Remarks

Required

DisplayName

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

Target responder recipe display name

Remarks

Required

EffectiveResponderRules

Declaration
[JsonProperty(PropertyName = "effectiveResponderRules")]
public List<TargetResponderRecipeResponderRule> EffectiveResponderRules { get; set; }
Property Value
Type Description
List<TargetResponderRecipeResponderRule>

List of currently enabled responder rules for the responder type for recipe after applying defaults

Id

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

Unique identifier of target responder recipe that can't be changed after creation

Remarks

Required

Locks

Declaration
[JsonProperty(PropertyName = "locks")]
public List<ResourceLock> Locks { get; set; }
Property Value
Type Description
List<ResourceLock>

Locks associated with this resource.

Owner

Declaration
[Required(ErrorMessage = "Owner is required.")]
[JsonProperty(PropertyName = "owner")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OwnerType? Owner { get; set; }
Property Value
Type Description
OwnerType?

Owner of target responder recipe

Remarks

Required

ResponderRecipeId

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

Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned

Remarks

Required

ResponderRules

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

List of responder rules associated with the recipe - user input

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the target responder recipe rule was created. Format defined by RFC3339.

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The date and time the target responder recipe rule was last updated. Format defined by RFC3339.

In this article
Back to top