Show / Hide Table of Contents

Class ConfigurationInfo

Details of a configuration setting in the OCI Cache Config Set.

Inheritance
object
ConfigurationInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.RedisService.Models
Assembly: OCI.DotNetSDK.Redis.dll
Syntax
public class ConfigurationInfo

Properties

ConfigKey

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

Key is the configuration key.

Remarks

Required

ConfigValue

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

Value of the configuration as a string. Can represent a string, boolean, or number. Example: "true", "42", or "someString".

Remarks

Required

In this article
Back to top