Show / Hide Table of Contents

Class ListIndicatorsRequest

Inheritance
object
ListIndicatorsRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ThreatintelligenceService.Requests
Assembly: OCI.DotNetSDK.Threatintelligence.dll
Syntax
public class ListIndicatorsRequest : IOciRequest
Examples

Click here to see an example of how to use ListIndicators request.

Properties

CompartmentId

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

The OCID of the tenancy (root compartment) that is used to filter results.

Remarks

Required

ConfidenceGreaterThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "confidenceGreaterThanOrEqualTo")]
public int? ConfidenceGreaterThanOrEqualTo { get; set; }
Property Value
Type Description
int?

The minimum confidence score of entities to be returned.

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The maximum number of items to return.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing.

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

A token representing the position at which to start retrieving results. This must come from the opc-next-page header field of a previous response.

SortBy

Declaration
[HttpConverter(TargetEnum.Query, "sortBy")]
public ListIndicatorsRequest.SortByEnum? SortBy { get; set; }
Property Value
Type Description
ListIndicatorsRequest.SortByEnum?

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

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public SortOrder? SortOrder { get; set; }
Property Value
Type Description
SortOrder?

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

ThreatTypeName

Declaration
[HttpConverter(TargetEnum.Query, "threatTypeName", CollectionFormatType.Multi)]
public List<string> ThreatTypeName { get; set; }
Property Value
Type Description
List<string>

The threat type of entites to be returned. To filter for multiple threat types, repeat this parameter.

TimeCreatedGreaterThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "timeCreatedGreaterThanOrEqualTo")]
public DateTime? TimeCreatedGreaterThanOrEqualTo { get; set; }
Property Value
Type Description
DateTime?

The oldest created/first seen time of entities to be returned.

TimeCreatedLessThan

Declaration
[HttpConverter(TargetEnum.Query, "timeCreatedLessThan")]
public DateTime? TimeCreatedLessThan { get; set; }
Property Value
Type Description
DateTime?

Return indicators created/first seen before the provided time.

TimeLastSeenGreaterThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "timeLastSeenGreaterThanOrEqualTo")]
public DateTime? TimeLastSeenGreaterThanOrEqualTo { get; set; }
Property Value
Type Description
DateTime?

The oldest last seen time of entities to be returned.

TimeLastSeenLessThan

Declaration
[HttpConverter(TargetEnum.Query, "timeLastSeenLessThan")]
public DateTime? TimeLastSeenLessThan { get; set; }
Property Value
Type Description
DateTime?

Return indicators last seen before the provided time.

TimeUpdatedGreaterThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "timeUpdatedGreaterThanOrEqualTo")]
public DateTime? TimeUpdatedGreaterThanOrEqualTo { get; set; }
Property Value
Type Description
DateTime?

The oldest update time of entities to be returned.

TimeUpdatedLessThan

Declaration
[HttpConverter(TargetEnum.Query, "timeUpdatedLessThan")]
public DateTime? TimeUpdatedLessThan { get; set; }
Property Value
Type Description
DateTime?

Return indicators updated before the provided time.

Type

Declaration
[HttpConverter(TargetEnum.Query, "type")]
public IndicatorType? Type { get; set; }
Property Value
Type Description
IndicatorType?

The indicator type of entities to be returned.

Value

Declaration
[HttpConverter(TargetEnum.Query, "value")]
public string Value { get; set; }
Property Value
Type Description
string

The indicator value of entities to be returned.

Implements

IOciRequest
In this article
Back to top