google-apis-analyticsadmin_v1alpha 0.84.0 → 0.86.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0cd766cf8d960023ca16df2ef3ac9e7e6bb31e26140e2f586b9e26ead3ecfd0e
4
- data.tar.gz: cbec427a894691d2e1ab8f5306cc7e7a1af2400f62cee22ccb7fbbf77e7d8287
3
+ metadata.gz: f27dddc30639eaea8d56ef74613940d5fa5c16c5e7868b459c9181c22fd25d86
4
+ data.tar.gz: 35ab90ecf78a808ebd965b75cc01b5db6144c6668b281d4fa656a4431d2926a1
5
5
  SHA512:
6
- metadata.gz: 7301cd35cf0105594b7d6e1e2be0be4afdf33caee360483b6474294d3762399287d58833ed12f998d6795ef6463fd38ec027799a69f0a46ffdd4a142a42ec9ad
7
- data.tar.gz: 70fd445ee6b16207ec7e4d280f276ea6b3bbc9ce94b11329ac5f6fad741fb22a61d1fba094fb11fe95cad94b20e4921869f7d4f32108d46efff32d0f6c6de098
6
+ metadata.gz: d6c6eef5ce63cbf2d9b1568cf46a81caed4ef563c302445a8d6e7b29053c83594ede1523e9dc28558b0ece7267c668730d5bd72f8a96b00a6a4a9b09040ecc1e
7
+ data.tar.gz: ca796d712e0ac9002e982c8842d19ccfad713cab61d7ffe9cda395469166155f6c0baf2bbf8c50a13c38b4f13746bd8ae9efbf4cf6758aed207aeb35e5cc4ae5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.86.0 (2025-07-20)
4
+
5
+ * Regenerated from discovery document revision 20250713
6
+
7
+ ### v0.85.0 (2025-06-29)
8
+
9
+ * Regenerated from discovery document revision 20250625
10
+
3
11
  ### v0.84.0 (2025-06-22)
4
12
 
5
13
  * Regenerated from discovery document revision 20250615
@@ -1909,6 +1909,11 @@ module Google
1909
1909
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingDataAnnotation]
1910
1910
  attr_accessor :reporting_data_annotation
1911
1911
 
1912
+ # A resource containing settings related to reporting identity.
1913
+ # Corresponds to the JSON property `reportingIdentitySettings`
1914
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings]
1915
+ attr_accessor :reporting_identity_settings
1916
+
1912
1917
  # A link between a Google Analytics property and a Search Ads 360 entity.
1913
1918
  # Corresponds to the JSON property `searchAds360Link`
1914
1919
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link]
@@ -1957,6 +1962,7 @@ module Google
1957
1962
  @measurement_protocol_secret = args[:measurement_protocol_secret] if args.key?(:measurement_protocol_secret)
1958
1963
  @property = args[:property] if args.key?(:property)
1959
1964
  @reporting_data_annotation = args[:reporting_data_annotation] if args.key?(:reporting_data_annotation)
1965
+ @reporting_identity_settings = args[:reporting_identity_settings] if args.key?(:reporting_identity_settings)
1960
1966
  @search_ads360_link = args[:search_ads360_link] if args.key?(:search_ads360_link)
1961
1967
  @skadnetwork_conversion_value_schema = args[:skadnetwork_conversion_value_schema] if args.key?(:skadnetwork_conversion_value_schema)
1962
1968
  @subproperty_sync_config = args[:subproperty_sync_config] if args.key?(:subproperty_sync_config)
@@ -2212,33 +2218,6 @@ module Google
2212
2218
  end
2213
2219
  end
2214
2220
 
2215
- # Configuration for a specific Connected Site Tag.
2216
- class GoogleAnalyticsAdminV1alphaConnectedSiteTag
2217
- include Google::Apis::Core::Hashable
2218
-
2219
- # Required. User-provided display name for the connected site tag. Must be less
2220
- # than 256 characters.
2221
- # Corresponds to the JSON property `displayName`
2222
- # @return [String]
2223
- attr_accessor :display_name
2224
-
2225
- # Required. "Tag ID to forward events to. Also known as the Measurement ID, or
2226
- # the "G-ID" (For example: G-12345).
2227
- # Corresponds to the JSON property `tagId`
2228
- # @return [String]
2229
- attr_accessor :tag_id
2230
-
2231
- def initialize(**args)
2232
- update!(**args)
2233
- end
2234
-
2235
- # Update properties of this object
2236
- def update!(**args)
2237
- @display_name = args[:display_name] if args.key?(:display_name)
2238
- @tag_id = args[:tag_id] if args.key?(:tag_id)
2239
- end
2240
- end
2241
-
2242
2221
  # A conversion event in a Google Analytics property.
2243
2222
  class GoogleAnalyticsAdminV1alphaConversionEvent
2244
2223
  include Google::Apis::Core::Hashable
@@ -2416,46 +2395,6 @@ module Google
2416
2395
  end
2417
2396
  end
2418
2397
 
2419
- # Request message for CreateConnectedSiteTag RPC.
2420
- class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest
2421
- include Google::Apis::Core::Hashable
2422
-
2423
- # Configuration for a specific Connected Site Tag.
2424
- # Corresponds to the JSON property `connectedSiteTag`
2425
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag]
2426
- attr_accessor :connected_site_tag
2427
-
2428
- # The Universal Analytics property to create connected site tags for. This API
2429
- # does not support GA4 properties. Format: properties/`
2430
- # universalAnalyticsPropertyId` Example: properties/1234
2431
- # Corresponds to the JSON property `property`
2432
- # @return [String]
2433
- attr_accessor :property
2434
-
2435
- def initialize(**args)
2436
- update!(**args)
2437
- end
2438
-
2439
- # Update properties of this object
2440
- def update!(**args)
2441
- @connected_site_tag = args[:connected_site_tag] if args.key?(:connected_site_tag)
2442
- @property = args[:property] if args.key?(:property)
2443
- end
2444
- end
2445
-
2446
- # Response message for CreateConnectedSiteTag RPC.
2447
- class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse
2448
- include Google::Apis::Core::Hashable
2449
-
2450
- def initialize(**args)
2451
- update!(**args)
2452
- end
2453
-
2454
- # Update properties of this object
2455
- def update!(**args)
2456
- end
2457
- end
2458
-
2459
2398
  # Request message for CreateRollupProperty RPC.
2460
2399
  class GoogleAnalyticsAdminV1alphaCreateRollupPropertyRequest
2461
2400
  include Google::Apis::Core::Hashable
@@ -2964,34 +2903,6 @@ module Google
2964
2903
  end
2965
2904
  end
2966
2905
 
2967
- # Request message for DeleteConnectedSiteTag RPC.
2968
- class GoogleAnalyticsAdminV1alphaDeleteConnectedSiteTagRequest
2969
- include Google::Apis::Core::Hashable
2970
-
2971
- # The Universal Analytics property to delete connected site tags for. This API
2972
- # does not support GA4 properties. Format: properties/`
2973
- # universalAnalyticsPropertyId` Example: properties/1234
2974
- # Corresponds to the JSON property `property`
2975
- # @return [String]
2976
- attr_accessor :property
2977
-
2978
- # Tag ID to forward events to. Also known as the Measurement ID, or the "G-ID" (
2979
- # For example: G-12345).
2980
- # Corresponds to the JSON property `tagId`
2981
- # @return [String]
2982
- attr_accessor :tag_id
2983
-
2984
- def initialize(**args)
2985
- update!(**args)
2986
- end
2987
-
2988
- # Update properties of this object
2989
- def update!(**args)
2990
- @property = args[:property] if args.key?(:property)
2991
- @tag_id = args[:tag_id] if args.key?(:tag_id)
2992
- end
2993
- end
2994
-
2995
2906
  # A link between a Google Analytics property and a Display & Video 360
2996
2907
  # advertiser.
2997
2908
  class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
@@ -3600,69 +3511,6 @@ module Google
3600
3511
  end
3601
3512
  end
3602
3513
 
3603
- # Request for fetching the opt out status for the automated GA4 setup process.
3604
- class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutRequest
3605
- include Google::Apis::Core::Hashable
3606
-
3607
- # Required. The UA property to get the opt out status. Note this request uses
3608
- # the internal property ID, not the tracking ID of the form UA-XXXXXX-YY. Format:
3609
- # properties/`internalWebPropertyId` Example: properties/1234
3610
- # Corresponds to the JSON property `property`
3611
- # @return [String]
3612
- attr_accessor :property
3613
-
3614
- def initialize(**args)
3615
- update!(**args)
3616
- end
3617
-
3618
- # Update properties of this object
3619
- def update!(**args)
3620
- @property = args[:property] if args.key?(:property)
3621
- end
3622
- end
3623
-
3624
- # Response message for fetching the opt out status for the automated GA4 setup
3625
- # process.
3626
- class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse
3627
- include Google::Apis::Core::Hashable
3628
-
3629
- # The opt out status for the UA property.
3630
- # Corresponds to the JSON property `optOut`
3631
- # @return [Boolean]
3632
- attr_accessor :opt_out
3633
- alias_method :opt_out?, :opt_out
3634
-
3635
- def initialize(**args)
3636
- update!(**args)
3637
- end
3638
-
3639
- # Update properties of this object
3640
- def update!(**args)
3641
- @opt_out = args[:opt_out] if args.key?(:opt_out)
3642
- end
3643
- end
3644
-
3645
- # Response for looking up GA4 property connected to a UA property.
3646
- class GoogleAnalyticsAdminV1alphaFetchConnectedGa4PropertyResponse
3647
- include Google::Apis::Core::Hashable
3648
-
3649
- # The GA4 property connected to the UA property. An empty string is returned
3650
- # when there is no connected GA4 property. Format: properties/`property_id`
3651
- # Example: properties/1234
3652
- # Corresponds to the JSON property `property`
3653
- # @return [String]
3654
- attr_accessor :property
3655
-
3656
- def initialize(**args)
3657
- update!(**args)
3658
- end
3659
-
3660
- # Update properties of this object
3661
- def update!(**args)
3662
- @property = args[:property] if args.key?(:property)
3663
- end
3664
- end
3665
-
3666
3514
  # A link between a Google Analytics property and a Firebase project.
3667
3515
  class GoogleAnalyticsAdminV1alphaFirebaseLink
3668
3516
  include Google::Apis::Core::Hashable
@@ -4180,47 +4028,6 @@ module Google
4180
4028
  end
4181
4029
  end
4182
4030
 
4183
- # Request message for ListConnectedSiteTags RPC.
4184
- class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest
4185
- include Google::Apis::Core::Hashable
4186
-
4187
- # The Universal Analytics property to fetch connected site tags for. This does
4188
- # not work on GA4 properties. A maximum of 20 connected site tags will be
4189
- # returned. Example Format: `properties/1234`
4190
- # Corresponds to the JSON property `property`
4191
- # @return [String]
4192
- attr_accessor :property
4193
-
4194
- def initialize(**args)
4195
- update!(**args)
4196
- end
4197
-
4198
- # Update properties of this object
4199
- def update!(**args)
4200
- @property = args[:property] if args.key?(:property)
4201
- end
4202
- end
4203
-
4204
- # Response message for ListConnectedSiteTags RPC.
4205
- class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse
4206
- include Google::Apis::Core::Hashable
4207
-
4208
- # The site tags for the Universal Analytics property. A maximum of 20 connected
4209
- # site tags will be returned.
4210
- # Corresponds to the JSON property `connectedSiteTags`
4211
- # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag>]
4212
- attr_accessor :connected_site_tags
4213
-
4214
- def initialize(**args)
4215
- update!(**args)
4216
- end
4217
-
4218
- # Update properties of this object
4219
- def update!(**args)
4220
- @connected_site_tags = args[:connected_site_tags] if args.key?(:connected_site_tags)
4221
- end
4222
- end
4223
-
4224
4031
  # Response message for ListConversionEvents RPC.
4225
4032
  class GoogleAnalyticsAdminV1alphaListConversionEventsResponse
4226
4033
  include Google::Apis::Core::Hashable
@@ -5295,6 +5102,33 @@ module Google
5295
5102
  end
5296
5103
  end
5297
5104
 
5105
+ # A resource containing settings related to reporting identity.
5106
+ class GoogleAnalyticsAdminV1alphaReportingIdentitySettings
5107
+ include Google::Apis::Core::Hashable
5108
+
5109
+ # Output only. Identifier. Resource name for this reporting identity settings
5110
+ # singleton resource. Format: properties/`property_id`/reportingIdentitySettings
5111
+ # Example: "properties/1234/reportingIdentitySettings"
5112
+ # Corresponds to the JSON property `name`
5113
+ # @return [String]
5114
+ attr_accessor :name
5115
+
5116
+ # The strategy used for identifying user identities in reports.
5117
+ # Corresponds to the JSON property `reportingIdentity`
5118
+ # @return [String]
5119
+ attr_accessor :reporting_identity
5120
+
5121
+ def initialize(**args)
5122
+ update!(**args)
5123
+ end
5124
+
5125
+ # Update properties of this object
5126
+ def update!(**args)
5127
+ @name = args[:name] if args.key?(:name)
5128
+ @reporting_identity = args[:reporting_identity] if args.key?(:reporting_identity)
5129
+ end
5130
+ end
5131
+
5298
5132
  # A link that references a source property under the parent rollup property.
5299
5133
  class GoogleAnalyticsAdminV1alphaRollupPropertySourceLink
5300
5134
  include Google::Apis::Core::Hashable
@@ -5720,48 +5554,6 @@ module Google
5720
5554
  end
5721
5555
  end
5722
5556
 
5723
- # Request for setting the opt out status for the automated GA4 setup process.
5724
- class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutRequest
5725
- include Google::Apis::Core::Hashable
5726
-
5727
- # The status to set.
5728
- # Corresponds to the JSON property `optOut`
5729
- # @return [Boolean]
5730
- attr_accessor :opt_out
5731
- alias_method :opt_out?, :opt_out
5732
-
5733
- # Required. The UA property to set the opt out status. Note this request uses
5734
- # the internal property ID, not the tracking ID of the form UA-XXXXXX-YY. Format:
5735
- # properties/`internalWebPropertyId` Example: properties/1234
5736
- # Corresponds to the JSON property `property`
5737
- # @return [String]
5738
- attr_accessor :property
5739
-
5740
- def initialize(**args)
5741
- update!(**args)
5742
- end
5743
-
5744
- # Update properties of this object
5745
- def update!(**args)
5746
- @opt_out = args[:opt_out] if args.key?(:opt_out)
5747
- @property = args[:property] if args.key?(:property)
5748
- end
5749
- end
5750
-
5751
- # Response message for setting the opt out status for the automated GA4 setup
5752
- # process.
5753
- class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse
5754
- include Google::Apis::Core::Hashable
5755
-
5756
- def initialize(**args)
5757
- update!(**args)
5758
- end
5759
-
5760
- # Update properties of this object
5761
- def update!(**args)
5762
- end
5763
- end
5764
-
5765
5557
  # A resource message representing a Google Analytics subproperty event filter.
5766
5558
  class GoogleAnalyticsAdminV1alphaSubpropertyEventFilter
5767
5559
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AnalyticsadminV1alpha
18
18
  # Version of the google-apis-analyticsadmin_v1alpha gem
19
- GEM_VERSION = "0.84.0"
19
+ GEM_VERSION = "0.86.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250615"
25
+ REVISION = "20250713"
26
26
  end
27
27
  end
28
28
  end
@@ -412,12 +412,6 @@ module Google
412
412
  include Google::Apis::Core::JsonObjectSupport
413
413
  end
414
414
 
415
- class GoogleAnalyticsAdminV1alphaConnectedSiteTag
416
- class Representation < Google::Apis::Core::JsonRepresentation; end
417
-
418
- include Google::Apis::Core::JsonObjectSupport
419
- end
420
-
421
415
  class GoogleAnalyticsAdminV1alphaConversionEvent
422
416
  class Representation < Google::Apis::Core::JsonRepresentation; end
423
417
 
@@ -442,18 +436,6 @@ module Google
442
436
  include Google::Apis::Core::JsonObjectSupport
443
437
  end
444
438
 
445
- class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest
446
- class Representation < Google::Apis::Core::JsonRepresentation; end
447
-
448
- include Google::Apis::Core::JsonObjectSupport
449
- end
450
-
451
- class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse
452
- class Representation < Google::Apis::Core::JsonRepresentation; end
453
-
454
- include Google::Apis::Core::JsonObjectSupport
455
- end
456
-
457
439
  class GoogleAnalyticsAdminV1alphaCreateRollupPropertyRequest
458
440
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
441
 
@@ -526,12 +508,6 @@ module Google
526
508
  include Google::Apis::Core::JsonObjectSupport
527
509
  end
528
510
 
529
- class GoogleAnalyticsAdminV1alphaDeleteConnectedSiteTagRequest
530
- class Representation < Google::Apis::Core::JsonRepresentation; end
531
-
532
- include Google::Apis::Core::JsonObjectSupport
533
- end
534
-
535
511
  class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
536
512
  class Representation < Google::Apis::Core::JsonRepresentation; end
537
513
 
@@ -604,24 +580,6 @@ module Google
604
580
  include Google::Apis::Core::JsonObjectSupport
605
581
  end
606
582
 
607
- class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutRequest
608
- class Representation < Google::Apis::Core::JsonRepresentation; end
609
-
610
- include Google::Apis::Core::JsonObjectSupport
611
- end
612
-
613
- class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse
614
- class Representation < Google::Apis::Core::JsonRepresentation; end
615
-
616
- include Google::Apis::Core::JsonObjectSupport
617
- end
618
-
619
- class GoogleAnalyticsAdminV1alphaFetchConnectedGa4PropertyResponse
620
- class Representation < Google::Apis::Core::JsonRepresentation; end
621
-
622
- include Google::Apis::Core::JsonObjectSupport
623
- end
624
-
625
583
  class GoogleAnalyticsAdminV1alphaFirebaseLink
626
584
  class Representation < Google::Apis::Core::JsonRepresentation; end
627
585
 
@@ -718,18 +676,6 @@ module Google
718
676
  include Google::Apis::Core::JsonObjectSupport
719
677
  end
720
678
 
721
- class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest
722
- class Representation < Google::Apis::Core::JsonRepresentation; end
723
-
724
- include Google::Apis::Core::JsonObjectSupport
725
- end
726
-
727
- class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse
728
- class Representation < Google::Apis::Core::JsonRepresentation; end
729
-
730
- include Google::Apis::Core::JsonObjectSupport
731
- end
732
-
733
679
  class GoogleAnalyticsAdminV1alphaListConversionEventsResponse
734
680
  class Representation < Google::Apis::Core::JsonRepresentation; end
735
681
 
@@ -934,6 +880,12 @@ module Google
934
880
  include Google::Apis::Core::JsonObjectSupport
935
881
  end
936
882
 
883
+ class GoogleAnalyticsAdminV1alphaReportingIdentitySettings
884
+ class Representation < Google::Apis::Core::JsonRepresentation; end
885
+
886
+ include Google::Apis::Core::JsonObjectSupport
887
+ end
888
+
937
889
  class GoogleAnalyticsAdminV1alphaRollupPropertySourceLink
938
890
  class Representation < Google::Apis::Core::JsonRepresentation; end
939
891
 
@@ -976,18 +928,6 @@ module Google
976
928
  include Google::Apis::Core::JsonObjectSupport
977
929
  end
978
930
 
979
- class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutRequest
980
- class Representation < Google::Apis::Core::JsonRepresentation; end
981
-
982
- include Google::Apis::Core::JsonObjectSupport
983
- end
984
-
985
- class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse
986
- class Representation < Google::Apis::Core::JsonRepresentation; end
987
-
988
- include Google::Apis::Core::JsonObjectSupport
989
- end
990
-
991
931
  class GoogleAnalyticsAdminV1alphaSubpropertyEventFilter
992
932
  class Representation < Google::Apis::Core::JsonRepresentation; end
993
933
 
@@ -1637,6 +1577,8 @@ module Google
1637
1577
 
1638
1578
  property :reporting_data_annotation, as: 'reportingDataAnnotation', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingDataAnnotation, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingDataAnnotation::Representation
1639
1579
 
1580
+ property :reporting_identity_settings, as: 'reportingIdentitySettings', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings::Representation
1581
+
1640
1582
  property :search_ads360_link, as: 'searchAds360Link', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link::Representation
1641
1583
 
1642
1584
  property :skadnetwork_conversion_value_schema, as: 'skadnetworkConversionValueSchema', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
@@ -1720,14 +1662,6 @@ module Google
1720
1662
  end
1721
1663
  end
1722
1664
 
1723
- class GoogleAnalyticsAdminV1alphaConnectedSiteTag
1724
- # @private
1725
- class Representation < Google::Apis::Core::JsonRepresentation
1726
- property :display_name, as: 'displayName'
1727
- property :tag_id, as: 'tagId'
1728
- end
1729
- end
1730
-
1731
1665
  class GoogleAnalyticsAdminV1alphaConversionEvent
1732
1666
  # @private
1733
1667
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1771,21 +1705,6 @@ module Google
1771
1705
  end
1772
1706
  end
1773
1707
 
1774
- class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest
1775
- # @private
1776
- class Representation < Google::Apis::Core::JsonRepresentation
1777
- property :connected_site_tag, as: 'connectedSiteTag', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag::Representation
1778
-
1779
- property :property, as: 'property'
1780
- end
1781
- end
1782
-
1783
- class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse
1784
- # @private
1785
- class Representation < Google::Apis::Core::JsonRepresentation
1786
- end
1787
- end
1788
-
1789
1708
  class GoogleAnalyticsAdminV1alphaCreateRollupPropertyRequest
1790
1709
  # @private
1791
1710
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1911,14 +1830,6 @@ module Google
1911
1830
  end
1912
1831
  end
1913
1832
 
1914
- class GoogleAnalyticsAdminV1alphaDeleteConnectedSiteTagRequest
1915
- # @private
1916
- class Representation < Google::Apis::Core::JsonRepresentation
1917
- property :property, as: 'property'
1918
- property :tag_id, as: 'tagId'
1919
- end
1920
- end
1921
-
1922
1833
  class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
1923
1834
  # @private
1924
1835
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2062,27 +1973,6 @@ module Google
2062
1973
  end
2063
1974
  end
2064
1975
 
2065
- class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutRequest
2066
- # @private
2067
- class Representation < Google::Apis::Core::JsonRepresentation
2068
- property :property, as: 'property'
2069
- end
2070
- end
2071
-
2072
- class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse
2073
- # @private
2074
- class Representation < Google::Apis::Core::JsonRepresentation
2075
- property :opt_out, as: 'optOut'
2076
- end
2077
- end
2078
-
2079
- class GoogleAnalyticsAdminV1alphaFetchConnectedGa4PropertyResponse
2080
- # @private
2081
- class Representation < Google::Apis::Core::JsonRepresentation
2082
- property :property, as: 'property'
2083
- end
2084
- end
2085
-
2086
1976
  class GoogleAnalyticsAdminV1alphaFirebaseLink
2087
1977
  # @private
2088
1978
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2234,21 +2124,6 @@ module Google
2234
2124
  end
2235
2125
  end
2236
2126
 
2237
- class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest
2238
- # @private
2239
- class Representation < Google::Apis::Core::JsonRepresentation
2240
- property :property, as: 'property'
2241
- end
2242
- end
2243
-
2244
- class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse
2245
- # @private
2246
- class Representation < Google::Apis::Core::JsonRepresentation
2247
- collection :connected_site_tags, as: 'connectedSiteTags', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag::Representation
2248
-
2249
- end
2250
- end
2251
-
2252
2127
  class GoogleAnalyticsAdminV1alphaListConversionEventsResponse
2253
2128
  # @private
2254
2129
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2571,6 +2446,14 @@ module Google
2571
2446
  end
2572
2447
  end
2573
2448
 
2449
+ class GoogleAnalyticsAdminV1alphaReportingIdentitySettings
2450
+ # @private
2451
+ class Representation < Google::Apis::Core::JsonRepresentation
2452
+ property :name, as: 'name'
2453
+ property :reporting_identity, as: 'reportingIdentity'
2454
+ end
2455
+ end
2456
+
2574
2457
  class GoogleAnalyticsAdminV1alphaRollupPropertySourceLink
2575
2458
  # @private
2576
2459
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2668,20 +2551,6 @@ module Google
2668
2551
  end
2669
2552
  end
2670
2553
 
2671
- class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutRequest
2672
- # @private
2673
- class Representation < Google::Apis::Core::JsonRepresentation
2674
- property :opt_out, as: 'optOut'
2675
- property :property, as: 'property'
2676
- end
2677
- end
2678
-
2679
- class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse
2680
- # @private
2681
- class Representation < Google::Apis::Core::JsonRepresentation
2682
- end
2683
- end
2684
-
2685
2554
  class GoogleAnalyticsAdminV1alphaSubpropertyEventFilter
2686
2555
  # @private
2687
2556
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -779,38 +779,6 @@ module Google
779
779
  execute_or_queue_command(command, &block)
780
780
  end
781
781
 
782
- # Creates a connected site tag for a Universal Analytics property. You can
783
- # create a maximum of 20 connected site tags per property. Note: This API cannot
784
- # be used on GA4 properties.
785
- # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest] google_analytics_admin_v1alpha_create_connected_site_tag_request_object
786
- # @param [String] fields
787
- # Selector specifying which fields to include in a partial response.
788
- # @param [String] quota_user
789
- # Available to use for quota purposes for server-side applications. Can be any
790
- # arbitrary string assigned to a user, but should not exceed 40 characters.
791
- # @param [Google::Apis::RequestOptions] options
792
- # Request-specific options
793
- #
794
- # @yield [result, err] Result & error if block supplied
795
- # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse] parsed result object
796
- # @yieldparam err [StandardError] error object if request failed
797
- #
798
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse]
799
- #
800
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
801
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
802
- # @raise [Google::Apis::AuthorizationError] Authorization is required
803
- def create_property_connected_site_tag(google_analytics_admin_v1alpha_create_connected_site_tag_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
804
- command = make_simple_command(:post, 'v1alpha/properties:createConnectedSiteTag', options)
805
- command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest::Representation
806
- command.request_object = google_analytics_admin_v1alpha_create_connected_site_tag_request_object
807
- command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse::Representation
808
- command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse
809
- command.query['fields'] = fields unless fields.nil?
810
- command.query['quotaUser'] = quota_user unless quota_user.nil?
811
- execute_or_queue_command(command, &block)
812
- end
813
-
814
782
  # Create a roll-up property and all roll-up property source links.
815
783
  # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateRollupPropertyRequest] google_analytics_admin_v1alpha_create_rollup_property_request_object
816
784
  # @param [String] fields
@@ -877,102 +845,6 @@ module Google
877
845
  execute_or_queue_command(command, &block)
878
846
  end
879
847
 
880
- # Deletes a connected site tag for a Universal Analytics property. Note: this
881
- # has no effect on GA4 properties.
882
- # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDeleteConnectedSiteTagRequest] google_analytics_admin_v1alpha_delete_connected_site_tag_request_object
883
- # @param [String] fields
884
- # Selector specifying which fields to include in a partial response.
885
- # @param [String] quota_user
886
- # Available to use for quota purposes for server-side applications. Can be any
887
- # arbitrary string assigned to a user, but should not exceed 40 characters.
888
- # @param [Google::Apis::RequestOptions] options
889
- # Request-specific options
890
- #
891
- # @yield [result, err] Result & error if block supplied
892
- # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty] parsed result object
893
- # @yieldparam err [StandardError] error object if request failed
894
- #
895
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty]
896
- #
897
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
898
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
899
- # @raise [Google::Apis::AuthorizationError] Authorization is required
900
- def delete_property_connected_site_tag(google_analytics_admin_v1alpha_delete_connected_site_tag_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
901
- command = make_simple_command(:post, 'v1alpha/properties:deleteConnectedSiteTag', options)
902
- command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDeleteConnectedSiteTagRequest::Representation
903
- command.request_object = google_analytics_admin_v1alpha_delete_connected_site_tag_request_object
904
- command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty::Representation
905
- command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty
906
- command.query['fields'] = fields unless fields.nil?
907
- command.query['quotaUser'] = quota_user unless quota_user.nil?
908
- execute_or_queue_command(command, &block)
909
- end
910
-
911
- # Fetches the opt out status for the automated GA4 setup process for a UA
912
- # property. Note: this has no effect on GA4 property.
913
- # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutRequest] google_analytics_admin_v1alpha_fetch_automated_ga4_configuration_opt_out_request_object
914
- # @param [String] fields
915
- # Selector specifying which fields to include in a partial response.
916
- # @param [String] quota_user
917
- # Available to use for quota purposes for server-side applications. Can be any
918
- # arbitrary string assigned to a user, but should not exceed 40 characters.
919
- # @param [Google::Apis::RequestOptions] options
920
- # Request-specific options
921
- #
922
- # @yield [result, err] Result & error if block supplied
923
- # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse] parsed result object
924
- # @yieldparam err [StandardError] error object if request failed
925
- #
926
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse]
927
- #
928
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
929
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
930
- # @raise [Google::Apis::AuthorizationError] Authorization is required
931
- def fetch_property_automated_ga4_configuration_opt_out(google_analytics_admin_v1alpha_fetch_automated_ga4_configuration_opt_out_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
932
- command = make_simple_command(:post, 'v1alpha/properties:fetchAutomatedGa4ConfigurationOptOut', options)
933
- command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutRequest::Representation
934
- command.request_object = google_analytics_admin_v1alpha_fetch_automated_ga4_configuration_opt_out_request_object
935
- command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse::Representation
936
- command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse
937
- command.query['fields'] = fields unless fields.nil?
938
- command.query['quotaUser'] = quota_user unless quota_user.nil?
939
- execute_or_queue_command(command, &block)
940
- end
941
-
942
- # Given a specified UA property, looks up the GA4 property connected to it. Note:
943
- # this cannot be used with GA4 properties.
944
- # @param [String] property
945
- # Required. The UA property for which to look up the connected GA4 property.
946
- # Note this request uses the internal property ID, not the tracking ID of the
947
- # form UA-XXXXXX-YY. Format: properties/`internal_web_property_id` Example:
948
- # properties/1234
949
- # @param [String] fields
950
- # Selector specifying which fields to include in a partial response.
951
- # @param [String] quota_user
952
- # Available to use for quota purposes for server-side applications. Can be any
953
- # arbitrary string assigned to a user, but should not exceed 40 characters.
954
- # @param [Google::Apis::RequestOptions] options
955
- # Request-specific options
956
- #
957
- # @yield [result, err] Result & error if block supplied
958
- # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchConnectedGa4PropertyResponse] parsed result object
959
- # @yieldparam err [StandardError] error object if request failed
960
- #
961
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchConnectedGa4PropertyResponse]
962
- #
963
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
964
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
965
- # @raise [Google::Apis::AuthorizationError] Authorization is required
966
- def fetch_property_connected_ga4_property(property: nil, fields: nil, quota_user: nil, options: nil, &block)
967
- command = make_simple_command(:get, 'v1alpha/properties:fetchConnectedGa4Property', options)
968
- command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchConnectedGa4PropertyResponse::Representation
969
- command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchConnectedGa4PropertyResponse
970
- command.query['property'] = property unless property.nil?
971
- command.query['fields'] = fields unless fields.nil?
972
- command.query['quotaUser'] = quota_user unless quota_user.nil?
973
- execute_or_queue_command(command, &block)
974
- end
975
-
976
848
  # Lookup for a single GA Property.
977
849
  # @param [String] name
978
850
  # Required. The name of the property to lookup. Format: properties/`property_id`
@@ -1097,6 +969,37 @@ module Google
1097
969
  execute_or_queue_command(command, &block)
1098
970
  end
1099
971
 
972
+ # Returns the singleton data retention settings for this property.
973
+ # @param [String] name
974
+ # Required. The name of the settings to lookup. Format: properties/`property`/
975
+ # reportingIdentitySettings Example: "properties/1000/reportingIdentitySettings"
976
+ # @param [String] fields
977
+ # Selector specifying which fields to include in a partial response.
978
+ # @param [String] quota_user
979
+ # Available to use for quota purposes for server-side applications. Can be any
980
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
981
+ # @param [Google::Apis::RequestOptions] options
982
+ # Request-specific options
983
+ #
984
+ # @yield [result, err] Result & error if block supplied
985
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings] parsed result object
986
+ # @yieldparam err [StandardError] error object if request failed
987
+ #
988
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings]
989
+ #
990
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
991
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
992
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
993
+ def get_property_reporting_identity_settings(name, fields: nil, quota_user: nil, options: nil, &block)
994
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
995
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings::Representation
996
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaReportingIdentitySettings
997
+ command.params['name'] = name unless name.nil?
998
+ command.query['fields'] = fields unless fields.nil?
999
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1000
+ execute_or_queue_command(command, &block)
1001
+ end
1002
+
1100
1003
  # Returns child Properties under the specified parent Account. Properties will
1101
1004
  # be excluded if the caller does not have access. Soft-deleted (ie: "trashed")
1102
1005
  # properties are excluded by default. Returns an empty list if no relevant
@@ -1154,38 +1057,6 @@ module Google
1154
1057
  execute_or_queue_command(command, &block)
1155
1058
  end
1156
1059
 
1157
- # Lists the connected site tags for a Universal Analytics property. A maximum of
1158
- # 20 connected site tags will be returned. Note: this has no effect on GA4
1159
- # property.
1160
- # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest] google_analytics_admin_v1alpha_list_connected_site_tags_request_object
1161
- # @param [String] fields
1162
- # Selector specifying which fields to include in a partial response.
1163
- # @param [String] quota_user
1164
- # Available to use for quota purposes for server-side applications. Can be any
1165
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1166
- # @param [Google::Apis::RequestOptions] options
1167
- # Request-specific options
1168
- #
1169
- # @yield [result, err] Result & error if block supplied
1170
- # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse] parsed result object
1171
- # @yieldparam err [StandardError] error object if request failed
1172
- #
1173
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse]
1174
- #
1175
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1176
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1177
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1178
- def list_property_connected_site_tags(google_analytics_admin_v1alpha_list_connected_site_tags_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1179
- command = make_simple_command(:post, 'v1alpha/properties:listConnectedSiteTags', options)
1180
- command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest::Representation
1181
- command.request_object = google_analytics_admin_v1alpha_list_connected_site_tags_request_object
1182
- command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse::Representation
1183
- command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse
1184
- command.query['fields'] = fields unless fields.nil?
1185
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1186
- execute_or_queue_command(command, &block)
1187
- end
1188
-
1189
1060
  # Updates a property.
1190
1061
  # @param [String] name
1191
1062
  # Output only. Resource name of this property. Format: properties/`property_id`
@@ -1308,37 +1179,6 @@ module Google
1308
1179
  execute_or_queue_command(command, &block)
1309
1180
  end
1310
1181
 
1311
- # Sets the opt out status for the automated GA4 setup process for a UA property.
1312
- # Note: this has no effect on GA4 property.
1313
- # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutRequest] google_analytics_admin_v1alpha_set_automated_ga4_configuration_opt_out_request_object
1314
- # @param [String] fields
1315
- # Selector specifying which fields to include in a partial response.
1316
- # @param [String] quota_user
1317
- # Available to use for quota purposes for server-side applications. Can be any
1318
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1319
- # @param [Google::Apis::RequestOptions] options
1320
- # Request-specific options
1321
- #
1322
- # @yield [result, err] Result & error if block supplied
1323
- # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse] parsed result object
1324
- # @yieldparam err [StandardError] error object if request failed
1325
- #
1326
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse]
1327
- #
1328
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1329
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1330
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1331
- def set_property_automated_ga4_configuration_opt_out(google_analytics_admin_v1alpha_set_automated_ga4_configuration_opt_out_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1332
- command = make_simple_command(:post, 'v1alpha/properties:setAutomatedGa4ConfigurationOptOut', options)
1333
- command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutRequest::Representation
1334
- command.request_object = google_analytics_admin_v1alpha_set_automated_ga4_configuration_opt_out_request_object
1335
- command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse::Representation
1336
- command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse
1337
- command.query['fields'] = fields unless fields.nil?
1338
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1339
- execute_or_queue_command(command, &block)
1340
- end
1341
-
1342
1182
  # Updates attribution settings on a property.
1343
1183
  # @param [String] name
1344
1184
  # Output only. Resource name of this attribution settings resource. Format:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-analyticsadmin_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.84.0
4
+ version: 0.86.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.84.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.86.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1alpha
62
62
  rdoc_options: []
63
63
  require_paths: