Show / Hide Table of Contents

Class DefaultConfigurationInfo

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

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

Properties

AllowedValues

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

Allowed values for the configuration setting.

ConfigKey

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

The key of the configuration setting.

Remarks

Required

DataType

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

The data type of the configuration setting.

Remarks

Required

DefaultConfigValue

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

The default value for the configuration setting.

Remarks

Required

Description

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

Description of the configuration setting.

IsModifiable

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

Indicates if the configuration is modifiable.

Remarks

Required

In this article
Back to top