RecallCount¶
-
class
oci.log_analytics.models.
RecallCount
(**kwargs)¶ Bases:
object
This is the recall count statistics for a given tenant
Methods
__init__
(**kwargs)Initializes a new RecallCount object with values from keyword arguments. Attributes
recall_count
[Required] Gets the recall_count of this RecallCount. recall_failed
[Required] Gets the recall_failed of this RecallCount. recall_limit
[Required] Gets the recall_limit of this RecallCount. recall_pending
[Required] Gets the recall_pending of this RecallCount. recall_succeeded
[Required] Gets the recall_succeeded of this RecallCount. -
__init__
(**kwargs)¶ Initializes a new RecallCount object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - recall_count (int) – The value to assign to the recall_count property of this RecallCount.
- recall_succeeded (int) – The value to assign to the recall_succeeded property of this RecallCount.
- recall_failed (int) – The value to assign to the recall_failed property of this RecallCount.
- recall_pending (int) – The value to assign to the recall_pending property of this RecallCount.
- recall_limit (int) – The value to assign to the recall_limit property of this RecallCount.
-
recall_count
¶ [Required] Gets the recall_count of this RecallCount. This is the total number of recalls made so far
Returns: The recall_count of this RecallCount. Return type: int
-
recall_failed
¶ [Required] Gets the recall_failed of this RecallCount. This is the number of recalls that failed
Returns: The recall_failed of this RecallCount. Return type: int
-
recall_limit
¶ [Required] Gets the recall_limit of this RecallCount. This is the maximum number of recalls (including successful and pending recalls) allowed
Returns: The recall_limit of this RecallCount. Return type: int
-
recall_pending
¶ [Required] Gets the recall_pending of this RecallCount. This is the number of recalls in pending state
Returns: The recall_pending of this RecallCount. Return type: int
-
recall_succeeded
¶ [Required] Gets the recall_succeeded of this RecallCount. This is the number of recalls that succeeded
Returns: The recall_succeeded of this RecallCount. Return type: int
-