Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaChannelGroup

Returns a new instance of GoogleAnalyticsAdminV1alphaChannelGroup.



2137
2138
2139
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2137

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

The description of the Channel Group. Max length of 256 characters. Corresponds to the JSON property description

Returns:

  • (String)


2113
2114
2115
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2113

def description
  @description
end

#display_nameString

Required. The display name of the Channel Group. Max length of 80 characters. Corresponds to the JSON property displayName

Returns:

  • (String)


2118
2119
2120
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2118

def display_name
  @display_name
end

#grouping_ruleArray<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGroupingRule>

Required. The grouping rules of channels. Maximum number of rules is 25. Corresponds to the JSON property groupingRule



2123
2124
2125
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2123

def grouping_rule
  @grouping_rule
end

#nameString

Output only. The resource name for this Channel Group resource. Format: properties/property/channelGroups/channel_group Corresponds to the JSON property name

Returns:

  • (String)


2129
2130
2131
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2129

def name
  @name
end

#system_definedBoolean Also known as: system_defined?

Output only. Default Channel Group defined by Google, which cannot be updated. Corresponds to the JSON property systemDefined

Returns:

  • (Boolean)


2134
2135
2136
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2134

def system_defined
  @system_defined
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2142
2143
2144
2145
2146
2147
2148
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 2142

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)
  @system_defined = args[:system_defined] if args.key?(:system_defined)
end