Show / Hide Table of Contents

Class ResponderConfiguration

Details for a configuration to be applied to a responder.

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

Properties

ConfigKey

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

Unique identifier of the configuration

Remarks

Required

Name

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

Configuration name

Remarks

Required

Value

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

Configuration value

Remarks

Required

In this article
Back to top