Show / Hide Table of Contents

Class SummarizeIndicatorsDetails

Query parameters to filter indicators

Inheritance
object
SummarizeIndicatorsDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ThreatintelligenceService.Models
Assembly: OCI.DotNetSDK.Threatintelligence.dll
Syntax
public class SummarizeIndicatorsDetails

Properties

ConfidenceGreaterThanOrEqualTo

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

The minimum level of confidence to return

IndicatorSeenBy

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

Filter to include indicators that have been seen by the provided source.

IndicatorType

Declaration
[JsonProperty(PropertyName = "indicatorType")]
[JsonConverter(typeof(StringEnumConverter))]
public IndicatorType? IndicatorType { get; set; }
Property Value
Type Description
IndicatorType?

The type of indicator this is

IndicatorValue

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

The value for the type of indicator this is

Malware

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

Filter to include indicators associated with the provided malware.

SortBy

Declaration
[JsonProperty(PropertyName = "sortBy")]
[JsonConverter(typeof(StringEnumConverter))]
public SummarizeIndicatorsDetails.SortByEnum? SortBy { get; set; }
Property Value
Type Description
SummarizeIndicatorsDetails.SortByEnum?

The field to sort by. Only one field to sort by may be provided

SortOrder

Declaration
[JsonProperty(PropertyName = "sortOrder")]
[JsonConverter(typeof(StringEnumConverter))]
public SortOrder? SortOrder { get; set; }
Property Value
Type Description
SortOrder?

The sort order to use, either 'ASC' or 'DESC'.

ThreatActor

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

Filter to included indicators associated with the provided threat actor.

ThreatTypes

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

The threat type of entites to be returned.

TimeCreatedGreaterThanOrEqualTo

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

The oldest creation time of entities to be returned.

TimeCreatedLessThan

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

The newest creation time of entities to be returned.

TimeLastSeenGreaterThanOrEqualTo

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

The oldest last seen time of entities to be returned.

TimeLastSeenLessThan

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

The newest last seen time of entities to be returned.

TimeUpdatedGreaterThanOrEqualTo

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

The oldest update time of entities to be returned.

TimeUpdatedLessThan

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

The newest update time of entities to be returned.

In this article
Back to top