google-apis-analyticsadmin_v1alpha 0.49.0 → 0.51.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 +391 -30
- data/lib/google/apis/analyticsadmin_v1alpha/gem_version.rb +2 -2
- data/lib/google/apis/analyticsadmin_v1alpha/representations.rb +180 -3
- data/lib/google/apis/analyticsadmin_v1alpha/service.rb +300 -14
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1d58777a9da11d232310d618df65606d1098413230cbc5941c12854e44522bfa
|
4
|
+
data.tar.gz: e36a1f0446828ed6aac47a0f4ed0f8c40a8ff7f7cc3e4112b2e6730733d6feaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5c4dd436408e73ce862a892f95d537c8d5ecdc43abf09e47b1c418278ce4d6031f8892187c0eafa13a8401a64c621555c4fb7c26ac4933b4e4e3b13ddfe16d3
|
7
|
+
data.tar.gz: ca028659264a6c459acd3ba0085e46bf31d77591f1f0d80d12c246a3b8023a5c0f11def5d7eb60b82fffb30f6a869d92826b2fb6ad571dc8a9978d5c561ae1ef
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-analyticsadmin_v1alpha
|
2
2
|
|
3
|
+
### v0.51.0 (2023-04-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230410
|
6
|
+
|
7
|
+
### v0.50.0 (2023-03-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230322
|
10
|
+
|
3
11
|
### v0.49.0 (2023-03-05)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230302
|
@@ -1872,6 +1872,11 @@ module Google
|
|
1872
1872
|
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink]
|
1873
1873
|
attr_accessor :bigquery_link
|
1874
1874
|
|
1875
|
+
# A resource message representing a Channel Group.
|
1876
|
+
# Corresponds to the JSON property `channelGroup`
|
1877
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup]
|
1878
|
+
attr_accessor :channel_group
|
1879
|
+
|
1875
1880
|
# A conversion event in a Google Analytics property.
|
1876
1881
|
# Corresponds to the JSON property `conversionEvent`
|
1877
1882
|
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent]
|
@@ -1910,6 +1915,12 @@ module Google
|
|
1910
1915
|
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal]
|
1911
1916
|
attr_accessor :display_video360_advertiser_link_proposal
|
1912
1917
|
|
1918
|
+
# Singleton resource under a WebDataStream, configuring measurement of
|
1919
|
+
# additional site interactions and content.
|
1920
|
+
# Corresponds to the JSON property `enhancedMeasurementSettings`
|
1921
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings]
|
1922
|
+
attr_accessor :enhanced_measurement_settings
|
1923
|
+
|
1913
1924
|
# A resource message representing a GA4 ExpandedDataSet.
|
1914
1925
|
# Corresponds to the JSON property `expandedDataSet`
|
1915
1926
|
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSet]
|
@@ -1954,6 +1965,7 @@ module Google
|
|
1954
1965
|
@account = args[:account] if args.key?(:account)
|
1955
1966
|
@attribution_settings = args[:attribution_settings] if args.key?(:attribution_settings)
|
1956
1967
|
@bigquery_link = args[:bigquery_link] if args.key?(:bigquery_link)
|
1968
|
+
@channel_group = args[:channel_group] if args.key?(:channel_group)
|
1957
1969
|
@conversion_event = args[:conversion_event] if args.key?(:conversion_event)
|
1958
1970
|
@custom_dimension = args[:custom_dimension] if args.key?(:custom_dimension)
|
1959
1971
|
@custom_metric = args[:custom_metric] if args.key?(:custom_metric)
|
@@ -1961,6 +1973,7 @@ module Google
|
|
1961
1973
|
@data_stream = args[:data_stream] if args.key?(:data_stream)
|
1962
1974
|
@display_video360_advertiser_link = args[:display_video360_advertiser_link] if args.key?(:display_video360_advertiser_link)
|
1963
1975
|
@display_video360_advertiser_link_proposal = args[:display_video360_advertiser_link_proposal] if args.key?(:display_video360_advertiser_link_proposal)
|
1976
|
+
@enhanced_measurement_settings = args[:enhanced_measurement_settings] if args.key?(:enhanced_measurement_settings)
|
1964
1977
|
@expanded_data_set = args[:expanded_data_set] if args.key?(:expanded_data_set)
|
1965
1978
|
@firebase_link = args[:firebase_link] if args.key?(:firebase_link)
|
1966
1979
|
@google_ads_link = args[:google_ads_link] if args.key?(:google_ads_link)
|
@@ -2028,6 +2041,185 @@ module Google
|
|
2028
2041
|
end
|
2029
2042
|
end
|
2030
2043
|
|
2044
|
+
# A resource message representing a Channel Group.
|
2045
|
+
class GoogleAnalyticsAdminV1alphaChannelGroup
|
2046
|
+
include Google::Apis::Core::Hashable
|
2047
|
+
|
2048
|
+
# The description of the Channel Group. Max length of 256 characters.
|
2049
|
+
# Corresponds to the JSON property `description`
|
2050
|
+
# @return [String]
|
2051
|
+
attr_accessor :description
|
2052
|
+
|
2053
|
+
# Required. The display name of the Channel Group. Max length of 80 characters.
|
2054
|
+
# Corresponds to the JSON property `displayName`
|
2055
|
+
# @return [String]
|
2056
|
+
attr_accessor :display_name
|
2057
|
+
|
2058
|
+
# Required. The grouping rules of channels. Maximum number of rules is 25.
|
2059
|
+
# Corresponds to the JSON property `groupingRule`
|
2060
|
+
# @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGroupingRule>]
|
2061
|
+
attr_accessor :grouping_rule
|
2062
|
+
|
2063
|
+
# Output only. The resource name for this Channel Group resource. Format:
|
2064
|
+
# properties/`property`/channelGroups/`channel_group`
|
2065
|
+
# Corresponds to the JSON property `name`
|
2066
|
+
# @return [String]
|
2067
|
+
attr_accessor :name
|
2068
|
+
|
2069
|
+
# Output only. Default Channel Group defined by Google, which cannot be updated.
|
2070
|
+
# Corresponds to the JSON property `systemDefined`
|
2071
|
+
# @return [Boolean]
|
2072
|
+
attr_accessor :system_defined
|
2073
|
+
alias_method :system_defined?, :system_defined
|
2074
|
+
|
2075
|
+
def initialize(**args)
|
2076
|
+
update!(**args)
|
2077
|
+
end
|
2078
|
+
|
2079
|
+
# Update properties of this object
|
2080
|
+
def update!(**args)
|
2081
|
+
@description = args[:description] if args.key?(:description)
|
2082
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2083
|
+
@grouping_rule = args[:grouping_rule] if args.key?(:grouping_rule)
|
2084
|
+
@name = args[:name] if args.key?(:name)
|
2085
|
+
@system_defined = args[:system_defined] if args.key?(:system_defined)
|
2086
|
+
end
|
2087
|
+
end
|
2088
|
+
|
2089
|
+
# A specific filter for a single dimension.
|
2090
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilter
|
2091
|
+
include Google::Apis::Core::Hashable
|
2092
|
+
|
2093
|
+
# Required. Immutable. The dimension name to filter.
|
2094
|
+
# Corresponds to the JSON property `fieldName`
|
2095
|
+
# @return [String]
|
2096
|
+
attr_accessor :field_name
|
2097
|
+
|
2098
|
+
# A filter for a string dimension that matches a particular list of options. The
|
2099
|
+
# match is case insensitive.
|
2100
|
+
# Corresponds to the JSON property `inListFilter`
|
2101
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterInListFilter]
|
2102
|
+
attr_accessor :in_list_filter
|
2103
|
+
|
2104
|
+
# Filter where the field value is a String. The match is case insensitive.
|
2105
|
+
# Corresponds to the JSON property `stringFilter`
|
2106
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterStringFilter]
|
2107
|
+
attr_accessor :string_filter
|
2108
|
+
|
2109
|
+
def initialize(**args)
|
2110
|
+
update!(**args)
|
2111
|
+
end
|
2112
|
+
|
2113
|
+
# Update properties of this object
|
2114
|
+
def update!(**args)
|
2115
|
+
@field_name = args[:field_name] if args.key?(:field_name)
|
2116
|
+
@in_list_filter = args[:in_list_filter] if args.key?(:in_list_filter)
|
2117
|
+
@string_filter = args[:string_filter] if args.key?(:string_filter)
|
2118
|
+
end
|
2119
|
+
end
|
2120
|
+
|
2121
|
+
# A logical expression of Channel Group dimension filters.
|
2122
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilterExpression
|
2123
|
+
include Google::Apis::Core::Hashable
|
2124
|
+
|
2125
|
+
# A list of Channel Group filter expressions.
|
2126
|
+
# Corresponds to the JSON property `andGroup`
|
2127
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpressionList]
|
2128
|
+
attr_accessor :and_group
|
2129
|
+
|
2130
|
+
# A specific filter for a single dimension.
|
2131
|
+
# Corresponds to the JSON property `filter`
|
2132
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilter]
|
2133
|
+
attr_accessor :filter
|
2134
|
+
|
2135
|
+
# A logical expression of Channel Group dimension filters.
|
2136
|
+
# Corresponds to the JSON property `notExpression`
|
2137
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpression]
|
2138
|
+
attr_accessor :not_expression
|
2139
|
+
|
2140
|
+
# A list of Channel Group filter expressions.
|
2141
|
+
# Corresponds to the JSON property `orGroup`
|
2142
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpressionList]
|
2143
|
+
attr_accessor :or_group
|
2144
|
+
|
2145
|
+
def initialize(**args)
|
2146
|
+
update!(**args)
|
2147
|
+
end
|
2148
|
+
|
2149
|
+
# Update properties of this object
|
2150
|
+
def update!(**args)
|
2151
|
+
@and_group = args[:and_group] if args.key?(:and_group)
|
2152
|
+
@filter = args[:filter] if args.key?(:filter)
|
2153
|
+
@not_expression = args[:not_expression] if args.key?(:not_expression)
|
2154
|
+
@or_group = args[:or_group] if args.key?(:or_group)
|
2155
|
+
end
|
2156
|
+
end
|
2157
|
+
|
2158
|
+
# A list of Channel Group filter expressions.
|
2159
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilterExpressionList
|
2160
|
+
include Google::Apis::Core::Hashable
|
2161
|
+
|
2162
|
+
# A list of Channel Group filter expressions.
|
2163
|
+
# Corresponds to the JSON property `filterExpressions`
|
2164
|
+
# @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpression>]
|
2165
|
+
attr_accessor :filter_expressions
|
2166
|
+
|
2167
|
+
def initialize(**args)
|
2168
|
+
update!(**args)
|
2169
|
+
end
|
2170
|
+
|
2171
|
+
# Update properties of this object
|
2172
|
+
def update!(**args)
|
2173
|
+
@filter_expressions = args[:filter_expressions] if args.key?(:filter_expressions)
|
2174
|
+
end
|
2175
|
+
end
|
2176
|
+
|
2177
|
+
# A filter for a string dimension that matches a particular list of options. The
|
2178
|
+
# match is case insensitive.
|
2179
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilterInListFilter
|
2180
|
+
include Google::Apis::Core::Hashable
|
2181
|
+
|
2182
|
+
# Required. The list of possible string values to match against. Must be non-
|
2183
|
+
# empty.
|
2184
|
+
# Corresponds to the JSON property `values`
|
2185
|
+
# @return [Array<String>]
|
2186
|
+
attr_accessor :values
|
2187
|
+
|
2188
|
+
def initialize(**args)
|
2189
|
+
update!(**args)
|
2190
|
+
end
|
2191
|
+
|
2192
|
+
# Update properties of this object
|
2193
|
+
def update!(**args)
|
2194
|
+
@values = args[:values] if args.key?(:values)
|
2195
|
+
end
|
2196
|
+
end
|
2197
|
+
|
2198
|
+
# Filter where the field value is a String. The match is case insensitive.
|
2199
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilterStringFilter
|
2200
|
+
include Google::Apis::Core::Hashable
|
2201
|
+
|
2202
|
+
# Required. The match type for the string filter.
|
2203
|
+
# Corresponds to the JSON property `matchType`
|
2204
|
+
# @return [String]
|
2205
|
+
attr_accessor :match_type
|
2206
|
+
|
2207
|
+
# Required. The string value to be matched against.
|
2208
|
+
# Corresponds to the JSON property `value`
|
2209
|
+
# @return [String]
|
2210
|
+
attr_accessor :value
|
2211
|
+
|
2212
|
+
def initialize(**args)
|
2213
|
+
update!(**args)
|
2214
|
+
end
|
2215
|
+
|
2216
|
+
# Update properties of this object
|
2217
|
+
def update!(**args)
|
2218
|
+
@match_type = args[:match_type] if args.key?(:match_type)
|
2219
|
+
@value = args[:value] if args.key?(:value)
|
2220
|
+
end
|
2221
|
+
end
|
2222
|
+
|
2031
2223
|
# Configuration for a specific Connected Site Tag.
|
2032
2224
|
class GoogleAnalyticsAdminV1alphaConnectedSiteTag
|
2033
2225
|
include Google::Apis::Core::Hashable
|
@@ -2133,6 +2325,46 @@ module Google
|
|
2133
2325
|
end
|
2134
2326
|
end
|
2135
2327
|
|
2328
|
+
# Request message for CreateConnectedSiteTag RPC.
|
2329
|
+
class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest
|
2330
|
+
include Google::Apis::Core::Hashable
|
2331
|
+
|
2332
|
+
# Configuration for a specific Connected Site Tag.
|
2333
|
+
# Corresponds to the JSON property `connectedSiteTag`
|
2334
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag]
|
2335
|
+
attr_accessor :connected_site_tag
|
2336
|
+
|
2337
|
+
# The Universal Analytics property to create connected site tags for. This API
|
2338
|
+
# does not support GA4 properties. Format: properties/`
|
2339
|
+
# universalAnalyticsPropertyId` Example: properties/1234
|
2340
|
+
# Corresponds to the JSON property `property`
|
2341
|
+
# @return [String]
|
2342
|
+
attr_accessor :property
|
2343
|
+
|
2344
|
+
def initialize(**args)
|
2345
|
+
update!(**args)
|
2346
|
+
end
|
2347
|
+
|
2348
|
+
# Update properties of this object
|
2349
|
+
def update!(**args)
|
2350
|
+
@connected_site_tag = args[:connected_site_tag] if args.key?(:connected_site_tag)
|
2351
|
+
@property = args[:property] if args.key?(:property)
|
2352
|
+
end
|
2353
|
+
end
|
2354
|
+
|
2355
|
+
# Response message for CreateConnectedSiteTag RPC.
|
2356
|
+
class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse
|
2357
|
+
include Google::Apis::Core::Hashable
|
2358
|
+
|
2359
|
+
def initialize(**args)
|
2360
|
+
update!(**args)
|
2361
|
+
end
|
2362
|
+
|
2363
|
+
# Update properties of this object
|
2364
|
+
def update!(**args)
|
2365
|
+
end
|
2366
|
+
end
|
2367
|
+
|
2136
2368
|
# Request message for CreateUserLink RPC. Users can have multiple email
|
2137
2369
|
# addresses associated with their Google account, and one of these email
|
2138
2370
|
# addresses is the "primary" email address. Any of the email addresses
|
@@ -2205,10 +2437,11 @@ module Google
|
|
2205
2437
|
|
2206
2438
|
# Required. Immutable. Tagging parameter name for this custom dimension. If this
|
2207
2439
|
# is a user-scoped dimension, then this is the user property name. If this is an
|
2208
|
-
# event-scoped dimension, then this is the event parameter name.
|
2209
|
-
#
|
2210
|
-
#
|
2211
|
-
# scoped dimensions
|
2440
|
+
# event-scoped dimension, then this is the event parameter name. If this is an
|
2441
|
+
# item-scoped dimension, then this is the parameter name found in the eCommerce
|
2442
|
+
# items array. May only contain alphanumeric and underscore characters, starting
|
2443
|
+
# with a letter. Max length of 24 characters for user-scoped dimensions, 40
|
2444
|
+
# characters for event-scoped dimensions.
|
2212
2445
|
# Corresponds to the JSON property `parameterName`
|
2213
2446
|
# @return [String]
|
2214
2447
|
attr_accessor :parameter_name
|
@@ -2751,6 +2984,106 @@ module Google
|
|
2751
2984
|
end
|
2752
2985
|
end
|
2753
2986
|
|
2987
|
+
# Singleton resource under a WebDataStream, configuring measurement of
|
2988
|
+
# additional site interactions and content.
|
2989
|
+
class GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings
|
2990
|
+
include Google::Apis::Core::Hashable
|
2991
|
+
|
2992
|
+
# If enabled, capture a file download event each time a link is clicked with a
|
2993
|
+
# common document, compressed file, application, video, or audio extension.
|
2994
|
+
# Corresponds to the JSON property `fileDownloadsEnabled`
|
2995
|
+
# @return [Boolean]
|
2996
|
+
attr_accessor :file_downloads_enabled
|
2997
|
+
alias_method :file_downloads_enabled?, :file_downloads_enabled
|
2998
|
+
|
2999
|
+
# If enabled, capture a form interaction event each time a visitor interacts
|
3000
|
+
# with a form on your website. False by default.
|
3001
|
+
# Corresponds to the JSON property `formInteractionsEnabled`
|
3002
|
+
# @return [Boolean]
|
3003
|
+
attr_accessor :form_interactions_enabled
|
3004
|
+
alias_method :form_interactions_enabled?, :form_interactions_enabled
|
3005
|
+
|
3006
|
+
# Output only. Resource name of the Enhanced Measurement Settings. Format:
|
3007
|
+
# properties/`property_id`/dataStreams/`data_stream`/enhancedMeasurementSettings
|
3008
|
+
# Example: "properties/1000/dataStreams/2000/enhancedMeasurementSettings"
|
3009
|
+
# Corresponds to the JSON property `name`
|
3010
|
+
# @return [String]
|
3011
|
+
attr_accessor :name
|
3012
|
+
|
3013
|
+
# If enabled, capture an outbound click event each time a visitor clicks a link
|
3014
|
+
# that leads them away from your domain.
|
3015
|
+
# Corresponds to the JSON property `outboundClicksEnabled`
|
3016
|
+
# @return [Boolean]
|
3017
|
+
attr_accessor :outbound_clicks_enabled
|
3018
|
+
alias_method :outbound_clicks_enabled?, :outbound_clicks_enabled
|
3019
|
+
|
3020
|
+
# If enabled, capture a page view event each time the website changes the
|
3021
|
+
# browser history state.
|
3022
|
+
# Corresponds to the JSON property `pageChangesEnabled`
|
3023
|
+
# @return [Boolean]
|
3024
|
+
attr_accessor :page_changes_enabled
|
3025
|
+
alias_method :page_changes_enabled?, :page_changes_enabled
|
3026
|
+
|
3027
|
+
# If enabled, capture scroll events each time a visitor gets to the bottom of a
|
3028
|
+
# page.
|
3029
|
+
# Corresponds to the JSON property `scrollsEnabled`
|
3030
|
+
# @return [Boolean]
|
3031
|
+
attr_accessor :scrolls_enabled
|
3032
|
+
alias_method :scrolls_enabled?, :scrolls_enabled
|
3033
|
+
|
3034
|
+
# Required. URL query parameters to interpret as site search parameters. Max
|
3035
|
+
# length is 1024 characters. Must not be empty.
|
3036
|
+
# Corresponds to the JSON property `searchQueryParameter`
|
3037
|
+
# @return [String]
|
3038
|
+
attr_accessor :search_query_parameter
|
3039
|
+
|
3040
|
+
# If enabled, capture a view search results event each time a visitor performs a
|
3041
|
+
# search on your site (based on a query parameter).
|
3042
|
+
# Corresponds to the JSON property `siteSearchEnabled`
|
3043
|
+
# @return [Boolean]
|
3044
|
+
attr_accessor :site_search_enabled
|
3045
|
+
alias_method :site_search_enabled?, :site_search_enabled
|
3046
|
+
|
3047
|
+
# Indicates whether Enhanced Measurement Settings will be used to automatically
|
3048
|
+
# measure interactions and content on this web stream. Changing this value does
|
3049
|
+
# not affect the settings themselves, but determines whether they are respected.
|
3050
|
+
# Corresponds to the JSON property `streamEnabled`
|
3051
|
+
# @return [Boolean]
|
3052
|
+
attr_accessor :stream_enabled
|
3053
|
+
alias_method :stream_enabled?, :stream_enabled
|
3054
|
+
|
3055
|
+
# Additional URL query parameters. Max length is 1024 characters.
|
3056
|
+
# Corresponds to the JSON property `uriQueryParameter`
|
3057
|
+
# @return [String]
|
3058
|
+
attr_accessor :uri_query_parameter
|
3059
|
+
|
3060
|
+
# If enabled, capture video play, progress, and complete events as visitors view
|
3061
|
+
# embedded videos on your site.
|
3062
|
+
# Corresponds to the JSON property `videoEngagementEnabled`
|
3063
|
+
# @return [Boolean]
|
3064
|
+
attr_accessor :video_engagement_enabled
|
3065
|
+
alias_method :video_engagement_enabled?, :video_engagement_enabled
|
3066
|
+
|
3067
|
+
def initialize(**args)
|
3068
|
+
update!(**args)
|
3069
|
+
end
|
3070
|
+
|
3071
|
+
# Update properties of this object
|
3072
|
+
def update!(**args)
|
3073
|
+
@file_downloads_enabled = args[:file_downloads_enabled] if args.key?(:file_downloads_enabled)
|
3074
|
+
@form_interactions_enabled = args[:form_interactions_enabled] if args.key?(:form_interactions_enabled)
|
3075
|
+
@name = args[:name] if args.key?(:name)
|
3076
|
+
@outbound_clicks_enabled = args[:outbound_clicks_enabled] if args.key?(:outbound_clicks_enabled)
|
3077
|
+
@page_changes_enabled = args[:page_changes_enabled] if args.key?(:page_changes_enabled)
|
3078
|
+
@scrolls_enabled = args[:scrolls_enabled] if args.key?(:scrolls_enabled)
|
3079
|
+
@search_query_parameter = args[:search_query_parameter] if args.key?(:search_query_parameter)
|
3080
|
+
@site_search_enabled = args[:site_search_enabled] if args.key?(:site_search_enabled)
|
3081
|
+
@stream_enabled = args[:stream_enabled] if args.key?(:stream_enabled)
|
3082
|
+
@uri_query_parameter = args[:uri_query_parameter] if args.key?(:uri_query_parameter)
|
3083
|
+
@video_engagement_enabled = args[:video_engagement_enabled] if args.key?(:video_engagement_enabled)
|
3084
|
+
end
|
3085
|
+
end
|
3086
|
+
|
2754
3087
|
# A resource message representing a GA4 ExpandedDataSet.
|
2755
3088
|
class GoogleAnalyticsAdminV1alphaExpandedDataSet
|
2756
3089
|
include Google::Apis::Core::Hashable
|
@@ -3154,6 +3487,31 @@ module Google
|
|
3154
3487
|
end
|
3155
3488
|
end
|
3156
3489
|
|
3490
|
+
# The rules that govern how traffic is grouped into one channel.
|
3491
|
+
class GoogleAnalyticsAdminV1alphaGroupingRule
|
3492
|
+
include Google::Apis::Core::Hashable
|
3493
|
+
|
3494
|
+
# Required. Customer defined display name for the channel.
|
3495
|
+
# Corresponds to the JSON property `displayName`
|
3496
|
+
# @return [String]
|
3497
|
+
attr_accessor :display_name
|
3498
|
+
|
3499
|
+
# A logical expression of Channel Group dimension filters.
|
3500
|
+
# Corresponds to the JSON property `expression`
|
3501
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpression]
|
3502
|
+
attr_accessor :expression
|
3503
|
+
|
3504
|
+
def initialize(**args)
|
3505
|
+
update!(**args)
|
3506
|
+
end
|
3507
|
+
|
3508
|
+
# Update properties of this object
|
3509
|
+
def update!(**args)
|
3510
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
3511
|
+
@expression = args[:expression] if args.key?(:expression)
|
3512
|
+
end
|
3513
|
+
end
|
3514
|
+
|
3157
3515
|
# Status information for a link proposal.
|
3158
3516
|
class GoogleAnalyticsAdminV1alphaLinkProposalStatusDetails
|
3159
3517
|
include Google::Apis::Core::Hashable
|
@@ -3316,28 +3674,39 @@ module Google
|
|
3316
3674
|
end
|
3317
3675
|
end
|
3318
3676
|
|
3319
|
-
#
|
3320
|
-
class
|
3677
|
+
# Response message for ListChannelGroups RPC.
|
3678
|
+
class GoogleAnalyticsAdminV1alphaListChannelGroupsResponse
|
3321
3679
|
include Google::Apis::Core::Hashable
|
3322
3680
|
|
3323
|
-
#
|
3324
|
-
#
|
3325
|
-
#
|
3326
|
-
|
3327
|
-
# Corresponds to the JSON property `pageSize`
|
3328
|
-
# @return [Fixnum]
|
3329
|
-
attr_accessor :page_size
|
3681
|
+
# List of ChannelGroup. These will be ordered stably, but in an arbitrary order.
|
3682
|
+
# Corresponds to the JSON property `channelGroups`
|
3683
|
+
# @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup>]
|
3684
|
+
attr_accessor :channel_groups
|
3330
3685
|
|
3331
|
-
# A
|
3332
|
-
#
|
3333
|
-
#
|
3334
|
-
# token.
|
3335
|
-
# Corresponds to the JSON property `pageToken`
|
3686
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
3687
|
+
# field is omitted, there are no subsequent pages.
|
3688
|
+
# Corresponds to the JSON property `nextPageToken`
|
3336
3689
|
# @return [String]
|
3337
|
-
attr_accessor :
|
3690
|
+
attr_accessor :next_page_token
|
3691
|
+
|
3692
|
+
def initialize(**args)
|
3693
|
+
update!(**args)
|
3694
|
+
end
|
3695
|
+
|
3696
|
+
# Update properties of this object
|
3697
|
+
def update!(**args)
|
3698
|
+
@channel_groups = args[:channel_groups] if args.key?(:channel_groups)
|
3699
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3700
|
+
end
|
3701
|
+
end
|
3702
|
+
|
3703
|
+
# Request message for ListConnectedSiteTags RPC.
|
3704
|
+
class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest
|
3705
|
+
include Google::Apis::Core::Hashable
|
3338
3706
|
|
3339
3707
|
# The Universal Analytics property to fetch connected site tags for. This does
|
3340
|
-
# not work on GA4 properties.
|
3708
|
+
# not work on GA4 properties. A maximum of 20 connected site tags will be
|
3709
|
+
# returned. Example Format: `properties/1234`
|
3341
3710
|
# Corresponds to the JSON property `property`
|
3342
3711
|
# @return [String]
|
3343
3712
|
attr_accessor :property
|
@@ -3348,8 +3717,6 @@ module Google
|
|
3348
3717
|
|
3349
3718
|
# Update properties of this object
|
3350
3719
|
def update!(**args)
|
3351
|
-
@page_size = args[:page_size] if args.key?(:page_size)
|
3352
|
-
@page_token = args[:page_token] if args.key?(:page_token)
|
3353
3720
|
@property = args[:property] if args.key?(:property)
|
3354
3721
|
end
|
3355
3722
|
end
|
@@ -3358,17 +3725,12 @@ module Google
|
|
3358
3725
|
class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsResponse
|
3359
3726
|
include Google::Apis::Core::Hashable
|
3360
3727
|
|
3361
|
-
# The site tags for the Universal Analytics property
|
3728
|
+
# The site tags for the Universal Analytics property. A maximum of 20 connected
|
3729
|
+
# site tags will be returned.
|
3362
3730
|
# Corresponds to the JSON property `connectedSiteTags`
|
3363
3731
|
# @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag>]
|
3364
3732
|
attr_accessor :connected_site_tags
|
3365
3733
|
|
3366
|
-
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
3367
|
-
# field is omitted, there are no subsequent pages.
|
3368
|
-
# Corresponds to the JSON property `nextPageToken`
|
3369
|
-
# @return [String]
|
3370
|
-
attr_accessor :next_page_token
|
3371
|
-
|
3372
3734
|
def initialize(**args)
|
3373
3735
|
update!(**args)
|
3374
3736
|
end
|
@@ -3376,7 +3738,6 @@ module Google
|
|
3376
3738
|
# Update properties of this object
|
3377
3739
|
def update!(**args)
|
3378
3740
|
@connected_site_tags = args[:connected_site_tags] if args.key?(:connected_site_tags)
|
3379
|
-
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
3380
3741
|
end
|
3381
3742
|
end
|
3382
3743
|
|
@@ -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.51.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230410"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -418,6 +418,42 @@ module Google
|
|
418
418
|
include Google::Apis::Core::JsonObjectSupport
|
419
419
|
end
|
420
420
|
|
421
|
+
class GoogleAnalyticsAdminV1alphaChannelGroup
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
427
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilter
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
433
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilterExpression
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
|
+
|
436
|
+
include Google::Apis::Core::JsonObjectSupport
|
437
|
+
end
|
438
|
+
|
439
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilterExpressionList
|
440
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
|
+
|
442
|
+
include Google::Apis::Core::JsonObjectSupport
|
443
|
+
end
|
444
|
+
|
445
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilterInListFilter
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
+
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
449
|
+
end
|
450
|
+
|
451
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilterStringFilter
|
452
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
|
+
|
454
|
+
include Google::Apis::Core::JsonObjectSupport
|
455
|
+
end
|
456
|
+
|
421
457
|
class GoogleAnalyticsAdminV1alphaConnectedSiteTag
|
422
458
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
459
|
|
@@ -436,6 +472,18 @@ module Google
|
|
436
472
|
include Google::Apis::Core::JsonObjectSupport
|
437
473
|
end
|
438
474
|
|
475
|
+
class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest
|
476
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
477
|
+
|
478
|
+
include Google::Apis::Core::JsonObjectSupport
|
479
|
+
end
|
480
|
+
|
481
|
+
class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse
|
482
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
|
+
|
484
|
+
include Google::Apis::Core::JsonObjectSupport
|
485
|
+
end
|
486
|
+
|
439
487
|
class GoogleAnalyticsAdminV1alphaCreateUserLinkRequest
|
440
488
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
489
|
|
@@ -520,6 +568,12 @@ module Google
|
|
520
568
|
include Google::Apis::Core::JsonObjectSupport
|
521
569
|
end
|
522
570
|
|
571
|
+
class GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings
|
572
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
573
|
+
|
574
|
+
include Google::Apis::Core::JsonObjectSupport
|
575
|
+
end
|
576
|
+
|
523
577
|
class GoogleAnalyticsAdminV1alphaExpandedDataSet
|
524
578
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
579
|
|
@@ -592,6 +646,12 @@ module Google
|
|
592
646
|
include Google::Apis::Core::JsonObjectSupport
|
593
647
|
end
|
594
648
|
|
649
|
+
class GoogleAnalyticsAdminV1alphaGroupingRule
|
650
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
651
|
+
|
652
|
+
include Google::Apis::Core::JsonObjectSupport
|
653
|
+
end
|
654
|
+
|
595
655
|
class GoogleAnalyticsAdminV1alphaLinkProposalStatusDetails
|
596
656
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
597
657
|
|
@@ -628,6 +688,12 @@ module Google
|
|
628
688
|
include Google::Apis::Core::JsonObjectSupport
|
629
689
|
end
|
630
690
|
|
691
|
+
class GoogleAnalyticsAdminV1alphaListChannelGroupsResponse
|
692
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
693
|
+
|
694
|
+
include Google::Apis::Core::JsonObjectSupport
|
695
|
+
end
|
696
|
+
|
631
697
|
class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest
|
632
698
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
633
699
|
|
@@ -1415,6 +1481,8 @@ module Google
|
|
1415
1481
|
|
1416
1482
|
property :bigquery_link, as: 'bigqueryLink', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink::Representation
|
1417
1483
|
|
1484
|
+
property :channel_group, as: 'channelGroup', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup::Representation
|
1485
|
+
|
1418
1486
|
property :conversion_event, as: 'conversionEvent', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent::Representation
|
1419
1487
|
|
1420
1488
|
property :custom_dimension, as: 'customDimension', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCustomDimension, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCustomDimension::Representation
|
@@ -1429,6 +1497,8 @@ module Google
|
|
1429
1497
|
|
1430
1498
|
property :display_video360_advertiser_link_proposal, as: 'displayVideo360AdvertiserLinkProposal', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal::Representation
|
1431
1499
|
|
1500
|
+
property :enhanced_measurement_settings, as: 'enhancedMeasurementSettings', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings::Representation
|
1501
|
+
|
1432
1502
|
property :expanded_data_set, as: 'expandedDataSet', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSet, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSet::Representation
|
1433
1503
|
|
1434
1504
|
property :firebase_link, as: 'firebaseLink', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFirebaseLink, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFirebaseLink::Representation
|
@@ -1459,6 +1529,66 @@ module Google
|
|
1459
1529
|
end
|
1460
1530
|
end
|
1461
1531
|
|
1532
|
+
class GoogleAnalyticsAdminV1alphaChannelGroup
|
1533
|
+
# @private
|
1534
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1535
|
+
property :description, as: 'description'
|
1536
|
+
property :display_name, as: 'displayName'
|
1537
|
+
collection :grouping_rule, as: 'groupingRule', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGroupingRule, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGroupingRule::Representation
|
1538
|
+
|
1539
|
+
property :name, as: 'name'
|
1540
|
+
property :system_defined, as: 'systemDefined'
|
1541
|
+
end
|
1542
|
+
end
|
1543
|
+
|
1544
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilter
|
1545
|
+
# @private
|
1546
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1547
|
+
property :field_name, as: 'fieldName'
|
1548
|
+
property :in_list_filter, as: 'inListFilter', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterInListFilter, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterInListFilter::Representation
|
1549
|
+
|
1550
|
+
property :string_filter, as: 'stringFilter', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterStringFilter, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterStringFilter::Representation
|
1551
|
+
|
1552
|
+
end
|
1553
|
+
end
|
1554
|
+
|
1555
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilterExpression
|
1556
|
+
# @private
|
1557
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1558
|
+
property :and_group, as: 'andGroup', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpressionList, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpressionList::Representation
|
1559
|
+
|
1560
|
+
property :filter, as: 'filter', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilter, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilter::Representation
|
1561
|
+
|
1562
|
+
property :not_expression, as: 'notExpression', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpression, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpression::Representation
|
1563
|
+
|
1564
|
+
property :or_group, as: 'orGroup', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpressionList, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpressionList::Representation
|
1565
|
+
|
1566
|
+
end
|
1567
|
+
end
|
1568
|
+
|
1569
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilterExpressionList
|
1570
|
+
# @private
|
1571
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1572
|
+
collection :filter_expressions, as: 'filterExpressions', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpression, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpression::Representation
|
1573
|
+
|
1574
|
+
end
|
1575
|
+
end
|
1576
|
+
|
1577
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilterInListFilter
|
1578
|
+
# @private
|
1579
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1580
|
+
collection :values, as: 'values'
|
1581
|
+
end
|
1582
|
+
end
|
1583
|
+
|
1584
|
+
class GoogleAnalyticsAdminV1alphaChannelGroupFilterStringFilter
|
1585
|
+
# @private
|
1586
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1587
|
+
property :match_type, as: 'matchType'
|
1588
|
+
property :value, as: 'value'
|
1589
|
+
end
|
1590
|
+
end
|
1591
|
+
|
1462
1592
|
class GoogleAnalyticsAdminV1alphaConnectedSiteTag
|
1463
1593
|
# @private
|
1464
1594
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1487,6 +1617,21 @@ module Google
|
|
1487
1617
|
end
|
1488
1618
|
end
|
1489
1619
|
|
1620
|
+
class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest
|
1621
|
+
# @private
|
1622
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1623
|
+
property :connected_site_tag, as: 'connectedSiteTag', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag::Representation
|
1624
|
+
|
1625
|
+
property :property, as: 'property'
|
1626
|
+
end
|
1627
|
+
end
|
1628
|
+
|
1629
|
+
class GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse
|
1630
|
+
# @private
|
1631
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1632
|
+
end
|
1633
|
+
end
|
1634
|
+
|
1490
1635
|
class GoogleAnalyticsAdminV1alphaCreateUserLinkRequest
|
1491
1636
|
# @private
|
1492
1637
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1634,6 +1779,23 @@ module Google
|
|
1634
1779
|
end
|
1635
1780
|
end
|
1636
1781
|
|
1782
|
+
class GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings
|
1783
|
+
# @private
|
1784
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1785
|
+
property :file_downloads_enabled, as: 'fileDownloadsEnabled'
|
1786
|
+
property :form_interactions_enabled, as: 'formInteractionsEnabled'
|
1787
|
+
property :name, as: 'name'
|
1788
|
+
property :outbound_clicks_enabled, as: 'outboundClicksEnabled'
|
1789
|
+
property :page_changes_enabled, as: 'pageChangesEnabled'
|
1790
|
+
property :scrolls_enabled, as: 'scrollsEnabled'
|
1791
|
+
property :search_query_parameter, as: 'searchQueryParameter'
|
1792
|
+
property :site_search_enabled, as: 'siteSearchEnabled'
|
1793
|
+
property :stream_enabled, as: 'streamEnabled'
|
1794
|
+
property :uri_query_parameter, as: 'uriQueryParameter'
|
1795
|
+
property :video_engagement_enabled, as: 'videoEngagementEnabled'
|
1796
|
+
end
|
1797
|
+
end
|
1798
|
+
|
1637
1799
|
class GoogleAnalyticsAdminV1alphaExpandedDataSet
|
1638
1800
|
# @private
|
1639
1801
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1749,6 +1911,15 @@ module Google
|
|
1749
1911
|
end
|
1750
1912
|
end
|
1751
1913
|
|
1914
|
+
class GoogleAnalyticsAdminV1alphaGroupingRule
|
1915
|
+
# @private
|
1916
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1917
|
+
property :display_name, as: 'displayName'
|
1918
|
+
property :expression, as: 'expression', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpression, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroupFilterExpression::Representation
|
1919
|
+
|
1920
|
+
end
|
1921
|
+
end
|
1922
|
+
|
1752
1923
|
class GoogleAnalyticsAdminV1alphaLinkProposalStatusDetails
|
1753
1924
|
# @private
|
1754
1925
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1803,11 +1974,18 @@ module Google
|
|
1803
1974
|
end
|
1804
1975
|
end
|
1805
1976
|
|
1977
|
+
class GoogleAnalyticsAdminV1alphaListChannelGroupsResponse
|
1978
|
+
# @private
|
1979
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1980
|
+
collection :channel_groups, as: 'channelGroups', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup::Representation
|
1981
|
+
|
1982
|
+
property :next_page_token, as: 'nextPageToken'
|
1983
|
+
end
|
1984
|
+
end
|
1985
|
+
|
1806
1986
|
class GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest
|
1807
1987
|
# @private
|
1808
1988
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1809
|
-
property :page_size, as: 'pageSize'
|
1810
|
-
property :page_token, as: 'pageToken'
|
1811
1989
|
property :property, as: 'property'
|
1812
1990
|
end
|
1813
1991
|
end
|
@@ -1817,7 +1995,6 @@ module Google
|
|
1817
1995
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1818
1996
|
collection :connected_site_tags, as: 'connectedSiteTags', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConnectedSiteTag::Representation
|
1819
1997
|
|
1820
|
-
property :next_page_token, as: 'nextPageToken'
|
1821
1998
|
end
|
1822
1999
|
end
|
1823
2000
|
|
@@ -422,9 +422,10 @@ module Google
|
|
422
422
|
|
423
423
|
# Deletes information about multiple users' links to an account or property.
|
424
424
|
# @param [String] parent
|
425
|
-
# Required. The account or property that owns the access bindings. The parent
|
426
|
-
#
|
427
|
-
# this field. Formats: - accounts/`account` - properties/`
|
425
|
+
# Required. The account or property that owns the access bindings. The parent of
|
426
|
+
# all provided values for the 'names' field in DeleteAccessBindingRequest
|
427
|
+
# messages must match this field. Formats: - accounts/`account` - properties/`
|
428
|
+
# property`
|
428
429
|
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBatchDeleteAccessBindingsRequest] google_analytics_admin_v1alpha_batch_delete_access_bindings_request_object
|
429
430
|
# @param [String] fields
|
430
431
|
# Selector specifying which fields to include in a partial response.
|
@@ -495,8 +496,8 @@ module Google
|
|
495
496
|
|
496
497
|
# Updates information about multiple access bindings to an account or property.
|
497
498
|
# @param [String] parent
|
498
|
-
# Required. The account or property that owns the access bindings. The parent
|
499
|
-
#
|
499
|
+
# Required. The account or property that owns the access bindings. The parent of
|
500
|
+
# all provided AccessBinding in UpdateAccessBindingRequest messages must match
|
500
501
|
# this field. Formats: - accounts/`account` - properties/`property`
|
501
502
|
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBatchUpdateAccessBindingsRequest] google_analytics_admin_v1alpha_batch_update_access_bindings_request_object
|
502
503
|
# @param [String] fields
|
@@ -1120,6 +1121,38 @@ module Google
|
|
1120
1121
|
execute_or_queue_command(command, &block)
|
1121
1122
|
end
|
1122
1123
|
|
1124
|
+
# Creates a connected site tag for a Universal Analytics property. You can
|
1125
|
+
# create a maximum of 20 connected site tags per property. Note: This API cannot
|
1126
|
+
# be used on GA4 properties.
|
1127
|
+
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest] google_analytics_admin_v1alpha_create_connected_site_tag_request_object
|
1128
|
+
# @param [String] fields
|
1129
|
+
# Selector specifying which fields to include in a partial response.
|
1130
|
+
# @param [String] quota_user
|
1131
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1132
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1133
|
+
# @param [Google::Apis::RequestOptions] options
|
1134
|
+
# Request-specific options
|
1135
|
+
#
|
1136
|
+
# @yield [result, err] Result & error if block supplied
|
1137
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse] parsed result object
|
1138
|
+
# @yieldparam err [StandardError] error object if request failed
|
1139
|
+
#
|
1140
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse]
|
1141
|
+
#
|
1142
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1143
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1144
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1145
|
+
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)
|
1146
|
+
command = make_simple_command(:post, 'v1alpha/properties:createConnectedSiteTag', options)
|
1147
|
+
command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagRequest::Representation
|
1148
|
+
command.request_object = google_analytics_admin_v1alpha_create_connected_site_tag_request_object
|
1149
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse::Representation
|
1150
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCreateConnectedSiteTagResponse
|
1151
|
+
command.query['fields'] = fields unless fields.nil?
|
1152
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1153
|
+
execute_or_queue_command(command, &block)
|
1154
|
+
end
|
1155
|
+
|
1123
1156
|
# Marks target Property as soft-deleted (ie: "trashed") and returns it. This API
|
1124
1157
|
# does not have a method to restore soft-deleted properties. However, they can
|
1125
1158
|
# be restored using the Trash Can UI. If the properties are not restored before
|
@@ -1400,8 +1433,9 @@ module Google
|
|
1400
1433
|
execute_or_queue_command(command, &block)
|
1401
1434
|
end
|
1402
1435
|
|
1403
|
-
# Lists the connected site tags for a Universal Analytics property.
|
1404
|
-
# has no effect on GA4
|
1436
|
+
# Lists the connected site tags for a Universal Analytics property. A maximum of
|
1437
|
+
# 20 connected site tags will be returned. Note: this has no effect on GA4
|
1438
|
+
# property.
|
1405
1439
|
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListConnectedSiteTagsRequest] google_analytics_admin_v1alpha_list_connected_site_tags_request_object
|
1406
1440
|
# @param [String] fields
|
1407
1441
|
# Selector specifying which fields to include in a partial response.
|
@@ -1706,9 +1740,10 @@ module Google
|
|
1706
1740
|
|
1707
1741
|
# Deletes information about multiple users' links to an account or property.
|
1708
1742
|
# @param [String] parent
|
1709
|
-
# Required. The account or property that owns the access bindings. The parent
|
1710
|
-
#
|
1711
|
-
# this field. Formats: - accounts/`account` - properties/`
|
1743
|
+
# Required. The account or property that owns the access bindings. The parent of
|
1744
|
+
# all provided values for the 'names' field in DeleteAccessBindingRequest
|
1745
|
+
# messages must match this field. Formats: - accounts/`account` - properties/`
|
1746
|
+
# property`
|
1712
1747
|
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBatchDeleteAccessBindingsRequest] google_analytics_admin_v1alpha_batch_delete_access_bindings_request_object
|
1713
1748
|
# @param [String] fields
|
1714
1749
|
# Selector specifying which fields to include in a partial response.
|
@@ -1779,8 +1814,8 @@ module Google
|
|
1779
1814
|
|
1780
1815
|
# Updates information about multiple access bindings to an account or property.
|
1781
1816
|
# @param [String] parent
|
1782
|
-
# Required. The account or property that owns the access bindings. The parent
|
1783
|
-
#
|
1817
|
+
# Required. The account or property that owns the access bindings. The parent of
|
1818
|
+
# all provided AccessBinding in UpdateAccessBindingRequest messages must match
|
1784
1819
|
# this field. Formats: - accounts/`account` - properties/`property`
|
1785
1820
|
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBatchUpdateAccessBindingsRequest] google_analytics_admin_v1alpha_batch_update_access_bindings_request_object
|
1786
1821
|
# @param [String] fields
|
@@ -2237,6 +2272,183 @@ module Google
|
|
2237
2272
|
execute_or_queue_command(command, &block)
|
2238
2273
|
end
|
2239
2274
|
|
2275
|
+
# Creates a ChannelGroup.
|
2276
|
+
# @param [String] parent
|
2277
|
+
# Required. The property for which to create a ChannelGroup. Example format:
|
2278
|
+
# properties/1234
|
2279
|
+
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup] google_analytics_admin_v1alpha_channel_group_object
|
2280
|
+
# @param [String] fields
|
2281
|
+
# Selector specifying which fields to include in a partial response.
|
2282
|
+
# @param [String] quota_user
|
2283
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2284
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2285
|
+
# @param [Google::Apis::RequestOptions] options
|
2286
|
+
# Request-specific options
|
2287
|
+
#
|
2288
|
+
# @yield [result, err] Result & error if block supplied
|
2289
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup] parsed result object
|
2290
|
+
# @yieldparam err [StandardError] error object if request failed
|
2291
|
+
#
|
2292
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup]
|
2293
|
+
#
|
2294
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2295
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2296
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2297
|
+
def create_property_channel_group(parent, google_analytics_admin_v1alpha_channel_group_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
2298
|
+
command = make_simple_command(:post, 'v1alpha/{+parent}/channelGroups', options)
|
2299
|
+
command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup::Representation
|
2300
|
+
command.request_object = google_analytics_admin_v1alpha_channel_group_object
|
2301
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup::Representation
|
2302
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup
|
2303
|
+
command.params['parent'] = parent unless parent.nil?
|
2304
|
+
command.query['fields'] = fields unless fields.nil?
|
2305
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2306
|
+
execute_or_queue_command(command, &block)
|
2307
|
+
end
|
2308
|
+
|
2309
|
+
# Deletes a ChannelGroup on a property.
|
2310
|
+
# @param [String] name
|
2311
|
+
# Required. The ChannelGroup to delete. Example format: properties/1234/
|
2312
|
+
# channelGroups/5678
|
2313
|
+
# @param [String] fields
|
2314
|
+
# Selector specifying which fields to include in a partial response.
|
2315
|
+
# @param [String] quota_user
|
2316
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2317
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2318
|
+
# @param [Google::Apis::RequestOptions] options
|
2319
|
+
# Request-specific options
|
2320
|
+
#
|
2321
|
+
# @yield [result, err] Result & error if block supplied
|
2322
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty] parsed result object
|
2323
|
+
# @yieldparam err [StandardError] error object if request failed
|
2324
|
+
#
|
2325
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty]
|
2326
|
+
#
|
2327
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2328
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2329
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2330
|
+
def delete_property_channel_group(name, fields: nil, quota_user: nil, options: nil, &block)
|
2331
|
+
command = make_simple_command(:delete, 'v1alpha/{+name}', options)
|
2332
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty::Representation
|
2333
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty
|
2334
|
+
command.params['name'] = name unless name.nil?
|
2335
|
+
command.query['fields'] = fields unless fields.nil?
|
2336
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2337
|
+
execute_or_queue_command(command, &block)
|
2338
|
+
end
|
2339
|
+
|
2340
|
+
# Lookup for a single ChannelGroup.
|
2341
|
+
# @param [String] name
|
2342
|
+
# Required. The ChannelGroup to get. Example format: properties/1234/
|
2343
|
+
# channelGroups/5678
|
2344
|
+
# @param [String] fields
|
2345
|
+
# Selector specifying which fields to include in a partial response.
|
2346
|
+
# @param [String] quota_user
|
2347
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2348
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2349
|
+
# @param [Google::Apis::RequestOptions] options
|
2350
|
+
# Request-specific options
|
2351
|
+
#
|
2352
|
+
# @yield [result, err] Result & error if block supplied
|
2353
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup] parsed result object
|
2354
|
+
# @yieldparam err [StandardError] error object if request failed
|
2355
|
+
#
|
2356
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup]
|
2357
|
+
#
|
2358
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2359
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2360
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2361
|
+
def get_property_channel_group(name, fields: nil, quota_user: nil, options: nil, &block)
|
2362
|
+
command = make_simple_command(:get, 'v1alpha/{+name}', options)
|
2363
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup::Representation
|
2364
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup
|
2365
|
+
command.params['name'] = name unless name.nil?
|
2366
|
+
command.query['fields'] = fields unless fields.nil?
|
2367
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2368
|
+
execute_or_queue_command(command, &block)
|
2369
|
+
end
|
2370
|
+
|
2371
|
+
# Lists ChannelGroups on a property.
|
2372
|
+
# @param [String] parent
|
2373
|
+
# Required. The property for which to list ChannelGroups. Example format:
|
2374
|
+
# properties/1234
|
2375
|
+
# @param [Fixnum] page_size
|
2376
|
+
# The maximum number of resources to return. If unspecified, at most 50
|
2377
|
+
# resources will be returned. The maximum value is 200 (higher values will be
|
2378
|
+
# coerced to the maximum).
|
2379
|
+
# @param [String] page_token
|
2380
|
+
# A page token, received from a previous `ListChannelGroups` call. Provide this
|
2381
|
+
# to retrieve the subsequent page. When paginating, all other parameters
|
2382
|
+
# provided to `ListChannelGroups` must match the call that provided the page
|
2383
|
+
# token.
|
2384
|
+
# @param [String] fields
|
2385
|
+
# Selector specifying which fields to include in a partial response.
|
2386
|
+
# @param [String] quota_user
|
2387
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2388
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2389
|
+
# @param [Google::Apis::RequestOptions] options
|
2390
|
+
# Request-specific options
|
2391
|
+
#
|
2392
|
+
# @yield [result, err] Result & error if block supplied
|
2393
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListChannelGroupsResponse] parsed result object
|
2394
|
+
# @yieldparam err [StandardError] error object if request failed
|
2395
|
+
#
|
2396
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListChannelGroupsResponse]
|
2397
|
+
#
|
2398
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2399
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2400
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2401
|
+
def list_property_channel_groups(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2402
|
+
command = make_simple_command(:get, 'v1alpha/{+parent}/channelGroups', options)
|
2403
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListChannelGroupsResponse::Representation
|
2404
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListChannelGroupsResponse
|
2405
|
+
command.params['parent'] = parent unless parent.nil?
|
2406
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
2407
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
2408
|
+
command.query['fields'] = fields unless fields.nil?
|
2409
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2410
|
+
execute_or_queue_command(command, &block)
|
2411
|
+
end
|
2412
|
+
|
2413
|
+
# Updates a ChannelGroup.
|
2414
|
+
# @param [String] name
|
2415
|
+
# Output only. The resource name for this Channel Group resource. Format:
|
2416
|
+
# properties/`property`/channelGroups/`channel_group`
|
2417
|
+
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup] google_analytics_admin_v1alpha_channel_group_object
|
2418
|
+
# @param [String] update_mask
|
2419
|
+
# Required. The list of fields to be updated. Field names must be in snake case (
|
2420
|
+
# e.g., "field_to_update"). Omitted fields will not be updated. To replace the
|
2421
|
+
# entire entity, use one path with the string "*" to match all fields.
|
2422
|
+
# @param [String] fields
|
2423
|
+
# Selector specifying which fields to include in a partial response.
|
2424
|
+
# @param [String] quota_user
|
2425
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2426
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2427
|
+
# @param [Google::Apis::RequestOptions] options
|
2428
|
+
# Request-specific options
|
2429
|
+
#
|
2430
|
+
# @yield [result, err] Result & error if block supplied
|
2431
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup] parsed result object
|
2432
|
+
# @yieldparam err [StandardError] error object if request failed
|
2433
|
+
#
|
2434
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup]
|
2435
|
+
#
|
2436
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2437
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2438
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2439
|
+
def patch_property_channel_group(name, google_analytics_admin_v1alpha_channel_group_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2440
|
+
command = make_simple_command(:patch, 'v1alpha/{+name}', options)
|
2441
|
+
command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup::Representation
|
2442
|
+
command.request_object = google_analytics_admin_v1alpha_channel_group_object
|
2443
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup::Representation
|
2444
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChannelGroup
|
2445
|
+
command.params['name'] = name unless name.nil?
|
2446
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
2447
|
+
command.query['fields'] = fields unless fields.nil?
|
2448
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2449
|
+
execute_or_queue_command(command, &block)
|
2450
|
+
end
|
2451
|
+
|
2240
2452
|
# Creates a conversion event with the specified attributes.
|
2241
2453
|
# @param [String] parent
|
2242
2454
|
# Required. The resource name of the parent property where this conversion event
|
@@ -2828,6 +3040,39 @@ module Google
|
|
2828
3040
|
execute_or_queue_command(command, &block)
|
2829
3041
|
end
|
2830
3042
|
|
3043
|
+
# Returns the enhanced measurement settings for this data stream. Note that the
|
3044
|
+
# stream must enable enhanced measurement for these settings to take effect.
|
3045
|
+
# @param [String] name
|
3046
|
+
# Required. The name of the settings to lookup. Format: properties/`property`/
|
3047
|
+
# dataStreams/`data_stream`/enhancedMeasurementSettings Example: "properties/
|
3048
|
+
# 1000/dataStreams/2000/enhancedMeasurementSettings"
|
3049
|
+
# @param [String] fields
|
3050
|
+
# Selector specifying which fields to include in a partial response.
|
3051
|
+
# @param [String] quota_user
|
3052
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3053
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3054
|
+
# @param [Google::Apis::RequestOptions] options
|
3055
|
+
# Request-specific options
|
3056
|
+
#
|
3057
|
+
# @yield [result, err] Result & error if block supplied
|
3058
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings] parsed result object
|
3059
|
+
# @yieldparam err [StandardError] error object if request failed
|
3060
|
+
#
|
3061
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings]
|
3062
|
+
#
|
3063
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3064
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3065
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3066
|
+
def get_property_data_stream_enhanced_measurement_settings(name, fields: nil, quota_user: nil, options: nil, &block)
|
3067
|
+
command = make_simple_command(:get, 'v1alpha/{+name}', options)
|
3068
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings::Representation
|
3069
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings
|
3070
|
+
command.params['name'] = name unless name.nil?
|
3071
|
+
command.query['fields'] = fields unless fields.nil?
|
3072
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3073
|
+
execute_or_queue_command(command, &block)
|
3074
|
+
end
|
3075
|
+
|
2831
3076
|
# Returns the Site Tag for the specified web stream. Site Tags are immutable
|
2832
3077
|
# singletons.
|
2833
3078
|
# @param [String] name
|
@@ -2942,6 +3187,47 @@ module Google
|
|
2942
3187
|
execute_or_queue_command(command, &block)
|
2943
3188
|
end
|
2944
3189
|
|
3190
|
+
# Updates the enhanced measurement settings for this data stream. Note that the
|
3191
|
+
# stream must enable enhanced measurement for these settings to take effect.
|
3192
|
+
# @param [String] name
|
3193
|
+
# Output only. Resource name of the Enhanced Measurement Settings. Format:
|
3194
|
+
# properties/`property_id`/dataStreams/`data_stream`/enhancedMeasurementSettings
|
3195
|
+
# Example: "properties/1000/dataStreams/2000/enhancedMeasurementSettings"
|
3196
|
+
# @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings] google_analytics_admin_v1alpha_enhanced_measurement_settings_object
|
3197
|
+
# @param [String] update_mask
|
3198
|
+
# Required. The list of fields to be updated. Field names must be in snake case (
|
3199
|
+
# e.g., "field_to_update"). Omitted fields will not be updated. To replace the
|
3200
|
+
# entire entity, use one path with the string "*" to match all fields.
|
3201
|
+
# @param [String] fields
|
3202
|
+
# Selector specifying which fields to include in a partial response.
|
3203
|
+
# @param [String] quota_user
|
3204
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3205
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3206
|
+
# @param [Google::Apis::RequestOptions] options
|
3207
|
+
# Request-specific options
|
3208
|
+
#
|
3209
|
+
# @yield [result, err] Result & error if block supplied
|
3210
|
+
# @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings] parsed result object
|
3211
|
+
# @yieldparam err [StandardError] error object if request failed
|
3212
|
+
#
|
3213
|
+
# @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings]
|
3214
|
+
#
|
3215
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3216
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3217
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3218
|
+
def update_property_data_stream_enhanced_measurement_settings(name, google_analytics_admin_v1alpha_enhanced_measurement_settings_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3219
|
+
command = make_simple_command(:patch, 'v1alpha/{+name}', options)
|
3220
|
+
command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings::Representation
|
3221
|
+
command.request_object = google_analytics_admin_v1alpha_enhanced_measurement_settings_object
|
3222
|
+
command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings::Representation
|
3223
|
+
command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEnhancedMeasurementSettings
|
3224
|
+
command.params['name'] = name unless name.nil?
|
3225
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
3226
|
+
command.query['fields'] = fields unless fields.nil?
|
3227
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3228
|
+
execute_or_queue_command(command, &block)
|
3229
|
+
end
|
3230
|
+
|
2945
3231
|
# Creates a measurement protocol secret.
|
2946
3232
|
# @param [String] parent
|
2947
3233
|
# Required. The parent resource where this secret will be created. Format:
|
@@ -3576,8 +3862,8 @@ module Google
|
|
3576
3862
|
|
3577
3863
|
# Lookup for a single ExpandedDataSet.
|
3578
3864
|
# @param [String] name
|
3579
|
-
# Required. The name of the
|
3580
|
-
# expandedDataSets/5678
|
3865
|
+
# Required. The name of the ExpandedDataSet to get. Example format: properties/
|
3866
|
+
# 1234/expandedDataSets/5678
|
3581
3867
|
# @param [String] fields
|
3582
3868
|
# Selector specifying which fields to include in a partial response.
|
3583
3869
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.51.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.51.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|