Class: Google::Cloud::Dlp::V2::FileClusterType
- Inherits:
-
Object
- Object
- Google::Cloud::Dlp::V2::FileClusterType
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/privacy/dlp/v2/dlp.rb
Overview
Message used to identify file cluster type being profiled.
Defined Under Namespace
Modules: Cluster
Instance Attribute Summary collapse
Instance Attribute Details
#cluster ⇒ ::Google::Cloud::Dlp::V2::FileClusterType::Cluster
Returns Cluster type.
7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 7039 class FileClusterType include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Cluster type. Each cluster corresponds to a set of file types. # Over time, new types may be added and files may move between clusters. module Cluster # Unused. CLUSTER_UNSPECIFIED = 0 # Unsupported files. CLUSTER_UNKNOWN = 1 # Plain text. CLUSTER_TEXT = 2 # Structured data like CSV, TSV etc. CLUSTER_STRUCTURED_DATA = 3 # Source code. CLUSTER_SOURCE_CODE = 4 # Rich document like docx, xlsx etc. CLUSTER_RICH_DOCUMENT = 5 # Images like jpeg, bmp. CLUSTER_IMAGE = 6 # Archives and containers like .zip, .tar etc. CLUSTER_ARCHIVE = 7 # Multimedia like .mp4, .avi etc. CLUSTER_MULTIMEDIA = 8 # Executable files like .exe, .class, .apk etc. CLUSTER_EXECUTABLE = 9 end end |