Show / Hide Table of Contents

Class DiscoveryAnalyticsSummary

Summary of discovery analytics data.

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

Properties

Count

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

The total count for the aggregation metric.

Remarks

Required

Dimensions

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

MetricName

Declaration
[Required(ErrorMessage = "MetricName is required.")]
[JsonProperty(PropertyName = "metricName")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DiscoveryAnalyticsSummary.MetricNameEnum? MetricName { get; set; }
Property Value
Type Description
DiscoveryAnalyticsSummary.MetricNameEnum?

The name of the aggregation metric.

Remarks

Required

TimeLastDiscovered

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

The date and time when data discovery was last done on the target database, in the format defined by RFC3339.

In this article
Back to top