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.
7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 7920 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 # AI models like .tflite etc. CLUSTER_AI_MODEL = 10 end end |