Show / Hide Table of Contents

Class AddmDbParameterChangeAggregation

Change record for AWR database parameter

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

Properties

Id

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

The OCID of the Database insight.

Remarks

Required

InstNum

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

Instance number

Remarks

Required

PreviousValue

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

Previous value

SnapshotId

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

AWR snapshot id which includes the parameter value change

Remarks

Required

TimeBegin

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

Begin time of interval which includes change

Remarks

Required

TimeEnd

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

End time of interval which includes change

Remarks

Required

Value

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

Current value

In this article
Back to top