Show / Hide Table of Contents

Class ResourceProfileRiskScoreAggregationSummary

Summary of resource profile risk score aggregations.

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

Properties

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<ResourceRiskScoreAggregation> Items { get; set; }
Property Value
Type Description
List<ResourceRiskScoreAggregation>

List of ResourceRiskScoreAggregation resources

Remarks

Required

ResourceProfileDisplayName

Declaration
[Required(ErrorMessage = "ResourceProfileDisplayName is required.")]
[JsonProperty(PropertyName = "resourceProfileDisplayName")]
public string ResourceProfileDisplayName { get; set; }
Property Value
Type Description
string

Display name for the resource profile

Remarks

Required

ResourceProfileId

Declaration
[Required(ErrorMessage = "ResourceProfileId is required.")]
[JsonProperty(PropertyName = "resourceProfileId")]
public string ResourceProfileId { get; set; }
Property Value
Type Description
string

OCID for the resource profile

Remarks

Required

RiskThreshold

Declaration
[JsonProperty(PropertyName = "riskThreshold")]
public int? RiskThreshold { get; set; }
Property Value
Type Description
int?

Risk score value that triggers a problem

In this article
Back to top