Show / Hide Table of Contents

Class ResourceProfileSummary

Summary information for a resource profile.

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

Properties

DisplayName

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

Display name for the resource profile

Remarks

Required

Id

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

Unique identifier for the resource profile

Remarks

Required

ProblemsCount

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

Number of problems associated with this resource profile

ResourceId

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

Unique identifier for the resource associated with the resource profile

Remarks

Required

RiskScore

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

Risk score for the resource profile

Remarks

Required

SightingsCount

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

Number of sightings associated with the resource profile

Tactics

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

List of tactic summaries associated with the resource profile

Remarks

Required

TimeFirstDetected

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

Time the activities were first detected. Format defined by RFC3339.

Remarks

Required

TimeFirstOccurred

Declaration
[JsonProperty(PropertyName = "timeFirstOccurred")]
public DateTime? TimeFirstOccurred { get; set; }
Property Value
Type Description
DateTime?

Time the activities were first performed. Format defined by RFC3339.

TimeLastDetected

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

Time the activities were last detected. Format defined by RFC3339.

Remarks

Required

TimeLastOccurred

Declaration
[JsonProperty(PropertyName = "timeLastOccurred")]
public DateTime? TimeLastOccurred { get; set; }
Property Value
Type Description
DateTime?

Time the activities were last performed. Format defined by RFC3339.

Type

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

Resource type for the resource profile

Remarks

Required

In this article
Back to top