Class: Google::Analytics::Admin::V1alpha::EventCreateRule
- Inherits:
-
Object
- Object
- Google::Analytics::Admin::V1alpha::EventCreateRule
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb
Overview
An Event Create 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 Edit rules, Event Creation Rules have no defined order. They will all be run independently.
Event Edit and Event Create rules can't be used to modify an event created from an Event Create rule.
Instance Attribute Summary collapse
-
#destination_event ⇒ ::String
Required.
-
#event_conditions ⇒ ::Array<::Google::Analytics::Admin::V1alpha::MatchingCondition>
Required.
-
#name ⇒ ::String
readonly
Output only.
-
#parameter_mutations ⇒ ::Array<::Google::Analytics::Admin::V1alpha::ParameterMutation>
Parameter mutations define parameter behavior on the new event, and are applied in order.
-
#source_copy_parameters ⇒ ::Boolean
If true, the source parameters are copied to the new event.
Instance Attribute Details
#destination_event ⇒ ::String
Returns Required. The name of the new event to be created.
This value must:
- be less than 40 characters
- consist only of letters, digits or _ (underscores)
- start with a letter.
84 85 86 87 |
# File 'proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb', line 84 class EventCreateRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#event_conditions ⇒ ::Array<::Google::Analytics::Admin::V1alpha::MatchingCondition>
Returns Required. Must have at least one condition, and can have up to 10 max. Conditions on the source event must match for this rule to be applied.
84 85 86 87 |
# File 'proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb', line 84 class EventCreateRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#name ⇒ ::String (readonly)
Returns Output only. Resource name for this EventCreateRule resource. Format: properties/{property}/dataStreams/{data_stream}/eventCreateRules/{event_create_rule}.
84 85 86 87 |
# File 'proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb', line 84 class EventCreateRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#parameter_mutations ⇒ ::Array<::Google::Analytics::Admin::V1alpha::ParameterMutation>
Returns Parameter mutations define parameter behavior on the new event, and are applied in order. A maximum of 20 mutations can be applied.
84 85 86 87 |
# File 'proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb', line 84 class EventCreateRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#source_copy_parameters ⇒ ::Boolean
Returns If true, the source parameters are copied to the new event. If false, or unset, all non-internal parameters are not copied from the source event. Parameter mutations are applied after the parameters have been copied.
84 85 86 87 |
# File 'proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb', line 84 class EventCreateRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |