Show / Hide Table of Contents

Class RiskScoreAggregation

Provides the dimensions and their corresponding risk score.

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

Properties

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

RiskScore

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

The risk score with given dimensions

Remarks

Required

In this article
Back to top