Class: Google::Cloud::Dlp::V2::Domain

Inherits:
Object
  • Object
show all
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

Modules: Category, Signal

Instance Attribute Summary collapse

Instance Attribute Details

#category::Google::Cloud::Dlp::V2::Domain::Category

Returns A domain category that this profile is related to.

Returns:



8299
8300
8301
8302
8303
8304
8305
8306
8307
8308
8309
8310
8311
8312
8313
8314
8315
8316
8317
8318
8319
8320
8321
8322
8323
8324
8325
8326
8327
8328
8329
8330
8331
8332
8333
8334
8335
8336
8337
8338
8339
8340
8341
8342
8343
8344
8345
8346
8347
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 8299

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.

Returns:



8299
8300
8301
8302
8303
8304
8305
8306
8307
8308
8309
8310
8311
8312
8313
8314
8315
8316
8317
8318
8319
8320
8321
8322
8323
8324
8325
8326
8327
8328
8329
8330
8331
8332
8333
8334
8335
8336
8337
8338
8339
8340
8341
8342
8343
8344
8345
8346
8347
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 8299

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