Show / Hide Table of Contents

Class RuleType

The detector rule types.

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

Properties

Key

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

The unique identifier of the detector rule type

Remarks

Required

Value

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

Detector rule type value

Remarks

Required

In this article
Back to top