Show / Hide Table of Contents

Class TargetResponderRecipeResponderRule

A TargetResponderRecipeResponderRule resource contains a specific instance of a single responder rule.
A TargetResponderRecipeRule resource:

  • Is effectively a copy of a ResponderRecipeRule resource in which users can make certain changes if it\u2019s Oracle-managed, and other changes if it\u2019s user-managed.
  • Is visible on the Cloud Guard Targets, Target Details page.
  • Is effectively located in a specific OCI compartment, through the ThreatResponderRecipe resource to which it belongs.
  • Can be modified by users, programmatically or through the UI.
  • Changes that can be made here apply locally, to resources in OCI compartments mapped to the target that attaches the associated responder recipe (in a TargetResponderRecipe resource), and override any changes made in rules associated with the corresponding ResponderRecipe resource.
Inheritance
object
TargetResponderRecipeResponderRule
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 TargetResponderRecipeResponderRule

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
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

Responder rule description

Details

Declaration
[JsonProperty(PropertyName = "details")]
public ResponderRuleDetails Details { get; set; }
Property Value
Type Description
ResponderRuleDetails

DisplayName

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

Responder rule display name

LifecycleDetails

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

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LifecycleState? LifecycleState { get; set; }
Property Value
Type Description
LifecycleState?

The current lifecycle state of the responder rule

Policies

Declaration
[JsonProperty(PropertyName = "policies")]
public List<string> Policies { get; set; }
Property Value
Type Description
List<string>

List of policies

ResponderRuleId

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

Unique identifier for the responder rule

Remarks

Required

SupportedModes

Declaration
[JsonProperty(PropertyName = "supportedModes", ItemConverterType = typeof(ResponseEnumConverter))]
public List<TargetResponderRecipeResponderRule.SupportedModesEnum> SupportedModes { get; set; }
Property Value
Type Description
List<TargetResponderRecipeResponderRule.SupportedModesEnum>

Supported execution modes for the responder rule

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.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ResponderType? Type { get; set; }
Property Value
Type Description
ResponderType?

Type of responder

In this article
Back to top