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.
5002 5003 5004 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5002 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
4994 4995 4996 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 4994 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
5000 5001 5002 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5000 def source_property @source_property end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5007 5008 5009 5010 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5007 def update!(**args) @name = args[:name] if args.key?(:name) @source_property = args[:source_property] if args.key?(:source_property) end |