Class: Google::Cloud::Dlp::V2::Domain
- Inherits:
-
Object
- Object
- Google::Cloud::Dlp::V2::Domain
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/privacy/dlp/v2/dlp.rb
Overview
A domain represents a thematic category that a data profile can fall under.
Defined Under Namespace
Instance Attribute Summary collapse
-
#category ⇒ ::Google::Cloud::Dlp::V2::Domain::Category
A domain category that this profile is related to.
-
#signals ⇒ ::Array<::Google::Cloud::Dlp::V2::Domain::Signal>
The collection of signals that influenced selection of the category.
Instance Attribute Details
#category ⇒ ::Google::Cloud::Dlp::V2::Domain::Category
Returns A domain category that this profile is related to.
8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 8154 class Domain include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # This enum defines the various domain categories a data profile can fall # under. module Category # Category unspecified. CATEGORY_UNSPECIFIED = 0 # Indicates that the data profile is related to artificial intelligence. # When set, all findings stored to Security Command Center will set the # corresponding AI domain field of `Finding` objects. AI = 1 # Indicates that the data profile is related to code. CODE = 2 end # The signal used to determine the category. # This list may increase over time. module Signal # Unused. SIGNAL_UNSPECIFIED = 0 # One or more machine learning models are present. MODEL = 1 # A table appears to be a text embedding. TEXT_EMBEDDING = 2 # The [Cloud SQL Vertex # AI](https://cloud.google.com/sql/docs/postgres/integrate-cloud-sql-with-vertex-ai) # plugin is installed on the database. VERTEX_PLUGIN = 3 # Support for [Cloud SQL vector # embeddings](https://cloud.google.com/sql/docs/mysql/enable-vector-search) # is enabled on the database. VECTOR_PLUGIN = 4 # Source code is present. SOURCE_CODE = 5 # If the service determines the category type. For example, Vertex AI # assets would always have a `Category` of `AI`. SERVICE = 6 end end |
#signals ⇒ ::Array<::Google::Cloud::Dlp::V2::Domain::Signal>
Returns The collection of signals that influenced selection of the category.
8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 8154 class Domain include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # This enum defines the various domain categories a data profile can fall # under. module Category # Category unspecified. CATEGORY_UNSPECIFIED = 0 # Indicates that the data profile is related to artificial intelligence. # When set, all findings stored to Security Command Center will set the # corresponding AI domain field of `Finding` objects. AI = 1 # Indicates that the data profile is related to code. CODE = 2 end # The signal used to determine the category. # This list may increase over time. module Signal # Unused. SIGNAL_UNSPECIFIED = 0 # One or more machine learning models are present. MODEL = 1 # A table appears to be a text embedding. TEXT_EMBEDDING = 2 # The [Cloud SQL Vertex # AI](https://cloud.google.com/sql/docs/postgres/integrate-cloud-sql-with-vertex-ai) # plugin is installed on the database. VERTEX_PLUGIN = 3 # Support for [Cloud SQL vector # embeddings](https://cloud.google.com/sql/docs/mysql/enable-vector-search) # is enabled on the database. VECTOR_PLUGIN = 4 # Source code is present. SOURCE_CODE = 5 # If the service determines the category type. For example, Vertex AI # assets would always have a `Category` of `AI`. SERVICE = 6 end end |