Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings
- 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 containing settings related to reporting identity.
Instance Attribute Summary collapse
-
#name ⇒ String
Output only.
-
#reporting_identity ⇒ String
The strategy used for identifying user identities in reports.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaReportingIdentitySettings
constructor
A new instance of GoogleAnalyticsAdminV1alphaReportingIdentitySettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaReportingIdentitySettings
Returns a new instance of GoogleAnalyticsAdminV1alphaReportingIdentitySettings.
5121 5122 5123 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5121 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Output only. Identifier. Resource name for this reporting identity settings
singleton resource. Format: properties/property_id/reportingIdentitySettings
Example: "properties/1234/reportingIdentitySettings"
Corresponds to the JSON property name
5114 5115 5116 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5114 def name @name end |
#reporting_identity ⇒ String
The strategy used for identifying user identities in reports.
Corresponds to the JSON property reportingIdentity
5119 5120 5121 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5119 def reporting_identity @reporting_identity end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5126 5127 5128 5129 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 5126 def update!(**args) @name = args[:name] if args.key?(:name) @reporting_identity = args[:reporting_identity] if args.key?(:reporting_identity) end |