Show / Hide Table of Contents

Class SqlInsightAggregationCollection

SQL Insights response.

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

Properties

Inventory

Declaration
[Required(ErrorMessage = "Inventory is required.")]
[JsonProperty(PropertyName = "inventory")]
public SqlInventory Inventory { get; set; }
Property Value
Type Description
SqlInventory
Remarks

Required

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<SqlInsightAggregation> Items { get; set; }
Property Value
Type Description
List<SqlInsightAggregation>

List of insights.

Remarks

Required

Thresholds

Declaration
[Required(ErrorMessage = "Thresholds is required.")]
[JsonProperty(PropertyName = "thresholds")]
public SqlInsightThresholds Thresholds { get; set; }
Property Value
Type Description
SqlInsightThresholds
Remarks

Required

TimeIntervalEnd

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

The end timestamp that was passed into the request.

Remarks

Required

TimeIntervalStart

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

The start timestamp that was passed into the request.

Remarks

Required

In this article
Back to top