Show / Hide Table of Contents

Class AlertLogCountSummary

The details for one alert log count entry.

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

Properties

Category

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

The category of different alert logs.

Remarks

Required

Count

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

The count of alert logs with specific category.

Remarks

Required

In this article
Back to top