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.
7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 7031 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.
7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 |
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 7031 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 |