Show / Hide Table of Contents

Class SecurityScoreAggregation

Provides the dimensions and their corresponding count value.

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

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

SecurityRating

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

The security rating with given parameters

Remarks

Required

SecurityScore

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

The security score with given parameters

Remarks

Required

In this article
Back to top