Show / Hide Table of Contents

Class TableStatisticSummary

The summary of table statistics statuses, which includes status categories such as Stale, Not Stale, and No Stats, the number of table statistics grouped by status category, and the percentage of objects with a particular status.

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

Properties

Count

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

The number of objects aggregated by status category.

Remarks

Required

Percentage

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

The percentage of objects with a particular status.

Remarks

Required

Type

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

The valid status categories of table statistics.

Remarks

Required

In this article
Back to top