Interface InspectResultOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      Finding getFindings​(int index)
      List of findings for an item.
      int getFindingsCount()
      List of findings for an item.
      List<Finding> getFindingsList()
      List of findings for an item.
      FindingOrBuilder getFindingsOrBuilder​(int index)
      List of findings for an item.
      List<? extends FindingOrBuilder> getFindingsOrBuilderList()
      List of findings for an item.
      boolean getFindingsTruncated()
      If true, then this item might have more findings than were returned, and the findings returned are an arbitrary subset of all findings.
      • 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

      • getFindingsList

        List<Finding> getFindingsList()
         List of findings for an item.
         
        repeated .google.privacy.dlp.v2.Finding findings = 1;
      • getFindings

        Finding getFindings​(int index)
         List of findings for an item.
         
        repeated .google.privacy.dlp.v2.Finding findings = 1;
      • getFindingsCount

        int getFindingsCount()
         List of findings for an item.
         
        repeated .google.privacy.dlp.v2.Finding findings = 1;
      • getFindingsOrBuilderList

        List<? extends FindingOrBuilder> getFindingsOrBuilderList()
         List of findings for an item.
         
        repeated .google.privacy.dlp.v2.Finding findings = 1;
      • getFindingsOrBuilder

        FindingOrBuilder getFindingsOrBuilder​(int index)
         List of findings for an item.
         
        repeated .google.privacy.dlp.v2.Finding findings = 1;
      • getFindingsTruncated

        boolean getFindingsTruncated()
         If true, then this item might have more findings than were returned,
         and the findings returned are an arbitrary subset of all findings.
         The findings list might be truncated because the input items were too
         large, or because the server reached the maximum amount of resources
         allowed for a single API call. For best results, divide the input into
         smaller batches.
         
        bool findings_truncated = 2;
        Returns:
        The findingsTruncated.