Show / Hide Table of Contents

Class AddmDbParameterAggregation

Summarizes change history for specific database parameter

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

Properties

BeginValue

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

Parameter value when time period began

DefaultValue

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

Parameter default value

EndValue

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

Parameter value when time period ended

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
[JsonProperty(PropertyName = "instNum")]
public int? InstNum { get; set; }
Property Value
Type Description
int?

Number of database instance

IsChanged

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

Indicates whether the parameter's value changed during the selected time range (TRUE) or did not change during the selected time range (FALSE)

Remarks

Required

IsDefault

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

Indicates whether the parameter's end value was set to the default value (TRUE) or was specified in the parameter file (FALSE)

IsHighImpact

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

Indicates whether the parameter is a high impact parameter (TRUE) or not (FALSE)

Name

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

Name of 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 starup MODIFIED - Parameter has been modified with ALTER SESSION SYSTEM_MOD - Parameter has been modified with ALTER SYSTEM FALSE - Parameter has not been modified after instance starup

In this article
Back to top