Show / Hide Table of Contents

Class ConfigValue

Details for a configuration value for a managed list.

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

Properties

ListType

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

Configuration list item type (CUSTOM or MANAGED)

Remarks

Required

ManagedListType

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

Type of content in the managed list

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