Show / Hide Table of Contents

Class ResponderRecipeResponderRule

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

  • Is effectively a copy of a ResponderRule resource in which users can make certain changes if it\u2019s Oracle-managed, and other changes if it\u2019s user-managed.
  • Can also be created by cloning an existing ResponderRecipe resource, either user-managed or Oracle-managed; cloning the ResponderRecipe resource also clones its associated ResponderRule resources as ResponderRecipeRule resources.
  • Is visible on the Cloud Guard Responder Recipes, Responder Details page.
  • Is effectively located in a specific OCI compartment, through the ResponderRecipe resource to which it belongs.
  • Can be modified by users, programmatically or through the UI.
  • Changes that can be made here apply globally, to all resources in OCI compartments mapped to a target that attaches the associated responder recipe (in a TargetResponderRecipe resource), but are overridden by changes made in the corresponding TargetResponderRecipe resource (which is effectively a copy of the ResponderRecipe resource). type: object
Inheritance
object
ResponderRecipeResponderRule
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 ResponderRecipeResponderRule

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

Locks

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

Locks associated with this resource.

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<ResponderRecipeResponderRule.SupportedModesEnum> SupportedModes { get; set; }
Property Value
Type Description
List<ResponderRecipeResponderRule.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 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 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