Show / Hide Table of Contents

Class ChangeDatabaseParameterDetails

The value of a database parameter to change.

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

Properties

Name

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

The parameter name.

Remarks

Required

UpdateComment

Declaration
[JsonProperty(PropertyName = "updateComment")]
public string UpdateComment { get; set; }
Property Value
Type Description
string

A comment string to associate with the change in parameter value. It cannot contain control characters or a line break.

Value

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

The parameter value.

Remarks

Required

In this article
Back to top