google-analytics-admin-v1alpha 0.16.0 → 0.17.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/README.md +2 -2
- data/lib/google/analytics/admin/v1alpha/analytics_admin_pb.rb +30 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/client.rb +490 -11
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/paths.rb +17 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/client.rb +399 -11
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/service_stub.rb +301 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_services_pb.rb +19 -0
- data/lib/google/analytics/admin/v1alpha/resources_pb.rb +22 -0
- data/lib/google/analytics/admin/v1alpha/version.rb +1 -1
- data/proto_docs/google/analytics/admin/v1alpha/analytics_admin.rb +105 -10
- data/proto_docs/google/analytics/admin/v1alpha/resources.rb +84 -6
- data/proto_docs/google/api/client.rb +9 -3
- metadata +2 -2
@@ -59,7 +59,7 @@ module Google
|
|
59
59
|
# Immutable. The property type for this Property resource. When creating a
|
60
60
|
# property, if the type is "PROPERTY_TYPE_UNSPECIFIED", then
|
61
61
|
# "ORDINARY_PROPERTY" will be implied. "SUBPROPERTY" and "ROLLUP_PROPERTY"
|
62
|
-
# types cannot yet be created
|
62
|
+
# types cannot yet be created with the Google Analytics Admin API.
|
63
63
|
# @!attribute [r] create_time
|
64
64
|
# @return [::Google::Protobuf::Timestamp]
|
65
65
|
# Output only. Time when the entity was originally created.
|
@@ -552,6 +552,9 @@ module Google
|
|
552
552
|
# @!attribute [rw] bigquery_link
|
553
553
|
# @return [::Google::Analytics::Admin::V1alpha::BigQueryLink]
|
554
554
|
# A snapshot of a BigQuery link resource in change history.
|
555
|
+
# @!attribute [rw] enhanced_measurement_settings
|
556
|
+
# @return [::Google::Analytics::Admin::V1alpha::EnhancedMeasurementSettings]
|
557
|
+
# A snapshot of EnhancedMeasurementSettings resource in change history.
|
555
558
|
class ChangeHistoryResource
|
556
559
|
include ::Google::Protobuf::MessageExts
|
557
560
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -713,7 +716,7 @@ module Google
|
|
713
716
|
# Output only. Time when this conversion event was created in the property.
|
714
717
|
# @!attribute [r] deletable
|
715
718
|
# @return [::Boolean]
|
716
|
-
# Output only. If set, this event can currently be deleted
|
719
|
+
# Output only. If set, this event can currently be deleted with
|
717
720
|
# DeleteConversionEvent.
|
718
721
|
# @!attribute [r] custom
|
719
722
|
# @return [::Boolean]
|
@@ -1094,6 +1097,9 @@ module Google
|
|
1094
1097
|
# @!attribute [rw] streaming_export_enabled
|
1095
1098
|
# @return [::Boolean]
|
1096
1099
|
# If set true, enables streaming export to the linked Google Cloud project.
|
1100
|
+
# @!attribute [rw] intraday_export_enabled
|
1101
|
+
# @return [::Boolean]
|
1102
|
+
# If set true, enables intraday export to the linked Google Cloud project.
|
1097
1103
|
# @!attribute [rw] include_advertising_id
|
1098
1104
|
# @return [::Boolean]
|
1099
1105
|
# If set true, exported data will include advertising identifiers for mobile
|
@@ -1112,6 +1118,77 @@ module Google
|
|
1112
1118
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1113
1119
|
end
|
1114
1120
|
|
1121
|
+
# Singleton resource under a WebDataStream, configuring measurement of
|
1122
|
+
# additional site interactions and content.
|
1123
|
+
# @!attribute [r] name
|
1124
|
+
# @return [::String]
|
1125
|
+
# Output only. Resource name of the Enhanced Measurement Settings.
|
1126
|
+
# Format:
|
1127
|
+
# properties/\\{property_id}/dataStreams/\\{data_stream}/enhancedMeasurementSettings
|
1128
|
+
# Example: "properties/1000/dataStreams/2000/enhancedMeasurementSettings"
|
1129
|
+
# @!attribute [rw] stream_enabled
|
1130
|
+
# @return [::Boolean]
|
1131
|
+
# Indicates whether Enhanced Measurement Settings will be used to
|
1132
|
+
# automatically measure interactions and content on this web stream.
|
1133
|
+
#
|
1134
|
+
# Changing this value does not affect the settings themselves, but determines
|
1135
|
+
# whether they are respected.
|
1136
|
+
# @!attribute [rw] scrolls_enabled
|
1137
|
+
# @return [::Boolean]
|
1138
|
+
# If enabled, capture scroll events each time a visitor gets to the bottom of
|
1139
|
+
# a page.
|
1140
|
+
# @!attribute [rw] outbound_clicks_enabled
|
1141
|
+
# @return [::Boolean]
|
1142
|
+
# If enabled, capture an outbound click event each time a visitor clicks a
|
1143
|
+
# link that leads them away from your domain.
|
1144
|
+
# @!attribute [rw] site_search_enabled
|
1145
|
+
# @return [::Boolean]
|
1146
|
+
# If enabled, capture a view search results event each time a visitor
|
1147
|
+
# performs a search on your site (based on a query parameter).
|
1148
|
+
# @!attribute [rw] video_engagement_enabled
|
1149
|
+
# @return [::Boolean]
|
1150
|
+
# If enabled, capture video play, progress, and complete events as visitors
|
1151
|
+
# view embedded videos on your site.
|
1152
|
+
# @!attribute [rw] file_downloads_enabled
|
1153
|
+
# @return [::Boolean]
|
1154
|
+
# If enabled, capture a file download event each time a link is clicked with
|
1155
|
+
# a common document, compressed file, application, video, or audio extension.
|
1156
|
+
# @!attribute [rw] page_changes_enabled
|
1157
|
+
# @return [::Boolean]
|
1158
|
+
# If enabled, capture a page view event each time the website changes the
|
1159
|
+
# browser history state.
|
1160
|
+
# @!attribute [rw] form_interactions_enabled
|
1161
|
+
# @return [::Boolean]
|
1162
|
+
# If enabled, capture a form interaction event each time a visitor interacts
|
1163
|
+
# with a form on your website.
|
1164
|
+
# False by default.
|
1165
|
+
# @!attribute [rw] search_query_parameter
|
1166
|
+
# @return [::String]
|
1167
|
+
# Required. URL query parameters to interpret as site search parameters.
|
1168
|
+
# Max length is 1024 characters. Must not be empty.
|
1169
|
+
# @!attribute [rw] uri_query_parameter
|
1170
|
+
# @return [::String]
|
1171
|
+
# Additional URL query parameters.
|
1172
|
+
# Max length is 1024 characters.
|
1173
|
+
class EnhancedMeasurementSettings
|
1174
|
+
include ::Google::Protobuf::MessageExts
|
1175
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1176
|
+
end
|
1177
|
+
|
1178
|
+
# Configuration for a specific Connected Site Tag.
|
1179
|
+
# @!attribute [rw] display_name
|
1180
|
+
# @return [::String]
|
1181
|
+
# Required. User-provided display name for the connected site tag. Must be
|
1182
|
+
# less than 256 characters.
|
1183
|
+
# @!attribute [rw] tag_id
|
1184
|
+
# @return [::String]
|
1185
|
+
# Required. "Tag ID to forward events to. Also known as the Measurement ID,
|
1186
|
+
# or the "G-ID" (For example: G-12345).
|
1187
|
+
class ConnectedSiteTag
|
1188
|
+
include ::Google::Protobuf::MessageExts
|
1189
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1190
|
+
end
|
1191
|
+
|
1115
1192
|
# The category selected for this property, used for industry benchmarking.
|
1116
1193
|
module IndustryCategory
|
1117
1194
|
# Industry category unspecified
|
@@ -1294,10 +1371,12 @@ module Google
|
|
1294
1371
|
|
1295
1372
|
# ChannelGroup resource
|
1296
1373
|
CHANNEL_GROUP = 22
|
1374
|
+
|
1375
|
+
# EnhancedMeasurementSettings resource
|
1376
|
+
ENHANCED_MEASUREMENT_SETTINGS = 24
|
1297
1377
|
end
|
1298
1378
|
|
1299
|
-
# Status of the Google Signals settings
|
1300
|
-
# enabled for the property).
|
1379
|
+
# Status of the Google Signals settings.
|
1301
1380
|
module GoogleSignalsState
|
1302
1381
|
# Google Signals status defaults to GOOGLE_SIGNALS_STATE_UNSPECIFIED to
|
1303
1382
|
# represent that the user has not made an explicit choice.
|
@@ -1310,8 +1389,7 @@ module Google
|
|
1310
1389
|
GOOGLE_SIGNALS_DISABLED = 2
|
1311
1390
|
end
|
1312
1391
|
|
1313
|
-
# Consent field of the Google Signals settings
|
1314
|
-
# consented to the Google Signals terms of service.)
|
1392
|
+
# Consent field of the Google Signals settings.
|
1315
1393
|
module GoogleSignalsConsent
|
1316
1394
|
# Google Signals consent value defaults to
|
1317
1395
|
# GOOGLE_SIGNALS_CONSENT_UNSPECIFIED. This will be treated as
|
@@ -35,7 +35,9 @@ module Google
|
|
35
35
|
# Details about how and where to publish client libraries.
|
36
36
|
# @!attribute [rw] version
|
37
37
|
# @return [::String]
|
38
|
-
# Version of the API to apply these settings to.
|
38
|
+
# Version of the API to apply these settings to. This is the full protobuf
|
39
|
+
# package for the API, ending in the version element.
|
40
|
+
# Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
|
39
41
|
# @!attribute [rw] launch_stage
|
40
42
|
# @return [::Google::Api::LaunchStage]
|
41
43
|
# Launch stage of this version of the API.
|
@@ -111,6 +113,10 @@ module Google
|
|
111
113
|
# Client library settings. If the same version string appears multiple
|
112
114
|
# times in this list, then the last one wins. Settings from earlier
|
113
115
|
# settings with the same version string are discarded.
|
116
|
+
# @!attribute [rw] proto_reference_documentation_uri
|
117
|
+
# @return [::String]
|
118
|
+
# Optional link to proto reference documentation. Example:
|
119
|
+
# https://cloud.google.com/pubsub/lite/docs/reference/rpc
|
114
120
|
class Publishing
|
115
121
|
include ::Google::Protobuf::MessageExts
|
116
122
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -240,8 +246,8 @@ module Google
|
|
240
246
|
# Example of a YAML configuration::
|
241
247
|
#
|
242
248
|
# publishing:
|
243
|
-
#
|
244
|
-
# - selector:
|
249
|
+
# method_settings:
|
250
|
+
# - selector: google.cloud.speech.v2.Speech.BatchRecognize
|
245
251
|
# long_running:
|
246
252
|
# initial_poll_delay:
|
247
253
|
# seconds: 60 # 1 minute
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-analytics-admin-v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.17.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-03-
|
11
|
+
date: 2023-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|