Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup
- 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 Channel Group.
Instance Attribute Summary collapse
-
#description ⇒ String
The description of the Channel Group.
-
#display_name ⇒ String
Required.
-
#grouping_rule ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGroupingRule>
Required.
-
#name ⇒ String
Output only.
-
#primary ⇒ Boolean
(also: #primary?)
Optional.
-
#system_defined ⇒ Boolean
(also: #system_defined?)
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaChannelGroup
constructor
A new instance of GoogleAnalyticsAdminV1alphaChannelGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaChannelGroup
Returns a new instance of GoogleAnalyticsAdminV1alphaChannelGroup.
2041 2042 2043 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2041 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
The description of the Channel Group. Max length of 256 characters.
Corresponds to the JSON property description
2005 2006 2007 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2005 def description @description end |
#display_name ⇒ String
Required. The display name of the Channel Group. Max length of 80 characters.
Corresponds to the JSON property displayName
2010 2011 2012 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2010 def display_name @display_name end |
#grouping_rule ⇒ Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGroupingRule>
Required. The grouping rules of channels. Maximum number of rules is 50.
Corresponds to the JSON property groupingRule
2015 2016 2017 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2015 def grouping_rule @grouping_rule end |
#name ⇒ String
Output only. The resource name for this Channel Group resource. Format:
properties/property
/channelGroups/channel_group
Corresponds to the JSON property name
2021 2022 2023 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2021 def name @name end |
#primary ⇒ Boolean Also known as: primary?
Optional. If true, this channel group will be used as the default channel
group for reports. Only one channel group can be set as primary
at any time.
If the primary
field gets set on a channel group, it will get unset on the
previous primary channel group. The Google Analytics predefined channel group
is the primary by default.
Corresponds to the JSON property primary
2030 2031 2032 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2030 def primary @primary end |
#system_defined ⇒ Boolean Also known as: system_defined?
Output only. If true, then this channel group is the Default Channel Group
predefined by Google Analytics. Display name and grouping rules cannot be
updated for this channel group.
Corresponds to the JSON property systemDefined
2038 2039 2040 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2038 def system_defined @system_defined end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2046 2047 2048 2049 2050 2051 2052 2053 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2046 def update!(**args) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @grouping_rule = args[:grouping_rule] if args.key?(:grouping_rule) @name = args[:name] if args.key?(:name) @primary = args[:primary] if args.key?(:primary) @system_defined = args[:system_defined] if args.key?(:system_defined) end |