Interface HybridInspectStatisticsOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    HybridInspectStatistics, HybridInspectStatistics.Builder

    public interface HybridInspectStatisticsOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getAbortedCount()
      The number of hybrid inspection requests aborted because the job ran out of quota or was ended before they could be processed.
      long getPendingCount()
      The number of hybrid requests currently being processed.
      long getProcessedCount()
      The number of hybrid inspection requests processed within this job.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getProcessedCount

        long getProcessedCount()
         The number of hybrid inspection requests processed within this job.
         
        int64 processed_count = 1;
        Returns:
        The processedCount.
      • getAbortedCount

        long getAbortedCount()
         The number of hybrid inspection requests aborted because the job ran
         out of quota or was ended before they could be processed.
         
        int64 aborted_count = 2;
        Returns:
        The abortedCount.
      • getPendingCount

        long getPendingCount()
         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.
         
        int64 pending_count = 3;
        Returns:
        The pendingCount.