Show / Hide Table of Contents

Class DefaultConfigParams

Default database configuration.

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

Properties

AllowedValues

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

Range or list of allowed values.

Remarks

Required

ConfigKey

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

The configuration variable name.

Remarks

Required

DataType

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

Data type of the variable.

Remarks

Required

DefaultConfigValue

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

Default value for the variable.

Remarks

Required

Description

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

Details about the PostgreSQL variable.

Remarks

Required

IsOverridable

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

Whether the value can be overridden or not.

Remarks

Required

IsRestartRequired

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

If true, modifying this configuration value will require a restart.

Remarks

Required

In this article
Back to top