Show / Hide Table of Contents

Class ProblemEntitySummary

Summary information about problem entities for a data source for a problem.

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

Properties

EntityDetails

Declaration
[JsonProperty(PropertyName = "entityDetails")]
public List<EntityDetails> EntityDetails { get; set; }
Property Value
Type Description
List<EntityDetails>

List of entity details related to a data source

ProblemId

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

Attached problem ID

Remarks

Required

Regions

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

Data source problem entities region

Remarks

Required

ResultUrl

Declaration
[JsonProperty(PropertyName = "resultUrl")]
public string ResultUrl { get; set; }
Property Value
Type Description
string

Log result query URL for a data source query

TimeFirstDetected

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

Data source problem entities first detected time

Remarks

Required

TimeLastDetected

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

Data source problem entities last detected time

Remarks

Required

In this article
Back to top