Show / Hide Table of Contents

Class OverlappingRecallSummary

This is the information about overlapping recall requests

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

Properties

CollectionId

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

This is the id of the associated recalled data collection

Remarks

Required

CreatedBy

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

This is the user who initiated the recall request

Remarks

Required

LogSets

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

This is the list of logsets associated with this recall

Remarks

Required

Purpose

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

This is the purpose of the recall

Remarks

Required

QueryString

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

This is the query associated with the recall

Remarks

Required

RecallId

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

This is the id for the recall request

Remarks

Required

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RecallStatus? Status { get; set; }
Property Value
Type Description
RecallStatus?

This is the status of the recall

Remarks

Required

TimeDataEnded

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

This is the end of the time range of the archival data

Remarks

Required

TimeDataStarted

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

This is the start of the time range of the archival data

Remarks

Required

TimeStarted

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

This is the time when the recall operation was started for this recall request

Remarks

Required

In this article
Back to top