Show / Hide Table of Contents

Class GranularityCapability

Describes time granularity behavior for time-series Insight.

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

Properties

MaxSeconds

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

Maximum supported granularity in seconds.

MinSeconds

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

Minimum supported granularity in seconds.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public GranularityCapability.TypeEnum? Type { get; set; }
Property Value
Type Description
GranularityCapability.TypeEnum?

Granularity selection strategy.

In this article
Back to top