Class EstimateRecallDataSizeDetails
This is the input used to estimate the size of data to be recalled
Inherited Members
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