google-analytics-admin-v1alpha 0.2.1 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -187,7 +187,7 @@ module Google
187
187
  # @return [::String]
188
188
  def user_link_path **args
189
189
  resources = {
190
- "account:user_link" => (proc do |account:, user_link:|
190
+ "account:user_link" => (proc do |account:, user_link:|
191
191
  raise ::ArgumentError, "account cannot contain /" if account.to_s.include? "/"
192
192
 
193
193
  "accounts/#{account}/userLinks/#{user_link}"
@@ -34,8 +34,6 @@ module Google
34
34
  self.service_name = 'google.analytics.admin.v1alpha.AnalyticsAdminService'
35
35
 
36
36
  # Lookup for a single Account.
37
- # Throws "Target not found" if no such account found, or if caller does not
38
- # have permissions to access it.
39
37
  rpc :GetAccount, ::Google::Analytics::Admin::V1alpha::GetAccountRequest, ::Google::Analytics::Admin::V1alpha::Account
40
38
  # Returns all accounts accessible by the caller.
41
39
  #
@@ -62,9 +60,6 @@ module Google
62
60
  # Returns summaries of all accounts accessible by the caller.
63
61
  rpc :ListAccountSummaries, ::Google::Analytics::Admin::V1alpha::ListAccountSummariesRequest, ::Google::Analytics::Admin::V1alpha::ListAccountSummariesResponse
64
62
  # Lookup for a single "GA4" Property.
65
- #
66
- # Throws "Target not found" if no such property found, if property is not
67
- # of the type "GA4", or if caller does not have permissions to access it.
68
63
  rpc :GetProperty, ::Google::Analytics::Admin::V1alpha::GetPropertyRequest, ::Google::Analytics::Admin::V1alpha::Property
69
64
  # Returns child Properties under the specified parent Account.
70
65
  #
@@ -125,9 +120,6 @@ module Google
125
120
  # Deletes information about multiple users' links to an account or property.
126
121
  rpc :BatchDeleteUserLinks, ::Google::Analytics::Admin::V1alpha::BatchDeleteUserLinksRequest, ::Google::Protobuf::Empty
127
122
  # Lookup for a single WebDataStream
128
- #
129
- # Throws "Target not found" if no such web data stream found, or if the
130
- # caller does not have permissions to access it.
131
123
  rpc :GetWebDataStream, ::Google::Analytics::Admin::V1alpha::GetWebDataStreamRequest, ::Google::Analytics::Admin::V1alpha::WebDataStream
132
124
  # Deletes a web stream on a property.
133
125
  rpc :DeleteWebDataStream, ::Google::Analytics::Admin::V1alpha::DeleteWebDataStreamRequest, ::Google::Protobuf::Empty
@@ -141,15 +133,20 @@ module Google
141
133
  # Returns an empty list if no relevant web data streams are found.
142
134
  rpc :ListWebDataStreams, ::Google::Analytics::Admin::V1alpha::ListWebDataStreamsRequest, ::Google::Analytics::Admin::V1alpha::ListWebDataStreamsResponse
143
135
  # Lookup for a single IosAppDataStream
144
- #
145
- # Throws "Target not found" if no such iOS app data stream found, or if the
146
- # caller does not have permissions to access it.
147
136
  rpc :GetIosAppDataStream, ::Google::Analytics::Admin::V1alpha::GetIosAppDataStreamRequest, ::Google::Analytics::Admin::V1alpha::IosAppDataStream
148
137
  # Deletes an iOS app stream on a property.
149
138
  rpc :DeleteIosAppDataStream, ::Google::Analytics::Admin::V1alpha::DeleteIosAppDataStreamRequest, ::Google::Protobuf::Empty
150
139
  # Updates an iOS app stream on a property.
151
140
  rpc :UpdateIosAppDataStream, ::Google::Analytics::Admin::V1alpha::UpdateIosAppDataStreamRequest, ::Google::Analytics::Admin::V1alpha::IosAppDataStream
152
- # Creates an iOS app data stream with the specified location and attributes.
141
+ # Creates an iOS app stream with the specified location and attributes.
142
+ #
143
+ # Note that an iOS app stream must be linked to a Firebase app to receive
144
+ # traffic.
145
+ #
146
+ # To create a working app stream, make sure your property is linked to a
147
+ # Firebase project. Then, use the Firebase API to create a Firebase app,
148
+ # which will also create an appropriate data stream in Analytics (may take up
149
+ # to 24 hours).
153
150
  rpc :CreateIosAppDataStream, ::Google::Analytics::Admin::V1alpha::CreateIosAppDataStreamRequest, ::Google::Analytics::Admin::V1alpha::IosAppDataStream
154
151
  # Returns child iOS app data streams under the specified parent property.
155
152
  #
@@ -157,15 +154,20 @@ module Google
157
154
  # Returns an empty list if no relevant iOS app data streams are found.
158
155
  rpc :ListIosAppDataStreams, ::Google::Analytics::Admin::V1alpha::ListIosAppDataStreamsRequest, ::Google::Analytics::Admin::V1alpha::ListIosAppDataStreamsResponse
159
156
  # Lookup for a single AndroidAppDataStream
160
- #
161
- # Throws "Target not found" if no such android app data stream found, or if
162
- # the caller does not have permissions to access it.
163
157
  rpc :GetAndroidAppDataStream, ::Google::Analytics::Admin::V1alpha::GetAndroidAppDataStreamRequest, ::Google::Analytics::Admin::V1alpha::AndroidAppDataStream
164
158
  # Deletes an android app stream on a property.
165
159
  rpc :DeleteAndroidAppDataStream, ::Google::Analytics::Admin::V1alpha::DeleteAndroidAppDataStreamRequest, ::Google::Protobuf::Empty
166
160
  # Updates an android app stream on a property.
167
161
  rpc :UpdateAndroidAppDataStream, ::Google::Analytics::Admin::V1alpha::UpdateAndroidAppDataStreamRequest, ::Google::Analytics::Admin::V1alpha::AndroidAppDataStream
168
- # Creates an android app stream with the specified location and attributes.
162
+ # Creates an Android app stream with the specified location and attributes.
163
+ #
164
+ # Note that an Android app stream must be linked to a Firebase app to receive
165
+ # traffic.
166
+ #
167
+ # To create a working app stream, make sure your property is linked to a
168
+ # Firebase project. Then, use the Firebase API to create a Firebase app,
169
+ # which will also create an appropriate data stream in Analytics (may take up
170
+ # to 24 hours).
169
171
  rpc :CreateAndroidAppDataStream, ::Google::Analytics::Admin::V1alpha::CreateAndroidAppDataStreamRequest, ::Google::Analytics::Admin::V1alpha::AndroidAppDataStream
170
172
  # Returns child android app streams under the specified parent property.
171
173
  #
@@ -14,7 +14,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
14
14
  optional :create_time, :message, 2, "google.protobuf.Timestamp"
15
15
  optional :update_time, :message, 3, "google.protobuf.Timestamp"
16
16
  optional :display_name, :string, 4
17
- optional :country_code, :string, 5
17
+ optional :region_code, :string, 5
18
18
  optional :deleted, :bool, 6
19
19
  end
20
20
  add_message "google.analytics.admin.v1alpha.Property" do
@@ -70,19 +70,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
70
70
  optional :page_views_enabled, :bool, 3
71
71
  optional :scrolls_enabled, :bool, 4
72
72
  optional :outbound_clicks_enabled, :bool, 5
73
- optional :content_views_enabled, :bool, 6
74
73
  optional :site_search_enabled, :bool, 7
75
- optional :form_interactions_enabled, :bool, 8
76
74
  optional :video_engagement_enabled, :bool, 9
77
75
  optional :file_downloads_enabled, :bool, 10
78
- optional :data_tagged_element_clicks_enabled, :bool, 11
79
76
  optional :page_loads_enabled, :bool, 12
80
77
  optional :page_changes_enabled, :bool, 13
81
- optional :articles_and_blogs_enabled, :bool, 14
82
- optional :products_and_ecommerce_enabled, :bool, 15
83
78
  optional :search_query_parameter, :string, 16
84
- optional :url_query_parameter, :string, 17
85
- optional :excluded_domains, :string, 18
79
+ optional :uri_query_parameter, :string, 17
86
80
  end
87
81
  add_message "google.analytics.admin.v1alpha.FirebaseLink" do
88
82
  optional :name, :string, 1
@@ -91,11 +85,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
91
85
  optional :maximum_user_access, :enum, 4, "google.analytics.admin.v1alpha.MaximumUserAccess"
92
86
  end
93
87
  add_message "google.analytics.admin.v1alpha.GlobalSiteTag" do
94
- optional :snippet, :string, 1
88
+ optional :name, :string, 1
89
+ optional :snippet, :string, 2
95
90
  end
96
91
  add_message "google.analytics.admin.v1alpha.GoogleAdsLink" do
97
92
  optional :name, :string, 1
98
- optional :parent, :string, 2
99
93
  optional :customer_id, :string, 3
100
94
  optional :can_manage_clients, :bool, 4
101
95
  optional :ads_personalization_enabled, :message, 5, "google.protobuf.BoolValue"
@@ -121,6 +115,13 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
121
115
  optional :property, :string, 1
122
116
  optional :display_name, :string, 2
123
117
  end
118
+ add_enum "google.analytics.admin.v1alpha.MaximumUserAccess" do
119
+ value :MAXIMUM_USER_ACCESS_UNSPECIFIED, 0
120
+ value :NO_ACCESS, 1
121
+ value :READ_AND_ANALYZE, 2
122
+ value :EDITOR_WITHOUT_LINK_MANAGEMENT, 3
123
+ value :EDITOR_INCLUDING_LINK_MANAGEMENT, 4
124
+ end
124
125
  add_enum "google.analytics.admin.v1alpha.IndustryCategory" do
125
126
  value :INDUSTRY_CATEGORY_UNSPECIFIED, 0
126
127
  value :AUTOMOTIVE, 1
@@ -150,13 +151,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
150
151
  value :JOBS_AND_EDUCATION, 25
151
152
  value :SHOPPING, 26
152
153
  end
153
- add_enum "google.analytics.admin.v1alpha.MaximumUserAccess" do
154
- value :MAXIMUM_USER_ACCESS_UNSPECIFIED, 0
155
- value :NO_ACCESS, 1
156
- value :READ_AND_ANALYZE, 2
157
- value :EDITOR_WITHOUT_LINK_MANAGEMENT, 3
158
- value :EDITOR_INCLUDING_LINK_MANAGEMENT, 4
159
- end
160
154
  end
161
155
  end
162
156
 
@@ -178,8 +172,8 @@ module Google
178
172
  DataSharingSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.DataSharingSettings").msgclass
179
173
  AccountSummary = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.AccountSummary").msgclass
180
174
  PropertySummary = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.PropertySummary").msgclass
181
- IndustryCategory = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.IndustryCategory").enummodule
182
175
  MaximumUserAccess = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.MaximumUserAccess").enummodule
176
+ IndustryCategory = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.IndustryCategory").enummodule
183
177
  end
184
178
  end
185
179
  end
@@ -21,7 +21,7 @@ module Google
21
21
  module Analytics
22
22
  module Admin
23
23
  module V1alpha
24
- VERSION = "0.2.1"
24
+ VERSION = "0.6.0"
25
25
  end
26
26
  end
27
27
  end
@@ -86,7 +86,9 @@ module Google
86
86
  # The account's `name` field is used to identify the account.
87
87
  # @!attribute [rw] update_mask
88
88
  # @return [::Google::Protobuf::FieldMask]
89
- # The list of fields to be updated. Omitted fields will not be updated.
89
+ # Required. The list of fields to be updated. Field names must be in snake case
90
+ # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
91
+ # the entire entity, use one path with the string "*" to match all fields.
90
92
  class UpdateAccountRequest
91
93
  include ::Google::Protobuf::MessageExts
92
94
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -134,11 +136,13 @@ module Google
134
136
  # `firebase_project:`(The id or number of the linked firebase project).
135
137
  # Some examples of filters:
136
138
  #
139
+ # ```
137
140
  # | Filter | Description |
138
141
  # |-----------------------------|-------------------------------------------|
139
142
  # | parent:accounts/123 | The account with account id: 123. |
140
143
  # | firebase_project:project-id | The firebase project with id: project-id. |
141
144
  # | firebase_project:123 | The firebase project with number: 123. |
145
+ # ```
142
146
  # @!attribute [rw] page_size
143
147
  # @return [::Integer]
144
148
  # The maximum number of resources to return. The service may return
@@ -182,7 +186,9 @@ module Google
182
186
  # updated.
183
187
  # @!attribute [rw] update_mask
184
188
  # @return [::Google::Protobuf::FieldMask]
185
- # The list of fields to be updated. Omitted fields will not be updated.
189
+ # Required. The list of fields to be updated. Field names must be in snake case
190
+ # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
191
+ # the entire entity, use one path with the string "*" to match all fields.
186
192
  class UpdatePropertyRequest
187
193
  include ::Google::Protobuf::MessageExts
188
194
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -326,8 +332,8 @@ module Google
326
332
  # Required. Example format: accounts/1234
327
333
  # @!attribute [rw] notify_new_user
328
334
  # @return [::Boolean]
329
- # Optional. If notify_new_user is set, then email new user that they've been given
330
- # permissions on the resource.
335
+ # Optional. If set, then email the new user notifying them that they've been granted
336
+ # permissions to the resource.
331
337
  # @!attribute [rw] user_link
332
338
  # @return [::Google::Analytics::Admin::V1alpha::UserLink]
333
339
  # Required. The user link to create.
@@ -345,11 +351,12 @@ module Google
345
351
  # Example format: accounts/1234
346
352
  # @!attribute [rw] notify_new_users
347
353
  # @return [::Boolean]
348
- # Optional. If notify_new_users is set, then email new users that they've been given
349
- # permissions on the resource.
354
+ # Optional. If set, then email the new users notifying them that they've been granted
355
+ # permissions to the resource. Regardless of whether this is set or not,
356
+ # notify_new_user field inside each individual request is ignored.
350
357
  # @!attribute [rw] requests
351
358
  # @return [::Array<::Google::Analytics::Admin::V1alpha::CreateUserLinkRequest>]
352
- # The requests specifying the user links to create.
359
+ # Required. The requests specifying the user links to create.
353
360
  # A maximum of 1000 user links can be created in a batch.
354
361
  class BatchCreateUserLinksRequest
355
362
  include ::Google::Protobuf::MessageExts
@@ -383,7 +390,7 @@ module Google
383
390
  # Example format: accounts/1234
384
391
  # @!attribute [rw] requests
385
392
  # @return [::Array<::Google::Analytics::Admin::V1alpha::UpdateUserLinkRequest>]
386
- # The requests specifying the user links to update.
393
+ # Required. The requests specifying the user links to update.
387
394
  # A maximum of 1000 user links can be updated in a batch.
388
395
  class BatchUpdateUserLinksRequest
389
396
  include ::Google::Protobuf::MessageExts
@@ -417,7 +424,7 @@ module Google
417
424
  # Example format: accounts/1234
418
425
  # @!attribute [rw] requests
419
426
  # @return [::Array<::Google::Analytics::Admin::V1alpha::DeleteUserLinkRequest>]
420
- # The requests specifying the user links to update.
427
+ # Required. The requests specifying the user links to update.
421
428
  # A maximum of 1000 user links can be updated in a batch.
422
429
  class BatchDeleteUserLinksRequest
423
430
  include ::Google::Protobuf::MessageExts
@@ -453,7 +460,9 @@ module Google
453
460
  # The `name` field is used to identify the web stream to be updated.
454
461
  # @!attribute [rw] update_mask
455
462
  # @return [::Google::Protobuf::FieldMask]
456
- # The list of fields to be updated. Omitted fields will not be updated.
463
+ # Required. The list of fields to be updated. Field names must be in snake case
464
+ # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
465
+ # the entire entity, use one path with the string "*" to match all fields.
457
466
  class UpdateWebDataStreamRequest
458
467
  include ::Google::Protobuf::MessageExts
459
468
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -536,7 +545,9 @@ module Google
536
545
  # The `name` field is used to identify the iOS app stream to be updated.
537
546
  # @!attribute [rw] update_mask
538
547
  # @return [::Google::Protobuf::FieldMask]
539
- # The list of fields to be updated. Omitted fields will not be updated.
548
+ # Required. The list of fields to be updated. Field names must be in snake case
549
+ # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
550
+ # the entire entity, use one path with the string "*" to match all fields.
540
551
  class UpdateIosAppDataStreamRequest
541
552
  include ::Google::Protobuf::MessageExts
542
553
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -619,7 +630,9 @@ module Google
619
630
  # The `name` field is used to identify the android app stream to be updated.
620
631
  # @!attribute [rw] update_mask
621
632
  # @return [::Google::Protobuf::FieldMask]
622
- # The list of fields to be updated. Omitted fields will not be updated.
633
+ # Required. The list of fields to be updated. Field names must be in snake case
634
+ # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
635
+ # the entire entity, use one path with the string "*" to match all fields.
623
636
  class UpdateAndroidAppDataStreamRequest
624
637
  include ::Google::Protobuf::MessageExts
625
638
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -694,7 +707,9 @@ module Google
694
707
  # The `name` field is used to identify the settings to be updated.
695
708
  # @!attribute [rw] update_mask
696
709
  # @return [::Google::Protobuf::FieldMask]
697
- # The list of fields to be updated. Omitted fields will not be updated.
710
+ # Required. The list of fields to be updated. Field names must be in snake case
711
+ # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
712
+ # the entire entity, use one path with the string "*" to match all fields.
698
713
  class UpdateEnhancedMeasurementSettingsRequest
699
714
  include ::Google::Protobuf::MessageExts
700
715
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -719,7 +734,9 @@ module Google
719
734
  # Required. The Firebase link to update.
720
735
  # @!attribute [rw] update_mask
721
736
  # @return [::Google::Protobuf::FieldMask]
722
- # The list of fields to be updated. Omitted fields will not be updated.
737
+ # Required. The list of fields to be updated. Field names must be in snake case
738
+ # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
739
+ # the entire entity, use one path with the string "*" to match all fields.
723
740
  class UpdateFirebaseLinkRequest
724
741
  include ::Google::Protobuf::MessageExts
725
742
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -740,6 +757,18 @@ module Google
740
757
  # @return [::String]
741
758
  # Required. Format: properties/\\{property_id}
742
759
  # Example: properties/1234
760
+ # @!attribute [rw] page_size
761
+ # @return [::Integer]
762
+ # The maximum number of resources to return. The service may return
763
+ # fewer than this value, even if there are additional pages.
764
+ # If unspecified, at most 50 resources will be returned.
765
+ # The maximum value is 200; (higher values will be coerced to the maximum)
766
+ # @!attribute [rw] page_token
767
+ # @return [::String]
768
+ # A page token, received from a previous `ListFirebaseLinks` call.
769
+ # Provide this to retrieve the subsequent page.
770
+ # When paginating, all other parameters provided to `ListProperties` must
771
+ # match the call that provided the page token.
743
772
  class ListFirebaseLinksRequest
744
773
  include ::Google::Protobuf::MessageExts
745
774
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -749,6 +778,12 @@ module Google
749
778
  # @!attribute [rw] firebase_links
750
779
  # @return [::Array<::Google::Analytics::Admin::V1alpha::FirebaseLink>]
751
780
  # List of FirebaseLinks. This will have at most one value.
781
+ # @!attribute [rw] next_page_token
782
+ # @return [::String]
783
+ # A token, which can be sent as `page_token` to retrieve the next page.
784
+ # If this field is omitted, there are no subsequent pages.
785
+ # Currently, Google Analytics supports only one FirebaseLink per property,
786
+ # so this will never be populated.
752
787
  class ListFirebaseLinksResponse
753
788
  include ::Google::Protobuf::MessageExts
754
789
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -784,7 +819,9 @@ module Google
784
819
  # The GoogleAdsLink to update
785
820
  # @!attribute [rw] update_mask
786
821
  # @return [::Google::Protobuf::FieldMask]
787
- # The list of fields to be updated. Omitted fields will not be updated.
822
+ # Required. The list of fields to be updated. Field names must be in snake case
823
+ # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
824
+ # the entire entity, use one path with the string "*" to match all fields.
788
825
  class UpdateGoogleAdsLinkRequest
789
826
  include ::Google::Protobuf::MessageExts
790
827
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -36,10 +36,9 @@ module Google
36
36
  # @!attribute [rw] display_name
37
37
  # @return [::String]
38
38
  # Required. Human-readable display name for this account.
39
- # @!attribute [rw] country_code
39
+ # @!attribute [rw] region_code
40
40
  # @return [::String]
41
- # Country of business. Must be a non-deprecated code for a UN M.49 region.
42
- # https://unicode.org/cldr/charts/latest/supplemental/territory_containment_un_m_49.html
41
+ # Country of business. Must be a Unicode CLDR region code.
43
42
  # @!attribute [r] deleted
44
43
  # @return [::Boolean]
45
44
  # Output only. Indicates whether this Account is soft-deleted or not. Deleted
@@ -279,18 +278,10 @@ module Google
279
278
  # @return [::Boolean]
280
279
  # If enabled, capture an outbound click event each time a visitor clicks a
281
280
  # link that leads them away from your domain.
282
- # @!attribute [rw] content_views_enabled
283
- # @return [::Boolean]
284
- # Capture events when your visitors view content on your site that has
285
- # structured data (eg, articles, blog posts, product details screens, etc.).
286
281
  # @!attribute [rw] site_search_enabled
287
282
  # @return [::Boolean]
288
283
  # If enabled, capture a view search results event each time a visitor
289
284
  # performs a search on your site (based on a query parameter).
290
- # @!attribute [rw] form_interactions_enabled
291
- # @return [::Boolean]
292
- # If enabled, capture a view search results event each time a visitor
293
- # interacts with a form on your site.
294
285
  # @!attribute [rw] video_engagement_enabled
295
286
  # @return [::Boolean]
296
287
  # If enabled, capture video play, progress, and complete events as visitors
@@ -299,36 +290,21 @@ module Google
299
290
  # @return [::Boolean]
300
291
  # If enabled, capture a file download event each time a link is clicked with
301
292
  # a common document, compressed file, application, video, or audio extension.
302
- # @!attribute [rw] data_tagged_element_clicks_enabled
303
- # @return [::Boolean]
304
- # If enabled, capture a click event each time a visitor clicks a link or
305
- # element that has data attributes beginning with "data-ga".
306
- # @!attribute [rw] page_loads_enabled
293
+ # @!attribute [r] page_loads_enabled
307
294
  # @return [::Boolean]
308
- # If enabled, capture a page view event each time a page loads.
295
+ # Output only. If enabled, capture a page view event each time a page loads.
309
296
  # @!attribute [rw] page_changes_enabled
310
297
  # @return [::Boolean]
311
298
  # If enabled, capture a page view event each time the website changes the
312
299
  # browser history state.
313
- # @!attribute [rw] articles_and_blogs_enabled
314
- # @return [::Boolean]
315
- # Capture events when your visitors view content on your site that has
316
- # articles or blog posts.
317
- # @!attribute [rw] products_and_ecommerce_enabled
318
- # @return [::Boolean]
319
- # Capture events when your visitors view content on your site that has
320
- # product details screens, etc.
321
300
  # @!attribute [rw] search_query_parameter
322
301
  # @return [::String]
323
302
  # Required. URL query parameters to interpret as site search parameters.
324
303
  # Max length is 1024 characters. Must not be empty.
325
- # @!attribute [rw] url_query_parameter
304
+ # @!attribute [rw] uri_query_parameter
326
305
  # @return [::String]
327
306
  # Additional URL query parameters.
328
307
  # Max length is 1024 characters.
329
- # @!attribute [rw] excluded_domains
330
- # @return [::String]
331
- # Domains to exclude from measurement. Max length is 1024 characters.
332
308
  class EnhancedMeasurementSettings
333
309
  include ::Google::Protobuf::MessageExts
334
310
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -361,6 +337,10 @@ module Google
361
337
 
362
338
  # Read-only resource with the tag for sending data from a website to a
363
339
  # WebDataStream.
340
+ # @!attribute [r] name
341
+ # @return [::String]
342
+ # Output only. Resource name for this GlobalSiteTag resource.
343
+ # Format: properties/\\{propertyId}/globalSiteTag
364
344
  # @!attribute [rw] snippet
365
345
  # @return [::String]
366
346
  # Immutable. JavaScript code snippet to be pasted as the first item into the head tag of
@@ -376,9 +356,6 @@ module Google
376
356
  # Output only. Format: properties/\\{propertyId}/googleAdsLinks/\\{googleAdsLinkId}
377
357
  #
378
358
  # Note: googleAdsLinkId is not the Google Ads customer ID.
379
- # @!attribute [rw] parent
380
- # @return [::String]
381
- # Immutable. Format: properties/\\{propertyId}
382
359
  # @!attribute [rw] customer_id
383
360
  # @return [::String]
384
361
  # Immutable. Google Ads customer ID.
@@ -474,6 +451,27 @@ module Google
474
451
  extend ::Google::Protobuf::MessageExts::ClassMethods
475
452
  end
476
453
 
454
+ # Maximum access settings that Firebase user receive on the linked Analytics
455
+ # property.
456
+ module MaximumUserAccess
457
+ # Unspecified maximum user access.
458
+ MAXIMUM_USER_ACCESS_UNSPECIFIED = 0
459
+
460
+ # Firebase users have no access to the Analytics property.
461
+ NO_ACCESS = 1
462
+
463
+ # Firebase users have Read & Analyze access to the Analytics property.
464
+ READ_AND_ANALYZE = 2
465
+
466
+ # Firebase users have edit access to the Analytics property, but may not
467
+ # manage the Firebase link.
468
+ EDITOR_WITHOUT_LINK_MANAGEMENT = 3
469
+
470
+ # Firebase users have edit access to the Analytics property and may manage
471
+ # the Firebase link.
472
+ EDITOR_INCLUDING_LINK_MANAGEMENT = 4
473
+ end
474
+
477
475
  # The category selected for this property, used for industry benchmarking.
478
476
  module IndustryCategory
479
477
  # Industry category unspecified
@@ -557,27 +555,6 @@ module Google
557
555
  # Shopping
558
556
  SHOPPING = 26
559
557
  end
560
-
561
- # Maximum access settings that Firebase user receive on the linked Analytics
562
- # property.
563
- module MaximumUserAccess
564
- # Unspecified maximum user access.
565
- MAXIMUM_USER_ACCESS_UNSPECIFIED = 0
566
-
567
- # Firebase users have no access to the Analytics property.
568
- NO_ACCESS = 1
569
-
570
- # Firebase users have Read & Analyze access to the Analytics property.
571
- READ_AND_ANALYZE = 2
572
-
573
- # Firebase users have edit access to the Analytics property, but may not
574
- # manage the Firebase link.
575
- EDITOR_WITHOUT_LINK_MANAGEMENT = 3
576
-
577
- # Firebase users have edit access to the Analytics property and may manage
578
- # the Firebase link.
579
- EDITOR_INCLUDING_LINK_MANAGEMENT = 4
580
- end
581
558
  end
582
559
  end
583
560
  end