ConfigurationInfo¶
-
class
oci.redis.models.
ConfigurationInfo
(**kwargs)¶ Bases:
object
Details of a configuration setting in the OCI Cache Config Set.
Methods
__init__
(**kwargs)Initializes a new ConfigurationInfo object with values from keyword arguments. Attributes
config_key
[Required] Gets the config_key of this ConfigurationInfo. config_value
[Required] Gets the config_value of this ConfigurationInfo. -
__init__
(**kwargs)¶ Initializes a new ConfigurationInfo object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - config_key (str) – The value to assign to the config_key property of this ConfigurationInfo.
- config_value (str) – The value to assign to the config_value property of this ConfigurationInfo.
-
config_key
¶ [Required] Gets the config_key of this ConfigurationInfo. Key is the configuration key.
Returns: The config_key of this ConfigurationInfo. Return type: str
-
config_value
¶ [Required] Gets the config_value of this ConfigurationInfo. Value of the configuration as a string. Can represent a string, boolean, or number. Example: “true”, “42”, or “someString”.
Returns: The config_value of this ConfigurationInfo. Return type: str
-