Class: Google::Analytics::Admin::V1alpha::AccessStringFilter
- Inherits:
-
Object
- Object
- Google::Analytics::Admin::V1alpha::AccessStringFilter
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/analytics/admin/v1alpha/access_report.rb
Overview
The filter for strings.
Defined Under Namespace
Modules: MatchType
Instance Attribute Summary collapse
-
#case_sensitive ⇒ ::Boolean
If true, the string value is case sensitive.
-
#match_type ⇒ ::Google::Analytics::Admin::V1alpha::AccessStringFilter::MatchType
The match type for this filter.
-
#value ⇒ ::String
The string value used for the matching.
Instance Attribute Details
#case_sensitive ⇒ ::Boolean
Returns If true, the string value is case sensitive.
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'proto_docs/google/analytics/admin/v1alpha/access_report.rb', line 131 class AccessStringFilter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The match type of a string filter. module MatchType # Unspecified MATCH_TYPE_UNSPECIFIED = 0 # Exact match of the string value. EXACT = 1 # Begins with the string value. BEGINS_WITH = 2 # Ends with the string value. ENDS_WITH = 3 # Contains the string value. CONTAINS = 4 # Full match for the regular expression with the string value. FULL_REGEXP = 5 # Partial match for the regular expression with the string value. PARTIAL_REGEXP = 6 end end |
#match_type ⇒ ::Google::Analytics::Admin::V1alpha::AccessStringFilter::MatchType
Returns The match type for this filter.
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'proto_docs/google/analytics/admin/v1alpha/access_report.rb', line 131 class AccessStringFilter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The match type of a string filter. module MatchType # Unspecified MATCH_TYPE_UNSPECIFIED = 0 # Exact match of the string value. EXACT = 1 # Begins with the string value. BEGINS_WITH = 2 # Ends with the string value. ENDS_WITH = 3 # Contains the string value. CONTAINS = 4 # Full match for the regular expression with the string value. FULL_REGEXP = 5 # Partial match for the regular expression with the string value. PARTIAL_REGEXP = 6 end end |
#value ⇒ ::String
Returns The string value used for the matching.
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'proto_docs/google/analytics/admin/v1alpha/access_report.rb', line 131 class AccessStringFilter include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The match type of a string filter. module MatchType # Unspecified MATCH_TYPE_UNSPECIFIED = 0 # Exact match of the string value. EXACT = 1 # Begins with the string value. BEGINS_WITH = 2 # Ends with the string value. ENDS_WITH = 3 # Contains the string value. CONTAINS = 4 # Full match for the regular expression with the string value. FULL_REGEXP = 5 # Partial match for the regular expression with the string value. PARTIAL_REGEXP = 6 end end |