RecalledData¶
-
class
oci.log_analytics.models.
RecalledData
(**kwargs)¶ Bases:
object
This is the information about recalled data
Attributes
STATUS_PENDING
A constant which can be used with the status property of a RecalledData. STATUS_RECALLED
A constant which can be used with the status property of a RecalledData. recall_count
[Required] Gets the recall_count of this RecalledData. status
[Required] Gets the status of this RecalledData. storage_usage_in_bytes
[Required] Gets the storage_usage_in_bytes of this RecalledData. time_data_ended
[Required] Gets the time_data_ended of this RecalledData. time_data_started
[Required] Gets the time_data_started of this RecalledData. time_started
[Required] Gets the time_started of this RecalledData. Methods
__init__
(**kwargs)Initializes a new RecalledData object with values from keyword arguments. -
STATUS_PENDING
= 'PENDING'¶ A constant which can be used with the status property of a RecalledData. This constant has a value of “PENDING”
-
STATUS_RECALLED
= 'RECALLED'¶ A constant which can be used with the status property of a RecalledData. This constant has a value of “RECALLED”
-
__init__
(**kwargs)¶ Initializes a new RecalledData object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - time_data_ended (datetime) – The value to assign to the time_data_ended property of this RecalledData.
- time_data_started (datetime) – The value to assign to the time_data_started property of this RecalledData.
- time_started (datetime) – The value to assign to the time_started property of this RecalledData.
- status (str) – The value to assign to the status property of this RecalledData. Allowed values for this property are: “RECALLED”, “PENDING”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- recall_count (int) – The value to assign to the recall_count property of this RecalledData.
- storage_usage_in_bytes (int) – The value to assign to the storage_usage_in_bytes property of this RecalledData.
-
recall_count
¶ [Required] Gets the recall_count of this RecalledData. 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.
Returns: The recall_count of this RecalledData. Return type: int
-
status
¶ [Required] Gets the status of this RecalledData. This is the status of the recall
Allowed values for this property are: “RECALLED”, “PENDING”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The status of this RecalledData. Return type: str
-
storage_usage_in_bytes
¶ [Required] Gets the storage_usage_in_bytes of this RecalledData. This is the size in bytes
Returns: The storage_usage_in_bytes of this RecalledData. Return type: int
-
time_data_ended
¶ [Required] Gets the time_data_ended of this RecalledData. This is the end of the time range of the related data
Returns: The time_data_ended of this RecalledData. Return type: datetime
-
time_data_started
¶ [Required] Gets the time_data_started of this RecalledData. This is the start of the time range of the related data
Returns: The time_data_started of this RecalledData. Return type: datetime
-
time_started
¶ [Required] Gets the time_started of this RecalledData. This is the time when the first recall operation was started for this RecalledData
Returns: The time_started of this RecalledData. Return type: datetime
-