Skip to content

Commit cb705b1

Browse files
feat: Automated regeneration of analyticsadmin v1alpha client (googleapis#23720)
Auto-created at 2025-07-20 10:01:52 +0000 using the toys pull request generator.
1 parent a698b97 commit cb705b1

File tree

5 files changed

+6
-581
lines changed

5 files changed

+6
-581
lines changed

generated/google-apis-analyticsadmin_v1alpha/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-analyticsadmin_v1alpha
22

3+
### v0.86.0 (2025-07-20)
4+
5+
* Regenerated from discovery document revision 20250713
6+
37
### v0.85.0 (2025-06-29)
48

59
* Regenerated from discovery document revision 20250625

generated/google-apis-analyticsadmin_v1alpha/lib/google/apis/analyticsadmin_v1alpha/classes.rb

Lines changed: 0 additions & 241 deletions
Original file line numberDiff line numberDiff line change
@@ -2218,33 +2218,6 @@ def update!(**args)
22182218
end
22192219
end
22202220

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-
22482221
# A conversion event in a Google Analytics property.
22492222
class GoogleAnalyticsAdminV1alphaConversionEvent
22502223
include Google::Apis::Core::Hashable
@@ -2422,46 +2395,6 @@ def update!(**args)
24222395
end
24232396
end
24242397

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-
24652398
# Request message for CreateRollupProperty RPC.
24662399
class GoogleAnalyticsAdminV1alphaCreateRollupPropertyRequest
24672400
include Google::Apis::Core::Hashable
@@ -2970,34 +2903,6 @@ def update!(**args)
29702903
end
29712904
end
29722905

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-
30012906
# A link between a Google Analytics property and a Display & Video 360
30022907
# advertiser.
30032908
class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
@@ -3606,69 +3511,6 @@ def update!(**args)
36063511
end
36073512
end
36083513

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-
36723514
# A link between a Google Analytics property and a Firebase project.
36733515
class GoogleAnalyticsAdminV1alphaFirebaseLink
36743516
include Google::Apis::Core::Hashable
@@ -4186,47 +4028,6 @@ def update!(**args)
41864028
end
41874029
end
41884030

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-
42304031
# Response message for ListConversionEvents RPC.
42314032
class GoogleAnalyticsAdminV1alphaListConversionEventsResponse
42324033
include Google::Apis::Core::Hashable
@@ -5753,48 +5554,6 @@ def update!(**args)
57535554
end
57545555
end
57555556

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-
57985557
# A resource message representing a Google Analytics subproperty event filter.
57995558
class GoogleAnalyticsAdminV1alphaSubpropertyEventFilter
58005559
include Google::Apis::Core::Hashable

generated/google-apis-analyticsadmin_v1alpha/lib/google/apis/analyticsadmin_v1alpha/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module AnalyticsadminV1alpha
1818
# Version of the google-apis-analyticsadmin_v1alpha gem
19-
GEM_VERSION = "0.85.0"
19+
GEM_VERSION = "0.86.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250625"
25+
REVISION = "20250713"
2626
end
2727
end
2828
end

0 commit comments

Comments
 (0)