Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaRollupPropertySourceLink
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaRollupPropertySourceLink
- 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
-
#name ⇒ String
Output only.
-
#source_property ⇒ String
Immutable.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaRollupPropertySourceLink
constructor
A new instance of GoogleAnalyticsAdminV1alphaRollupPropertySourceLink.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#name ⇒ String
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
5142 5143 5144 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5142 def name @name end |
#source_property ⇒ String
Immutable. Resource name of the source property. Format: properties/
property_id Example: "properties/789"
Corresponds to the JSON property sourceProperty
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 |