Show / Hide Table of Contents

Class EstimateRecallDataSizeDetails

This is the input used to estimate the size of data to be recalled

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

Properties

IsRecallNewDataOnly

Declaration
[JsonProperty(PropertyName = "isRecallNewDataOnly")]
public bool? IsRecallNewDataOnly { get; set; }
Property Value
Type Description
bool?

This indicates if only new data has to be recalled in the timeframe

LogSets

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

This is the list of logsets to be accounted for in the recalled data

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

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

Remarks

Required

In this article
Back to top