google-apis-playdeveloperreporting_v1alpha1 0.35.0 → 0.37.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 +9 -0
- data/lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb +233 -204
- data/lib/google/apis/playdeveloperreporting_v1alpha1/gem_version.rb +3 -3
- data/lib/google/apis/playdeveloperreporting_v1alpha1/representations.rb +14 -0
- data/lib/google/apis/playdeveloperreporting_v1alpha1/service.rb +74 -73
- 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: c639a2711c0c47a3aa73fdbc078f509ea2734f8686566a00799036085b8392b6
|
|
4
|
+
data.tar.gz: c7233819fc76489a1d6b9496a790b54f6f7c86c38b537dc5f6ef65f2dc08dd49
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 456f72f64a35ee4d8a51ed395df7a54dd0e3d0a8351ce4371f3245922ed76ab3962b843efe0137695a3d337847f417657e1f9fa361a8d086307be2b40bbd48dd
|
|
7
|
+
data.tar.gz: 17ea658e3a825bb720082af1915d37e5af41a6dcf9ea18cad49c75107d33b97aba4c6d986a88568130a230652b6a3602c0f03697e324f3a343dac1ca5621164e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-playdeveloperreporting_v1alpha1
|
|
2
2
|
|
|
3
|
+
### v0.37.0 (2026-03-01)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260222
|
|
6
|
+
|
|
7
|
+
### v0.36.0 (2026-02-08)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260201
|
|
10
|
+
* Regenerated using generator version 0.18.0
|
|
11
|
+
|
|
3
12
|
### v0.35.0 (2025-05-04)
|
|
4
13
|
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
|
@@ -22,6 +22,34 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module PlaydeveloperreportingV1alpha1
|
|
24
24
|
|
|
25
|
+
# Profile describing the data handling characteristics of an MCP tool. When used
|
|
26
|
+
# within the McpTool.meta field, this message should be packed into a google.
|
|
27
|
+
# protobuf.Any and associated with the key: "google.com/tool.profiles/
|
|
28
|
+
# data_handling"
|
|
29
|
+
class ApiservingMcpMcpToolDataHandlingProfile
|
|
30
|
+
include Google::Apis::Core::Hashable
|
|
31
|
+
|
|
32
|
+
# // The data access level of the tool's inputs.
|
|
33
|
+
# Corresponds to the JSON property `inputDataAccessLevel`
|
|
34
|
+
# @return [String]
|
|
35
|
+
attr_accessor :input_data_access_level
|
|
36
|
+
|
|
37
|
+
# The data access level of the tool's outputs.
|
|
38
|
+
# Corresponds to the JSON property `outputDataAccessLevel`
|
|
39
|
+
# @return [String]
|
|
40
|
+
attr_accessor :output_data_access_level
|
|
41
|
+
|
|
42
|
+
def initialize(**args)
|
|
43
|
+
update!(**args)
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# Update properties of this object
|
|
47
|
+
def update!(**args)
|
|
48
|
+
@input_data_access_level = args[:input_data_access_level] if args.key?(:input_data_access_level)
|
|
49
|
+
@output_data_access_level = args[:output_data_access_level] if args.key?(:output_data_access_level)
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
25
53
|
# Represents an anomaly detected in a dataset. Our anomaly detection systems
|
|
26
54
|
# flag datapoints in a time series that fall outside of and expected range
|
|
27
55
|
# derived from historical data. Although those expected ranges have an upper and
|
|
@@ -212,7 +240,7 @@ module Google
|
|
|
212
240
|
class GooglePlayDeveloperReportingV1alpha1AppVersion
|
|
213
241
|
include Google::Apis::Core::Hashable
|
|
214
242
|
|
|
215
|
-
# Numeric version code of the app version (set by the app's developer).
|
|
243
|
+
# Optional. Numeric version code of the app version (set by the app's developer).
|
|
216
244
|
# Corresponds to the JSON property `versionCode`
|
|
217
245
|
# @return [Fixnum]
|
|
218
246
|
attr_accessor :version_code
|
|
@@ -498,7 +526,7 @@ module Google
|
|
|
498
526
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1FreshnessInfo]
|
|
499
527
|
attr_accessor :freshness_info
|
|
500
528
|
|
|
501
|
-
# The resource name. Format: apps/`app`/errorCountMetricSet
|
|
529
|
+
# Identifier. The resource name. Format: apps/`app`/errorCountMetricSet
|
|
502
530
|
# Corresponds to the JSON property `name`
|
|
503
531
|
# @return [String]
|
|
504
532
|
attr_accessor :name
|
|
@@ -671,7 +699,7 @@ module Google
|
|
|
671
699
|
# @return [String]
|
|
672
700
|
attr_accessor :issue
|
|
673
701
|
|
|
674
|
-
# The resource name of the report. Format: apps/`app`/`report`
|
|
702
|
+
# Identifier. The resource name of the report. Format: apps/`app`/`report`
|
|
675
703
|
# Corresponds to the JSON property `name`
|
|
676
704
|
# @return [String]
|
|
677
705
|
attr_accessor :name
|
|
@@ -1029,17 +1057,17 @@ module Google
|
|
|
1029
1057
|
class GooglePlayDeveloperReportingV1alpha1MetricsRow
|
|
1030
1058
|
include Google::Apis::Core::Hashable
|
|
1031
1059
|
|
|
1032
|
-
# Granularity of the aggregation period of the row.
|
|
1060
|
+
# Optional. Granularity of the aggregation period of the row.
|
|
1033
1061
|
# Corresponds to the JSON property `aggregationPeriod`
|
|
1034
1062
|
# @return [String]
|
|
1035
1063
|
attr_accessor :aggregation_period
|
|
1036
1064
|
|
|
1037
|
-
# Dimension columns in the row.
|
|
1065
|
+
# Optional. Dimension columns in the row.
|
|
1038
1066
|
# Corresponds to the JSON property `dimensions`
|
|
1039
1067
|
# @return [Array<Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1DimensionValue>]
|
|
1040
1068
|
attr_accessor :dimensions
|
|
1041
1069
|
|
|
1042
|
-
# Metric columns in the row.
|
|
1070
|
+
# Optional. Metric columns in the row.
|
|
1043
1071
|
# Corresponds to the JSON property `metrics`
|
|
1044
1072
|
# @return [Array<Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1MetricValue>]
|
|
1045
1073
|
attr_accessor :metrics
|
|
@@ -1079,7 +1107,7 @@ module Google
|
|
|
1079
1107
|
class GooglePlayDeveloperReportingV1alpha1OsVersion
|
|
1080
1108
|
include Google::Apis::Core::Hashable
|
|
1081
1109
|
|
|
1082
|
-
# Numeric version code of the OS - API level
|
|
1110
|
+
# Optional. Numeric version code of the OS - API level
|
|
1083
1111
|
# Corresponds to the JSON property `apiLevel`
|
|
1084
1112
|
# @return [Fixnum]
|
|
1085
1113
|
attr_accessor :api_level
|
|
@@ -1098,15 +1126,15 @@ module Google
|
|
|
1098
1126
|
class GooglePlayDeveloperReportingV1alpha1QueryAnrRateMetricSetRequest
|
|
1099
1127
|
include Google::Apis::Core::Hashable
|
|
1100
1128
|
|
|
1101
|
-
# Dimensions to slice the metrics by. **Supported dimensions:** * `
|
|
1102
|
-
# string): the API level of Android that was running on the user's
|
|
1103
|
-
# 26. * `versionCode` (int64): version of the app that was running
|
|
1104
|
-
# device. * `deviceModel` (string): unique identifier of the user'
|
|
1105
|
-
# The form of the identifier is 'deviceBrand/device', where
|
|
1106
|
-
# corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1107
|
-
# google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
1108
|
-
# brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
1109
|
-
# factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1129
|
+
# Optional. Dimensions to slice the metrics by. **Supported dimensions:** * `
|
|
1130
|
+
# apiLevel` (string): the API level of Android that was running on the user's
|
|
1131
|
+
# device, e.g., 26. * `versionCode` (int64): version of the app that was running
|
|
1132
|
+
# on the user's device. * `deviceModel` (string): unique identifier of the user'
|
|
1133
|
+
# s device model. The form of the identifier is 'deviceBrand/device', where
|
|
1134
|
+
# deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1135
|
+
# e.g., google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
1136
|
+
# device brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
1137
|
+
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1110
1138
|
# country or region of the user's device based on their IP address, represented
|
|
1111
1139
|
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
1112
1140
|
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
|
@@ -1128,18 +1156,18 @@ module Google
|
|
|
1128
1156
|
# @return [Array<String>]
|
|
1129
1157
|
attr_accessor :dimensions
|
|
1130
1158
|
|
|
1131
|
-
# Filters to apply to data. The filtering expression follows [AIP-160](
|
|
1132
|
-
# google.aip.dev/160) standard and supports filtering by equality of all
|
|
1159
|
+
# Optional. Filters to apply to data. The filtering expression follows [AIP-160](
|
|
1160
|
+
# https://google.aip.dev/160) standard and supports filtering by equality of all
|
|
1133
1161
|
# breakdown dimensions.
|
|
1134
1162
|
# Corresponds to the JSON property `filter`
|
|
1135
1163
|
# @return [String]
|
|
1136
1164
|
attr_accessor :filter
|
|
1137
1165
|
|
|
1138
|
-
# Metrics to aggregate. **Supported metrics:** * `anrRate` (`google.
|
|
1139
|
-
# ): Percentage of distinct users in the aggregation period that
|
|
1140
|
-
# least one ANR. * `anrRate7dUserWeighted` (`google.type.Decimal`)
|
|
1141
|
-
# average value of `anrRate` in the last 7 days. The daily values are
|
|
1142
|
-
# by the count of distinct users for the day. Not supported in HOURLY
|
|
1166
|
+
# Optional. Metrics to aggregate. **Supported metrics:** * `anrRate` (`google.
|
|
1167
|
+
# type.Decimal`): Percentage of distinct users in the aggregation period that
|
|
1168
|
+
# experienced at least one ANR. * `anrRate7dUserWeighted` (`google.type.Decimal`)
|
|
1169
|
+
# : Rolling average value of `anrRate` in the last 7 days. The daily values are
|
|
1170
|
+
# weighted by the count of distinct users for the day. Not supported in HOURLY
|
|
1143
1171
|
# granularity. * `anrRate28dUserWeighted` (`google.type.Decimal`): Rolling
|
|
1144
1172
|
# average value of `anrRate` in the last 28 days. The daily values are weighted
|
|
1145
1173
|
# by the count of distinct users for the day. Not supported in HOURLY
|
|
@@ -1164,16 +1192,16 @@ module Google
|
|
|
1164
1192
|
# @return [Array<String>]
|
|
1165
1193
|
attr_accessor :metrics
|
|
1166
1194
|
|
|
1167
|
-
# Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
1168
|
-
# returned. The maximum value is 100,000; values above 100,000 will be
|
|
1169
|
-
# to 100,000.
|
|
1195
|
+
# Optional. Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
1196
|
+
# will be returned. The maximum value is 100,000; values above 100,000 will be
|
|
1197
|
+
# coerced to 100,000.
|
|
1170
1198
|
# Corresponds to the JSON property `pageSize`
|
|
1171
1199
|
# @return [Fixnum]
|
|
1172
1200
|
attr_accessor :page_size
|
|
1173
1201
|
|
|
1174
|
-
# A page token, received from a previous call. Provide this to
|
|
1175
|
-
# subsequent page. When paginating, all other parameters provided
|
|
1176
|
-
# must match the call that provided the page token.
|
|
1202
|
+
# Optional. A page token, received from a previous call. Provide this to
|
|
1203
|
+
# retrieve the subsequent page. When paginating, all other parameters provided
|
|
1204
|
+
# to the request must match the call that provided the page token.
|
|
1177
1205
|
# Corresponds to the JSON property `pageToken`
|
|
1178
1206
|
# @return [String]
|
|
1179
1207
|
attr_accessor :page_token
|
|
@@ -1195,15 +1223,15 @@ module Google
|
|
|
1195
1223
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec]
|
|
1196
1224
|
attr_accessor :timeline_spec
|
|
1197
1225
|
|
|
1198
|
-
# User view to select. The output data will correspond to the selected
|
|
1199
|
-
# Supported values:** * `OS_PUBLIC` To select data from all publicly
|
|
1200
|
-
# Android versions. This is the default. Supports all the above
|
|
1201
|
-
# APP_TESTERS` To select data from users who have opted in to be
|
|
1202
|
-
# Supports all the above dimensions. * `OS_BETA` To select data from
|
|
1203
|
-
# android versions only, excluding data from released android versions.
|
|
1204
|
-
# following dimensions are supported: * `versionCode` (int64): version
|
|
1205
|
-
# app that was running on the user's device. * `osBuild` (string): OS
|
|
1206
|
-
# the user's device, e.g., "T1B2.220916.004".
|
|
1226
|
+
# Optional. User view to select. The output data will correspond to the selected
|
|
1227
|
+
# view. **Supported values:** * `OS_PUBLIC` To select data from all publicly
|
|
1228
|
+
# released Android versions. This is the default. Supports all the above
|
|
1229
|
+
# dimensions. * `APP_TESTERS` To select data from users who have opted in to be
|
|
1230
|
+
# testers. Supports all the above dimensions. * `OS_BETA` To select data from
|
|
1231
|
+
# beta android versions only, excluding data from released android versions.
|
|
1232
|
+
# Only the following dimensions are supported: * `versionCode` (int64): version
|
|
1233
|
+
# of the app that was running on the user's device. * `osBuild` (string): OS
|
|
1234
|
+
# build of the user's device, e.g., "T1B2.220916.004".
|
|
1207
1235
|
# Corresponds to the JSON property `userCohort`
|
|
1208
1236
|
# @return [String]
|
|
1209
1237
|
attr_accessor :user_cohort
|
|
@@ -1253,15 +1281,15 @@ module Google
|
|
|
1253
1281
|
class GooglePlayDeveloperReportingV1alpha1QueryCrashRateMetricSetRequest
|
|
1254
1282
|
include Google::Apis::Core::Hashable
|
|
1255
1283
|
|
|
1256
|
-
# Dimensions to slice the metrics by. **Supported dimensions:** * `
|
|
1257
|
-
# string): the API level of Android that was running on the user's
|
|
1258
|
-
# 26. * `versionCode` (int64): version of the app that was running
|
|
1259
|
-
# device. * `deviceModel` (string): unique identifier of the user'
|
|
1260
|
-
# The form of the identifier is 'deviceBrand/device', where
|
|
1261
|
-
# corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1262
|
-
# google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
1263
|
-
# brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
1264
|
-
# factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1284
|
+
# Optional. Dimensions to slice the metrics by. **Supported dimensions:** * `
|
|
1285
|
+
# apiLevel` (string): the API level of Android that was running on the user's
|
|
1286
|
+
# device, e.g., 26. * `versionCode` (int64): version of the app that was running
|
|
1287
|
+
# on the user's device. * `deviceModel` (string): unique identifier of the user'
|
|
1288
|
+
# s device model. The form of the identifier is 'deviceBrand/device', where
|
|
1289
|
+
# deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1290
|
+
# e.g., google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
1291
|
+
# device brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
1292
|
+
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1265
1293
|
# country or region of the user's device based on their IP address, represented
|
|
1266
1294
|
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
1267
1295
|
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
|
@@ -1283,15 +1311,15 @@ module Google
|
|
|
1283
1311
|
# @return [Array<String>]
|
|
1284
1312
|
attr_accessor :dimensions
|
|
1285
1313
|
|
|
1286
|
-
# Filters to apply to data. The filtering expression follows [AIP-160](
|
|
1287
|
-
# google.aip.dev/160) standard and supports filtering by equality of all
|
|
1314
|
+
# Optional. Filters to apply to data. The filtering expression follows [AIP-160](
|
|
1315
|
+
# https://google.aip.dev/160) standard and supports filtering by equality of all
|
|
1288
1316
|
# breakdown dimensions.
|
|
1289
1317
|
# Corresponds to the JSON property `filter`
|
|
1290
1318
|
# @return [String]
|
|
1291
1319
|
attr_accessor :filter
|
|
1292
1320
|
|
|
1293
|
-
# Metrics to aggregate. **Supported metrics:** * `crashRate` (`google.
|
|
1294
|
-
# Decimal`): Percentage of distinct users in the aggregation period that
|
|
1321
|
+
# Optional. Metrics to aggregate. **Supported metrics:** * `crashRate` (`google.
|
|
1322
|
+
# type.Decimal`): Percentage of distinct users in the aggregation period that
|
|
1295
1323
|
# experienced at least one crash. * `crashRate7dUserWeighted` (`google.type.
|
|
1296
1324
|
# Decimal`): Rolling average value of `crashRate` in the last 7 days. The daily
|
|
1297
1325
|
# values are weighted by the count of distinct users for the day. * `
|
|
@@ -1321,16 +1349,16 @@ module Google
|
|
|
1321
1349
|
# @return [Array<String>]
|
|
1322
1350
|
attr_accessor :metrics
|
|
1323
1351
|
|
|
1324
|
-
# Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
1325
|
-
# returned. The maximum value is 100,000; values above 100,000 will be
|
|
1326
|
-
# to 100,000.
|
|
1352
|
+
# Optional. Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
1353
|
+
# will be returned. The maximum value is 100,000; values above 100,000 will be
|
|
1354
|
+
# coerced to 100,000.
|
|
1327
1355
|
# Corresponds to the JSON property `pageSize`
|
|
1328
1356
|
# @return [Fixnum]
|
|
1329
1357
|
attr_accessor :page_size
|
|
1330
1358
|
|
|
1331
|
-
# A page token, received from a previous call. Provide this to
|
|
1332
|
-
# subsequent page. When paginating, all other parameters provided
|
|
1333
|
-
# must match the call that provided the page token.
|
|
1359
|
+
# Optional. A page token, received from a previous call. Provide this to
|
|
1360
|
+
# retrieve the subsequent page. When paginating, all other parameters provided
|
|
1361
|
+
# to the request must match the call that provided the page token.
|
|
1334
1362
|
# Corresponds to the JSON property `pageToken`
|
|
1335
1363
|
# @return [String]
|
|
1336
1364
|
attr_accessor :page_token
|
|
@@ -1352,15 +1380,15 @@ module Google
|
|
|
1352
1380
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec]
|
|
1353
1381
|
attr_accessor :timeline_spec
|
|
1354
1382
|
|
|
1355
|
-
# User view to select. The output data will correspond to the selected
|
|
1356
|
-
# Supported values:** * `OS_PUBLIC` To select data from all publicly
|
|
1357
|
-
# Android versions. This is the default. Supports all the above
|
|
1358
|
-
# APP_TESTERS` To select data from users who have opted in to be
|
|
1359
|
-
# Supports all the above dimensions. * `OS_BETA` To select data from
|
|
1360
|
-
# android versions only, excluding data from released android versions.
|
|
1361
|
-
# following dimensions are supported: * `versionCode` (int64): version
|
|
1362
|
-
# app that was running on the user's device. * `osBuild` (string): OS
|
|
1363
|
-
# the user's device, e.g., "T1B2.220916.004".
|
|
1383
|
+
# Optional. User view to select. The output data will correspond to the selected
|
|
1384
|
+
# view. **Supported values:** * `OS_PUBLIC` To select data from all publicly
|
|
1385
|
+
# released Android versions. This is the default. Supports all the above
|
|
1386
|
+
# dimensions. * `APP_TESTERS` To select data from users who have opted in to be
|
|
1387
|
+
# testers. Supports all the above dimensions. * `OS_BETA` To select data from
|
|
1388
|
+
# beta android versions only, excluding data from released android versions.
|
|
1389
|
+
# Only the following dimensions are supported: * `versionCode` (int64): version
|
|
1390
|
+
# of the app that was running on the user's device. * `osBuild` (string): OS
|
|
1391
|
+
# build of the user's device, e.g., "T1B2.220916.004".
|
|
1364
1392
|
# Corresponds to the JSON property `userCohort`
|
|
1365
1393
|
# @return [String]
|
|
1366
1394
|
attr_accessor :user_cohort
|
|
@@ -1410,23 +1438,23 @@ module Google
|
|
|
1410
1438
|
class GooglePlayDeveloperReportingV1alpha1QueryErrorCountMetricSetRequest
|
|
1411
1439
|
include Google::Apis::Core::Hashable
|
|
1412
1440
|
|
|
1413
|
-
# Dimensions to slice the data by. **Supported dimensions:** * `
|
|
1414
|
-
# string): the API level of Android that was running on the user's
|
|
1415
|
-
# 26. * `versionCode` (int64): unique identifier of the user's
|
|
1416
|
-
# form of the identifier is 'deviceBrand/device', where
|
|
1417
|
-
# to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1418
|
-
# deviceModel` (string): unique identifier of the user's
|
|
1419
|
-
# deviceType` (string): identifier of the device's form factor,
|
|
1420
|
-
# reportType` (string): the type of error. The value should
|
|
1421
|
-
# the possible values in ErrorType. * `issueId` (string):
|
|
1422
|
-
# assigned to. The value should correspond to the ``issue``
|
|
1423
|
-
# issue name. * `deviceRamBucket` (int64): RAM of the device,
|
|
1424
|
-
# 3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the
|
|
1425
|
-
# system-on-chip, e.g., Samsung. [Reference](https://developer.
|
|
1426
|
-
# reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (
|
|
1427
|
-
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [
|
|
1428
|
-
# https://developer.android.com/reference/android/os/Build#SOC_MODEL)
|
|
1429
|
-
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
|
1441
|
+
# Optional. Dimensions to slice the data by. **Supported dimensions:** * `
|
|
1442
|
+
# apiLevel` (string): the API level of Android that was running on the user's
|
|
1443
|
+
# device, e.g., 26. * `versionCode` (int64): unique identifier of the user's
|
|
1444
|
+
# device model. The form of the identifier is 'deviceBrand/device', where
|
|
1445
|
+
# deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1446
|
+
# e.g., google/coral. * `deviceModel` (string): unique identifier of the user's
|
|
1447
|
+
# device model. * `deviceType` (string): identifier of the device's form factor,
|
|
1448
|
+
# e.g., PHONE. * `reportType` (string): the type of error. The value should
|
|
1449
|
+
# correspond to one of the possible values in ErrorType. * `issueId` (string):
|
|
1450
|
+
# the id an error was assigned to. The value should correspond to the ``issue``
|
|
1451
|
+
# component of the issue name. * `deviceRamBucket` (int64): RAM of the device,
|
|
1452
|
+
# in MB, in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the
|
|
1453
|
+
# device's primary system-on-chip, e.g., Samsung. [Reference](https://developer.
|
|
1454
|
+
# android.com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (
|
|
1455
|
+
# string): Model of the device's primary system-on-chip, e.g., "Exynos 2100". [
|
|
1456
|
+
# Reference](https://developer.android.com/reference/android/os/Build#SOC_MODEL)
|
|
1457
|
+
# * `deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
|
1430
1458
|
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
|
1431
1459
|
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
1432
1460
|
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
@@ -1439,17 +1467,17 @@ module Google
|
|
|
1439
1467
|
# @return [Array<String>]
|
|
1440
1468
|
attr_accessor :dimensions
|
|
1441
1469
|
|
|
1442
|
-
# Filters to apply to data. The filtering expression follows [AIP-160](
|
|
1443
|
-
# google.aip.dev/160) standard and supports filtering by equality of all
|
|
1470
|
+
# Optional. Filters to apply to data. The filtering expression follows [AIP-160](
|
|
1471
|
+
# https://google.aip.dev/160) standard and supports filtering by equality of all
|
|
1444
1472
|
# breakdown dimensions and: * `isUserPerceived` (string): denotes whether error
|
|
1445
1473
|
# is user perceived or not, USER_PERCEIVED or NOT_USER_PERCEIVED.
|
|
1446
1474
|
# Corresponds to the JSON property `filter`
|
|
1447
1475
|
# @return [String]
|
|
1448
1476
|
attr_accessor :filter
|
|
1449
1477
|
|
|
1450
|
-
# Metrics to aggregate. **Supported metrics:** * `errorReportCount` (`
|
|
1451
|
-
# type.Decimal`): Absolute count of individual error reports that have
|
|
1452
|
-
# received for an app. * `distinctUsers` (`google.type.Decimal`): Count of
|
|
1478
|
+
# Optional. Metrics to aggregate. **Supported metrics:** * `errorReportCount` (`
|
|
1479
|
+
# google.type.Decimal`): Absolute count of individual error reports that have
|
|
1480
|
+
# been received for an app. * `distinctUsers` (`google.type.Decimal`): Count of
|
|
1453
1481
|
# distinct users for which reports have been received. Care must be taken not to
|
|
1454
1482
|
# aggregate this count further, as it may result in users being counted multiple
|
|
1455
1483
|
# times. This value is not rounded, however it may be an approximation.
|
|
@@ -1457,16 +1485,16 @@ module Google
|
|
|
1457
1485
|
# @return [Array<String>]
|
|
1458
1486
|
attr_accessor :metrics
|
|
1459
1487
|
|
|
1460
|
-
# Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
1461
|
-
# returned. The maximum value is 100000; values above 100000 will be
|
|
1462
|
-
# 100000.
|
|
1488
|
+
# Optional. Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
1489
|
+
# will be returned. The maximum value is 100000; values above 100000 will be
|
|
1490
|
+
# coerced to 100000.
|
|
1463
1491
|
# Corresponds to the JSON property `pageSize`
|
|
1464
1492
|
# @return [Fixnum]
|
|
1465
1493
|
attr_accessor :page_size
|
|
1466
1494
|
|
|
1467
|
-
# A page token, received from a previous call. Provide this to
|
|
1468
|
-
# subsequent page. When paginating, all other parameters provided
|
|
1469
|
-
# must match the call that provided the page token.
|
|
1495
|
+
# Optional. A page token, received from a previous call. Provide this to
|
|
1496
|
+
# retrieve the subsequent page. When paginating, all other parameters provided
|
|
1497
|
+
# to the request must match the call that provided the page token.
|
|
1470
1498
|
# Corresponds to the JSON property `pageToken`
|
|
1471
1499
|
# @return [String]
|
|
1472
1500
|
attr_accessor :page_token
|
|
@@ -1532,15 +1560,15 @@ module Google
|
|
|
1532
1560
|
class GooglePlayDeveloperReportingV1alpha1QueryExcessiveWakeupRateMetricSetRequest
|
|
1533
1561
|
include Google::Apis::Core::Hashable
|
|
1534
1562
|
|
|
1535
|
-
# Dimensions to slice the data by. **Supported dimensions:** * `
|
|
1536
|
-
# string): the API level of Android that was running on the user's
|
|
1537
|
-
# 26. * `versionCode` (int64): version of the app that was running
|
|
1538
|
-
# device. * `deviceModel` (string): unique identifier of the user'
|
|
1539
|
-
# The form of the identifier is 'deviceBrand/device', where
|
|
1540
|
-
# corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1541
|
-
# google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
1542
|
-
# brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
1543
|
-
# factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1563
|
+
# Optional. Dimensions to slice the data by. **Supported dimensions:** * `
|
|
1564
|
+
# apiLevel` (string): the API level of Android that was running on the user's
|
|
1565
|
+
# device, e.g., 26. * `versionCode` (int64): version of the app that was running
|
|
1566
|
+
# on the user's device. * `deviceModel` (string): unique identifier of the user'
|
|
1567
|
+
# s device model. The form of the identifier is 'deviceBrand/device', where
|
|
1568
|
+
# deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1569
|
+
# e.g., google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
1570
|
+
# device brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
1571
|
+
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1544
1572
|
# country or region of the user's device based on their IP address, represented
|
|
1545
1573
|
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
1546
1574
|
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
|
@@ -1562,43 +1590,43 @@ module Google
|
|
|
1562
1590
|
# @return [Array<String>]
|
|
1563
1591
|
attr_accessor :dimensions
|
|
1564
1592
|
|
|
1565
|
-
# Filters to apply to data. The filtering expression follows [AIP-160](
|
|
1566
|
-
# google.aip.dev/160) standard and supports filtering by equality of all
|
|
1593
|
+
# Optional. Filters to apply to data. The filtering expression follows [AIP-160](
|
|
1594
|
+
# https://google.aip.dev/160) standard and supports filtering by equality of all
|
|
1567
1595
|
# breakdown dimensions.
|
|
1568
1596
|
# Corresponds to the JSON property `filter`
|
|
1569
1597
|
# @return [String]
|
|
1570
1598
|
attr_accessor :filter
|
|
1571
1599
|
|
|
1572
|
-
# Metrics to aggregate. **Supported metrics:** * `excessiveWakeupRate`
|
|
1573
|
-
# type.Decimal`): Percentage of distinct users in the aggregation
|
|
1574
|
-
# had more than 10 wakeups per hour. * `
|
|
1575
|
-
# google.type.Decimal`): Rolling average
|
|
1576
|
-
# last 7 days. The daily values are
|
|
1577
|
-
# the day. * `
|
|
1578
|
-
#
|
|
1579
|
-
#
|
|
1580
|
-
#
|
|
1581
|
-
#
|
|
1582
|
-
#
|
|
1583
|
-
# doing any work on the device, i.e.,
|
|
1584
|
-
# background work. Care must be taken
|
|
1585
|
-
#
|
|
1586
|
-
# nearest multiple of 10, 100, 1,000
|
|
1587
|
-
# the value.
|
|
1600
|
+
# Optional. Metrics to aggregate. **Supported metrics:** * `excessiveWakeupRate`
|
|
1601
|
+
# (`google.type.Decimal`): Percentage of distinct users in the aggregation
|
|
1602
|
+
# period that had more than 10 wakeups per hour. * `
|
|
1603
|
+
# excessiveWakeupRate7dUserWeighted` (`google.type.Decimal`): Rolling average
|
|
1604
|
+
# value of `excessiveWakeupRate` in the last 7 days. The daily values are
|
|
1605
|
+
# weighted by the count of distinct users for the day. * `
|
|
1606
|
+
# excessiveWakeupRate28dUserWeighted` (`google.type.Decimal`): Rolling average
|
|
1607
|
+
# value of `excessiveWakeupRate` in the last 28 days. The daily values are
|
|
1608
|
+
# weighted by the count of distinct users for the day. * `distinctUsers` (`
|
|
1609
|
+
# google.type.Decimal`): Count of distinct users in the aggregation period that
|
|
1610
|
+
# were used as normalization value for the `excessiveWakeupRate` metric. A user
|
|
1611
|
+
# is counted in this metric if they app was doing any work on the device, i.e.,
|
|
1612
|
+
# not just active foreground usage but also background work. Care must be taken
|
|
1613
|
+
# not to aggregate this count further, as it may result in users being counted
|
|
1614
|
+
# multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000
|
|
1615
|
+
# or 1,000,000, depending on the magnitude of the value.
|
|
1588
1616
|
# Corresponds to the JSON property `metrics`
|
|
1589
1617
|
# @return [Array<String>]
|
|
1590
1618
|
attr_accessor :metrics
|
|
1591
1619
|
|
|
1592
|
-
# Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
1593
|
-
# returned. The maximum value is 100000; values above 100000 will be
|
|
1594
|
-
# 100000.
|
|
1620
|
+
# Optional. Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
1621
|
+
# will be returned. The maximum value is 100000; values above 100000 will be
|
|
1622
|
+
# coerced to 100000.
|
|
1595
1623
|
# Corresponds to the JSON property `pageSize`
|
|
1596
1624
|
# @return [Fixnum]
|
|
1597
1625
|
attr_accessor :page_size
|
|
1598
1626
|
|
|
1599
|
-
# A page token, received from a previous call. Provide this to
|
|
1600
|
-
# subsequent page. When paginating, all other parameters provided
|
|
1601
|
-
# must match the call that provided the page token.
|
|
1627
|
+
# Optional. A page token, received from a previous call. Provide this to
|
|
1628
|
+
# retrieve the subsequent page. When paginating, all other parameters provided
|
|
1629
|
+
# to the request must match the call that provided the page token.
|
|
1602
1630
|
# Corresponds to the JSON property `pageToken`
|
|
1603
1631
|
# @return [String]
|
|
1604
1632
|
attr_accessor :page_token
|
|
@@ -1620,8 +1648,8 @@ module Google
|
|
|
1620
1648
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec]
|
|
1621
1649
|
attr_accessor :timeline_spec
|
|
1622
1650
|
|
|
1623
|
-
# User view to select. The output data will correspond to the selected
|
|
1624
|
-
# only supported value is `OS_PUBLIC`.
|
|
1651
|
+
# Optional. User view to select. The output data will correspond to the selected
|
|
1652
|
+
# view. The only supported value is `OS_PUBLIC`.
|
|
1625
1653
|
# Corresponds to the JSON property `userCohort`
|
|
1626
1654
|
# @return [String]
|
|
1627
1655
|
attr_accessor :user_cohort
|
|
@@ -1819,15 +1847,15 @@ module Google
|
|
|
1819
1847
|
class GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetRequest
|
|
1820
1848
|
include Google::Apis::Core::Hashable
|
|
1821
1849
|
|
|
1822
|
-
# Dimensions to slice the data by. **Supported dimensions:** * `
|
|
1823
|
-
# string): the API level of Android that was running on the user's
|
|
1824
|
-
# 26. * `versionCode` (int64): version of the app that was running
|
|
1825
|
-
# device. * `deviceModel` (string): unique identifier of the user'
|
|
1826
|
-
# The form of the identifier is 'deviceBrand/device', where
|
|
1827
|
-
# corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1828
|
-
# google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
1829
|
-
# brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
1830
|
-
# factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1850
|
+
# Optional. Dimensions to slice the data by. **Supported dimensions:** * `
|
|
1851
|
+
# apiLevel` (string): the API level of Android that was running on the user's
|
|
1852
|
+
# device, e.g., 26. * `versionCode` (int64): version of the app that was running
|
|
1853
|
+
# on the user's device. * `deviceModel` (string): unique identifier of the user'
|
|
1854
|
+
# s device model. The form of the identifier is 'deviceBrand/device', where
|
|
1855
|
+
# deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1856
|
+
# e.g., google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
1857
|
+
# device brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
1858
|
+
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1831
1859
|
# country or region of the user's device based on their IP address, represented
|
|
1832
1860
|
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
1833
1861
|
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
|
@@ -1849,21 +1877,22 @@ module Google
|
|
|
1849
1877
|
# @return [Array<String>]
|
|
1850
1878
|
attr_accessor :dimensions
|
|
1851
1879
|
|
|
1852
|
-
# Filters to apply to data. The filtering expression follows [AIP-160](
|
|
1853
|
-
# google.aip.dev/160) standard and supports filtering by equality of all
|
|
1880
|
+
# Optional. Filters to apply to data. The filtering expression follows [AIP-160](
|
|
1881
|
+
# https://google.aip.dev/160) standard and supports filtering by equality of all
|
|
1854
1882
|
# breakdown dimensions.
|
|
1855
1883
|
# Corresponds to the JSON property `filter`
|
|
1856
1884
|
# @return [String]
|
|
1857
1885
|
attr_accessor :filter
|
|
1858
1886
|
|
|
1859
|
-
# Metrics to aggregate. **Supported metrics:** * `
|
|
1860
|
-
# google.type.Decimal`): Percentage of distinct users
|
|
1861
|
-
# that had a slow rendering. * `
|
|
1862
|
-
# type.Decimal`): Rolling average
|
|
1863
|
-
# 7 days. The daily values are
|
|
1864
|
-
# day. * `
|
|
1865
|
-
#
|
|
1866
|
-
#
|
|
1887
|
+
# Optional. Metrics to aggregate. **Supported metrics:** * `
|
|
1888
|
+
# slowRenderingRate20Fps` (`google.type.Decimal`): Percentage of distinct users
|
|
1889
|
+
# in the aggregation period that had a slow rendering. * `
|
|
1890
|
+
# slowRenderingRate20Fps7dUserWeighted` (`google.type.Decimal`): Rolling average
|
|
1891
|
+
# value of `slowRenderingRate20Fps` in the last 7 days. The daily values are
|
|
1892
|
+
# weighted by the count of distinct users for the day. * `
|
|
1893
|
+
# slowRenderingRate20Fps28dUserWeighted` (`google.type.Decimal`): Rolling
|
|
1894
|
+
# average value of `slowRenderingRate20Fps` in the last 28 days. The daily
|
|
1895
|
+
# values are weighted by the count of distinct users for the day. * `
|
|
1867
1896
|
# slowRenderingRate30Fps` (`google.type.Decimal`): Percentage of distinct users
|
|
1868
1897
|
# in the aggregation period that had a slow rendering. * `
|
|
1869
1898
|
# slowRenderingRate30Fps7dUserWeighted` (`google.type.Decimal`): Rolling average
|
|
@@ -1883,16 +1912,16 @@ module Google
|
|
|
1883
1912
|
# @return [Array<String>]
|
|
1884
1913
|
attr_accessor :metrics
|
|
1885
1914
|
|
|
1886
|
-
# Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
1887
|
-
# returned. The maximum value is 100000; values above 100000 will be
|
|
1888
|
-
# 100000.
|
|
1915
|
+
# Optional. Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
1916
|
+
# will be returned. The maximum value is 100000; values above 100000 will be
|
|
1917
|
+
# coerced to 100000.
|
|
1889
1918
|
# Corresponds to the JSON property `pageSize`
|
|
1890
1919
|
# @return [Fixnum]
|
|
1891
1920
|
attr_accessor :page_size
|
|
1892
1921
|
|
|
1893
|
-
# A page token, received from a previous call. Provide this to
|
|
1894
|
-
# subsequent page. When paginating, all other parameters provided
|
|
1895
|
-
# must match the call that provided the page token.
|
|
1922
|
+
# Optional. A page token, received from a previous call. Provide this to
|
|
1923
|
+
# retrieve the subsequent page. When paginating, all other parameters provided
|
|
1924
|
+
# to the request must match the call that provided the page token.
|
|
1896
1925
|
# Corresponds to the JSON property `pageToken`
|
|
1897
1926
|
# @return [String]
|
|
1898
1927
|
attr_accessor :page_token
|
|
@@ -1914,8 +1943,8 @@ module Google
|
|
|
1914
1943
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec]
|
|
1915
1944
|
attr_accessor :timeline_spec
|
|
1916
1945
|
|
|
1917
|
-
# User view to select. The output data will correspond to the selected
|
|
1918
|
-
# only supported value is `OS_PUBLIC`.
|
|
1946
|
+
# Optional. User view to select. The output data will correspond to the selected
|
|
1947
|
+
# view. The only supported value is `OS_PUBLIC`.
|
|
1919
1948
|
# Corresponds to the JSON property `userCohort`
|
|
1920
1949
|
# @return [String]
|
|
1921
1950
|
attr_accessor :user_cohort
|
|
@@ -1965,15 +1994,15 @@ module Google
|
|
|
1965
1994
|
class GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetRequest
|
|
1966
1995
|
include Google::Apis::Core::Hashable
|
|
1967
1996
|
|
|
1968
|
-
# Dimensions to slice the data by. **Supported dimensions:** * `
|
|
1969
|
-
# string): the API level of Android that was running on the user's
|
|
1970
|
-
# 26. * `versionCode` (int64): version of the app that was running
|
|
1971
|
-
# device. * `deviceModel` (string): unique identifier of the user'
|
|
1972
|
-
# The form of the identifier is 'deviceBrand/device', where
|
|
1973
|
-
# corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1974
|
-
# google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
1975
|
-
# brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
1976
|
-
# factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1997
|
+
# Optional. Dimensions to slice the data by. **Supported dimensions:** * `
|
|
1998
|
+
# apiLevel` (string): the API level of Android that was running on the user's
|
|
1999
|
+
# device, e.g., 26. * `versionCode` (int64): version of the app that was running
|
|
2000
|
+
# on the user's device. * `deviceModel` (string): unique identifier of the user'
|
|
2001
|
+
# s device model. The form of the identifier is 'deviceBrand/device', where
|
|
2002
|
+
# deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
2003
|
+
# e.g., google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
2004
|
+
# device brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
2005
|
+
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1977
2006
|
# country or region of the user's device based on their IP address, represented
|
|
1978
2007
|
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
1979
2008
|
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
|
@@ -1995,18 +2024,18 @@ module Google
|
|
|
1995
2024
|
# @return [Array<String>]
|
|
1996
2025
|
attr_accessor :dimensions
|
|
1997
2026
|
|
|
1998
|
-
# Filters to apply to data. The filtering expression follows [AIP-160](
|
|
1999
|
-
# google.aip.dev/160) standard and supports filtering by equality of all
|
|
2027
|
+
# Optional. Filters to apply to data. The filtering expression follows [AIP-160](
|
|
2028
|
+
# https://google.aip.dev/160) standard and supports filtering by equality of all
|
|
2000
2029
|
# breakdown dimensions.
|
|
2001
2030
|
# Corresponds to the JSON property `filter`
|
|
2002
2031
|
# @return [String]
|
|
2003
2032
|
attr_accessor :filter
|
|
2004
2033
|
|
|
2005
|
-
# Metrics to aggregate. **Supported metrics:** * `slowStartRate` (`
|
|
2006
|
-
# Decimal`): Percentage of distinct users in the aggregation period
|
|
2007
|
-
# slow start. * `slowStartRate7dUserWeighted` (`google.type.Decimal`):
|
|
2008
|
-
# average value of `slowStartRate` in the last 7 days. The daily values
|
|
2009
|
-
# weighted by the count of distinct users for the day. * `
|
|
2034
|
+
# Optional. Metrics to aggregate. **Supported metrics:** * `slowStartRate` (`
|
|
2035
|
+
# google.type.Decimal`): Percentage of distinct users in the aggregation period
|
|
2036
|
+
# that had a slow start. * `slowStartRate7dUserWeighted` (`google.type.Decimal`):
|
|
2037
|
+
# Rolling average value of `slowStartRate` in the last 7 days. The daily values
|
|
2038
|
+
# are weighted by the count of distinct users for the day. * `
|
|
2010
2039
|
# slowStartRate28dUserWeighted` (`google.type.Decimal`): Rolling average value
|
|
2011
2040
|
# of `slowStartRate` in the last 28 days. The daily values are weighted by the
|
|
2012
2041
|
# count of distinct users for the day. * `distinctUsers` (`google.type.Decimal`):
|
|
@@ -2020,16 +2049,16 @@ module Google
|
|
|
2020
2049
|
# @return [Array<String>]
|
|
2021
2050
|
attr_accessor :metrics
|
|
2022
2051
|
|
|
2023
|
-
# Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
2024
|
-
# returned. The maximum value is 100000; values above 100000 will be
|
|
2025
|
-
# 100000.
|
|
2052
|
+
# Optional. Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
2053
|
+
# will be returned. The maximum value is 100000; values above 100000 will be
|
|
2054
|
+
# coerced to 100000.
|
|
2026
2055
|
# Corresponds to the JSON property `pageSize`
|
|
2027
2056
|
# @return [Fixnum]
|
|
2028
2057
|
attr_accessor :page_size
|
|
2029
2058
|
|
|
2030
|
-
# A page token, received from a previous call. Provide this to
|
|
2031
|
-
# subsequent page. When paginating, all other parameters provided
|
|
2032
|
-
# must match the call that provided the page token.
|
|
2059
|
+
# Optional. A page token, received from a previous call. Provide this to
|
|
2060
|
+
# retrieve the subsequent page. When paginating, all other parameters provided
|
|
2061
|
+
# to the request must match the call that provided the page token.
|
|
2033
2062
|
# Corresponds to the JSON property `pageToken`
|
|
2034
2063
|
# @return [String]
|
|
2035
2064
|
attr_accessor :page_token
|
|
@@ -2051,8 +2080,8 @@ module Google
|
|
|
2051
2080
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec]
|
|
2052
2081
|
attr_accessor :timeline_spec
|
|
2053
2082
|
|
|
2054
|
-
# User view to select. The output data will correspond to the selected
|
|
2055
|
-
# only supported value is `OS_PUBLIC`.
|
|
2083
|
+
# Optional. User view to select. The output data will correspond to the selected
|
|
2084
|
+
# view. The only supported value is `OS_PUBLIC`.
|
|
2056
2085
|
# Corresponds to the JSON property `userCohort`
|
|
2057
2086
|
# @return [String]
|
|
2058
2087
|
attr_accessor :user_cohort
|
|
@@ -2102,15 +2131,15 @@ module Google
|
|
|
2102
2131
|
class GooglePlayDeveloperReportingV1alpha1QueryStuckBackgroundWakelockRateMetricSetRequest
|
|
2103
2132
|
include Google::Apis::Core::Hashable
|
|
2104
2133
|
|
|
2105
|
-
# Dimensions to slice the data by. **Supported dimensions:** * `
|
|
2106
|
-
# string): the API level of Android that was running on the user's
|
|
2107
|
-
# 26. * `versionCode` (int64): version of the app that was running
|
|
2108
|
-
# device. * `deviceModel` (string): unique identifier of the user'
|
|
2109
|
-
# The form of the identifier is 'deviceBrand/device', where
|
|
2110
|
-
# corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
2111
|
-
# google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
2112
|
-
# brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
2113
|
-
# factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
2134
|
+
# Optional. Dimensions to slice the data by. **Supported dimensions:** * `
|
|
2135
|
+
# apiLevel` (string): the API level of Android that was running on the user's
|
|
2136
|
+
# device, e.g., 26. * `versionCode` (int64): version of the app that was running
|
|
2137
|
+
# on the user's device. * `deviceModel` (string): unique identifier of the user'
|
|
2138
|
+
# s device model. The form of the identifier is 'deviceBrand/device', where
|
|
2139
|
+
# deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
2140
|
+
# e.g., google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
2141
|
+
# device brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
2142
|
+
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
2114
2143
|
# country or region of the user's device based on their IP address, represented
|
|
2115
2144
|
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
2116
2145
|
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
|
@@ -2132,16 +2161,16 @@ module Google
|
|
|
2132
2161
|
# @return [Array<String>]
|
|
2133
2162
|
attr_accessor :dimensions
|
|
2134
2163
|
|
|
2135
|
-
# Filters to apply to data. The filtering expression follows [AIP-160](
|
|
2136
|
-
# google.aip.dev/160) standard and supports filtering by equality of all
|
|
2164
|
+
# Optional. Filters to apply to data. The filtering expression follows [AIP-160](
|
|
2165
|
+
# https://google.aip.dev/160) standard and supports filtering by equality of all
|
|
2137
2166
|
# breakdown dimensions.
|
|
2138
2167
|
# Corresponds to the JSON property `filter`
|
|
2139
2168
|
# @return [String]
|
|
2140
2169
|
attr_accessor :filter
|
|
2141
2170
|
|
|
2142
|
-
# Metrics to aggregate. **Supported metrics:** * `stuckBgWakelockRate`
|
|
2143
|
-
# type.Decimal`): Percentage of distinct users in the aggregation
|
|
2144
|
-
# had a wakelock held in the background for longer than 1 hour. * `
|
|
2171
|
+
# Optional. Metrics to aggregate. **Supported metrics:** * `stuckBgWakelockRate`
|
|
2172
|
+
# (`google.type.Decimal`): Percentage of distinct users in the aggregation
|
|
2173
|
+
# period that had a wakelock held in the background for longer than 1 hour. * `
|
|
2145
2174
|
# stuckBgWakelockRate7dUserWeighted` (`google.type.Decimal`): Rolling average
|
|
2146
2175
|
# value of `stuckBgWakelockRate` in the last 7 days. The daily values are
|
|
2147
2176
|
# weighted by the count of distinct users for the day. * `
|
|
@@ -2159,16 +2188,16 @@ module Google
|
|
|
2159
2188
|
# @return [Array<String>]
|
|
2160
2189
|
attr_accessor :metrics
|
|
2161
2190
|
|
|
2162
|
-
# Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
2163
|
-
# returned. The maximum value is 100000; values above 100000 will be
|
|
2164
|
-
# 100000.
|
|
2191
|
+
# Optional. Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
2192
|
+
# will be returned. The maximum value is 100000; values above 100000 will be
|
|
2193
|
+
# coerced to 100000.
|
|
2165
2194
|
# Corresponds to the JSON property `pageSize`
|
|
2166
2195
|
# @return [Fixnum]
|
|
2167
2196
|
attr_accessor :page_size
|
|
2168
2197
|
|
|
2169
|
-
# A page token, received from a previous call. Provide this to
|
|
2170
|
-
# subsequent page. When paginating, all other parameters provided
|
|
2171
|
-
# must match the call that provided the page token.
|
|
2198
|
+
# Optional. A page token, received from a previous call. Provide this to
|
|
2199
|
+
# retrieve the subsequent page. When paginating, all other parameters provided
|
|
2200
|
+
# to the request must match the call that provided the page token.
|
|
2172
2201
|
# Corresponds to the JSON property `pageToken`
|
|
2173
2202
|
# @return [String]
|
|
2174
2203
|
attr_accessor :page_token
|
|
@@ -2190,8 +2219,8 @@ module Google
|
|
|
2190
2219
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec]
|
|
2191
2220
|
attr_accessor :timeline_spec
|
|
2192
2221
|
|
|
2193
|
-
# User view to select. The output data will correspond to the selected
|
|
2194
|
-
# only supported value is `OS_PUBLIC`.
|
|
2222
|
+
# Optional. User view to select. The output data will correspond to the selected
|
|
2223
|
+
# view. The only supported value is `OS_PUBLIC`.
|
|
2195
2224
|
# Corresponds to the JSON property `userCohort`
|
|
2196
2225
|
# @return [String]
|
|
2197
2226
|
attr_accessor :user_cohort
|
|
@@ -2607,8 +2636,8 @@ module Google
|
|
|
2607
2636
|
class GooglePlayDeveloperReportingV1alpha1TimelineSpec
|
|
2608
2637
|
include Google::Apis::Core::Hashable
|
|
2609
2638
|
|
|
2610
|
-
# Type of the aggregation period of the datapoints in the timeline.
|
|
2611
|
-
# are identified by the date and time at the start of the interval.
|
|
2639
|
+
# Optional. Type of the aggregation period of the datapoints in the timeline.
|
|
2640
|
+
# Intervals are identified by the date and time at the start of the interval.
|
|
2612
2641
|
# Corresponds to the JSON property `aggregationPeriod`
|
|
2613
2642
|
# @return [String]
|
|
2614
2643
|
attr_accessor :aggregation_period
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module PlaydeveloperreportingV1alpha1
|
|
18
18
|
# Version of the google-apis-playdeveloperreporting_v1alpha1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.37.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260222"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -22,6 +22,12 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module PlaydeveloperreportingV1alpha1
|
|
24
24
|
|
|
25
|
+
class ApiservingMcpMcpToolDataHandlingProfile
|
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
|
+
|
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
29
|
+
end
|
|
30
|
+
|
|
25
31
|
class GooglePlayDeveloperReportingV1alpha1Anomaly
|
|
26
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
33
|
|
|
@@ -322,6 +328,14 @@ module Google
|
|
|
322
328
|
include Google::Apis::Core::JsonObjectSupport
|
|
323
329
|
end
|
|
324
330
|
|
|
331
|
+
class ApiservingMcpMcpToolDataHandlingProfile
|
|
332
|
+
# @private
|
|
333
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
334
|
+
property :input_data_access_level, as: 'inputDataAccessLevel'
|
|
335
|
+
property :output_data_access_level, as: 'outputDataAccessLevel'
|
|
336
|
+
end
|
|
337
|
+
end
|
|
338
|
+
|
|
325
339
|
class GooglePlayDeveloperReportingV1alpha1Anomaly
|
|
326
340
|
# @private
|
|
327
341
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -55,8 +55,8 @@ module Google
|
|
|
55
55
|
# @param [String] parent
|
|
56
56
|
# Required. Parent app for which anomalies were detected. Format: apps/`app`
|
|
57
57
|
# @param [String] filter
|
|
58
|
-
# Filtering criteria for anomalies. For basic filter guidance, please
|
|
59
|
-
# https://google.aip.dev/160. **Supported functions:** * `activeBetween(
|
|
58
|
+
# Optional. Filtering criteria for anomalies. For basic filter guidance, please
|
|
59
|
+
# check: https://google.aip.dev/160. **Supported functions:** * `activeBetween(
|
|
60
60
|
# startTime, endTime)`: If specified, only list anomalies that were active in
|
|
61
61
|
# between `startTime` (inclusive) and `endTime` (exclusive). Both parameters are
|
|
62
62
|
# expected to conform to an RFC-3339 formatted string (e.g. `2012-04-21T11:30:00-
|
|
@@ -66,13 +66,14 @@ module Google
|
|
|
66
66
|
# 21T00:00:00Z")` * `activeBetween(UNBOUNDED, "2021-11-21T00:00:00-04:00")` * `
|
|
67
67
|
# activeBetween("2021-07-21T00:00:00-04:00", UNBOUNDED)`
|
|
68
68
|
# @param [Fixnum] page_size
|
|
69
|
-
# Maximum size of the returned data. If unspecified, at most 10
|
|
70
|
-
# be returned. The maximum value is 100; values above 100 will be
|
|
69
|
+
# Optional. Maximum size of the returned data. If unspecified, at most 10
|
|
70
|
+
# anomalies will be returned. The maximum value is 100; values above 100 will be
|
|
71
|
+
# coerced to 100.
|
|
71
72
|
# @param [String] page_token
|
|
72
|
-
# A page token, received from a previous `ListErrorReports` call.
|
|
73
|
-
# to retrieve the subsequent page. When paginating, all other
|
|
74
|
-
# provided to `ListErrorReports` must match the call that provided
|
|
75
|
-
# token.
|
|
73
|
+
# Optional. A page token, received from a previous `ListErrorReports` call.
|
|
74
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
|
75
|
+
# parameters provided to `ListErrorReports` must match the call that provided
|
|
76
|
+
# the page token.
|
|
76
77
|
# @param [String] fields
|
|
77
78
|
# Selector specifying which fields to include in a partial response.
|
|
78
79
|
# @param [String] quota_user
|
|
@@ -136,14 +137,14 @@ module Google
|
|
|
136
137
|
|
|
137
138
|
# Searches for Apps accessible by the user.
|
|
138
139
|
# @param [Fixnum] page_size
|
|
139
|
-
# The maximum number of apps to return. The service may return fewer
|
|
140
|
-
# value. If unspecified, at most 50 apps will be returned. The maximum
|
|
141
|
-
# 1000; values above 1000 will be coerced to 1000.
|
|
140
|
+
# Optional. The maximum number of apps to return. The service may return fewer
|
|
141
|
+
# than this value. If unspecified, at most 50 apps will be returned. The maximum
|
|
142
|
+
# value is 1000; values above 1000 will be coerced to 1000.
|
|
142
143
|
# @param [String] page_token
|
|
143
|
-
# A page token, received from a previous `SearchAccessibleApps` call.
|
|
144
|
-
# this to retrieve the subsequent page. When paginating, all other
|
|
145
|
-
# provided to `SearchAccessibleApps` must match the call that
|
|
146
|
-
# token.
|
|
144
|
+
# Optional. A page token, received from a previous `SearchAccessibleApps` call.
|
|
145
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
|
146
|
+
# parameters provided to `SearchAccessibleApps` must match the call that
|
|
147
|
+
# provided the page token.
|
|
147
148
|
# @param [String] fields
|
|
148
149
|
# Selector specifying which fields to include in a partial response.
|
|
149
150
|
# @param [String] quota_user
|
|
@@ -367,13 +368,13 @@ module Google
|
|
|
367
368
|
# Required. Parent resource of the error issues, indicating the application for
|
|
368
369
|
# which they were received. Format: apps/`app`
|
|
369
370
|
# @param [String] filter
|
|
370
|
-
# A selection predicate to retrieve only a subset of the issues.
|
|
371
|
-
# returned error issues will only reflect occurrences that matched
|
|
372
|
-
# For filtering basics, please check [AIP-160](https://google.aip.
|
|
373
|
-
# Supported field names:** * `apiLevel`: Matches error issues that
|
|
374
|
-
# the requested Android versions (specified as the numeric API level)
|
|
375
|
-
# Example: `apiLevel = 28 OR apiLevel = 29`. * `versionCode`: Matches
|
|
376
|
-
# issues that occurred in the requested app version codes only. Example: `
|
|
371
|
+
# Optional. A selection predicate to retrieve only a subset of the issues.
|
|
372
|
+
# Counts in the returned error issues will only reflect occurrences that matched
|
|
373
|
+
# the filter. For filtering basics, please check [AIP-160](https://google.aip.
|
|
374
|
+
# dev/160). ** Supported field names:** * `apiLevel`: Matches error issues that
|
|
375
|
+
# occurred in the requested Android versions (specified as the numeric API level)
|
|
376
|
+
# only. Example: `apiLevel = 28 OR apiLevel = 29`. * `versionCode`: Matches
|
|
377
|
+
# error issues that occurred in the requested app version codes only. Example: `
|
|
377
378
|
# versionCode = 123 OR versionCode = 456`. * `deviceModel`: Matches error issues
|
|
378
379
|
# that occurred in the requested devices. Example: `deviceModel = "google/
|
|
379
380
|
# walleye" OR deviceModel = "google/marlin"`. * `deviceBrand`: Matches error
|
|
@@ -455,20 +456,20 @@ module Google
|
|
|
455
456
|
# Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime
|
|
456
457
|
# without a year.
|
|
457
458
|
# @param [String] order_by
|
|
458
|
-
# Specifies a field that will be used to order the results. **
|
|
459
|
-
# dimensions:** * `errorReportCount`: Orders issues by number of error
|
|
460
|
-
# `distinctUsers`: Orders issues by number of unique affected users.
|
|
461
|
-
# Supported operations:** * `asc` for ascending order. * `desc` for descending
|
|
459
|
+
# Optional. Specifies a field that will be used to order the results. **
|
|
460
|
+
# Supported dimensions:** * `errorReportCount`: Orders issues by number of error
|
|
461
|
+
# reports. * `distinctUsers`: Orders issues by number of unique affected users. *
|
|
462
|
+
# * Supported operations:** * `asc` for ascending order. * `desc` for descending
|
|
462
463
|
# order. Format: A field and an operation, e.g., `errorReportCount desc` *Note:*
|
|
463
464
|
# currently only one field is supported at a time.
|
|
464
465
|
# @param [Fixnum] page_size
|
|
465
|
-
# The maximum number of error issues to return. The service may return
|
|
466
|
-
# than this value. If unspecified, at most 50 error issues will be
|
|
467
|
-
# maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
466
|
+
# Optional. The maximum number of error issues to return. The service may return
|
|
467
|
+
# fewer than this value. If unspecified, at most 50 error issues will be
|
|
468
|
+
# returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
468
469
|
# @param [String] page_token
|
|
469
|
-
# A page token, received from a previous call. Provide this to
|
|
470
|
-
# subsequent page. When paginating, all other parameters provided
|
|
471
|
-
# must match the call that provided the page token.
|
|
470
|
+
# Optional. A page token, received from a previous call. Provide this to
|
|
471
|
+
# retrieve the subsequent page. When paginating, all other parameters provided
|
|
472
|
+
# to the request must match the call that provided the page token.
|
|
472
473
|
# @param [Fixnum] sample_error_report_limit
|
|
473
474
|
# Optional. Number of sample error reports to return per ErrorIssue. If
|
|
474
475
|
# unspecified, 0 will be used. *Note:* currently only 0 and 1 are supported.
|
|
@@ -529,40 +530,40 @@ module Google
|
|
|
529
530
|
# Required. Parent resource of the reports, indicating the application for which
|
|
530
531
|
# they were received. Format: apps/`app`
|
|
531
532
|
# @param [String] filter
|
|
532
|
-
# A selection predicate to retrieve only a subset of the reports. For
|
|
533
|
-
# basics, please check [AIP-160](https://google.aip.dev/160). **
|
|
534
|
-
# names:** * `apiLevel`: Matches error reports that occurred in
|
|
535
|
-
# Android versions (specified as the numeric API level) only.
|
|
536
|
-
# = 28 OR apiLevel = 29`. * `versionCode`: Matches error
|
|
537
|
-
# in the requested app version codes only. Example: `
|
|
538
|
-
# versionCode = 456`. * `deviceModel`: Matches error issues
|
|
539
|
-
# requested devices. Example: `deviceModel = "google/
|
|
540
|
-
# google/marlin"`. * `deviceBrand`: Matches error
|
|
541
|
-
# requested device brands. Example: `deviceBrand = "
|
|
542
|
-
# Matches error reports that occurred in the requested
|
|
543
|
-
# deviceType = "PHONE"`. * `errorIssueType`: Matches
|
|
544
|
-
# requested types only. Valid candidates: `CRASH`, `ANR`, `
|
|
545
|
-
# errorIssueType = CRASH OR errorIssueType = ANR`. * `
|
|
546
|
-
# error reports belonging to the requested error issue
|
|
547
|
-
# errorIssueId = 1234 OR errorIssueId = 4567`. * `
|
|
548
|
-
# reports with the requested error report id.
|
|
549
|
-
# errorReportId = 4567`. * `appProcessState`:
|
|
550
|
-
# process state of an app, indicating whether an
|
|
551
|
-
# user-visible) or background. Valid candidates: `
|
|
552
|
-
# Example: `appProcessState = FOREGROUND`. * `
|
|
553
|
-
# reports that are user-perceived. It is not
|
|
554
|
-
# Example: `isUserPerceived`. ** Supported
|
|
555
|
-
# The only supported comparison operator is
|
|
556
|
-
# appear on the left hand side of the
|
|
557
|
-
# operators `AND` and `OR` can be used
|
|
558
|
-
# conjunctive normal form (CNF), i.e.,
|
|
559
|
-
# operator takes precedence over `AND` so
|
|
560
|
-
# necessary when building CNF. The `OR` operator
|
|
561
|
-
# disjunctions that apply to the same field, e.g., `
|
|
562
|
-
# versionCode = ANR`. The filter expression `versionCode =
|
|
563
|
-
# = ANR` is not valid. ** Examples ** Some valid filtering
|
|
564
|
-
# versionCode = 123 AND errorIssueType = ANR` * `versionCode =
|
|
565
|
-
# errorIssueType = OR errorIssueType = CRASH` * `versionCode = 123 AND (
|
|
533
|
+
# Optional. A selection predicate to retrieve only a subset of the reports. For
|
|
534
|
+
# filtering basics, please check [AIP-160](https://google.aip.dev/160). **
|
|
535
|
+
# Supported field names:** * `apiLevel`: Matches error reports that occurred in
|
|
536
|
+
# the requested Android versions (specified as the numeric API level) only.
|
|
537
|
+
# Example: `apiLevel = 28 OR apiLevel = 29`. * `versionCode`: Matches error
|
|
538
|
+
# reports that occurred in the requested app version codes only. Example: `
|
|
539
|
+
# versionCode = 123 OR versionCode = 456`. * `deviceModel`: Matches error issues
|
|
540
|
+
# that occurred in the requested devices. Example: `deviceModel = "google/
|
|
541
|
+
# walleye" OR deviceModel = "google/marlin"`. * `deviceBrand`: Matches error
|
|
542
|
+
# issues that occurred in the requested device brands. Example: `deviceBrand = "
|
|
543
|
+
# Google". * `deviceType`: Matches error reports that occurred in the requested
|
|
544
|
+
# device types. Example: `deviceType = "PHONE"`. * `errorIssueType`: Matches
|
|
545
|
+
# error reports of the requested types only. Valid candidates: `CRASH`, `ANR`, `
|
|
546
|
+
# NON_FATAL`. Example: `errorIssueType = CRASH OR errorIssueType = ANR`. * `
|
|
547
|
+
# errorIssueId`: Matches error reports belonging to the requested error issue
|
|
548
|
+
# ids only. Example: `errorIssueId = 1234 OR errorIssueId = 4567`. * `
|
|
549
|
+
# errorReportId`: Matches error reports with the requested error report id.
|
|
550
|
+
# Example: `errorReportId = 1234 OR errorReportId = 4567`. * `appProcessState`:
|
|
551
|
+
# Matches error reports on the process state of an app, indicating whether an
|
|
552
|
+
# app runs in the foreground (user-visible) or background. Valid candidates: `
|
|
553
|
+
# FOREGROUND`, `BACKGROUND`. Example: `appProcessState = FOREGROUND`. * `
|
|
554
|
+
# isUserPerceived`: Matches error reports that are user-perceived. It is not
|
|
555
|
+
# accompanied by any operators. Example: `isUserPerceived`. ** Supported
|
|
556
|
+
# operators:** * Comparison operators: The only supported comparison operator is
|
|
557
|
+
# equality. The filtered field must appear on the left hand side of the
|
|
558
|
+
# comparison. * Logical Operators: Logical operators `AND` and `OR` can be used
|
|
559
|
+
# to build complex filters following a conjunctive normal form (CNF), i.e.,
|
|
560
|
+
# conjunctions of disjunctions. The `OR` operator takes precedence over `AND` so
|
|
561
|
+
# the use of parenthesis is not necessary when building CNF. The `OR` operator
|
|
562
|
+
# is only supported to build disjunctions that apply to the same field, e.g., `
|
|
563
|
+
# versionCode = 123 OR versionCode = ANR`. The filter expression `versionCode =
|
|
564
|
+
# 123 OR errorIssueType = ANR` is not valid. ** Examples ** Some valid filtering
|
|
565
|
+
# expressions: * `versionCode = 123 AND errorIssueType = ANR` * `versionCode =
|
|
566
|
+
# 123 AND errorIssueType = OR errorIssueType = CRASH` * `versionCode = 123 AND (
|
|
566
567
|
# errorIssueType = OR errorIssueType = CRASH)`
|
|
567
568
|
# @param [Fixnum] interval_end_time_day
|
|
568
569
|
# Optional. Day of month. Must be from 1 to 31 and valid for the year and month,
|
|
@@ -621,14 +622,14 @@ module Google
|
|
|
621
622
|
# Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime
|
|
622
623
|
# without a year.
|
|
623
624
|
# @param [Fixnum] page_size
|
|
624
|
-
# The maximum number of reports to return. The service may return
|
|
625
|
-
# this value. If unspecified, at most 50 reports will be returned.
|
|
626
|
-
# value is 100; values above 100 will be coerced to 100.
|
|
625
|
+
# Optional. The maximum number of reports to return. The service may return
|
|
626
|
+
# fewer than this value. If unspecified, at most 50 reports will be returned.
|
|
627
|
+
# The maximum value is 100; values above 100 will be coerced to 100.
|
|
627
628
|
# @param [String] page_token
|
|
628
|
-
# A page token, received from a previous `SearchErrorReports` call.
|
|
629
|
-
# to retrieve the subsequent page. When paginating, all other
|
|
630
|
-
# provided to `SearchErrorReports` must match the call that provided
|
|
631
|
-
# token.
|
|
629
|
+
# Optional. A page token, received from a previous `SearchErrorReports` call.
|
|
630
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
|
631
|
+
# parameters provided to `SearchErrorReports` must match the call that provided
|
|
632
|
+
# the page token.
|
|
632
633
|
# @param [String] fields
|
|
633
634
|
# Selector specifying which fields to include in a partial response.
|
|
634
635
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-playdeveloperreporting_v1alpha1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.37.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playdeveloperreporting_v1alpha1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1alpha1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1alpha1/v0.37.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playdeveloperreporting_v1alpha1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
74
|
version: '0'
|
|
75
75
|
requirements: []
|
|
76
|
-
rubygems_version: 3.6.
|
|
76
|
+
rubygems_version: 3.6.9
|
|
77
77
|
specification_version: 4
|
|
78
78
|
summary: Simple REST client for Google Play Developer Reporting API V1alpha1
|
|
79
79
|
test_files: []
|