Show / Hide Table of Contents

Class EstimateRecallDataSizeResult

This is the size and time range of data to be recalled

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

Properties

CoreGroupCount

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

This is the number of core groups estimated for this recall

CoreGroupCountLimit

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

This is the max number of core groups that is available for any recall

IsOverlappingWithExistingRecalls

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

This indicates if the time range of data to be recalled overlaps with existing recalled data

Message

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

This message shows existing recall overlapping details like collection id, purpose

SizeInBytes

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

This is the size in bytes

Remarks

Required

SizeLimitInBytes

Declaration
[JsonProperty(PropertyName = "sizeLimitInBytes")]
public long? SizeLimitInBytes { get; set; }
Property Value
Type Description
long?

This is the size limit in bytes

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 data to be recalled. timeDataStarted and timeDataEnded delineate the time range of the archived data to be recalled. They may not be exact the same as the parameters in the request input (EstimateRecallDataSizeDetails).

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

Remarks

Required

TotalBatchSize

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

This is the total number of batches data will be recalled in

In this article
Back to top