Class: Google::Cloud::Dlp::V2::DataProfileAction::PubSubNotification
- Inherits:
-
Object
- Object
- Google::Cloud::Dlp::V2::DataProfileAction::PubSubNotification
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/privacy/dlp/v2/dlp.rb
Overview
Send a Pub/Sub message into the given Pub/Sub topic to connect other
systems to data profile generation. The message payload data will
be the byte serialization of DataProfilePubSubMessage
.
Defined Under Namespace
Modules: DetailLevel
Instance Attribute Summary collapse
-
#detail_of_message ⇒ ::Google::Cloud::Dlp::V2::DataProfileAction::PubSubNotification::DetailLevel
How much data to include in the Pub/Sub message.
-
#event ⇒ ::Google::Cloud::Dlp::V2::DataProfileAction::EventType
The type of event that triggers a Pub/Sub.
-
#pubsub_condition ⇒ ::Google::Cloud::Dlp::V2::DataProfilePubSubCondition
Conditions (e.g., data risk or sensitivity level) for triggering a Pub/Sub.
-
#topic ⇒ ::String
Cloud Pub/Sub topic to send notifications to.
Instance Attribute Details
#detail_of_message ⇒ ::Google::Cloud::Dlp::V2::DataProfileAction::PubSubNotification::DetailLevel
Returns How much data to include in the Pub/Sub message. If the user wishes to limit the size of the message, they can use resource_name and fetch the profile fields they wish to. Per table profile (not per column).
4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 4405 class PubSubNotification include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The levels of detail that can be included in the Pub/Sub message. module DetailLevel # Unused. DETAIL_LEVEL_UNSPECIFIED = 0 # The full table data profile. TABLE_PROFILE = 1 # The name of the profiled resource. RESOURCE_NAME = 2 # The full file store data profile. FILE_STORE_PROFILE = 3 end end |
#event ⇒ ::Google::Cloud::Dlp::V2::DataProfileAction::EventType
Returns The type of event that triggers a Pub/Sub. At most one
PubSubNotification
per EventType is permitted.
4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 4405 class PubSubNotification include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The levels of detail that can be included in the Pub/Sub message. module DetailLevel # Unused. DETAIL_LEVEL_UNSPECIFIED = 0 # The full table data profile. TABLE_PROFILE = 1 # The name of the profiled resource. RESOURCE_NAME = 2 # The full file store data profile. FILE_STORE_PROFILE = 3 end end |
#pubsub_condition ⇒ ::Google::Cloud::Dlp::V2::DataProfilePubSubCondition
Returns Conditions (e.g., data risk or sensitivity level) for triggering a Pub/Sub.
4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 4405 class PubSubNotification include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The levels of detail that can be included in the Pub/Sub message. module DetailLevel # Unused. DETAIL_LEVEL_UNSPECIFIED = 0 # The full table data profile. TABLE_PROFILE = 1 # The name of the profiled resource. RESOURCE_NAME = 2 # The full file store data profile. FILE_STORE_PROFILE = 3 end end |
#topic ⇒ ::String
Returns Cloud Pub/Sub topic to send notifications to. Format is projects/{project}/topics/{topic}.
4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 4405 class PubSubNotification include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The levels of detail that can be included in the Pub/Sub message. module DetailLevel # Unused. DETAIL_LEVEL_UNSPECIFIED = 0 # The full table data profile. TABLE_PROFILE = 1 # The name of the profiled resource. RESOURCE_NAME = 2 # The full file store data profile. FILE_STORE_PROFILE = 3 end end |