Show / Hide Table of Contents

Class RecalledInfo

This is the information about data recalled

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

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 for the recalled data collection

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 the 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

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

TimeRecalledDataEnded

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

This is the recalled data end time

Remarks

Required

TimeRecalledDataStarted

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

This is the recalled date start time

Remarks

Required

In this article
Back to top