Show / Hide Table of Contents

Class ResponderRuleDetails

Detailed information for a responder rule

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

Properties

Condition

Declaration
[JsonProperty(PropertyName = "condition")]
public Condition Condition { get; set; }
Property Value
Type Description
Condition

Configurations

Declaration
[JsonProperty(PropertyName = "configurations")]
public List<ResponderConfiguration> Configurations { get; set; }
Property Value
Type Description
List<ResponderConfiguration>

List of responder rule configurations

IsEnabled

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

Enabled state for the responder rule

Remarks

Required

Mode

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

Execution mode for the responder rule

In this article
Back to top