Show / Hide Table of Contents

Class DBParameters

Initialization parameters for a database.

Inheritance
object
DatabaseConfigurationMetricGroup
DBParameters
Inherited Members
DatabaseConfigurationMetricGroup.TimeCollected
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class DBParameters : DatabaseConfigurationMetricGroup

Properties

InstanceNumber

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

Database instance number.

Remarks

Required

IsChanged

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

Indicates whether the parameter's value changed in given snapshot or not.

IsDefault

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

Indicates whether this value is the default value or not.

ParameterName

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

Database parameter name.

Remarks

Required

ParameterValue

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

Database parameter value.

Remarks

Required

SnapshotId

Declaration
[JsonProperty(PropertyName = "snapshotId")]
public int? SnapshotId { get; set; }
Property Value
Type Description
int?

AWR snapshot id for the parameter value

In this article
Back to top