Show / Hide Table of Contents

Class SqlCollectionLogAggregation

The details of SQL collection log aggregation items.

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

Properties

Count

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

Total count of aggregated value.

Remarks

Required

Dimensions

Declaration
[JsonProperty(PropertyName = "dimensions")]
public SqlCollectionLogDimensions Dimensions { get; set; }
Property Value
Type Description
SqlCollectionLogDimensions

MetricName

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

Name of the aggregation.

Remarks

Required

TimeEnded

Declaration
[JsonProperty(PropertyName = "timeEnded")]
public DateTime? TimeEnded { get; set; }
Property Value
Type Description
DateTime?

The time at which the aggregation ended.

TimeStarted

Declaration
[JsonProperty(PropertyName = "timeStarted")]
public DateTime? TimeStarted { get; set; }
Property Value
Type Description
DateTime?

The time at which the aggregation started.

In this article
Back to top