Show / Hide Table of Contents

Class ResetDatabaseParametersDetails

The details required to reset database parameter values. It takes either credentials or databaseCredential. It's recommended to provide databaseCredential

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

Properties

Credentials

Declaration
[JsonProperty(PropertyName = "credentials")]
public DatabaseCredentials Credentials { get; set; }
Property Value
Type Description
DatabaseCredentials

DatabaseCredential

Declaration
[JsonProperty(PropertyName = "databaseCredential")]
public DatabaseCredentialDetails DatabaseCredential { get; set; }
Property Value
Type Description
DatabaseCredentialDetails

Parameters

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

A list of database parameter names.

Remarks

Required

Scope

Declaration
[Required(ErrorMessage = "Scope is required.")]
[JsonProperty(PropertyName = "scope")]
[JsonConverter(typeof(StringEnumConverter))]
public ParameterScope? Scope { get; set; }
Property Value
Type Description
ParameterScope?

The clause used to specify when the parameter change takes effect.
Use MEMORY to make the change in memory and ensure that it takes effect immediately. Use SPFILE to make the change in the server parameter file. The change takes effect when the database is next shut down and started up again. Use BOTH to make the change in memory and in the server parameter file. The change takes effect immediately and persists after the database is shut down and started up again.

Remarks

Required

In this article
Back to top