Show / Hide Table of Contents

Class AwrDatabaseParameterSummary

The summary of the AWR change history data for a single database parameter.

Inheritance
object
AwrDatabaseParameterSummary
Inherited Members
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 AwrDatabaseParameterSummary

Properties

BeginValue

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

The parameter value when the period began.

EndValue

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

The parameter value when the period ended.

InstanceNumber

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

The database instance number.

IsChanged

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

Indicates whether the parameter value changed within the period.

IsDefault

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

Indicates whether the parameter value in the end snapshot is the default.

Name

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

The name of the parameter.

Remarks

Required

ValueModified

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

Indicates whether the parameter has been modified after instance startup:

  • MODIFIED - Parameter has been modified with ALTER SESSION
  • SYSTEM_MOD - Parameter has been modified with ALTER SYSTEM (which causes all the currently logged in sessions values to be modified)
  • FALSE - Parameter has not been modified after instance startup
In this article
Back to top