Show / Hide Table of Contents

Class SqlStatisticAggregation

SQL Statistics

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

Properties

Category

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

SQL belongs to one or more categories based on the insights.

Remarks

Required

DatabaseDetails

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

Required

SqlIdentifier

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

Unique SQL_ID for a SQL Statement.

Remarks

Required

Statistics

Declaration
[JsonProperty(PropertyName = "statistics")]
public SqlStatistics Statistics { get; set; }
Property Value
Type Description
SqlStatistics
In this article
Back to top