Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaRollupPropertySourceLink

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 link that references a source property under the parent rollup property.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaRollupPropertySourceLink

Returns a new instance of GoogleAnalyticsAdminV1alphaRollupPropertySourceLink.



5150
5151
5152
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5150

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

Instance Attribute Details

#nameString

Output only. Resource name of this RollupPropertySourceLink. Format: ' properties/property_id/rollupPropertySourceLinks/ rollup_property_source_link' Format: 'properties/123/ rollupPropertySourceLinks/456' Corresponds to the JSON property name

Returns:

  • (String)


5142
5143
5144
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5142

def name
  @name
end

#source_propertyString

Immutable. Resource name of the source property. Format: properties/ property_id Example: "properties/789" Corresponds to the JSON property sourceProperty

Returns:

  • (String)


5148
5149
5150
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5148

def source_property
  @source_property
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5155
5156
5157
5158
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5155

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @source_property = args[:source_property] if args.key?(:source_property)
end