Show / Hide Table of Contents

Class OdspInsight

Details for a single ODSP insight.

Inheritance
object
OdspInsight
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.PsqlService.Models
Assembly: OCI.DotNetSDK.Psql.dll
Syntax
public class OdspInsight

Properties

InsightType

Declaration
[Required(ErrorMessage = "InsightType is required.")]
[JsonProperty(PropertyName = "insightType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OdspInsight.InsightTypeEnum? InsightType { get; set; }
Property Value
Type Description
OdspInsight.InsightTypeEnum?

Type of Insight collected for the database system.

Remarks

Required

RetentionPeriodInDays

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

Retention period for Insight data, in days. Current supported value is 7 days. the system default is 7 days.

In this article
Back to top