Interface CloudStorageOptionsOrBuilder

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

    public interface CloudStorageOptionsOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Detail

      • hasFileSet

        boolean hasFileSet()
         The set of one or more files to scan.
         
        .google.privacy.dlp.v2.CloudStorageOptions.FileSet file_set = 1;
        Returns:
        Whether the fileSet field is set.
      • getFileSet

        CloudStorageOptions.FileSet getFileSet()
         The set of one or more files to scan.
         
        .google.privacy.dlp.v2.CloudStorageOptions.FileSet file_set = 1;
        Returns:
        The fileSet.
      • getFileSetOrBuilder

        CloudStorageOptions.FileSetOrBuilder getFileSetOrBuilder()
         The set of one or more files to scan.
         
        .google.privacy.dlp.v2.CloudStorageOptions.FileSet file_set = 1;
      • getBytesLimitPerFile

        long getBytesLimitPerFile()
         Max number of bytes to scan from a file. If a scanned file's size is bigger
         than this value then the rest of the bytes are omitted. Only one
         of bytes_limit_per_file and bytes_limit_per_file_percent can be specified.
         Cannot be set if de-identification is requested.
         
        int64 bytes_limit_per_file = 4;
        Returns:
        The bytesLimitPerFile.
      • getBytesLimitPerFilePercent

        int getBytesLimitPerFilePercent()
         Max percentage of bytes to scan from a file. The rest are omitted. The
         number of bytes scanned is rounded down. Must be between 0 and 100,
         inclusively. Both 0 and 100 means no limit. Defaults to 0. Only one
         of bytes_limit_per_file and bytes_limit_per_file_percent can be specified.
         Cannot be set if de-identification is requested.
         
        int32 bytes_limit_per_file_percent = 8;
        Returns:
        The bytesLimitPerFilePercent.
      • getFileTypesList

        List<FileType> getFileTypesList()
         List of file type groups to include in the scan.
         If empty, all files are scanned and available data format processors
         are applied. In addition, the binary content of the selected files
         is always scanned as well.
         Images are scanned only as binary if the specified region
         does not support image inspection and no file_types were specified.
         Image inspection is restricted to 'global', 'us', 'asia', and 'europe'.
         
        repeated .google.privacy.dlp.v2.FileType file_types = 5;
        Returns:
        A list containing the fileTypes.
      • getFileTypesCount

        int getFileTypesCount()
         List of file type groups to include in the scan.
         If empty, all files are scanned and available data format processors
         are applied. In addition, the binary content of the selected files
         is always scanned as well.
         Images are scanned only as binary if the specified region
         does not support image inspection and no file_types were specified.
         Image inspection is restricted to 'global', 'us', 'asia', and 'europe'.
         
        repeated .google.privacy.dlp.v2.FileType file_types = 5;
        Returns:
        The count of fileTypes.
      • getFileTypes

        FileType getFileTypes​(int index)
         List of file type groups to include in the scan.
         If empty, all files are scanned and available data format processors
         are applied. In addition, the binary content of the selected files
         is always scanned as well.
         Images are scanned only as binary if the specified region
         does not support image inspection and no file_types were specified.
         Image inspection is restricted to 'global', 'us', 'asia', and 'europe'.
         
        repeated .google.privacy.dlp.v2.FileType file_types = 5;
        Parameters:
        index - The index of the element to return.
        Returns:
        The fileTypes at the given index.
      • getFileTypesValueList

        List<Integer> getFileTypesValueList()
         List of file type groups to include in the scan.
         If empty, all files are scanned and available data format processors
         are applied. In addition, the binary content of the selected files
         is always scanned as well.
         Images are scanned only as binary if the specified region
         does not support image inspection and no file_types were specified.
         Image inspection is restricted to 'global', 'us', 'asia', and 'europe'.
         
        repeated .google.privacy.dlp.v2.FileType file_types = 5;
        Returns:
        A list containing the enum numeric values on the wire for fileTypes.
      • getFileTypesValue

        int getFileTypesValue​(int index)
         List of file type groups to include in the scan.
         If empty, all files are scanned and available data format processors
         are applied. In addition, the binary content of the selected files
         is always scanned as well.
         Images are scanned only as binary if the specified region
         does not support image inspection and no file_types were specified.
         Image inspection is restricted to 'global', 'us', 'asia', and 'europe'.
         
        repeated .google.privacy.dlp.v2.FileType file_types = 5;
        Parameters:
        index - The index of the value to return.
        Returns:
        The enum numeric value on the wire of fileTypes at the given index.
      • getSampleMethodValue

        int getSampleMethodValue()
        .google.privacy.dlp.v2.CloudStorageOptions.SampleMethod sample_method = 6;
        Returns:
        The enum numeric value on the wire for sampleMethod.
      • getSampleMethod

        CloudStorageOptions.SampleMethod getSampleMethod()
        .google.privacy.dlp.v2.CloudStorageOptions.SampleMethod sample_method = 6;
        Returns:
        The sampleMethod.
      • getFilesLimitPercent

        int getFilesLimitPercent()
         Limits the number of files to scan to this percentage of the input FileSet.
         Number of files scanned is rounded down. Must be between 0 and 100,
         inclusively. Both 0 and 100 means no limit. Defaults to 0.
         
        int32 files_limit_percent = 7;
        Returns:
        The filesLimitPercent.