Show / Hide Table of Contents

Class RuleSummaryReport

A summary count of detection rules.

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

Properties

IngestTimeRulesCount

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

The count of ingest time rules.

Remarks

Required

SavedSearchRulesCount

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

The count of saved search rules.

Remarks

Required

TotalCount

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

The total count of detection rules.

Remarks

Required

In this article
Back to top