Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertyEventFilter
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertyEventFilter
- 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
A resource message representing a GA4 Subproperty event filter.
Instance Attribute Summary collapse
-
#apply_to_property ⇒ String
Immutable.
-
#filter_clauses ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertyEventFilterClause>
Required.
-
#name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaSubpropertyEventFilter
constructor
A new instance of GoogleAnalyticsAdminV1alphaSubpropertyEventFilter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaSubpropertyEventFilter
Returns a new instance of GoogleAnalyticsAdminV1alphaSubpropertyEventFilter.
5179 5180 5181 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5179 def initialize(**args) update!(**args) end |
Instance Attribute Details
#apply_to_property ⇒ String
Immutable. Resource name of the Subproperty that uses this filter.
Corresponds to the JSON property applyToProperty
5163 5164 5165 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5163 def apply_to_property @apply_to_property end |
#filter_clauses ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertyEventFilterClause>
Required. Unordered list. Filter clauses that define the
SubpropertyEventFilter. All clauses are AND'ed together to determine what data
is sent to the subproperty.
Corresponds to the JSON property filterClauses
5170 5171 5172 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5170 def filter_clauses @filter_clauses end |
#name ⇒ String
Output only. Format: properties/ordinary_property_id/subpropertyEventFilters/
sub_property_event_filter Example: properties/1234/subpropertyEventFilters/
5678
Corresponds to the JSON property name
5177 5178 5179 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5177 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5184 5185 5186 5187 5188 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5184 def update!(**args) @apply_to_property = args[:apply_to_property] if args.key?(:apply_to_property) @filter_clauses = args[:filter_clauses] if args.key?(:filter_clauses) @name = args[:name] if args.key?(:name) end |