google-apis-playdeveloperreporting_v1beta1 0.13.0 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/playdeveloperreporting_v1beta1/classes.rb +787 -19
- data/lib/google/apis/playdeveloperreporting_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/playdeveloperreporting_v1beta1/representations.rb +211 -0
- data/lib/google/apis/playdeveloperreporting_v1beta1/service.rb +490 -0
- metadata +3 -3
@@ -290,6 +290,170 @@ module Google
|
|
290
290
|
end
|
291
291
|
end
|
292
292
|
|
293
|
+
# Singleton resource representing the set of error report metrics. This metric
|
294
|
+
# set contains un-normalized error report counts. **Supported aggregation
|
295
|
+
# periods:** * DAILY: metrics are aggregated in calendar date intervals. The
|
296
|
+
# default and only supported timezone is `America/Los_Angeles`. **Supported
|
297
|
+
# metrics:** * `errorReportCount` (`google.type.Decimal`): Absolute count of
|
298
|
+
# individual error reports that have been received for an app. * `distinctUsers`
|
299
|
+
# (`google.type.Decimal`): Count of distinct users for which reports have been
|
300
|
+
# received. Care must be taken not to aggregate this count further, as it may
|
301
|
+
# result in users being counted multiple times. **Required dimension:** This
|
302
|
+
# dimension must be always specified in all requests in the `dimensions` field
|
303
|
+
# in query requests. * `reportType` (string): the type of error. The value
|
304
|
+
# should correspond to one of the possible values in ErrorType. **Supported
|
305
|
+
# dimensions:** * `apiLevel` (string): the API level of Android that was running
|
306
|
+
# on the user's device. * `versionCode` (int64): version of the app that was
|
307
|
+
# running on the user's device. * `deviceModel` (string): unique identifier of
|
308
|
+
# the user's device model. * `deviceType` (string): identifier of the device's
|
309
|
+
# form factor, e.g., PHONE. * `issueId` (string): the id an error was assigned
|
310
|
+
# to. The value should correspond to the ``issue`` component of the issue name. *
|
311
|
+
# `deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB,
|
312
|
+
# etc.). * `deviceSocMake` (string): Make of the device's primary system-on-chip,
|
313
|
+
# e.g., Samsung. [Reference](https://developer.android.com/reference/android/os/
|
314
|
+
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
|
315
|
+
# primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
|
316
|
+
# android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
|
317
|
+
# Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
|
318
|
+
# of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
|
319
|
+
# device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
|
320
|
+
# GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
|
321
|
+
# g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
|
322
|
+
# "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
|
323
|
+
# g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
|
324
|
+
# NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
|
325
|
+
# , mdpi, hdpi. **Required permissions**: to access this resource, the calling
|
326
|
+
# user needs the _View app information (read-only)_ permission for the app. **
|
327
|
+
# Related metric sets:** * vitals.errors.counts contains normalized metrics
|
328
|
+
# about Crashes, another stability metric. * vitals.errors.counts contains
|
329
|
+
# normalized metrics about ANRs, another stability metric.
|
330
|
+
class GooglePlayDeveloperReportingV1beta1ErrorCountMetricSet
|
331
|
+
include Google::Apis::Core::Hashable
|
332
|
+
|
333
|
+
# Represents the latest available time that can be requested in a TimelineSpec.
|
334
|
+
# Different aggregation periods have different freshness. For example, `DAILY`
|
335
|
+
# aggregation may lag behind `HOURLY` in cases where such aggregation is
|
336
|
+
# computed only once at the end of the day.
|
337
|
+
# Corresponds to the JSON property `freshnessInfo`
|
338
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1FreshnessInfo]
|
339
|
+
attr_accessor :freshness_info
|
340
|
+
|
341
|
+
# The resource name. Format: apps/`app`/errorCountMetricSet
|
342
|
+
# Corresponds to the JSON property `name`
|
343
|
+
# @return [String]
|
344
|
+
attr_accessor :name
|
345
|
+
|
346
|
+
def initialize(**args)
|
347
|
+
update!(**args)
|
348
|
+
end
|
349
|
+
|
350
|
+
# Update properties of this object
|
351
|
+
def update!(**args)
|
352
|
+
@freshness_info = args[:freshness_info] if args.key?(:freshness_info)
|
353
|
+
@name = args[:name] if args.key?(:name)
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
357
|
+
# A group of related ErrorReports received for an app. Similar error reports are
|
358
|
+
# grouped together into issues with a likely identical root cause. **Please note:
|
359
|
+
# ** this resource is currently in Alpha. There could be changes to the issue
|
360
|
+
# grouping that would result in similar but more recent error reports being
|
361
|
+
# assigned to different issues. This could also cause some issues disappearing
|
362
|
+
# entirely and being replaced by new ones. **Required permissions**: to access
|
363
|
+
# this resource, the calling user needs the _View app information (read-only)_
|
364
|
+
# permission for the app.
|
365
|
+
class GooglePlayDeveloperReportingV1beta1ErrorIssue
|
366
|
+
include Google::Apis::Core::Hashable
|
367
|
+
|
368
|
+
# Cause of the issue. Depending on the type this can be either: *
|
369
|
+
# APPLICATION_NOT_RESPONDING: the type of ANR that occurred, e.g., 'Input
|
370
|
+
# dispatching timed out'. * CRASH: for Java unhandled exception errors, the type
|
371
|
+
# of the innermost exception that was thrown, e.g., IllegalArgumentException.
|
372
|
+
# For signals in native code, the signal that was raised, e.g. SIGSEGV.
|
373
|
+
# Corresponds to the JSON property `cause`
|
374
|
+
# @return [String]
|
375
|
+
attr_accessor :cause
|
376
|
+
|
377
|
+
# Location where the issue happened. Depending on the type this can be either: *
|
378
|
+
# APPLICATION_NOT_RESPONDING: the name of the activity or service that stopped
|
379
|
+
# responding. * CRASH: the likely method name that caused the error.
|
380
|
+
# Corresponds to the JSON property `location`
|
381
|
+
# @return [String]
|
382
|
+
attr_accessor :location
|
383
|
+
|
384
|
+
# The resource name of the issue. Format: apps/`app`/errorIssues/`issue`
|
385
|
+
# Corresponds to the JSON property `name`
|
386
|
+
# @return [String]
|
387
|
+
attr_accessor :name
|
388
|
+
|
389
|
+
# Type of the errors grouped in this issue.
|
390
|
+
# Corresponds to the JSON property `type`
|
391
|
+
# @return [String]
|
392
|
+
attr_accessor :type
|
393
|
+
|
394
|
+
def initialize(**args)
|
395
|
+
update!(**args)
|
396
|
+
end
|
397
|
+
|
398
|
+
# Update properties of this object
|
399
|
+
def update!(**args)
|
400
|
+
@cause = args[:cause] if args.key?(:cause)
|
401
|
+
@location = args[:location] if args.key?(:location)
|
402
|
+
@name = args[:name] if args.key?(:name)
|
403
|
+
@type = args[:type] if args.key?(:type)
|
404
|
+
end
|
405
|
+
end
|
406
|
+
|
407
|
+
# An error report received for an app. There reports are produced by the Android
|
408
|
+
# platform code when a (potentially fatal) error condition is detected.
|
409
|
+
# Identical reports from many users will be deduplicated and coalesced into a
|
410
|
+
# single ErrorReport. **Required permissions**: to access this resource, the
|
411
|
+
# calling user needs the _View app information (read-only)_ permission for the
|
412
|
+
# app.
|
413
|
+
class GooglePlayDeveloperReportingV1beta1ErrorReport
|
414
|
+
include Google::Apis::Core::Hashable
|
415
|
+
|
416
|
+
# The issue this report was associated with. **Please note:** this resource is
|
417
|
+
# currently in Alpha. There could be changes to the issue grouping that would
|
418
|
+
# result in similar but more recent error reports being assigned to a different
|
419
|
+
# issue.
|
420
|
+
# Corresponds to the JSON property `issue`
|
421
|
+
# @return [String]
|
422
|
+
attr_accessor :issue
|
423
|
+
|
424
|
+
# The resource name of the report. Format: apps/`app`/errorReports/`report`
|
425
|
+
# Corresponds to the JSON property `name`
|
426
|
+
# @return [String]
|
427
|
+
attr_accessor :name
|
428
|
+
|
429
|
+
# Textual representation of the error report. These textual reports are produced
|
430
|
+
# by the platform. The reports are then sanitized and filtered to remove any
|
431
|
+
# potentially sensitive information. Although their format is fairly stable,
|
432
|
+
# they are not entirely meant for machine consumption and we cannot guarantee
|
433
|
+
# that there won't be subtle changes to the formatting that may break systems
|
434
|
+
# trying to parse information out of the reports.
|
435
|
+
# Corresponds to the JSON property `reportText`
|
436
|
+
# @return [String]
|
437
|
+
attr_accessor :report_text
|
438
|
+
|
439
|
+
# Type of the error for which this report was generated.
|
440
|
+
# Corresponds to the JSON property `type`
|
441
|
+
# @return [String]
|
442
|
+
attr_accessor :type
|
443
|
+
|
444
|
+
def initialize(**args)
|
445
|
+
update!(**args)
|
446
|
+
end
|
447
|
+
|
448
|
+
# Update properties of this object
|
449
|
+
def update!(**args)
|
450
|
+
@issue = args[:issue] if args.key?(:issue)
|
451
|
+
@name = args[:name] if args.key?(:name)
|
452
|
+
@report_text = args[:report_text] if args.key?(:report_text)
|
453
|
+
@type = args[:type] if args.key?(:type)
|
454
|
+
end
|
455
|
+
end
|
456
|
+
|
293
457
|
# Singleton resource representing the set of Excessive Weakeups metrics. This
|
294
458
|
# metric set contains AlarmManager wakeup counts data combined with process
|
295
459
|
# state data to produce a normalized metric independent of user counts. **
|
@@ -822,6 +986,125 @@ module Google
|
|
822
986
|
end
|
823
987
|
end
|
824
988
|
|
989
|
+
# Request message for QueryErrorCountMetricSet.
|
990
|
+
class GooglePlayDeveloperReportingV1beta1QueryErrorCountMetricSetRequest
|
991
|
+
include Google::Apis::Core::Hashable
|
992
|
+
|
993
|
+
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
994
|
+
# string): the API level of Android that was running on the user's device. * `
|
995
|
+
# versionCode` (int64): version of the app that was running on the user's device.
|
996
|
+
# * `deviceModel` (string): unique identifier of the user's device model. * `
|
997
|
+
# deviceType` (string): identifier of the device's form factor, e.g., PHONE. * `
|
998
|
+
# reportType` (string): the type of error. The value should correspond to one of
|
999
|
+
# the possible values in ErrorType. * `issueId` (string): the id an error was
|
1000
|
+
# assigned to. The value should correspond to the ``issue`` component of the
|
1001
|
+
# issue name. * `deviceRamBucket` (int64): RAM of the device, in MB, in buckets (
|
1002
|
+
# 3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's primary
|
1003
|
+
# system-on-chip, e.g., Samsung. [Reference](https://developer.android.com/
|
1004
|
+
# reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
1005
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
1006
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
1007
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
1008
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
1009
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
1010
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
1011
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
1012
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
1013
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
1014
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
1015
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
1016
|
+
# Corresponds to the JSON property `dimensions`
|
1017
|
+
# @return [Array<String>]
|
1018
|
+
attr_accessor :dimensions
|
1019
|
+
|
1020
|
+
# Filters to apply to data. The filtering expression follows [AIP-160](https://
|
1021
|
+
# google.aip.dev/160) standard and supports filtering by equality of all
|
1022
|
+
# breakdown dimensions.
|
1023
|
+
# Corresponds to the JSON property `filter`
|
1024
|
+
# @return [String]
|
1025
|
+
attr_accessor :filter
|
1026
|
+
|
1027
|
+
# Metrics to aggregate. **Supported metrics:** * `errorReportCount` (`google.
|
1028
|
+
# type.Decimal`): Absolute count of individual error reports that have been
|
1029
|
+
# received for an app. * `distinctUsers` (`google.type.Decimal`): Count of
|
1030
|
+
# distinct users for which reports have been received. Care must be taken not to
|
1031
|
+
# aggregate this count further, as it may result in users being counted multiple
|
1032
|
+
# times.
|
1033
|
+
# Corresponds to the JSON property `metrics`
|
1034
|
+
# @return [Array<String>]
|
1035
|
+
attr_accessor :metrics
|
1036
|
+
|
1037
|
+
# Maximum size of the returned data. If unspecified, at most 1000 rows will be
|
1038
|
+
# returned. The maximum value is 100000; values above 100000 will be coerced to
|
1039
|
+
# 100000.
|
1040
|
+
# Corresponds to the JSON property `pageSize`
|
1041
|
+
# @return [Fixnum]
|
1042
|
+
attr_accessor :page_size
|
1043
|
+
|
1044
|
+
# A page token, received from a previous call. Provide this to retrieve the
|
1045
|
+
# subsequent page. When paginating, all other parameters provided to the request
|
1046
|
+
# must match the call that provided the page token.
|
1047
|
+
# Corresponds to the JSON property `pageToken`
|
1048
|
+
# @return [String]
|
1049
|
+
attr_accessor :page_token
|
1050
|
+
|
1051
|
+
# Specification of the time-related aggregation parameters of a timeline.
|
1052
|
+
# Timelines have an aggregation period (`DAILY`, `HOURLY`, etc) which defines
|
1053
|
+
# how events are aggregated in metrics. The points in a timeline are defined by
|
1054
|
+
# the starting DateTime of the aggregation period. The duration is implicit in
|
1055
|
+
# the AggregationPeriod. Hourly aggregation periods, when supported by a metric
|
1056
|
+
# set, are always specified in UTC to avoid ambiguities around daylight saving
|
1057
|
+
# time transitions, where an hour is skipped when adopting DST, and repeated
|
1058
|
+
# when abandoning DST. For example, the timestamp '2021-11-07 01:00:00 America/
|
1059
|
+
# Los_Angeles' is ambiguous since it can correspond to '2021-11-07 08:00:00 UTC'
|
1060
|
+
# or '2021-11-07 09:00:00 UTC'. Daily aggregation periods require specifying a
|
1061
|
+
# timezone which will determine the precise instants of the start and the end of
|
1062
|
+
# the day. Not all metric sets support all timezones, so make sure to check
|
1063
|
+
# which timezones are supported by the metric set you want to query.
|
1064
|
+
# Corresponds to the JSON property `timelineSpec`
|
1065
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1TimelineSpec]
|
1066
|
+
attr_accessor :timeline_spec
|
1067
|
+
|
1068
|
+
def initialize(**args)
|
1069
|
+
update!(**args)
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
# Update properties of this object
|
1073
|
+
def update!(**args)
|
1074
|
+
@dimensions = args[:dimensions] if args.key?(:dimensions)
|
1075
|
+
@filter = args[:filter] if args.key?(:filter)
|
1076
|
+
@metrics = args[:metrics] if args.key?(:metrics)
|
1077
|
+
@page_size = args[:page_size] if args.key?(:page_size)
|
1078
|
+
@page_token = args[:page_token] if args.key?(:page_token)
|
1079
|
+
@timeline_spec = args[:timeline_spec] if args.key?(:timeline_spec)
|
1080
|
+
end
|
1081
|
+
end
|
1082
|
+
|
1083
|
+
# Error counts query response.
|
1084
|
+
class GooglePlayDeveloperReportingV1beta1QueryErrorCountMetricSetResponse
|
1085
|
+
include Google::Apis::Core::Hashable
|
1086
|
+
|
1087
|
+
# Continuation token to fetch the next page of data.
|
1088
|
+
# Corresponds to the JSON property `nextPageToken`
|
1089
|
+
# @return [String]
|
1090
|
+
attr_accessor :next_page_token
|
1091
|
+
|
1092
|
+
# Returned rows.
|
1093
|
+
# Corresponds to the JSON property `rows`
|
1094
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1MetricsRow>]
|
1095
|
+
attr_accessor :rows
|
1096
|
+
|
1097
|
+
def initialize(**args)
|
1098
|
+
update!(**args)
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
# Update properties of this object
|
1102
|
+
def update!(**args)
|
1103
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1104
|
+
@rows = args[:rows] if args.key?(:rows)
|
1105
|
+
end
|
1106
|
+
end
|
1107
|
+
|
825
1108
|
# Request message for QueryExcessiveWakeupRateMetricSet.
|
826
1109
|
class GooglePlayDeveloperReportingV1beta1QueryExcessiveWakeupRateMetricSetRequest
|
827
1110
|
include Google::Apis::Core::Hashable
|
@@ -962,8 +1245,8 @@ module Google
|
|
962
1245
|
end
|
963
1246
|
end
|
964
1247
|
|
965
|
-
# Request message for
|
966
|
-
class
|
1248
|
+
# Request message for QuerySlowRenderingRateMetricSet.
|
1249
|
+
class GooglePlayDeveloperReportingV1beta1QuerySlowRenderingRateMetricSetRequest
|
967
1250
|
include Google::Apis::Core::Hashable
|
968
1251
|
|
969
1252
|
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
@@ -999,21 +1282,28 @@ module Google
|
|
999
1282
|
# @return [String]
|
1000
1283
|
attr_accessor :filter
|
1001
1284
|
|
1002
|
-
# Metrics to aggregate. **Supported metrics:** * `
|
1003
|
-
# type.Decimal`): Percentage of distinct users in the aggregation period
|
1004
|
-
# had a
|
1005
|
-
#
|
1006
|
-
#
|
1285
|
+
# Metrics to aggregate. **Supported metrics:** * `slowRenderingRate20Fps` (`
|
1286
|
+
# google.type.Decimal`): Percentage of distinct users in the aggregation period
|
1287
|
+
# that had a slow rendering. * `slowRenderingRate20Fps7dUserWeighted` (`google.
|
1288
|
+
# type.Decimal`): Rolling average value of `slowRenderingRate20Fps` in the last
|
1289
|
+
# 7 days. The daily values are weighted by the count of distinct users for the
|
1290
|
+
# day. * `slowRenderingRate20Fps28dUserWeighted` (`google.type.Decimal`):
|
1291
|
+
# Rolling average value of `slowRenderingRate20Fps` in the last 28 days. The
|
1292
|
+
# daily values are weighted by the count of distinct users for the day. * `
|
1293
|
+
# slowRenderingRate30Fps` (`google.type.Decimal`): Percentage of distinct users
|
1294
|
+
# in the aggregation period that had a slow rendering. * `
|
1295
|
+
# slowRenderingRate30Fps7dUserWeighted` (`google.type.Decimal`): Rolling average
|
1296
|
+
# value of `slowRenderingRate30Fps` in the last 7 days. The daily values are
|
1007
1297
|
# weighted by the count of distinct users for the day. * `
|
1008
|
-
#
|
1009
|
-
# value of `
|
1010
|
-
# weighted by the count of distinct users for the day. * `
|
1011
|
-
# google.type.Decimal`): Count of distinct users in the
|
1012
|
-
# were used as normalization value for the `
|
1013
|
-
#
|
1014
|
-
#
|
1015
|
-
#
|
1016
|
-
#
|
1298
|
+
# slowRenderingRate30Fps28dUserWeighted` (`google.type.Decimal`): Rolling
|
1299
|
+
# average value of `slowRenderingRate30Fps` in the last 28 days. The daily
|
1300
|
+
# values are weighted by the count of distinct users for the day. * `
|
1301
|
+
# distinctUsers` (`google.type.Decimal`): Count of distinct users in the
|
1302
|
+
# aggregation period that were used as normalization value for the `
|
1303
|
+
# slowRenderingRate20Fps`/`slowRenderingRate30Fps` metric. A user is counted in
|
1304
|
+
# this metric if their app was launched in the device. Care must be taken not to
|
1305
|
+
# aggregate this count further, as it may result in users being counted multiple
|
1306
|
+
# times.
|
1017
1307
|
# Corresponds to the JSON property `metrics`
|
1018
1308
|
# @return [Array<String>]
|
1019
1309
|
attr_accessor :metrics
|
@@ -1054,7 +1344,7 @@ module Google
|
|
1054
1344
|
# Android versions. This is the default. Supports all the above dimensions. * `
|
1055
1345
|
# APP_TESTERS` To select data from users who have opted in to be testers.
|
1056
1346
|
# Supports all the above dimensions. * `OS_BETA` To select data from beta
|
1057
|
-
#
|
1347
|
+
# Android versions only, excluding data from released Android versions. Only the
|
1058
1348
|
# following dimensions are supported: * `versionCode` (int64): version of the
|
1059
1349
|
# app that was running on the user's device. * `osBuild` (string): OS build of
|
1060
1350
|
# the user's device, e.g., "T1B2.220916.004".
|
@@ -1078,8 +1368,8 @@ module Google
|
|
1078
1368
|
end
|
1079
1369
|
end
|
1080
1370
|
|
1081
|
-
# Response message for
|
1082
|
-
class
|
1371
|
+
# Response message for QuerySlowRenderingRateMetricSet.
|
1372
|
+
class GooglePlayDeveloperReportingV1beta1QuerySlowRenderingRateMetricSetResponse
|
1083
1373
|
include Google::Apis::Core::Hashable
|
1084
1374
|
|
1085
1375
|
# Continuation token to fetch the next page of data.
|
@@ -1103,6 +1393,484 @@ module Google
|
|
1103
1393
|
end
|
1104
1394
|
end
|
1105
1395
|
|
1396
|
+
# Request message for QuerySlowStartRateMetricSet.
|
1397
|
+
class GooglePlayDeveloperReportingV1beta1QuerySlowStartRateMetricSetRequest
|
1398
|
+
include Google::Apis::Core::Hashable
|
1399
|
+
|
1400
|
+
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
1401
|
+
# string): the API level of Android that was running on the user's device. * `
|
1402
|
+
# versionCode` (int64): version of the app that was running on the user's device.
|
1403
|
+
# * `deviceModel` (string): unique identifier of the user's device model. * `
|
1404
|
+
# deviceType` (string): the type (also known as form factor) of the user's
|
1405
|
+
# device. * `countryCode` (string): the country or region of the user's device
|
1406
|
+
# based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
|
1407
|
+
# for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
|
1408
|
+
# in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
|
1409
|
+
# primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
|
1410
|
+
# com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
1411
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
1412
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
1413
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
1414
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
1415
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
1416
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
1417
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
1418
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
1419
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
1420
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
1421
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
1422
|
+
# Corresponds to the JSON property `dimensions`
|
1423
|
+
# @return [Array<String>]
|
1424
|
+
attr_accessor :dimensions
|
1425
|
+
|
1426
|
+
# Filters to apply to data. The filtering expression follows [AIP-160](https://
|
1427
|
+
# google.aip.dev/160) standard and supports filtering by equality of all
|
1428
|
+
# breakdown dimensions.
|
1429
|
+
# Corresponds to the JSON property `filter`
|
1430
|
+
# @return [String]
|
1431
|
+
attr_accessor :filter
|
1432
|
+
|
1433
|
+
# Metrics to aggregate. **Supported metrics:** * `slowStartRate` (`google.type.
|
1434
|
+
# Decimal`): Percentage of distinct users in the aggregation period that had a
|
1435
|
+
# slow start. * `slowStartRate7dUserWeighted` (`google.type.Decimal`): Rolling
|
1436
|
+
# average value of `slowStartRate` in the last 7 days. The daily values are
|
1437
|
+
# weighted by the count of distinct users for the day. * `
|
1438
|
+
# slowStartRate28dUserWeighted` (`google.type.Decimal`): Rolling average value
|
1439
|
+
# of `slowStartRate` in the last 28 days. The daily values are weighted by the
|
1440
|
+
# count of distinct users for the day. * `distinctUsers` (`google.type.Decimal`):
|
1441
|
+
# Count of distinct users in the aggregation period that were used as
|
1442
|
+
# normalization value for the `slowStartRate` metric. A user is counted in this
|
1443
|
+
# metric if their app was launched in the device. Care must be taken not to
|
1444
|
+
# aggregate this count further, as it may result in users being counted multiple
|
1445
|
+
# times.
|
1446
|
+
# Corresponds to the JSON property `metrics`
|
1447
|
+
# @return [Array<String>]
|
1448
|
+
attr_accessor :metrics
|
1449
|
+
|
1450
|
+
# Maximum size of the returned data. If unspecified, at most 1000 rows will be
|
1451
|
+
# returned. The maximum value is 100000; values above 100000 will be coerced to
|
1452
|
+
# 100000.
|
1453
|
+
# Corresponds to the JSON property `pageSize`
|
1454
|
+
# @return [Fixnum]
|
1455
|
+
attr_accessor :page_size
|
1456
|
+
|
1457
|
+
# A page token, received from a previous call. Provide this to retrieve the
|
1458
|
+
# subsequent page. When paginating, all other parameters provided to the request
|
1459
|
+
# must match the call that provided the page token.
|
1460
|
+
# Corresponds to the JSON property `pageToken`
|
1461
|
+
# @return [String]
|
1462
|
+
attr_accessor :page_token
|
1463
|
+
|
1464
|
+
# Specification of the time-related aggregation parameters of a timeline.
|
1465
|
+
# Timelines have an aggregation period (`DAILY`, `HOURLY`, etc) which defines
|
1466
|
+
# how events are aggregated in metrics. The points in a timeline are defined by
|
1467
|
+
# the starting DateTime of the aggregation period. The duration is implicit in
|
1468
|
+
# the AggregationPeriod. Hourly aggregation periods, when supported by a metric
|
1469
|
+
# set, are always specified in UTC to avoid ambiguities around daylight saving
|
1470
|
+
# time transitions, where an hour is skipped when adopting DST, and repeated
|
1471
|
+
# when abandoning DST. For example, the timestamp '2021-11-07 01:00:00 America/
|
1472
|
+
# Los_Angeles' is ambiguous since it can correspond to '2021-11-07 08:00:00 UTC'
|
1473
|
+
# or '2021-11-07 09:00:00 UTC'. Daily aggregation periods require specifying a
|
1474
|
+
# timezone which will determine the precise instants of the start and the end of
|
1475
|
+
# the day. Not all metric sets support all timezones, so make sure to check
|
1476
|
+
# which timezones are supported by the metric set you want to query.
|
1477
|
+
# Corresponds to the JSON property `timelineSpec`
|
1478
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1TimelineSpec]
|
1479
|
+
attr_accessor :timeline_spec
|
1480
|
+
|
1481
|
+
# User view to select. The output data will correspond to the selected view. **
|
1482
|
+
# Supported values:** * `OS_PUBLIC` To select data from all publicly released
|
1483
|
+
# Android versions. This is the default. Supports all the above dimensions. * `
|
1484
|
+
# APP_TESTERS` To select data from users who have opted in to be testers.
|
1485
|
+
# Supports all the above dimensions. * `OS_BETA` To select data from beta
|
1486
|
+
# Android versions only, excluding data from released Android versions. Only the
|
1487
|
+
# following dimensions are supported: * `versionCode` (int64): version of the
|
1488
|
+
# app that was running on the user's device. * `osBuild` (string): OS build of
|
1489
|
+
# the user's device, e.g., "T1B2.220916.004".
|
1490
|
+
# Corresponds to the JSON property `userCohort`
|
1491
|
+
# @return [String]
|
1492
|
+
attr_accessor :user_cohort
|
1493
|
+
|
1494
|
+
def initialize(**args)
|
1495
|
+
update!(**args)
|
1496
|
+
end
|
1497
|
+
|
1498
|
+
# Update properties of this object
|
1499
|
+
def update!(**args)
|
1500
|
+
@dimensions = args[:dimensions] if args.key?(:dimensions)
|
1501
|
+
@filter = args[:filter] if args.key?(:filter)
|
1502
|
+
@metrics = args[:metrics] if args.key?(:metrics)
|
1503
|
+
@page_size = args[:page_size] if args.key?(:page_size)
|
1504
|
+
@page_token = args[:page_token] if args.key?(:page_token)
|
1505
|
+
@timeline_spec = args[:timeline_spec] if args.key?(:timeline_spec)
|
1506
|
+
@user_cohort = args[:user_cohort] if args.key?(:user_cohort)
|
1507
|
+
end
|
1508
|
+
end
|
1509
|
+
|
1510
|
+
# Response message for QuerySlowStartRateMetricSet.
|
1511
|
+
class GooglePlayDeveloperReportingV1beta1QuerySlowStartRateMetricSetResponse
|
1512
|
+
include Google::Apis::Core::Hashable
|
1513
|
+
|
1514
|
+
# Continuation token to fetch the next page of data.
|
1515
|
+
# Corresponds to the JSON property `nextPageToken`
|
1516
|
+
# @return [String]
|
1517
|
+
attr_accessor :next_page_token
|
1518
|
+
|
1519
|
+
# Returned rows of data.
|
1520
|
+
# Corresponds to the JSON property `rows`
|
1521
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1MetricsRow>]
|
1522
|
+
attr_accessor :rows
|
1523
|
+
|
1524
|
+
def initialize(**args)
|
1525
|
+
update!(**args)
|
1526
|
+
end
|
1527
|
+
|
1528
|
+
# Update properties of this object
|
1529
|
+
def update!(**args)
|
1530
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1531
|
+
@rows = args[:rows] if args.key?(:rows)
|
1532
|
+
end
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
# Request message for QueryStuckBackgroundWakelockRateMetricSet.
|
1536
|
+
class GooglePlayDeveloperReportingV1beta1QueryStuckBackgroundWakelockRateMetricSetRequest
|
1537
|
+
include Google::Apis::Core::Hashable
|
1538
|
+
|
1539
|
+
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
1540
|
+
# string): the API level of Android that was running on the user's device. * `
|
1541
|
+
# versionCode` (int64): version of the app that was running on the user's device.
|
1542
|
+
# * `deviceModel` (string): unique identifier of the user's device model. * `
|
1543
|
+
# deviceType` (string): the type (also known as form factor) of the user's
|
1544
|
+
# device. * `countryCode` (string): the country or region of the user's device
|
1545
|
+
# based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
|
1546
|
+
# for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
|
1547
|
+
# in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
|
1548
|
+
# primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
|
1549
|
+
# com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
1550
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
1551
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
1552
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
1553
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
1554
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
1555
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
1556
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
1557
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
1558
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
1559
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
1560
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
1561
|
+
# Corresponds to the JSON property `dimensions`
|
1562
|
+
# @return [Array<String>]
|
1563
|
+
attr_accessor :dimensions
|
1564
|
+
|
1565
|
+
# Filters to apply to data. The filtering expression follows [AIP-160](https://
|
1566
|
+
# google.aip.dev/160) standard and supports filtering by equality of all
|
1567
|
+
# breakdown dimensions.
|
1568
|
+
# Corresponds to the JSON property `filter`
|
1569
|
+
# @return [String]
|
1570
|
+
attr_accessor :filter
|
1571
|
+
|
1572
|
+
# Metrics to aggregate. **Supported metrics:** * `stuckBgWakelockRate` (`google.
|
1573
|
+
# type.Decimal`): Percentage of distinct users in the aggregation period that
|
1574
|
+
# had a wakelock held in the background for longer than 1 hour. * `
|
1575
|
+
# stuckBgWakelockRate7dUserWeighted` (`google.type.Decimal`): Rolling average
|
1576
|
+
# value of `stuckBgWakelockRate` in the last 7 days. The daily values are
|
1577
|
+
# weighted by the count of distinct users for the day. * `
|
1578
|
+
# stuckBgWakelockRate28dUserWeighted` (`google.type.Decimal`): Rolling average
|
1579
|
+
# value of `stuckBgWakelockRate` in the last 28 days. The daily values are
|
1580
|
+
# weighted by the count of distinct users for the day. * `distinctUsers` (`
|
1581
|
+
# google.type.Decimal`): Count of distinct users in the aggregation period that
|
1582
|
+
# were used as normalization value for the `stuckBgWakelockRate` metric. A user
|
1583
|
+
# is counted in this metric if they app was doing any work on the device, i.e.,
|
1584
|
+
# not just active foreground usage but also background work. Care must be taken
|
1585
|
+
# not to aggregate this count further, as it may result in users being counted
|
1586
|
+
# multiple times.
|
1587
|
+
# Corresponds to the JSON property `metrics`
|
1588
|
+
# @return [Array<String>]
|
1589
|
+
attr_accessor :metrics
|
1590
|
+
|
1591
|
+
# Maximum size of the returned data. If unspecified, at most 1000 rows will be
|
1592
|
+
# returned. The maximum value is 100000; values above 100000 will be coerced to
|
1593
|
+
# 100000.
|
1594
|
+
# Corresponds to the JSON property `pageSize`
|
1595
|
+
# @return [Fixnum]
|
1596
|
+
attr_accessor :page_size
|
1597
|
+
|
1598
|
+
# A page token, received from a previous call. Provide this to retrieve the
|
1599
|
+
# subsequent page. When paginating, all other parameters provided to the request
|
1600
|
+
# must match the call that provided the page token.
|
1601
|
+
# Corresponds to the JSON property `pageToken`
|
1602
|
+
# @return [String]
|
1603
|
+
attr_accessor :page_token
|
1604
|
+
|
1605
|
+
# Specification of the time-related aggregation parameters of a timeline.
|
1606
|
+
# Timelines have an aggregation period (`DAILY`, `HOURLY`, etc) which defines
|
1607
|
+
# how events are aggregated in metrics. The points in a timeline are defined by
|
1608
|
+
# the starting DateTime of the aggregation period. The duration is implicit in
|
1609
|
+
# the AggregationPeriod. Hourly aggregation periods, when supported by a metric
|
1610
|
+
# set, are always specified in UTC to avoid ambiguities around daylight saving
|
1611
|
+
# time transitions, where an hour is skipped when adopting DST, and repeated
|
1612
|
+
# when abandoning DST. For example, the timestamp '2021-11-07 01:00:00 America/
|
1613
|
+
# Los_Angeles' is ambiguous since it can correspond to '2021-11-07 08:00:00 UTC'
|
1614
|
+
# or '2021-11-07 09:00:00 UTC'. Daily aggregation periods require specifying a
|
1615
|
+
# timezone which will determine the precise instants of the start and the end of
|
1616
|
+
# the day. Not all metric sets support all timezones, so make sure to check
|
1617
|
+
# which timezones are supported by the metric set you want to query.
|
1618
|
+
# Corresponds to the JSON property `timelineSpec`
|
1619
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1TimelineSpec]
|
1620
|
+
attr_accessor :timeline_spec
|
1621
|
+
|
1622
|
+
# User view to select. The output data will correspond to the selected view. **
|
1623
|
+
# Supported values:** * `OS_PUBLIC` To select data from all publicly released
|
1624
|
+
# Android versions. This is the default. Supports all the above dimensions. * `
|
1625
|
+
# APP_TESTERS` To select data from users who have opted in to be testers.
|
1626
|
+
# Supports all the above dimensions. * `OS_BETA` To select data from beta
|
1627
|
+
# android versions only, excluding data from released android versions. Only the
|
1628
|
+
# following dimensions are supported: * `versionCode` (int64): version of the
|
1629
|
+
# app that was running on the user's device. * `osBuild` (string): OS build of
|
1630
|
+
# the user's device, e.g., "T1B2.220916.004".
|
1631
|
+
# Corresponds to the JSON property `userCohort`
|
1632
|
+
# @return [String]
|
1633
|
+
attr_accessor :user_cohort
|
1634
|
+
|
1635
|
+
def initialize(**args)
|
1636
|
+
update!(**args)
|
1637
|
+
end
|
1638
|
+
|
1639
|
+
# Update properties of this object
|
1640
|
+
def update!(**args)
|
1641
|
+
@dimensions = args[:dimensions] if args.key?(:dimensions)
|
1642
|
+
@filter = args[:filter] if args.key?(:filter)
|
1643
|
+
@metrics = args[:metrics] if args.key?(:metrics)
|
1644
|
+
@page_size = args[:page_size] if args.key?(:page_size)
|
1645
|
+
@page_token = args[:page_token] if args.key?(:page_token)
|
1646
|
+
@timeline_spec = args[:timeline_spec] if args.key?(:timeline_spec)
|
1647
|
+
@user_cohort = args[:user_cohort] if args.key?(:user_cohort)
|
1648
|
+
end
|
1649
|
+
end
|
1650
|
+
|
1651
|
+
# Response message for QueryStuckBackgroundWakelockRateMetricSet.
|
1652
|
+
class GooglePlayDeveloperReportingV1beta1QueryStuckBackgroundWakelockRateMetricSetResponse
|
1653
|
+
include Google::Apis::Core::Hashable
|
1654
|
+
|
1655
|
+
# Continuation token to fetch the next page of data.
|
1656
|
+
# Corresponds to the JSON property `nextPageToken`
|
1657
|
+
# @return [String]
|
1658
|
+
attr_accessor :next_page_token
|
1659
|
+
|
1660
|
+
# Returned rows of data.
|
1661
|
+
# Corresponds to the JSON property `rows`
|
1662
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1MetricsRow>]
|
1663
|
+
attr_accessor :rows
|
1664
|
+
|
1665
|
+
def initialize(**args)
|
1666
|
+
update!(**args)
|
1667
|
+
end
|
1668
|
+
|
1669
|
+
# Update properties of this object
|
1670
|
+
def update!(**args)
|
1671
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1672
|
+
@rows = args[:rows] if args.key?(:rows)
|
1673
|
+
end
|
1674
|
+
end
|
1675
|
+
|
1676
|
+
# Response with a paginated list of issues that matched the request.
|
1677
|
+
class GooglePlayDeveloperReportingV1beta1SearchErrorIssuesResponse
|
1678
|
+
include Google::Apis::Core::Hashable
|
1679
|
+
|
1680
|
+
# ErrorIssues that were found.
|
1681
|
+
# Corresponds to the JSON property `errorIssues`
|
1682
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1ErrorIssue>]
|
1683
|
+
attr_accessor :error_issues
|
1684
|
+
|
1685
|
+
# Continuation token to fetch the next page of data.
|
1686
|
+
# Corresponds to the JSON property `nextPageToken`
|
1687
|
+
# @return [String]
|
1688
|
+
attr_accessor :next_page_token
|
1689
|
+
|
1690
|
+
def initialize(**args)
|
1691
|
+
update!(**args)
|
1692
|
+
end
|
1693
|
+
|
1694
|
+
# Update properties of this object
|
1695
|
+
def update!(**args)
|
1696
|
+
@error_issues = args[:error_issues] if args.key?(:error_issues)
|
1697
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1698
|
+
end
|
1699
|
+
end
|
1700
|
+
|
1701
|
+
# Response with a paginated list of error reports matching the search query.
|
1702
|
+
class GooglePlayDeveloperReportingV1beta1SearchErrorReportsResponse
|
1703
|
+
include Google::Apis::Core::Hashable
|
1704
|
+
|
1705
|
+
# Error reports that were found.
|
1706
|
+
# Corresponds to the JSON property `errorReports`
|
1707
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1ErrorReport>]
|
1708
|
+
attr_accessor :error_reports
|
1709
|
+
|
1710
|
+
# Page token to fetch the next page of reports.
|
1711
|
+
# Corresponds to the JSON property `nextPageToken`
|
1712
|
+
# @return [String]
|
1713
|
+
attr_accessor :next_page_token
|
1714
|
+
|
1715
|
+
def initialize(**args)
|
1716
|
+
update!(**args)
|
1717
|
+
end
|
1718
|
+
|
1719
|
+
# Update properties of this object
|
1720
|
+
def update!(**args)
|
1721
|
+
@error_reports = args[:error_reports] if args.key?(:error_reports)
|
1722
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1723
|
+
end
|
1724
|
+
end
|
1725
|
+
|
1726
|
+
# Singleton resource representing the set of Slow Rendering metrics. This metric
|
1727
|
+
# set contains low-level rendering data captured by SurafeFlinger. Sessions are
|
1728
|
+
# evaluated based on the present-to-present histogram of frames handled by any
|
1729
|
+
# SurfaceFlinger layer owned by the app. A slow session is a session where more
|
1730
|
+
# than 25% of frames for the session did not meet the metric's target frame rate
|
1731
|
+
# (either 20fps, or 30fps). *NOTE:* This metric set is only available for games.
|
1732
|
+
# **Supported aggregation periods:** * DAILY: metrics are aggregated in calendar
|
1733
|
+
# date intervals. Due to historical constraints, the only supported timezone is `
|
1734
|
+
# America/Los_Angeles`. **Supported metrics:** * `slowRenderingRate20Fps` (`
|
1735
|
+
# google.type.Decimal`): Percentage of distinct users in the aggregation period
|
1736
|
+
# that had slow rendering. * `slowRenderingRate20Fps7dUserWeighted` (`google.
|
1737
|
+
# type.Decimal`): Rolling average value of `slowRenderingRate20Fps` in the last
|
1738
|
+
# 7 days. The daily values are weighted by the count of distinct users for the
|
1739
|
+
# day. * `slowRenderingRate20Fps28dUserWeighted` (`google.type.Decimal`):
|
1740
|
+
# Rolling average value of `slowRenderingRate20Fps` in the last 28 days. The
|
1741
|
+
# daily values are weighted by the count of distinct users for the day. * `
|
1742
|
+
# slowRenderingRate30Fps` (`google.type.Decimal`): Percentage of distinct users
|
1743
|
+
# in the aggregation period that had slow rendering. * `
|
1744
|
+
# slowRenderingRate30Fps7dUserWeighted` (`google.type.Decimal`): Rolling average
|
1745
|
+
# value of `slowRenderingRate30Fps` in the last 7 days. The daily values are
|
1746
|
+
# weighted by the count of distinct users for the day. * `
|
1747
|
+
# slowRenderingRate30Fps28dUserWeighted` (`google.type.Decimal`): Rolling
|
1748
|
+
# average value of `slowRenderingRate30Fps` in the last 28 days. The daily
|
1749
|
+
# values are weighted by the count of distinct users for the day. * `
|
1750
|
+
# distinctUsers` (`google.type.Decimal`): Count of distinct users in the
|
1751
|
+
# aggregation period that were used as normalization value for the `
|
1752
|
+
# slowRenderingRate20Fps`/`slowRenderingRate30Fps` metric. A user is counted in
|
1753
|
+
# this metric if their app rendered any frames. Care must be taken not to
|
1754
|
+
# aggregate this count further, as it may result in users being counted multiple
|
1755
|
+
# times. **Supported dimensions:** * `apiLevel` (string): the API level of
|
1756
|
+
# Android that was running on the user's device. * `versionCode` (int64):
|
1757
|
+
# version of the app that was running on the user's device. * `deviceModel` (
|
1758
|
+
# string): unique identifier of the user's device model. * `deviceType` (string):
|
1759
|
+
# the type (also known as form factor) of the user's device. * `countryCode` (
|
1760
|
+
# string): the country or region of the user's device based on their IP address,
|
1761
|
+
# represented as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
1762
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
1763
|
+
# . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
|
1764
|
+
# , Samsung. [Reference](https://developer.android.com/reference/android/os/
|
1765
|
+
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
|
1766
|
+
# primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
|
1767
|
+
# android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
|
1768
|
+
# Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
|
1769
|
+
# of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
|
1770
|
+
# device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
|
1771
|
+
# GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
|
1772
|
+
# g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
|
1773
|
+
# "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
|
1774
|
+
# g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
|
1775
|
+
# NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
|
1776
|
+
# , mdpi, hdpi. **Required permissions**: to access this resource, the calling
|
1777
|
+
# user needs the _View app information (read-only)_ permission for the app.
|
1778
|
+
class GooglePlayDeveloperReportingV1beta1SlowRenderingRateMetricSet
|
1779
|
+
include Google::Apis::Core::Hashable
|
1780
|
+
|
1781
|
+
# Represents the latest available time that can be requested in a TimelineSpec.
|
1782
|
+
# Different aggregation periods have different freshness. For example, `DAILY`
|
1783
|
+
# aggregation may lag behind `HOURLY` in cases where such aggregation is
|
1784
|
+
# computed only once at the end of the day.
|
1785
|
+
# Corresponds to the JSON property `freshnessInfo`
|
1786
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1FreshnessInfo]
|
1787
|
+
attr_accessor :freshness_info
|
1788
|
+
|
1789
|
+
# The resource name. Format: apps/`app`/slowRenderingRateMetricSet
|
1790
|
+
# Corresponds to the JSON property `name`
|
1791
|
+
# @return [String]
|
1792
|
+
attr_accessor :name
|
1793
|
+
|
1794
|
+
def initialize(**args)
|
1795
|
+
update!(**args)
|
1796
|
+
end
|
1797
|
+
|
1798
|
+
# Update properties of this object
|
1799
|
+
def update!(**args)
|
1800
|
+
@freshness_info = args[:freshness_info] if args.key?(:freshness_info)
|
1801
|
+
@name = args[:name] if args.key?(:name)
|
1802
|
+
end
|
1803
|
+
end
|
1804
|
+
|
1805
|
+
# Singleton resource representing the set of Slow Start metrics. This metric set
|
1806
|
+
# contains Activity start duration data. **Supported aggregation periods:** *
|
1807
|
+
# DAILY: metrics are aggregated in calendar date intervals. Due to historical
|
1808
|
+
# constraints, the only supported timezone is `America/Los_Angeles`. **Supported
|
1809
|
+
# metrics:** * `slowStartRate` (`google.type.Decimal`): Percentage of distinct
|
1810
|
+
# users in the aggregation period that had a slow start. * `
|
1811
|
+
# slowStartRate7dUserWeighted` (`google.type.Decimal`): Rolling average value of
|
1812
|
+
# `slowStartRate` in the last 7 days. The daily values are weighted by the count
|
1813
|
+
# of distinct users for the day. * `slowStartRate28dUserWeighted` (`google.type.
|
1814
|
+
# Decimal`): Rolling average value of `slowStartRate` in the last 28 days. The
|
1815
|
+
# daily values are weighted by the count of distinct users for the day. * `
|
1816
|
+
# distinctUsers` (`google.type.Decimal`): Count of distinct users in the
|
1817
|
+
# aggregation period that were used as normalization value for the `
|
1818
|
+
# slowStartRate` metric. A user is counted in this metric if their app was
|
1819
|
+
# launched in the device. Care must be taken not to aggregate this count further,
|
1820
|
+
# as it may result in users being counted multiple times. **Required dimension:*
|
1821
|
+
# * This dimension must be specified with each request for the request to be
|
1822
|
+
# valid. * `startType` (string): the type of start that was measured. Valid
|
1823
|
+
# types are `HOT`, `WARM` and `COLD`. **Supported dimensions:** * `apiLevel` (
|
1824
|
+
# string): the API level of Android that was running on the user's device. * `
|
1825
|
+
# versionCode` (int64): version of the app that was running on the user's device.
|
1826
|
+
# * `deviceModel` (string): unique identifier of the user's device model. * `
|
1827
|
+
# deviceType` (string): the type (also known as form factor) of the user's
|
1828
|
+
# device. * `countryCode` (string): the country or region of the user's device
|
1829
|
+
# based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
|
1830
|
+
# for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
|
1831
|
+
# in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
|
1832
|
+
# primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
|
1833
|
+
# com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
1834
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
1835
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
1836
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
1837
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
1838
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
1839
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
1840
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
1841
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
1842
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
1843
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
1844
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
1845
|
+
# **Required permissions**: to access this resource, the calling user needs the
|
1846
|
+
# _View app information (read-only)_ permission for the app.
|
1847
|
+
class GooglePlayDeveloperReportingV1beta1SlowStartRateMetricSet
|
1848
|
+
include Google::Apis::Core::Hashable
|
1849
|
+
|
1850
|
+
# Represents the latest available time that can be requested in a TimelineSpec.
|
1851
|
+
# Different aggregation periods have different freshness. For example, `DAILY`
|
1852
|
+
# aggregation may lag behind `HOURLY` in cases where such aggregation is
|
1853
|
+
# computed only once at the end of the day.
|
1854
|
+
# Corresponds to the JSON property `freshnessInfo`
|
1855
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1FreshnessInfo]
|
1856
|
+
attr_accessor :freshness_info
|
1857
|
+
|
1858
|
+
# The resource name. Format: apps/`app`/slowStartRateMetricSet
|
1859
|
+
# Corresponds to the JSON property `name`
|
1860
|
+
# @return [String]
|
1861
|
+
attr_accessor :name
|
1862
|
+
|
1863
|
+
def initialize(**args)
|
1864
|
+
update!(**args)
|
1865
|
+
end
|
1866
|
+
|
1867
|
+
# Update properties of this object
|
1868
|
+
def update!(**args)
|
1869
|
+
@freshness_info = args[:freshness_info] if args.key?(:freshness_info)
|
1870
|
+
@name = args[:name] if args.key?(:name)
|
1871
|
+
end
|
1872
|
+
end
|
1873
|
+
|
1106
1874
|
# Singleton resource representing the set of Stuck Background Wakelocks metrics.
|
1107
1875
|
# This metric set contains PowerManager wakelock duration data combined with
|
1108
1876
|
# process state data to produce a normalized metric independent of user counts. *
|