Show / Hide Table of Contents

Class SightingImpactedResourceSummary

Summary of resources impacted by a sighting.

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

Properties

CompartmentId

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

Compartment ID for impacted resource

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 an impacted resource

Remarks

Required

ProblemId

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

Problem ID for impacted resource

Region

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

Region for impacted resource

Remarks

Required

ResourceId

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

Impacted resource ID

Remarks

Required

ResourceName

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

Resource name

Remarks

Required

ResourceType

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

Resource type

Remarks

Required

SightingId

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

Sighting ID for impacted resource

Remarks

Required

TimeFirstDetected

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

Time the activities were first detected.

TimeFirstOccurred

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

Time the activities were first performed.

TimeIdentified

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

Date and time when the impacted resource is identified for given sighting

Remarks

Required

TimeLastDetected

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

Time the activities were last detected. Same as timeIdentified.

TimeLastOccurred

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

Time the activities were last performed.

In this article
Back to top