Class ConfigurationInfo
Details of a configuration setting in the OCI Cache Config Set.
Inherited Members
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