Class: Google::Cloud::Dlp::V2::DataProfilePubSubCondition::PubSubExpressions

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

Instance Attribute Details

#conditions::Array<::Google::Cloud::Dlp::V2::DataProfilePubSubCondition::PubSubCondition>

Returns Conditions to apply to the expression.

Returns:



6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 6091

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.

Returns:



6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
# File 'proto_docs/google/privacy/dlp/v2/dlp.rb', line 6091

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