Show / Hide Table of Contents

Class UpdateDbConfigParams

Configuration for the PostgreSQL database instance.

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

Properties

ApplyConfig

Declaration
[JsonProperty(PropertyName = "applyConfig")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateDbConfigParams.ApplyConfigEnum? ApplyConfig { get; set; }
Property Value
Type Description
UpdateDbConfigParams.ApplyConfigEnum?

Whether a configuration update requires a restart of the database instance or a reload of the configuration. Some configuration changes require a restart of database instances to be applied.

ConfigId

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

The OCID of the configuration.

Remarks

Required

In this article
Back to top