RecalledDataSize¶
- 
class oci.log_analytics.models.RecalledDataSize(**kwargs)¶
- Bases: - object- This is the recall related data size for the given timeframe - Methods - __init__(**kwargs)- Initializes a new RecalledDataSize object with values from keyword arguments. - Attributes - not_recalled_data_in_bytes- [Required] Gets the not_recalled_data_in_bytes of this RecalledDataSize. - recalled_data_in_bytes- [Required] Gets the recalled_data_in_bytes of this RecalledDataSize. - time_data_ended- [Required] Gets the time_data_ended of this RecalledDataSize. - time_data_started- [Required] Gets the time_data_started of this RecalledDataSize. - 
__init__(**kwargs)¶
- Initializes a new RecalledDataSize object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - time_data_started (datetime) – The value to assign to the time_data_started property of this RecalledDataSize.
- time_data_ended (datetime) – The value to assign to the time_data_ended property of this RecalledDataSize.
- recalled_data_in_bytes (int) – The value to assign to the recalled_data_in_bytes property of this RecalledDataSize.
- not_recalled_data_in_bytes (int) – The value to assign to the not_recalled_data_in_bytes property of this RecalledDataSize.
 
 - 
not_recalled_data_in_bytes¶
- [Required] Gets the not_recalled_data_in_bytes of this RecalledDataSize. This is the size of the archival data not recalled yet - Returns: - The not_recalled_data_in_bytes of this RecalledDataSize. - Return type: - int 
 - 
recalled_data_in_bytes¶
- [Required] Gets the recalled_data_in_bytes of this RecalledDataSize. This is the size of the recalled data - Returns: - The recalled_data_in_bytes of this RecalledDataSize. - Return type: - int 
 - 
time_data_ended¶
- [Required] Gets the time_data_ended of this RecalledDataSize. This is the end of the time range of the archival data - Returns: - The time_data_ended of this RecalledDataSize. - Return type: - datetime 
 - 
time_data_started¶
- [Required] Gets the time_data_started of this RecalledDataSize. This is the start of the time range of the archival data - Returns: - The time_data_started of this RecalledDataSize. - Return type: - datetime 
 
-