Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEventEditRule
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEventEditRule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1alpha/classes.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.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::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaMatchingCondition>
Required.
-
#name ⇒ String
Identifier.
-
#parameter_mutations ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaParameterMutation>
Required.
-
#processing_order ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaEventEditRule
constructor
A new instance of GoogleAnalyticsAdminV1alphaEventEditRule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaEventEditRule
Returns a new instance of GoogleAnalyticsAdminV1alphaEventEditRule.
3295 3296 3297 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3295 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Required. The display name of this event edit rule. Maximum of 255 characters.
Corresponds to the JSON property displayName
3266 3267 3268 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3266 def display_name @display_name end |
#event_conditions ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaMatchingCondition>
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.
Corresponds to the JSON property eventConditions
3272 3273 3274 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3272 def event_conditions @event_conditions end |
#name ⇒ String
Identifier. Resource name for this EventEditRule resource. Format: properties/
property/dataStreams/data_stream/eventEditRules/event_edit_rule
Corresponds to the JSON property name
3278 3279 3280 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3278 def name @name end |
#parameter_mutations ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaParameterMutation>
Required. Parameter mutations define parameter behavior on the new event, and
are applied in order. A maximum of 20 mutations can be applied.
Corresponds to the JSON property parameterMutations
3284 3285 3286 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3284 def parameter_mutations @parameter_mutations end |
#processing_order ⇒ Fixnum
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.
Corresponds to the JSON property processingOrder
3293 3294 3295 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3293 def processing_order @processing_order end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3300 3301 3302 3303 3304 3305 3306 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 3300 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @event_conditions = args[:event_conditions] if args.key?(:event_conditions) @name = args[:name] if args.key?(:name) @parameter_mutations = args[:parameter_mutations] if args.key?(:parameter_mutations) @processing_order = args[:processing_order] if args.key?(:processing_order) end |