Class RecallCount
This is the recall count statistics for a given tenant
Inherited Members
Namespace: Oci.LoganalyticsService.Models
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class RecallCount
Properties
RecallCountProp
Declaration
[Required(ErrorMessage = "RecallCountProp is required.")]
[JsonProperty(PropertyName = "recallCount")]
public int? RecallCountProp { get; set; }
Property Value
Type | Description |
---|---|
int? | This is the total number of recalls made so far |
Remarks
Required
RecallFailed
Declaration
[Required(ErrorMessage = "RecallFailed is required.")]
[JsonProperty(PropertyName = "recallFailed")]
public int? RecallFailed { get; set; }
Property Value
Type | Description |
---|---|
int? | This is the number of recalls that failed |
Remarks
Required
RecallLimit
Declaration
[Required(ErrorMessage = "RecallLimit is required.")]
[JsonProperty(PropertyName = "recallLimit")]
public int? RecallLimit { get; set; }
Property Value
Type | Description |
---|---|
int? | This is the maximum number of recalls (including successful and pending recalls) allowed |
Remarks
Required
RecallPending
Declaration
[Required(ErrorMessage = "RecallPending is required.")]
[JsonProperty(PropertyName = "recallPending")]
public int? RecallPending { get; set; }
Property Value
Type | Description |
---|---|
int? | This is the number of recalls in pending state |
Remarks
Required
RecallSucceeded
Declaration
[Required(ErrorMessage = "RecallSucceeded is required.")]
[JsonProperty(PropertyName = "recallSucceeded")]
public int? RecallSucceeded { get; set; }
Property Value
Type | Description |
---|---|
int? | This is the number of recalls that succeeded |
Remarks
Required