Show / Hide Table of Contents

Class SightingType

Information for a sighting type

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

Properties

Description

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

Description of the sighting type

DisplayName

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

Display name of the sighting type

Id

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

The unique identifier of the sighting type

MitreLink

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

MITRE ATT@CK framework link for the sighting type

Tactic

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

MITRE ATT@CK framework tactic for the sighting type

Techniques

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

List of MITRE ATT@CK framework techniques for the sighting type

In this article
Back to top