ConfigParams

class oci.psql.models.ConfigParams(**kwargs)

Bases: object

Database configuration.

Methods

__init__(**kwargs) Initializes a new ConfigParams object with values from keyword arguments.

Attributes

allowed_values [Required] Gets the allowed_values of this ConfigParams.
config_key [Required] Gets the config_key of this ConfigParams.
data_type [Required] Gets the data_type of this ConfigParams.
default_config_value [Required] Gets the default_config_value of this ConfigParams.
description [Required] Gets the description of this ConfigParams.
is_overridable [Required] Gets the is_overridable of this ConfigParams.
is_restart_required [Required] Gets the is_restart_required of this ConfigParams.
overriden_config_value Gets the overriden_config_value of this ConfigParams.
__init__(**kwargs)

Initializes a new ConfigParams 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 ConfigParams.
  • default_config_value (str) – The value to assign to the default_config_value property of this ConfigParams.
  • overriden_config_value (str) – The value to assign to the overriden_config_value property of this ConfigParams.
  • allowed_values (str) – The value to assign to the allowed_values property of this ConfigParams.
  • is_restart_required (bool) – The value to assign to the is_restart_required property of this ConfigParams.
  • data_type (str) – The value to assign to the data_type property of this ConfigParams.
  • is_overridable (bool) – The value to assign to the is_overridable property of this ConfigParams.
  • description (str) – The value to assign to the description property of this ConfigParams.
allowed_values

[Required] Gets the allowed_values of this ConfigParams. Range or list of allowed values.

Returns:The allowed_values of this ConfigParams.
Return type:str
config_key

[Required] Gets the config_key of this ConfigParams. The configuration variable name.

Returns:The config_key of this ConfigParams.
Return type:str
data_type

[Required] Gets the data_type of this ConfigParams. Data type of the variable.

Returns:The data_type of this ConfigParams.
Return type:str
default_config_value

[Required] Gets the default_config_value of this ConfigParams. Default value for the configuration variable.

Returns:The default_config_value of this ConfigParams.
Return type:str
description

[Required] Gets the description of this ConfigParams. Details about the PostgreSQL parameter.

Returns:The description of this ConfigParams.
Return type:str
is_overridable

[Required] Gets the is_overridable of this ConfigParams. Whether the value can be overridden or not.

Returns:The is_overridable of this ConfigParams.
Return type:bool
is_restart_required

[Required] Gets the is_restart_required of this ConfigParams. If true, modifying this configuration value will require a restart of the database.

Returns:The is_restart_required of this ConfigParams.
Return type:bool
overriden_config_value

Gets the overriden_config_value of this ConfigParams. User-selected configuration variable value.

Returns:The overriden_config_value of this ConfigParams.
Return type:str