Class RecalledData
This is the information about recalled data
Inherited Members
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class RecalledData
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
CreatedBy
Declaration
[Required(ErrorMessage = "CreatedBy is required.")]
[JsonProperty(PropertyName = "createdBy")]
public string CreatedBy { get; set; }
Property Value
Type | Description |
---|---|
string | This is the user who initiated the recall request |
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
NotRecalledDataInBytes
Declaration
[Required(ErrorMessage = "NotRecalledDataInBytes is required.")]
[JsonProperty(PropertyName = "notRecalledDataInBytes")]
public long? NotRecalledDataInBytes { get; set; }
Property Value
Type | Description |
---|---|
long? | This is the size of the archival data not recalled yet within the specified time range |
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
RecallCount
Declaration
[Required(ErrorMessage = "RecallCount is required.")]
[JsonProperty(PropertyName = "recallCount")]
public int? RecallCount { get; set; }
Property Value
Type | Description |
---|---|
int? | This is the number of recall operations for this recall. Note one RecalledData can be merged from the results of several recall operations if the time duration of the results of the recall operations overlap. |
Remarks
Required
Status
Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RecalledData.StatusEnum? Status { get; set; }
Property Value
Type | Description |
---|---|
RecalledData.StatusEnum? | This is the status of the recall |
Remarks
Required
StorageUsageInBytes
Declaration
[Required(ErrorMessage = "StorageUsageInBytes is required.")]
[JsonProperty(PropertyName = "storageUsageInBytes")]
public long? StorageUsageInBytes { get; set; }
Property Value
Type | Description |
---|---|
long? | This is the size in bytes |
Remarks
Required
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 the related data |
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 the related data |
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
TimeStarted
Declaration
[Required(ErrorMessage = "TimeStarted is required.")]
[JsonProperty(PropertyName = "timeStarted")]
public DateTime? TimeStarted { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | This is the time when the first recall operation was started for this RecalledData |
Remarks
Required