Class EstimateRecallDataSizeResult
This is the size and time range of data to be recalled
Inherited Members
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 |
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