Show / Hide Table of Contents

Class InsightLimits

Defines limits applicable to an insight type.

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

Properties

MaxRows

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

Maximum number of rows returned.

MaxTimeRangeDays

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

Maximum allowed time range in days.

In this article
Back to top