@@ -2218,33 +2218,6 @@ def update!(**args)
2218
2218
end
2219
2219
end
2220
2220
2221
- # Configuration for a specific Connected Site Tag.
2222
- class GoogleAnalyticsAdminV1alphaConnectedSiteTag
2223
- include Google ::Apis ::Core ::Hashable
2224
-
2225
- # Required. User-provided display name for the connected site tag. Must be less
2226
- # than 256 characters.
2227
- # Corresponds to the JSON property `displayName`
2228
- # @return [String]
2229
- attr_accessor :display_name
2230
-
2231
- # Required. "Tag ID to forward events to. Also known as the Measurement ID, or
2232
- # the "G-ID" (For example: G-12345).
2233
- # Corresponds to the JSON property `tagId`
2234
- # @return [String]
2235
- attr_accessor :tag_id
2236
-
2237
- def initialize ( **args )
2238
- update! ( **args )
2239
- end
2240
-
2241
- # Update properties of this object
2242
- def update! ( **args )
2243
- @display_name = args [ :display_name ] if args . key? ( :display_name )
2244
- @tag_id = args [ :tag_id ] if args . key? ( :tag_id )
2245
- end
2246
- end
2247
-
2248
2221
# A conversion event in a Google Analytics property.
2249
2222
class GoogleAnalyticsAdminV1alphaConversionEvent
2250
2223
include Google ::Apis ::Core ::Hashable
@@ -2422,46 +2395,6 @@ def update!(**args)
2422
2395
end
2423
2396
end
2424
2397
2425
- # Request message for CreateConnectedSiteTag RPC.
2426
- class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest
2427
- include Google ::Apis ::Core ::Hashable
2428
-
2429
- # Configuration for a specific Connected Site Tag.
2430
- # Corresponds to the JSON property `connectedSiteTag`
2431
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag]
2432
- attr_accessor :connected_site_tag
2433
-
2434
- # The Universal Analytics property to create connected site tags for. This API
2435
- # does not support GA4 properties. Format: properties/`
2436
- # universalAnalyticsPropertyId` Example: properties/1234
2437
- # Corresponds to the JSON property `property`
2438
- # @return [String]
2439
- attr_accessor :property
2440
-
2441
- def initialize ( **args )
2442
- update! ( **args )
2443
- end
2444
-
2445
- # Update properties of this object
2446
- def update! ( **args )
2447
- @connected_site_tag = args [ :connected_site_tag ] if args . key? ( :connected_site_tag )
2448
- @property = args [ :property ] if args . key? ( :property )
2449
- end
2450
- end
2451
-
2452
- # Response message for CreateConnectedSiteTag RPC.
2453
- class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse
2454
- include Google ::Apis ::Core ::Hashable
2455
-
2456
- def initialize ( **args )
2457
- update! ( **args )
2458
- end
2459
-
2460
- # Update properties of this object
2461
- def update! ( **args )
2462
- end
2463
- end
2464
-
2465
2398
# Request message for CreateRollupProperty RPC.
2466
2399
class GoogleAnalyticsAdminV1alphaCreateRollupPropertyRequest
2467
2400
include Google ::Apis ::Core ::Hashable
@@ -2970,34 +2903,6 @@ def update!(**args)
2970
2903
end
2971
2904
end
2972
2905
2973
- # Request message for DeleteConnectedSiteTag RPC.
2974
- class GoogleAnalyticsAdminV1alphaDeleteConnectedSiteTagRequest
2975
- include Google ::Apis ::Core ::Hashable
2976
-
2977
- # The Universal Analytics property to delete connected site tags for. This API
2978
- # does not support GA4 properties. Format: properties/`
2979
- # universalAnalyticsPropertyId` Example: properties/1234
2980
- # Corresponds to the JSON property `property`
2981
- # @return [String]
2982
- attr_accessor :property
2983
-
2984
- # Tag ID to forward events to. Also known as the Measurement ID, or the "G-ID" (
2985
- # For example: G-12345).
2986
- # Corresponds to the JSON property `tagId`
2987
- # @return [String]
2988
- attr_accessor :tag_id
2989
-
2990
- def initialize ( **args )
2991
- update! ( **args )
2992
- end
2993
-
2994
- # Update properties of this object
2995
- def update! ( **args )
2996
- @property = args [ :property ] if args . key? ( :property )
2997
- @tag_id = args [ :tag_id ] if args . key? ( :tag_id )
2998
- end
2999
- end
3000
-
3001
2906
# A link between a Google Analytics property and a Display & Video 360
3002
2907
# advertiser.
3003
2908
class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
@@ -3606,69 +3511,6 @@ def update!(**args)
3606
3511
end
3607
3512
end
3608
3513
3609
- # Request for fetching the opt out status for the automated GA4 setup process.
3610
- class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutRequest
3611
- include Google ::Apis ::Core ::Hashable
3612
-
3613
- # Required. The UA property to get the opt out status. Note this request uses
3614
- # the internal property ID, not the tracking ID of the form UA-XXXXXX-YY. Format:
3615
- # properties/`internalWebPropertyId` Example: properties/1234
3616
- # Corresponds to the JSON property `property`
3617
- # @return [String]
3618
- attr_accessor :property
3619
-
3620
- def initialize ( **args )
3621
- update! ( **args )
3622
- end
3623
-
3624
- # Update properties of this object
3625
- def update! ( **args )
3626
- @property = args [ :property ] if args . key? ( :property )
3627
- end
3628
- end
3629
-
3630
- # Response message for fetching the opt out status for the automated GA4 setup
3631
- # process.
3632
- class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse
3633
- include Google ::Apis ::Core ::Hashable
3634
-
3635
- # The opt out status for the UA property.
3636
- # Corresponds to the JSON property `optOut`
3637
- # @return [Boolean]
3638
- attr_accessor :opt_out
3639
- alias_method :opt_out? , :opt_out
3640
-
3641
- def initialize ( **args )
3642
- update! ( **args )
3643
- end
3644
-
3645
- # Update properties of this object
3646
- def update! ( **args )
3647
- @opt_out = args [ :opt_out ] if args . key? ( :opt_out )
3648
- end
3649
- end
3650
-
3651
- # Response for looking up GA4 property connected to a UA property.
3652
- class GoogleAnalyticsAdminV1alphaFetchConnectedGa4PropertyResponse
3653
- include Google ::Apis ::Core ::Hashable
3654
-
3655
- # The GA4 property connected to the UA property. An empty string is returned
3656
- # when there is no connected GA4 property. Format: properties/`property_id`
3657
- # Example: properties/1234
3658
- # Corresponds to the JSON property `property`
3659
- # @return [String]
3660
- attr_accessor :property
3661
-
3662
- def initialize ( **args )
3663
- update! ( **args )
3664
- end
3665
-
3666
- # Update properties of this object
3667
- def update! ( **args )
3668
- @property = args [ :property ] if args . key? ( :property )
3669
- end
3670
- end
3671
-
3672
3514
# A link between a Google Analytics property and a Firebase project.
3673
3515
class GoogleAnalyticsAdminV1alphaFirebaseLink
3674
3516
include Google ::Apis ::Core ::Hashable
@@ -4186,47 +4028,6 @@ def update!(**args)
4186
4028
end
4187
4029
end
4188
4030
4189
- # Request message for ListConnectedSiteTags RPC.
4190
- class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest
4191
- include Google ::Apis ::Core ::Hashable
4192
-
4193
- # The Universal Analytics property to fetch connected site tags for. This does
4194
- # not work on GA4 properties. A maximum of 20 connected site tags will be
4195
- # returned. Example Format: `properties/1234`
4196
- # Corresponds to the JSON property `property`
4197
- # @return [String]
4198
- attr_accessor :property
4199
-
4200
- def initialize ( **args )
4201
- update! ( **args )
4202
- end
4203
-
4204
- # Update properties of this object
4205
- def update! ( **args )
4206
- @property = args [ :property ] if args . key? ( :property )
4207
- end
4208
- end
4209
-
4210
- # Response message for ListConnectedSiteTags RPC.
4211
- class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse
4212
- include Google ::Apis ::Core ::Hashable
4213
-
4214
- # The site tags for the Universal Analytics property. A maximum of 20 connected
4215
- # site tags will be returned.
4216
- # Corresponds to the JSON property `connectedSiteTags`
4217
- # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag>]
4218
- attr_accessor :connected_site_tags
4219
-
4220
- def initialize ( **args )
4221
- update! ( **args )
4222
- end
4223
-
4224
- # Update properties of this object
4225
- def update! ( **args )
4226
- @connected_site_tags = args [ :connected_site_tags ] if args . key? ( :connected_site_tags )
4227
- end
4228
- end
4229
-
4230
4031
# Response message for ListConversionEvents RPC.
4231
4032
class GoogleAnalyticsAdminV1alphaListConversionEventsResponse
4232
4033
include Google ::Apis ::Core ::Hashable
@@ -5753,48 +5554,6 @@ def update!(**args)
5753
5554
end
5754
5555
end
5755
5556
5756
- # Request for setting the opt out status for the automated GA4 setup process.
5757
- class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutRequest
5758
- include Google ::Apis ::Core ::Hashable
5759
-
5760
- # The status to set.
5761
- # Corresponds to the JSON property `optOut`
5762
- # @return [Boolean]
5763
- attr_accessor :opt_out
5764
- alias_method :opt_out? , :opt_out
5765
-
5766
- # Required. The UA property to set the opt out status. Note this request uses
5767
- # the internal property ID, not the tracking ID of the form UA-XXXXXX-YY. Format:
5768
- # properties/`internalWebPropertyId` Example: properties/1234
5769
- # Corresponds to the JSON property `property`
5770
- # @return [String]
5771
- attr_accessor :property
5772
-
5773
- def initialize ( **args )
5774
- update! ( **args )
5775
- end
5776
-
5777
- # Update properties of this object
5778
- def update! ( **args )
5779
- @opt_out = args [ :opt_out ] if args . key? ( :opt_out )
5780
- @property = args [ :property ] if args . key? ( :property )
5781
- end
5782
- end
5783
-
5784
- # Response message for setting the opt out status for the automated GA4 setup
5785
- # process.
5786
- class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse
5787
- include Google ::Apis ::Core ::Hashable
5788
-
5789
- def initialize ( **args )
5790
- update! ( **args )
5791
- end
5792
-
5793
- # Update properties of this object
5794
- def update! ( **args )
5795
- end
5796
- end
5797
-
5798
5557
# A resource message representing a Google Analytics subproperty event filter.
5799
5558
class GoogleAnalyticsAdminV1alphaSubpropertyEventFilter
5800
5559
include Google ::Apis ::Core ::Hashable
0 commit comments