google-analytics-admin-v1alpha 0.33.0 → 0.34.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2810,6 +2810,186 @@ module Google
2810
2810
  include ::Google::Protobuf::MessageExts
2811
2811
  extend ::Google::Protobuf::MessageExts::ClassMethods
2812
2812
  end
2813
+
2814
+ # Request message for CreateReportingDataAnnotation RPC.
2815
+ # @!attribute [rw] parent
2816
+ # @return [::String]
2817
+ # Required. The property for which to create a Reporting Data Annotation.
2818
+ # Format: properties/property_id
2819
+ # Example: properties/123
2820
+ # @!attribute [rw] reporting_data_annotation
2821
+ # @return [::Google::Analytics::Admin::V1alpha::ReportingDataAnnotation]
2822
+ # Required. The Reporting Data Annotation to create.
2823
+ class CreateReportingDataAnnotationRequest
2824
+ include ::Google::Protobuf::MessageExts
2825
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2826
+ end
2827
+
2828
+ # Request message for GetReportingDataAnnotation RPC.
2829
+ # @!attribute [rw] name
2830
+ # @return [::String]
2831
+ # Required. Resource name of the Reporting Data Annotation to lookup.
2832
+ # Format:
2833
+ # properties/property_id/reportingDataAnnotations/reportingDataAnnotation
2834
+ # Example: properties/123/reportingDataAnnotations/456
2835
+ class GetReportingDataAnnotationRequest
2836
+ include ::Google::Protobuf::MessageExts
2837
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2838
+ end
2839
+
2840
+ # Request message for ListReportingDataAnnotation RPC.
2841
+ # @!attribute [rw] parent
2842
+ # @return [::String]
2843
+ # Required. Resource name of the property.
2844
+ # Format: properties/property_id
2845
+ # Example: properties/123
2846
+ # @!attribute [rw] filter
2847
+ # @return [::String]
2848
+ # Optional. Filter that restricts which reporting data annotations under the
2849
+ # parent property are listed.
2850
+ #
2851
+ # Supported fields are:
2852
+ #
2853
+ # * 'name'
2854
+ # * `title`
2855
+ # * `description`
2856
+ # * `annotation_date`
2857
+ # * `annotation_date_range`
2858
+ # * `color`
2859
+ #
2860
+ # Additionally, this API provides the following helper functions:
2861
+ #
2862
+ # * annotation_duration() : the duration that this annotation marks,
2863
+ # [durations](https://github.com/protocolbuffers/protobuf/blob/main/src/google/protobuf/duration.proto).
2864
+ # expect a numeric representation of seconds followed by an `s` suffix.
2865
+ # * is_annotation_in_range(start_date, end_date) : if the annotation is in
2866
+ # the range specified by the `start_date` and `end_date`. The dates are in
2867
+ # ISO-8601 format, for example `2031-06-28`.
2868
+ #
2869
+ # Supported operations:
2870
+ #
2871
+ # * `=` : equals
2872
+ # * `!=` : not equals
2873
+ # * `<` : less than
2874
+ # * `>` : greater than
2875
+ # * `<=` : less than or equals
2876
+ # * `>=` : greater than or equals
2877
+ # * `:` : has operator
2878
+ # * `=~` : [regular expression](https://github.com/google/re2/wiki/Syntax)
2879
+ # match
2880
+ # * `!~` : [regular expression](https://github.com/google/re2/wiki/Syntax)
2881
+ # does not match
2882
+ # * `NOT` : Logical not
2883
+ # * `AND` : Logical and
2884
+ # * `OR` : Logical or
2885
+ #
2886
+ # Examples:
2887
+ #
2888
+ # 1. `title="Holiday Sale"`
2889
+ # 2. `description=~"[Bb]ig [Gg]ame.*[Ss]ale"`
2890
+ # 3. `is_annotation_in_range("2025-12-25", "2026-01-16") = true`
2891
+ # 4. `annotation_duration() >= 172800s AND title:BOGO`
2892
+ # @!attribute [rw] page_size
2893
+ # @return [::Integer]
2894
+ # Optional. The maximum number of resources to return. The service may return
2895
+ # fewer than this value, even if there are additional pages. If unspecified,
2896
+ # at most 50 resources will be returned. The maximum value is 200; (higher
2897
+ # values will be coerced to the maximum)
2898
+ # @!attribute [rw] page_token
2899
+ # @return [::String]
2900
+ # Optional. A page token, received from a previous
2901
+ # `ListReportingDataAnnotations` call. Provide this to retrieve the
2902
+ # subsequent page. When paginating, all other parameters provided to
2903
+ # `ListReportingDataAnnotations` must match the call that provided the page
2904
+ # token.
2905
+ class ListReportingDataAnnotationsRequest
2906
+ include ::Google::Protobuf::MessageExts
2907
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2908
+ end
2909
+
2910
+ # Response message for ListReportingDataAnnotation RPC.
2911
+ # @!attribute [rw] reporting_data_annotations
2912
+ # @return [::Array<::Google::Analytics::Admin::V1alpha::ReportingDataAnnotation>]
2913
+ # List of Reporting Data Annotations.
2914
+ # @!attribute [rw] next_page_token
2915
+ # @return [::String]
2916
+ # A token, which can be sent as `page_token` to retrieve the next page. If
2917
+ # this field is omitted, there are no subsequent pages.
2918
+ class ListReportingDataAnnotationsResponse
2919
+ include ::Google::Protobuf::MessageExts
2920
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2921
+ end
2922
+
2923
+ # Request message for UpdateReportingDataAnnotation RPC.
2924
+ # @!attribute [rw] reporting_data_annotation
2925
+ # @return [::Google::Analytics::Admin::V1alpha::ReportingDataAnnotation]
2926
+ # Required. The Reporting Data Annotation to update.
2927
+ # @!attribute [rw] update_mask
2928
+ # @return [::Google::Protobuf::FieldMask]
2929
+ # Optional. The list of fields to update. Field names must be in snake case
2930
+ # (for example, "field_to_update"). Omitted fields will not be updated. To
2931
+ # replace the entire entity, use one path with the string "*" to match all
2932
+ # fields.
2933
+ class UpdateReportingDataAnnotationRequest
2934
+ include ::Google::Protobuf::MessageExts
2935
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2936
+ end
2937
+
2938
+ # Request message for DeleteReportingDataAnnotation RPC.
2939
+ # @!attribute [rw] name
2940
+ # @return [::String]
2941
+ # Required. Resource name of the Reporting Data Annotation to delete.
2942
+ # Format:
2943
+ # properties/property_id/reportingDataAnnotations/reporting_data_annotation
2944
+ # Example: properties/123/reportingDataAnnotations/456
2945
+ class DeleteReportingDataAnnotationRequest
2946
+ include ::Google::Protobuf::MessageExts
2947
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2948
+ end
2949
+
2950
+ # Request message for SubmitUserDeletion RPC.
2951
+ # @!attribute [rw] user_id
2952
+ # @return [::String]
2953
+ # Google Analytics [user
2954
+ # ID](https://firebase.google.com/docs/analytics/userid).
2955
+ #
2956
+ # Note: The following fields are mutually exclusive: `user_id`, `client_id`, `app_instance_id`, `user_provided_data`. If a field in that set is populated, all other fields in the set will automatically be cleared.
2957
+ # @!attribute [rw] client_id
2958
+ # @return [::String]
2959
+ # Google Analytics [client
2960
+ # ID](https://support.google.com/analytics/answer/11593727).
2961
+ #
2962
+ # Note: The following fields are mutually exclusive: `client_id`, `user_id`, `app_instance_id`, `user_provided_data`. If a field in that set is populated, all other fields in the set will automatically be cleared.
2963
+ # @!attribute [rw] app_instance_id
2964
+ # @return [::String]
2965
+ # Firebase [application instance
2966
+ # ID](https://firebase.google.com/docs/reference/android/com/google/firebase/analytics/FirebaseAnalytics.html#getAppInstanceId).
2967
+ #
2968
+ # Note: The following fields are mutually exclusive: `app_instance_id`, `user_id`, `client_id`, `user_provided_data`. If a field in that set is populated, all other fields in the set will automatically be cleared.
2969
+ # @!attribute [rw] user_provided_data
2970
+ # @return [::String]
2971
+ # The un-hashed, unencrypted, [user-provided
2972
+ # data](https://support.google.com/analytics/answer/14077171).
2973
+ #
2974
+ # Note: The following fields are mutually exclusive: `user_provided_data`, `user_id`, `client_id`, `app_instance_id`. If a field in that set is populated, all other fields in the set will automatically be cleared.
2975
+ # @!attribute [rw] name
2976
+ # @return [::String]
2977
+ # Required. The name of the property to submit user deletion for.
2978
+ class SubmitUserDeletionRequest
2979
+ include ::Google::Protobuf::MessageExts
2980
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2981
+ end
2982
+
2983
+ # Response message for SubmitUserDeletion RPC.
2984
+ # @!attribute [rw] deletion_request_time
2985
+ # @return [::Google::Protobuf::Timestamp]
2986
+ # Marks the moment for which all visitor data before this point should be
2987
+ # deleted. This is set to the time at which the deletion request was
2988
+ # received.
2989
+ class SubmitUserDeletionResponse
2990
+ include ::Google::Protobuf::MessageExts
2991
+ extend ::Google::Protobuf::MessageExts::ClassMethods
2992
+ end
2813
2993
  end
2814
2994
  end
2815
2995
  end
@@ -314,23 +314,43 @@ module Google
314
314
  # Example: "accounts/1000/dataSharingSettings"
315
315
  # @!attribute [rw] sharing_with_google_support_enabled
316
316
  # @return [::Boolean]
317
- # Allows Google support to access the data in order to help troubleshoot
318
- # issues.
317
+ # Allows Google technical support representatives access to your Google
318
+ # Analytics data and account when necessary to provide service and find
319
+ # solutions to technical issues.
320
+ #
321
+ # This field maps to the "Technical support" field in the Google Analytics
322
+ # Admin UI.
319
323
  # @!attribute [rw] sharing_with_google_assigned_sales_enabled
320
324
  # @return [::Boolean]
321
- # Allows Google sales teams that are assigned to the customer to access the
322
- # data in order to suggest configuration changes to improve results.
323
- # Sales team restrictions still apply when enabled.
325
+ # Allows Google access to your Google Analytics account data, including
326
+ # account usage and configuration data, product spending, and users
327
+ # associated with your Google Analytics account, so that Google can help you
328
+ # make the most of Google products, providing you with insights, offers,
329
+ # recommendations, and optimization tips across Google Analytics and other
330
+ # Google products for business.
331
+ #
332
+ # This field maps to the "Recommendations for your business" field in the
333
+ # Google Analytics Admin UI.
324
334
  # @!attribute [rw] sharing_with_google_any_sales_enabled
335
+ # @deprecated This field is deprecated and may be removed in the next major version update.
325
336
  # @return [::Boolean]
326
- # Allows any of Google sales to access the data in order to suggest
327
- # configuration changes to improve results.
337
+ # Deprecated. This field is no longer used and always returns false.
328
338
  # @!attribute [rw] sharing_with_google_products_enabled
329
339
  # @return [::Boolean]
330
340
  # Allows Google to use the data to improve other Google products or services.
341
+ #
342
+ # This fields maps to the "Google products & services" field in the Google
343
+ # Analytics Admin UI.
331
344
  # @!attribute [rw] sharing_with_others_enabled
332
345
  # @return [::Boolean]
333
- # Allows Google to share the data anonymously in aggregate form with others.
346
+ # Enable features like predictions, modeled data, and benchmarking that can
347
+ # provide you with richer business insights when you contribute aggregated
348
+ # measurement data. The data you share (including information about the
349
+ # property from which it is shared) is aggregated and de-identified before
350
+ # being used to generate business insights.
351
+ #
352
+ # This field maps to the "Modeling contributions & business insights" field
353
+ # in the Google Analytics Admin UI.
334
354
  class DataSharingSettings
335
355
  include ::Google::Protobuf::MessageExts
336
356
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -587,135 +607,140 @@ module Google
587
607
  # @return [::Google::Analytics::Admin::V1alpha::Account]
588
608
  # A snapshot of an Account resource in change history.
589
609
  #
590
- # Note: The following fields are mutually exclusive: `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
610
+ # Note: The following fields are mutually exclusive: `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
591
611
  # @!attribute [rw] property
592
612
  # @return [::Google::Analytics::Admin::V1alpha::Property]
593
613
  # A snapshot of a Property resource in change history.
594
614
  #
595
- # Note: The following fields are mutually exclusive: `property`, `account`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
615
+ # Note: The following fields are mutually exclusive: `property`, `account`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
596
616
  # @!attribute [rw] firebase_link
597
617
  # @return [::Google::Analytics::Admin::V1alpha::FirebaseLink]
598
618
  # A snapshot of a FirebaseLink resource in change history.
599
619
  #
600
- # Note: The following fields are mutually exclusive: `firebase_link`, `account`, `property`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
620
+ # Note: The following fields are mutually exclusive: `firebase_link`, `account`, `property`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
601
621
  # @!attribute [rw] google_ads_link
602
622
  # @return [::Google::Analytics::Admin::V1alpha::GoogleAdsLink]
603
623
  # A snapshot of a GoogleAdsLink resource in change history.
604
624
  #
605
- # Note: The following fields are mutually exclusive: `google_ads_link`, `account`, `property`, `firebase_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
625
+ # Note: The following fields are mutually exclusive: `google_ads_link`, `account`, `property`, `firebase_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
606
626
  # @!attribute [rw] google_signals_settings
607
627
  # @return [::Google::Analytics::Admin::V1alpha::GoogleSignalsSettings]
608
628
  # A snapshot of a GoogleSignalsSettings resource in change history.
609
629
  #
610
- # Note: The following fields are mutually exclusive: `google_signals_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
630
+ # Note: The following fields are mutually exclusive: `google_signals_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
611
631
  # @!attribute [rw] display_video_360_advertiser_link
612
632
  # @return [::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink]
613
633
  # A snapshot of a DisplayVideo360AdvertiserLink resource in change
614
634
  # history.
615
635
  #
616
- # Note: The following fields are mutually exclusive: `display_video_360_advertiser_link`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
636
+ # Note: The following fields are mutually exclusive: `display_video_360_advertiser_link`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
617
637
  # @!attribute [rw] display_video_360_advertiser_link_proposal
618
638
  # @return [::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLinkProposal]
619
639
  # A snapshot of a DisplayVideo360AdvertiserLinkProposal resource in
620
640
  # change history.
621
641
  #
622
- # Note: The following fields are mutually exclusive: `display_video_360_advertiser_link_proposal`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
642
+ # Note: The following fields are mutually exclusive: `display_video_360_advertiser_link_proposal`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
623
643
  # @!attribute [rw] conversion_event
624
644
  # @return [::Google::Analytics::Admin::V1alpha::ConversionEvent]
625
645
  # A snapshot of a ConversionEvent resource in change history.
626
646
  #
627
- # Note: The following fields are mutually exclusive: `conversion_event`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
647
+ # Note: The following fields are mutually exclusive: `conversion_event`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
628
648
  # @!attribute [rw] measurement_protocol_secret
629
649
  # @return [::Google::Analytics::Admin::V1alpha::MeasurementProtocolSecret]
630
650
  # A snapshot of a MeasurementProtocolSecret resource in change history.
631
651
  #
632
- # Note: The following fields are mutually exclusive: `measurement_protocol_secret`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
652
+ # Note: The following fields are mutually exclusive: `measurement_protocol_secret`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
633
653
  # @!attribute [rw] custom_dimension
634
654
  # @return [::Google::Analytics::Admin::V1alpha::CustomDimension]
635
655
  # A snapshot of a CustomDimension resource in change history.
636
656
  #
637
- # Note: The following fields are mutually exclusive: `custom_dimension`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
657
+ # Note: The following fields are mutually exclusive: `custom_dimension`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
638
658
  # @!attribute [rw] custom_metric
639
659
  # @return [::Google::Analytics::Admin::V1alpha::CustomMetric]
640
660
  # A snapshot of a CustomMetric resource in change history.
641
661
  #
642
- # Note: The following fields are mutually exclusive: `custom_metric`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
662
+ # Note: The following fields are mutually exclusive: `custom_metric`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
643
663
  # @!attribute [rw] data_retention_settings
644
664
  # @return [::Google::Analytics::Admin::V1alpha::DataRetentionSettings]
645
665
  # A snapshot of a data retention settings resource in change history.
646
666
  #
647
- # Note: The following fields are mutually exclusive: `data_retention_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
667
+ # Note: The following fields are mutually exclusive: `data_retention_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
648
668
  # @!attribute [rw] search_ads_360_link
649
669
  # @return [::Google::Analytics::Admin::V1alpha::SearchAds360Link]
650
670
  # A snapshot of a SearchAds360Link resource in change history.
651
671
  #
652
- # Note: The following fields are mutually exclusive: `search_ads_360_link`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
672
+ # Note: The following fields are mutually exclusive: `search_ads_360_link`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
653
673
  # @!attribute [rw] data_stream
654
674
  # @return [::Google::Analytics::Admin::V1alpha::DataStream]
655
675
  # A snapshot of a DataStream resource in change history.
656
676
  #
657
- # Note: The following fields are mutually exclusive: `data_stream`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
677
+ # Note: The following fields are mutually exclusive: `data_stream`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
658
678
  # @!attribute [rw] attribution_settings
659
679
  # @return [::Google::Analytics::Admin::V1alpha::AttributionSettings]
660
680
  # A snapshot of AttributionSettings resource in change history.
661
681
  #
662
- # Note: The following fields are mutually exclusive: `attribution_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
682
+ # Note: The following fields are mutually exclusive: `attribution_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
663
683
  # @!attribute [rw] expanded_data_set
664
684
  # @return [::Google::Analytics::Admin::V1alpha::ExpandedDataSet]
665
685
  # A snapshot of an ExpandedDataSet resource in change history.
666
686
  #
667
- # Note: The following fields are mutually exclusive: `expanded_data_set`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
687
+ # Note: The following fields are mutually exclusive: `expanded_data_set`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
668
688
  # @!attribute [rw] channel_group
669
689
  # @return [::Google::Analytics::Admin::V1alpha::ChannelGroup]
670
690
  # A snapshot of a ChannelGroup resource in change history.
671
691
  #
672
- # Note: The following fields are mutually exclusive: `channel_group`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
692
+ # Note: The following fields are mutually exclusive: `channel_group`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
673
693
  # @!attribute [rw] bigquery_link
674
694
  # @return [::Google::Analytics::Admin::V1alpha::BigQueryLink]
675
695
  # A snapshot of a BigQuery link resource in change history.
676
696
  #
677
- # Note: The following fields are mutually exclusive: `bigquery_link`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
697
+ # Note: The following fields are mutually exclusive: `bigquery_link`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
678
698
  # @!attribute [rw] enhanced_measurement_settings
679
699
  # @return [::Google::Analytics::Admin::V1alpha::EnhancedMeasurementSettings]
680
700
  # A snapshot of EnhancedMeasurementSettings resource in change history.
681
701
  #
682
- # Note: The following fields are mutually exclusive: `enhanced_measurement_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
702
+ # Note: The following fields are mutually exclusive: `enhanced_measurement_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
683
703
  # @!attribute [rw] data_redaction_settings
684
704
  # @return [::Google::Analytics::Admin::V1alpha::DataRedactionSettings]
685
705
  # A snapshot of DataRedactionSettings resource in change history.
686
706
  #
687
- # Note: The following fields are mutually exclusive: `data_redaction_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
707
+ # Note: The following fields are mutually exclusive: `data_redaction_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
688
708
  # @!attribute [rw] skadnetwork_conversion_value_schema
689
709
  # @return [::Google::Analytics::Admin::V1alpha::SKAdNetworkConversionValueSchema]
690
710
  # A snapshot of SKAdNetworkConversionValueSchema resource in change
691
711
  # history.
692
712
  #
693
- # Note: The following fields are mutually exclusive: `skadnetwork_conversion_value_schema`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
713
+ # Note: The following fields are mutually exclusive: `skadnetwork_conversion_value_schema`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
694
714
  # @!attribute [rw] adsense_link
695
715
  # @return [::Google::Analytics::Admin::V1alpha::AdSenseLink]
696
716
  # A snapshot of an AdSenseLink resource in change history.
697
717
  #
698
- # Note: The following fields are mutually exclusive: `adsense_link`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `audience`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
718
+ # Note: The following fields are mutually exclusive: `adsense_link`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
699
719
  # @!attribute [rw] audience
700
720
  # @return [::Google::Analytics::Admin::V1alpha::Audience]
701
721
  # A snapshot of an Audience resource in change history.
702
722
  #
703
- # Note: The following fields are mutually exclusive: `audience`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `event_create_rule`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
723
+ # Note: The following fields are mutually exclusive: `audience`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `event_create_rule`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
704
724
  # @!attribute [rw] event_create_rule
705
725
  # @return [::Google::Analytics::Admin::V1alpha::EventCreateRule]
706
726
  # A snapshot of an EventCreateRule resource in change history.
707
727
  #
708
- # Note: The following fields are mutually exclusive: `event_create_rule`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `calculated_metric`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
728
+ # Note: The following fields are mutually exclusive: `event_create_rule`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `key_event`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
729
+ # @!attribute [rw] key_event
730
+ # @return [::Google::Analytics::Admin::V1alpha::KeyEvent]
731
+ # A snapshot of a KeyEvent resource in change history.
732
+ #
733
+ # Note: The following fields are mutually exclusive: `key_event`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
709
734
  # @!attribute [rw] calculated_metric
710
735
  # @return [::Google::Analytics::Admin::V1alpha::CalculatedMetric]
711
736
  # A snapshot of a CalculatedMetric resource in change history.
712
737
  #
713
- # Note: The following fields are mutually exclusive: `calculated_metric`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
714
- # @!attribute [rw] key_event
715
- # @return [::Google::Analytics::Admin::V1alpha::KeyEvent]
716
- # A snapshot of a KeyEvent resource in change history.
738
+ # Note: The following fields are mutually exclusive: `calculated_metric`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `reporting_data_annotation`. If a field in that set is populated, all other fields in the set will automatically be cleared.
739
+ # @!attribute [rw] reporting_data_annotation
740
+ # @return [::Google::Analytics::Admin::V1alpha::ReportingDataAnnotation]
741
+ # A snapshot of a ReportingDataAnnotation resource in change history.
717
742
  #
718
- # Note: The following fields are mutually exclusive: `key_event`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
743
+ # Note: The following fields are mutually exclusive: `reporting_data_annotation`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `key_event`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
719
744
  class ChangeHistoryResource
720
745
  include ::Google::Protobuf::MessageExts
721
746
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1640,6 +1665,89 @@ module Google
1640
1665
  extend ::Google::Protobuf::MessageExts::ClassMethods
1641
1666
  end
1642
1667
 
1668
+ # A Reporting Data Annotation is a comment connected to certain dates for
1669
+ # reporting data.
1670
+ # @!attribute [rw] annotation_date
1671
+ # @return [::Google::Type::Date]
1672
+ # If set, the Reporting Data Annotation is for a specific date represented
1673
+ # by this field. The date must be a valid date with year, month and day
1674
+ # set. The date may be in the past, present, or future.
1675
+ #
1676
+ # Note: The following fields are mutually exclusive: `annotation_date`, `annotation_date_range`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1677
+ # @!attribute [rw] annotation_date_range
1678
+ # @return [::Google::Analytics::Admin::V1alpha::ReportingDataAnnotation::DateRange]
1679
+ # If set, the Reporting Data Annotation is for a range of dates represented
1680
+ # by this field.
1681
+ #
1682
+ # Note: The following fields are mutually exclusive: `annotation_date_range`, `annotation_date`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1683
+ # @!attribute [rw] name
1684
+ # @return [::String]
1685
+ # Required. Identifier. Resource name of this Reporting Data Annotation.
1686
+ # Format:
1687
+ # 'properties/\\{property_id}/reportingDataAnnotations/\\{reporting_data_annotation}'
1688
+ # Format: 'properties/123/reportingDataAnnotations/456'
1689
+ # @!attribute [rw] title
1690
+ # @return [::String]
1691
+ # Required. Human-readable title for this Reporting Data Annotation.
1692
+ # @!attribute [rw] description
1693
+ # @return [::String]
1694
+ # Optional. Description for this Reporting Data Annotation.
1695
+ # @!attribute [rw] color
1696
+ # @return [::Google::Analytics::Admin::V1alpha::ReportingDataAnnotation::Color]
1697
+ # Required. The color used for display of this Reporting Data Annotation.
1698
+ # @!attribute [r] system_generated
1699
+ # @return [::Boolean]
1700
+ # Output only. If true, this annotation was generated by the Google Analytics
1701
+ # system. System-generated annotations cannot be updated or deleted.
1702
+ class ReportingDataAnnotation
1703
+ include ::Google::Protobuf::MessageExts
1704
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1705
+
1706
+ # Represents a Reporting Data Annotation's date range, both start and end
1707
+ # dates are inclusive. Time zones are based on the parent property.
1708
+ # @!attribute [rw] start_date
1709
+ # @return [::Google::Type::Date]
1710
+ # Required. The start date for this range. Must be a valid date with
1711
+ # year, month, and day set. The date may be in the past, present, or
1712
+ # future.
1713
+ # @!attribute [rw] end_date
1714
+ # @return [::Google::Type::Date]
1715
+ # Required. The end date for this range. Must be a valid date with
1716
+ # year, month, and day set. This date must be greater than or equal to
1717
+ # the start date.
1718
+ class DateRange
1719
+ include ::Google::Protobuf::MessageExts
1720
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1721
+ end
1722
+
1723
+ # Colors that may be used for this Reporting Data Annotation
1724
+ module Color
1725
+ # Color unknown or not specified.
1726
+ COLOR_UNSPECIFIED = 0
1727
+
1728
+ # Purple color.
1729
+ PURPLE = 1
1730
+
1731
+ # Brown color.
1732
+ BROWN = 2
1733
+
1734
+ # Blue color.
1735
+ BLUE = 3
1736
+
1737
+ # Green color.
1738
+ GREEN = 4
1739
+
1740
+ # Red color.
1741
+ RED = 5
1742
+
1743
+ # Cyan color.
1744
+ CYAN = 6
1745
+
1746
+ # Orange color. (Only used for system-generated annotations)
1747
+ ORANGE = 7
1748
+ end
1749
+ end
1750
+
1643
1751
  # The category selected for this property, used for industry benchmarking.
1644
1752
  module IndustryCategory
1645
1753
  # Industry category unspecified
@@ -1844,11 +1952,14 @@ module Google
1844
1952
  # EventCreateRule resource
1845
1953
  EVENT_CREATE_RULE = 29
1846
1954
 
1955
+ # KeyEvent resource
1956
+ KEY_EVENT = 30
1957
+
1847
1958
  # CalculatedMetric resource
1848
1959
  CALCULATED_METRIC = 31
1849
1960
 
1850
- # KeyEvent resource
1851
- KEY_EVENT = 32
1961
+ # ReportingDataAnnotation resource
1962
+ REPORTING_DATA_ANNOTATION = 32
1852
1963
  end
1853
1964
 
1854
1965
  # Status of the Google Signals settings.
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2025 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Type
22
+ # Represents a whole or partial calendar date, such as a birthday. The time of
23
+ # day and time zone are either specified elsewhere or are insignificant. The
24
+ # date is relative to the Gregorian Calendar. This can represent one of the
25
+ # following:
26
+ #
27
+ # * A full date, with non-zero year, month, and day values
28
+ # * A month and day value, with a zero year, such as an anniversary
29
+ # * A year on its own, with zero month and day values
30
+ # * A year and month value, with a zero day, such as a credit card expiration
31
+ # date
32
+ #
33
+ # Related types are [google.type.TimeOfDay][google.type.TimeOfDay] and
34
+ # `google.protobuf.Timestamp`.
35
+ # @!attribute [rw] year
36
+ # @return [::Integer]
37
+ # Year of the date. Must be from 1 to 9999, or 0 to specify a date without
38
+ # a year.
39
+ # @!attribute [rw] month
40
+ # @return [::Integer]
41
+ # Month of a year. Must be from 1 to 12, or 0 to specify a year without a
42
+ # month and day.
43
+ # @!attribute [rw] day
44
+ # @return [::Integer]
45
+ # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0
46
+ # to specify a year by itself or a year and month where the day isn't
47
+ # significant.
48
+ class Date
49
+ include ::Google::Protobuf::MessageExts
50
+ extend ::Google::Protobuf::MessageExts::ClassMethods
51
+ end
52
+ end
53
+ end