Class: Google::Cloud::Dlp::V2::DataProfilePubSubCondition::PubSubExpressions
- Inherits:
-
Object
- Object
- Google::Cloud::Dlp::V2::DataProfilePubSubCondition::PubSubExpressions
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/privacy/dlp/v2/dlp.rb
Overview
An expression, consisting of an operator and conditions.
Defined Under Namespace
Modules: PubSubLogicalOperator
Instance Attribute Summary collapse
-
#conditions ⇒ ::Array<::Google::Cloud::Dlp::V2::DataProfilePubSubCondition::PubSubCondition>
Conditions to apply to the expression.
-
#logical_operator ⇒ ::Google::Cloud::Dlp::V2::DataProfilePubSubCondition::PubSubExpressions::PubSubLogicalOperator
The operator to apply to the collection of conditions.
Instance Attribute Details
#conditions ⇒ ::Array<::Google::Cloud::Dlp::V2::DataProfilePubSubCondition::PubSubCondition>
Returns Conditions to apply to the expression.
6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 6748 class PubSubExpressions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Logical operators for conditional checks. module PubSubLogicalOperator # Unused. LOGICAL_OPERATOR_UNSPECIFIED = 0 # Conditional OR. OR = 1 # Conditional AND. AND = 2 end end |
#logical_operator ⇒ ::Google::Cloud::Dlp::V2::DataProfilePubSubCondition::PubSubExpressions::PubSubLogicalOperator
Returns The operator to apply to the collection of conditions.
6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 6748 class PubSubExpressions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Logical operators for conditional checks. module PubSubLogicalOperator # Unused. LOGICAL_OPERATOR_UNSPECIFIED = 0 # Conditional OR. OR = 1 # Conditional AND. AND = 2 end end |