Show / Hide Table of Contents

Class AwrDatabaseParameterChangeSummary

A summary of the changes made to a single AWR database parameter.

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

Properties

InstanceNumber

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

The database instance number.

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.

PreviousValue

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

The previous value of the database parameter.

SnapshotIdentifier

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

The ID of the snapshot with the parameter value changed. The snapshot identifier is not the OCID. It can be retrieved from the following endpoint: /awrHubs/{awrHubId}/awrDatabaseSnapshots

Remarks

Required

TimeBegin

Declaration
[JsonProperty(PropertyName = "timeBegin")]
public DateTime? TimeBegin { get; set; }
Property Value
Type Description
DateTime?

The start time of the interval.

TimeEnd

Declaration
[JsonProperty(PropertyName = "timeEnd")]
public DateTime? TimeEnd { get; set; }
Property Value
Type Description
DateTime?

The end time of the interval.

Value

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

The current value of the database parameter.

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