public sealed class HybridInspectStatistics : IMessage<HybridInspectStatistics>, IEquatable<HybridInspectStatistics>, IDeepCloneable<HybridInspectStatistics>, IBufferMessage, IMessage
Statistics related to processing hybrid inspect requests.
The number of hybrid inspection requests aborted because the job ran
out of quota or was ended before they could be processed.
Property Value
Type
Description
System.Int64
PendingCount
public long PendingCount { get; set; }
The number of hybrid requests currently being processed. Only populated
when called via method getDlpJob.
A burst of traffic may cause hybrid inspect requests to be enqueued.
Processing will take place as quickly as possible, but resource limitations
may impact how long a request is enqueued for.
Property Value
Type
Description
System.Int64
ProcessedCount
public long ProcessedCount { get; set; }
The number of hybrid inspection requests processed within this job.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-24 UTC."],[[["This webpage provides documentation for the `HybridInspectStatistics` class within the `Google.Cloud.Dlp.V2` namespace, covering versions from 2.15.0 to 4.16.0 of the library."],["`HybridInspectStatistics` is a class used to track statistics related to processing hybrid inspect requests, including the number of aborted, pending, and processed requests."],["The class implements multiple interfaces, including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, inheriting methods like `GetHashCode`, `GetType`, `MemberwiseClone`, and `ToString` from the base `Object` class."],["The class contains three public properties, `AbortedCount`, `PendingCount`, and `ProcessedCount`, which are all `System.Int64` types, and represent specific metrics on the state of hybrid inspection requests."],["Two constructors for `HybridInspectStatistics` are provided, one being a parameterless constructor and the other taking in an existing `HybridInspectStatistics` object as a parameter to duplicate it."]]],[]]