google-apis-analyticsadmin_v1alpha 0.85.0 → 0.87.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/analyticsadmin_v1alpha/classes.rb +38 -216
- data/lib/google/apis/analyticsadmin_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/analyticsadmin_v1alpha/representations.rb +9 -127
- data/lib/google/apis/analyticsadmin_v1alpha/service.rb +13 -171
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55a576a4ed0ebb4cc36aac3e01f599d869779e8c0ea336b5c80adda154300bd9
|
4
|
+
data.tar.gz: 120bc91d7fe30cb3547947a0501081566fa8b19b8d7de5f2b3e4d345aecd9e97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e41eee02a71a2b7faaf8291ef83936c88cb827a69e0b8e838e396515d0ed09dcb673299d21d9ea721c4f987e44b4be39d82af99de49614652e1ca4966d62419a
|
7
|
+
data.tar.gz: ab649be9ab83fa1051b1a2079e364fb91f0b4658ea0bda534c38dd7e16383ffd29057466a0bdc7fcfb29d23754da37b03fac036edebd5b8615da85b99f9fd999
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-analyticsadmin_v1alpha
|
2
2
|
|
3
|
+
### v0.87.0 (2025-07-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250723
|
6
|
+
|
7
|
+
### v0.86.0 (2025-07-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250713
|
10
|
+
|
3
11
|
### v0.85.0 (2025-06-29)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250625
|
@@ -2218,33 +2218,6 @@ module Google
|
|
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 @@ module Google
|
|
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 @@ module Google
|
|
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 @@ module Google
|
|
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 @@ module Google
|
|
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,22 +5554,35 @@ module Google
|
|
5753
5554
|
end
|
5754
5555
|
end
|
5755
5556
|
|
5756
|
-
# Request
|
5757
|
-
class
|
5557
|
+
# Request message for SubmitUserDeletion RPC.
|
5558
|
+
class GoogleAnalyticsAdminV1alphaSubmitUserDeletionRequest
|
5758
5559
|
include Google::Apis::Core::Hashable
|
5759
5560
|
|
5760
|
-
#
|
5761
|
-
#
|
5762
|
-
#
|
5763
|
-
|
5764
|
-
|
5561
|
+
# Firebase [application instance ID](https://firebase.google.com/docs/reference/
|
5562
|
+
# android/com/google/firebase/analytics/FirebaseAnalytics.html#getAppInstanceId).
|
5563
|
+
# Corresponds to the JSON property `appInstanceId`
|
5564
|
+
# @return [String]
|
5565
|
+
attr_accessor :app_instance_id
|
5765
5566
|
|
5766
|
-
#
|
5767
|
-
#
|
5768
|
-
#
|
5769
|
-
# Corresponds to the JSON property `property`
|
5567
|
+
# Google Analytics [client ID](https://support.google.com/analytics/answer/
|
5568
|
+
# 11593727).
|
5569
|
+
# Corresponds to the JSON property `clientId`
|
5770
5570
|
# @return [String]
|
5771
|
-
attr_accessor :
|
5571
|
+
attr_accessor :client_id
|
5572
|
+
|
5573
|
+
# Google Analytics [user ID](https://firebase.google.com/docs/analytics/userid).
|
5574
|
+
# Corresponds to the JSON property `userId`
|
5575
|
+
# @return [String]
|
5576
|
+
attr_accessor :user_id
|
5577
|
+
|
5578
|
+
# [User-provided data](https://support.google.com/analytics/answer/14077171).
|
5579
|
+
# May contain either one email address or one phone number. Email addresses
|
5580
|
+
# should be normalized as such: * lowercase * remove periods before @ for gmail.
|
5581
|
+
# com/googlemail.com addresses * remove all spaces Phone numbers should be
|
5582
|
+
# normalized as such: * remove all non digit characters * add + prefix
|
5583
|
+
# Corresponds to the JSON property `userProvidedData`
|
5584
|
+
# @return [String]
|
5585
|
+
attr_accessor :user_provided_data
|
5772
5586
|
|
5773
5587
|
def initialize(**args)
|
5774
5588
|
update!(**args)
|
@@ -5776,22 +5590,30 @@ module Google
|
|
5776
5590
|
|
5777
5591
|
# Update properties of this object
|
5778
5592
|
def update!(**args)
|
5779
|
-
@
|
5780
|
-
@
|
5593
|
+
@app_instance_id = args[:app_instance_id] if args.key?(:app_instance_id)
|
5594
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
5595
|
+
@user_id = args[:user_id] if args.key?(:user_id)
|
5596
|
+
@user_provided_data = args[:user_provided_data] if args.key?(:user_provided_data)
|
5781
5597
|
end
|
5782
5598
|
end
|
5783
5599
|
|
5784
|
-
# Response message for
|
5785
|
-
|
5786
|
-
class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse
|
5600
|
+
# Response message for SubmitUserDeletion RPC.
|
5601
|
+
class GoogleAnalyticsAdminV1alphaSubmitUserDeletionResponse
|
5787
5602
|
include Google::Apis::Core::Hashable
|
5788
5603
|
|
5604
|
+
# Marks the moment for which all visitor data before this point should be
|
5605
|
+
# deleted. This is set to the time at which the deletion request was received.
|
5606
|
+
# Corresponds to the JSON property `deletionRequestTime`
|
5607
|
+
# @return [String]
|
5608
|
+
attr_accessor :deletion_request_time
|
5609
|
+
|
5789
5610
|
def initialize(**args)
|
5790
5611
|
update!(**args)
|
5791
5612
|
end
|
5792
5613
|
|
5793
5614
|
# Update properties of this object
|
5794
5615
|
def update!(**args)
|
5616
|
+
@deletion_request_time = args[:deletion_request_time] if args.key?(:deletion_request_time)
|
5795
5617
|
end
|
5796
5618
|
end
|
5797
5619
|
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.87.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 = "
|
25
|
+
REVISION = "20250723"
|
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
|
|
@@ -982,13 +928,13 @@ module Google
|
|
982
928
|
include Google::Apis::Core::JsonObjectSupport
|
983
929
|
end
|
984
930
|
|
985
|
-
class
|
931
|
+
class GoogleAnalyticsAdminV1alphaSubmitUserDeletionRequest
|
986
932
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
987
933
|
|
988
934
|
include Google::Apis::Core::JsonObjectSupport
|
989
935
|
end
|
990
936
|
|
991
|
-
class
|
937
|
+
class GoogleAnalyticsAdminV1alphaSubmitUserDeletionResponse
|
992
938
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
993
939
|
|
994
940
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -1728,14 +1674,6 @@ module Google
|
|
1728
1674
|
end
|
1729
1675
|
end
|
1730
1676
|
|
1731
|
-
class GoogleAnalyticsAdminV1alphaConnectedSiteTag
|
1732
|
-
# @private
|
1733
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1734
|
-
property :display_name, as: 'displayName'
|
1735
|
-
property :tag_id, as: 'tagId'
|
1736
|
-
end
|
1737
|
-
end
|
1738
|
-
|
1739
1677
|
class GoogleAnalyticsAdminV1alphaConversionEvent
|
1740
1678
|
# @private
|
1741
1679
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1779,21 +1717,6 @@ module Google
|
|
1779
1717
|
end
|
1780
1718
|
end
|
1781
1719
|
|
1782
|
-
class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest
|
1783
|
-
# @private
|
1784
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1785
|
-
property :connected_site_tag, as: 'connectedSiteTag', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag::Representation
|
1786
|
-
|
1787
|
-
property :property, as: 'property'
|
1788
|
-
end
|
1789
|
-
end
|
1790
|
-
|
1791
|
-
class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse
|
1792
|
-
# @private
|
1793
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1794
|
-
end
|
1795
|
-
end
|
1796
|
-
|
1797
1720
|
class GoogleAnalyticsAdminV1alphaCreateRollupPropertyRequest
|
1798
1721
|
# @private
|
1799
1722
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1919,14 +1842,6 @@ module Google
|
|
1919
1842
|
end
|
1920
1843
|
end
|
1921
1844
|
|
1922
|
-
class GoogleAnalyticsAdminV1alphaDeleteConnectedSiteTagRequest
|
1923
|
-
# @private
|
1924
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1925
|
-
property :property, as: 'property'
|
1926
|
-
property :tag_id, as: 'tagId'
|
1927
|
-
end
|
1928
|
-
end
|
1929
|
-
|
1930
1845
|
class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
|
1931
1846
|
# @private
|
1932
1847
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2070,27 +1985,6 @@ module Google
|
|
2070
1985
|
end
|
2071
1986
|
end
|
2072
1987
|
|
2073
|
-
class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutRequest
|
2074
|
-
# @private
|
2075
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
2076
|
-
property :property, as: 'property'
|
2077
|
-
end
|
2078
|
-
end
|
2079
|
-
|
2080
|
-
class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse
|
2081
|
-
# @private
|
2082
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
2083
|
-
property :opt_out, as: 'optOut'
|
2084
|
-
end
|
2085
|
-
end
|
2086
|
-
|
2087
|
-
class GoogleAnalyticsAdminV1alphaFetchConnectedGa4PropertyResponse
|
2088
|
-
# @private
|
2089
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
2090
|
-
property :property, as: 'property'
|
2091
|
-
end
|
2092
|
-
end
|
2093
|
-
|
2094
1988
|
class GoogleAnalyticsAdminV1alphaFirebaseLink
|
2095
1989
|
# @private
|
2096
1990
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2242,21 +2136,6 @@ module Google
|
|
2242
2136
|
end
|
2243
2137
|
end
|
2244
2138
|
|
2245
|
-
class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest
|
2246
|
-
# @private
|
2247
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
2248
|
-
property :property, as: 'property'
|
2249
|
-
end
|
2250
|
-
end
|
2251
|
-
|
2252
|
-
class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse
|
2253
|
-
# @private
|
2254
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
2255
|
-
collection :connected_site_tags, as: 'connectedSiteTags', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag::Representation
|
2256
|
-
|
2257
|
-
end
|
2258
|
-
end
|
2259
|
-
|
2260
2139
|
class GoogleAnalyticsAdminV1alphaListConversionEventsResponse
|
2261
2140
|
# @private
|
2262
2141
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2684,17 +2563,20 @@ module Google
|
|
2684
2563
|
end
|
2685
2564
|
end
|
2686
2565
|
|
2687
|
-
class
|
2566
|
+
class GoogleAnalyticsAdminV1alphaSubmitUserDeletionRequest
|
2688
2567
|
# @private
|
2689
2568
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2690
|
-
property :
|
2691
|
-
property :
|
2569
|
+
property :app_instance_id, as: 'appInstanceId'
|
2570
|
+
property :client_id, as: 'clientId'
|
2571
|
+
property :user_id, as: 'userId'
|
2572
|
+
property :user_provided_data, as: 'userProvidedData'
|
2692
2573
|
end
|
2693
2574
|
end
|
2694
2575
|
|
2695
|
-
class
|
2576
|
+
class GoogleAnalyticsAdminV1alphaSubmitUserDeletionResponse
|
2696
2577
|
# @private
|
2697
2578
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2579
|
+
property :deletion_request_time, as: 'deletionRequestTime'
|
2698
2580
|
end
|
2699
2581
|
end
|
2700
2582
|
|
@@ -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`
|
@@ -1185,38 +1057,6 @@ module Google
|
|
1185
1057
|
execute_or_queue_command(command, &block)
|
1186
1058
|
end
|
1187
1059
|
|
1188
|
-
# Lists the connected site tags for a Universal Analytics property. A maximum of
|
1189
|
-
# 20 connected site tags will be returned. Note: this has no effect on GA4
|
1190
|
-
# property.
|
1191
|
-
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest] google_analytics_admin_v1alpha_list_connected_site_tags_request_object
|
1192
|
-
# @param [String] fields
|
1193
|
-
# Selector specifying which fields to include in a partial response.
|
1194
|
-
# @param [String] quota_user
|
1195
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1196
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1197
|
-
# @param [Google::Apis::RequestOptions] options
|
1198
|
-
# Request-specific options
|
1199
|
-
#
|
1200
|
-
# @yield [result, err] Result & error if block supplied
|
1201
|
-
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse] parsed result object
|
1202
|
-
# @yieldparam err [StandardError] error object if request failed
|
1203
|
-
#
|
1204
|
-
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse]
|
1205
|
-
#
|
1206
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1207
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1208
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1209
|
-
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)
|
1210
|
-
command = make_simple_command(:post, 'v1alpha/properties:listConnectedSiteTags', options)
|
1211
|
-
command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest::Representation
|
1212
|
-
command.request_object = google_analytics_admin_v1alpha_list_connected_site_tags_request_object
|
1213
|
-
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse::Representation
|
1214
|
-
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse
|
1215
|
-
command.query['fields'] = fields unless fields.nil?
|
1216
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1217
|
-
execute_or_queue_command(command, &block)
|
1218
|
-
end
|
1219
|
-
|
1220
1060
|
# Updates a property.
|
1221
1061
|
# @param [String] name
|
1222
1062
|
# Output only. Resource name of this property. Format: properties/`property_id`
|
@@ -1339,9 +1179,10 @@ module Google
|
|
1339
1179
|
execute_or_queue_command(command, &block)
|
1340
1180
|
end
|
1341
1181
|
|
1342
|
-
#
|
1343
|
-
#
|
1344
|
-
#
|
1182
|
+
# Submits a request for user deletion for a property.
|
1183
|
+
# @param [String] name
|
1184
|
+
# Required. The name of the property to submit user deletion for.
|
1185
|
+
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubmitUserDeletionRequest] google_analytics_admin_v1alpha_submit_user_deletion_request_object
|
1345
1186
|
# @param [String] fields
|
1346
1187
|
# Selector specifying which fields to include in a partial response.
|
1347
1188
|
# @param [String] quota_user
|
@@ -1351,20 +1192,21 @@ module Google
|
|
1351
1192
|
# Request-specific options
|
1352
1193
|
#
|
1353
1194
|
# @yield [result, err] Result & error if block supplied
|
1354
|
-
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::
|
1195
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubmitUserDeletionResponse] parsed result object
|
1355
1196
|
# @yieldparam err [StandardError] error object if request failed
|
1356
1197
|
#
|
1357
|
-
# @return [Google::Apis::AnalyticsadminV1alpha::
|
1198
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubmitUserDeletionResponse]
|
1358
1199
|
#
|
1359
1200
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1360
1201
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1361
1202
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1362
|
-
def
|
1363
|
-
command = make_simple_command(:post, 'v1alpha/
|
1364
|
-
command.request_representation = Google::Apis::AnalyticsadminV1alpha::
|
1365
|
-
command.request_object =
|
1366
|
-
command.response_representation = Google::Apis::AnalyticsadminV1alpha::
|
1367
|
-
command.response_class = Google::Apis::AnalyticsadminV1alpha::
|
1203
|
+
def submit_property_user_deletion(name, google_analytics_admin_v1alpha_submit_user_deletion_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1204
|
+
command = make_simple_command(:post, 'v1alpha/{+name}:submitUserDeletion', options)
|
1205
|
+
command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubmitUserDeletionRequest::Representation
|
1206
|
+
command.request_object = google_analytics_admin_v1alpha_submit_user_deletion_request_object
|
1207
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubmitUserDeletionResponse::Representation
|
1208
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubmitUserDeletionResponse
|
1209
|
+
command.params['name'] = name unless name.nil?
|
1368
1210
|
command.query['fields'] = fields unless fields.nil?
|
1369
1211
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1370
1212
|
execute_or_queue_command(command, &block)
|
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.
|
4
|
+
version: 0.87.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.87.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:
|