Class: Google::Analytics::Admin::V1alpha::EventEditRule
- Inherits:
-
Object
- Object
- Google::Analytics::Admin::V1alpha::EventEditRule
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb
Overview
An Event Edit Rule defines conditions that will trigger the creation of an entirely new event based upon matched criteria of a source event. Additional mutations of the parameters from the source event can be defined.
Unlike Event Create rules, Event Edit Rules are applied in their defined order.
Event Edit rules can't be used to modify an event created from an Event Create rule.
Instance Attribute Summary collapse
-
#display_name ⇒ ::String
Required.
-
#event_conditions ⇒ ::Array<::Google::Analytics::Admin::V1alpha::MatchingCondition>
Required.
-
#name ⇒ ::String
Identifier.
-
#parameter_mutations ⇒ ::Array<::Google::Analytics::Admin::V1alpha::ParameterMutation>
Required.
-
#processing_order ⇒ ::Integer
readonly
Output only.
Instance Attribute Details
#display_name ⇒ ::String
Returns Required. The display name of this event edit rule. Maximum of 255 characters.
123 124 125 126 |
# File 'proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb', line 123 class EventEditRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#event_conditions ⇒ ::Array<::Google::Analytics::Admin::V1alpha::MatchingCondition>
Returns Required. Conditions on the source event must match for this rule to be applied. Must have at least one condition, and can have up to 10 max.
123 124 125 126 |
# File 'proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb', line 123 class EventEditRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#name ⇒ ::String
Returns Identifier. Resource name for this EventEditRule resource. Format: properties/{property}/dataStreams/{data_stream}/eventEditRules/{event_edit_rule}.
123 124 125 126 |
# File 'proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb', line 123 class EventEditRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#parameter_mutations ⇒ ::Array<::Google::Analytics::Admin::V1alpha::ParameterMutation>
Returns Required. Parameter mutations define parameter behavior on the new event, and are applied in order. A maximum of 20 mutations can be applied.
123 124 125 126 |
# File 'proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb', line 123 class EventEditRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#processing_order ⇒ ::Integer (readonly)
Returns Output only. The order for which this rule will be processed. Rules with an order value lower than this will be processed before this rule, rules with an order value higher than this will be processed after this rule. New event edit rules will be assigned an order value at the end of the order.
This value does not apply to event create rules.
123 124 125 126 |
# File 'proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb', line 123 class EventEditRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |