Show / Hide Table of Contents

Class ProblemAggregation

Provides aggregated information on counts of problems by specified parameters.

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

Properties

Count

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

The number of occurrences with given dimensions

Remarks

Required

DimensionsMap

Declaration
[Required(ErrorMessage = "DimensionsMap is required.")]
[JsonProperty(PropertyName = "dimensionsMap")]
public Dictionary<string, string> DimensionsMap { get; set; }
Property Value
Type Description
Dictionary<string, string>

The key-value pairs of dimensions and their names

Remarks

Required

In this article
Back to top