Show / Hide Table of Contents

Class AdditionalConfigPropertyDefinition

Detector rule additional property field

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

Properties

Key

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

Name for Additional Property, for example, "interpreter", "router"

PropertyType

Declaration
[JsonProperty(PropertyName = "propertyType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AdditionalConfigPropertyDefinition.PropertyTypeEnum? PropertyType { get; set; }
Property Value
Type Description
AdditionalConfigPropertyDefinition.PropertyTypeEnum?

Property Type

Value

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

Value for Property Name, for example, "generic", "cloudguard"

In this article
Back to top