google-apis-playdeveloperreporting_v1beta1 0.41.0 → 0.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/playdeveloperreporting_v1beta1/classes.rb +693 -219
- data/lib/google/apis/playdeveloperreporting_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/playdeveloperreporting_v1beta1/representations.rb +130 -0
- data/lib/google/apis/playdeveloperreporting_v1beta1/service.rb +128 -0
- metadata +2 -2
|
@@ -22,6 +22,67 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module PlaydeveloperreportingV1beta1
|
|
24
24
|
|
|
25
|
+
# Profile describing the visibility restriction of an MCP tool. Key: "google.com/
|
|
26
|
+
# tool.profiles/visibility.restriction"
|
|
27
|
+
class ApiservingMcpMcpToolVisibility
|
|
28
|
+
include Google::Apis::Core::Hashable
|
|
29
|
+
|
|
30
|
+
# A list of field-level visibility restrictions.
|
|
31
|
+
# Corresponds to the JSON property `fieldVisibility`
|
|
32
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::ApiservingMcpMcpToolVisibilityFieldVisibility>]
|
|
33
|
+
attr_accessor :field_visibility
|
|
34
|
+
|
|
35
|
+
# The strategy used to enforce visibility restrictions. DO NOT USE. This field
|
|
36
|
+
# is not yet implemented.
|
|
37
|
+
# Corresponds to the JSON property `visibilityEnforcementStrategy`
|
|
38
|
+
# @return [String]
|
|
39
|
+
attr_accessor :visibility_enforcement_strategy
|
|
40
|
+
|
|
41
|
+
# The visibility restriction labels for the tool itself (e.g., "
|
|
42
|
+
# PRODUCER_DEFINED_PREVIEW"). Multiple labels can be provided as a comma-
|
|
43
|
+
# separated string.
|
|
44
|
+
# Corresponds to the JSON property `visibilityRestriction`
|
|
45
|
+
# @return [String]
|
|
46
|
+
attr_accessor :visibility_restriction
|
|
47
|
+
|
|
48
|
+
def initialize(**args)
|
|
49
|
+
update!(**args)
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
# Update properties of this object
|
|
53
|
+
def update!(**args)
|
|
54
|
+
@field_visibility = args[:field_visibility] if args.key?(:field_visibility)
|
|
55
|
+
@visibility_enforcement_strategy = args[:visibility_enforcement_strategy] if args.key?(:visibility_enforcement_strategy)
|
|
56
|
+
@visibility_restriction = args[:visibility_restriction] if args.key?(:visibility_restriction)
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# Visibility rules for individual tool parameters (fields). This allows
|
|
61
|
+
# producers to hide specific fields in tools/list and tools/call.
|
|
62
|
+
class ApiservingMcpMcpToolVisibilityFieldVisibility
|
|
63
|
+
include Google::Apis::Core::Hashable
|
|
64
|
+
|
|
65
|
+
# The visibility restriction labels for this field (comma-separated).
|
|
66
|
+
# Corresponds to the JSON property `restriction`
|
|
67
|
+
# @return [String]
|
|
68
|
+
attr_accessor :restriction
|
|
69
|
+
|
|
70
|
+
# The name of the parameter in the input_schema or output_schema.
|
|
71
|
+
# Corresponds to the JSON property `selector`
|
|
72
|
+
# @return [String]
|
|
73
|
+
attr_accessor :selector
|
|
74
|
+
|
|
75
|
+
def initialize(**args)
|
|
76
|
+
update!(**args)
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
# Update properties of this object
|
|
80
|
+
def update!(**args)
|
|
81
|
+
@restriction = args[:restriction] if args.key?(:restriction)
|
|
82
|
+
@selector = args[:selector] if args.key?(:selector)
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
|
|
25
86
|
# Represents an anomaly detected in a dataset. Our anomaly detection systems
|
|
26
87
|
# flag datapoints in a time series that fall outside of and expected range
|
|
27
88
|
# derived from historical data. Although those expected ranges have an upper and
|
|
@@ -88,6 +149,76 @@ module Google
|
|
|
88
149
|
end
|
|
89
150
|
end
|
|
90
151
|
|
|
152
|
+
# Singleton resource representing the set of Anon RSS and Swap Memory Usage
|
|
153
|
+
# metrics. This metric set contains anon RSS and swap memory usage data combined
|
|
154
|
+
# with usage data. **Supported aggregation periods:** * DAILY: metrics are
|
|
155
|
+
# aggregated in calendar date intervals. Due to historical constraints, the only
|
|
156
|
+
# supported timezone is `America/Los_Angeles`. **Supported metrics:** * `
|
|
157
|
+
# anonRssAndSwapMemoryUsageP50` (`google.type.Decimal`): 50th percentile of anon
|
|
158
|
+
# RSS and swap memory usage. * `anonRssAndSwapMemoryUsageP75` (`google.type.
|
|
159
|
+
# Decimal`): 75th percentile of anon RSS and swap memory usage. * `
|
|
160
|
+
# anonRssAndSwapMemoryUsageP90` (`google.type.Decimal`): 90th percentile of anon
|
|
161
|
+
# RSS and swap memory usage. * `anonRssAndSwapMemoryUsageP95` (`google.type.
|
|
162
|
+
# Decimal`): 95th percentile of anon RSS and swap memory usage. * `
|
|
163
|
+
# anonRssAndSwapMemoryUsageP99` (`google.type.Decimal`): 99th percentile of anon
|
|
164
|
+
# RSS and swap memory usage. * `distinctUsers` (`google.type.Decimal`): Count of
|
|
165
|
+
# distinct users for which memory metrics were reported during the aggregation
|
|
166
|
+
# period. **Supported dimensions:** * `apiLevel` (string): the API level of
|
|
167
|
+
# Android that was running on the user's device, e.g., 26. * `versionCode` (
|
|
168
|
+
# int64): version of the app that was running on the user's device. * `
|
|
169
|
+
# deviceModel` (string): unique identifier of the user's device model. The form
|
|
170
|
+
# of the identifier is 'deviceBrand/device', where deviceBrand corresponds to
|
|
171
|
+
# Build.BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * `
|
|
172
|
+
# deviceBrand` (string): unique identifier of the user's device brand, e.g.,
|
|
173
|
+
# google. * `deviceType` (string): the type (also known as form factor) of the
|
|
174
|
+
# user's device, e.g., PHONE. * `countryCode` (string): the country or region of
|
|
175
|
+
# the user's device based on their IP address, represented as a 2-letter ISO-
|
|
176
|
+
# 3166 code (e.g. US for the United States). * `deviceRamBucket` (int64): RAM of
|
|
177
|
+
# the device, in MB, in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string):
|
|
178
|
+
# Make of the device's primary system-on-chip, e.g., Samsung. * `deviceSocModel`
|
|
179
|
+
# (string): Model of the device's primary system-on-chip, e.g., "Exynos 2100". *
|
|
180
|
+
# `deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
|
181
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
|
182
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
183
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
184
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
185
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
186
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
187
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
188
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
189
|
+
# * `processName` (string): the name of the process that was running, e.g., com.
|
|
190
|
+
# example.app. * `appState` (string): the state of the app when memory was
|
|
191
|
+
# collected, e.g., FOREGROUND. **Required permissions**: to access this resource,
|
|
192
|
+
# the calling user needs the _View app information (read-only)_ permission for
|
|
193
|
+
# the app.
|
|
194
|
+
class GooglePlayDeveloperReportingV1beta1AnonRssAndSwapMemoryUsageMetricSet
|
|
195
|
+
include Google::Apis::Core::Hashable
|
|
196
|
+
|
|
197
|
+
# Represents the latest available time that can be requested in a TimelineSpec.
|
|
198
|
+
# Different aggregation periods have different freshness. For example, `DAILY`
|
|
199
|
+
# aggregation may lag behind `HOURLY` in cases where such aggregation is
|
|
200
|
+
# computed only once at the end of the day.
|
|
201
|
+
# Corresponds to the JSON property `freshnessInfo`
|
|
202
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1FreshnessInfo]
|
|
203
|
+
attr_accessor :freshness_info
|
|
204
|
+
|
|
205
|
+
# Identifier. * The resource name. Format: apps/`app`/
|
|
206
|
+
# anonRssAndSwapMemoryUsageMetricSet
|
|
207
|
+
# Corresponds to the JSON property `name`
|
|
208
|
+
# @return [String]
|
|
209
|
+
attr_accessor :name
|
|
210
|
+
|
|
211
|
+
def initialize(**args)
|
|
212
|
+
update!(**args)
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
# Update properties of this object
|
|
216
|
+
def update!(**args)
|
|
217
|
+
@freshness_info = args[:freshness_info] if args.key?(:freshness_info)
|
|
218
|
+
@name = args[:name] if args.key?(:name)
|
|
219
|
+
end
|
|
220
|
+
end
|
|
221
|
+
|
|
91
222
|
# Singleton resource representing the set of ANR (Application not responding)
|
|
92
223
|
# metrics. This metric set contains ANRs data combined with usage data to
|
|
93
224
|
# produce a normalized metric independent of user counts. **Supported
|
|
@@ -129,14 +260,14 @@ module Google
|
|
|
129
260
|
# PHONE. * `countryCode` (string): the country or region of the user's device
|
|
130
261
|
# based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
|
|
131
262
|
# for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
|
|
132
|
-
# in buckets (
|
|
133
|
-
# primary system-on-chip, e.g., Samsung. [Reference](
|
|
134
|
-
# com/reference/android/os/Build#SOC_MANUFACTURER) * `
|
|
135
|
-
# Model of the device's primary system-on-chip, e.g., "
|
|
136
|
-
# https://developer.android.com/reference/android/os/
|
|
137
|
-
# deviceCpuMake` (string): Make of the device's CPU, e.g.,
|
|
138
|
-
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo
|
|
139
|
-
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
263
|
+
# in buckets (e.g., 1024 for 1-1.5GB, 4096 for 4-6GB). * `deviceSocMake` (string)
|
|
264
|
+
# : Make of the device's primary system-on-chip, e.g., Samsung. [Reference](
|
|
265
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MANUFACTURER) * `
|
|
266
|
+
# deviceSocModel` (string): Model of the device's primary system-on-chip, e.g., "
|
|
267
|
+
# Exynos 2100". [Reference](https://developer.android.com/reference/android/os/
|
|
268
|
+
# Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the device's CPU, e.g.,
|
|
269
|
+
# Qualcomm. * `deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo
|
|
270
|
+
# 240". * `deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
140
271
|
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
141
272
|
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
142
273
|
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
@@ -227,6 +358,76 @@ module Google
|
|
|
227
358
|
end
|
|
228
359
|
end
|
|
229
360
|
|
|
361
|
+
# Singleton resource representing the set of Bitmap Memory Usage metrics. This
|
|
362
|
+
# metric set contains bitmap memory usage data combined with usage data. **
|
|
363
|
+
# Supported aggregation periods:** * DAILY: metrics are aggregated in calendar
|
|
364
|
+
# date intervals. Due to historical constraints, the only supported timezone is `
|
|
365
|
+
# America/Los_Angeles`. **Supported metrics:** * `bitmapMemoryUsageP50` (`google.
|
|
366
|
+
# type.Decimal`): 50th percentile of bitmap memory usage. * `
|
|
367
|
+
# bitmapMemoryUsageP75` (`google.type.Decimal`): 75th percentile of bitmap
|
|
368
|
+
# memory usage. * `bitmapMemoryUsageP90` (`google.type.Decimal`): 90th
|
|
369
|
+
# percentile of bitmap memory usage. * `bitmapMemoryUsageP95` (`google.type.
|
|
370
|
+
# Decimal`): 95th percentile of bitmap memory usage. * `bitmapMemoryUsageP99` (`
|
|
371
|
+
# google.type.Decimal`): 99th percentile of bitmap memory usage. * `
|
|
372
|
+
# distinctUsers` (`google.type.Decimal`): Count of distinct users for which
|
|
373
|
+
# memory metrics were reported during the aggregation period. Care must be taken
|
|
374
|
+
# not to aggregate this count further, as it may result in users being counted
|
|
375
|
+
# multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000
|
|
376
|
+
# or 1,000,000, depending on the magnitude of the value. **Supported dimensions:*
|
|
377
|
+
# * * `apiLevel` (string): the API level of Android that was running on the user'
|
|
378
|
+
# s device, e.g., 26. * `versionCode` (int64): version of the app that was
|
|
379
|
+
# running on the user's device. * `deviceModel` (string): unique identifier of
|
|
380
|
+
# the user's device model. The form of the identifier is 'deviceBrand/device',
|
|
381
|
+
# where deviceBrand corresponds to Build.BRAND and device corresponds to Build.
|
|
382
|
+
# DEVICE, e.g., google/coral. * `deviceBrand` (string): unique identifier of the
|
|
383
|
+
# user's device brand, e.g., google. * `deviceType` (string): the type (also
|
|
384
|
+
# known as form factor) of the user's device, e.g., PHONE. * `countryCode` (
|
|
385
|
+
# string): the country or region of the user's device based on their IP address,
|
|
386
|
+
# represented as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
387
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
|
388
|
+
# . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
|
|
389
|
+
# , Samsung. * `deviceSocModel` (string): Model of the device's primary system-
|
|
390
|
+
# on-chip, e.g., "Exynos 2100". * `deviceCpuMake` (string): Make of the device's
|
|
391
|
+
# CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model of the device's CPU, e.
|
|
392
|
+
# g., "Kryo 240". * `deviceGpuMake` (string): Make of the device's GPU, e.g.,
|
|
393
|
+
# ARM. * `deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
394
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
395
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
396
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
397
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
398
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
399
|
+
# * `processName` (string): the name of the process that was running, e.g., com.
|
|
400
|
+
# example.app. * `appState` (string): the state of the app when memory was
|
|
401
|
+
# collected, e.g., FOREGROUND. **Required permissions**: to access this resource,
|
|
402
|
+
# the calling user needs the _View app information (read-only)_ permission for
|
|
403
|
+
# the app.
|
|
404
|
+
class GooglePlayDeveloperReportingV1beta1BitmapMemoryUsageMetricSet
|
|
405
|
+
include Google::Apis::Core::Hashable
|
|
406
|
+
|
|
407
|
+
# Represents the latest available time that can be requested in a TimelineSpec.
|
|
408
|
+
# Different aggregation periods have different freshness. For example, `DAILY`
|
|
409
|
+
# aggregation may lag behind `HOURLY` in cases where such aggregation is
|
|
410
|
+
# computed only once at the end of the day.
|
|
411
|
+
# Corresponds to the JSON property `freshnessInfo`
|
|
412
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1FreshnessInfo]
|
|
413
|
+
attr_accessor :freshness_info
|
|
414
|
+
|
|
415
|
+
# Identifier. The resource name. Format: apps/`app`/bitmapMemoryUsageMetricSet
|
|
416
|
+
# Corresponds to the JSON property `name`
|
|
417
|
+
# @return [String]
|
|
418
|
+
attr_accessor :name
|
|
419
|
+
|
|
420
|
+
def initialize(**args)
|
|
421
|
+
update!(**args)
|
|
422
|
+
end
|
|
423
|
+
|
|
424
|
+
# Update properties of this object
|
|
425
|
+
def update!(**args)
|
|
426
|
+
@freshness_info = args[:freshness_info] if args.key?(:freshness_info)
|
|
427
|
+
@name = args[:name] if args.key?(:name)
|
|
428
|
+
end
|
|
429
|
+
end
|
|
430
|
+
|
|
230
431
|
# Singleton resource representing the set of crashrate metrics. This metric set
|
|
231
432
|
# contains crashes data combined with usage data to produce a normalized metric
|
|
232
433
|
# independent of user counts. **Supported aggregation periods:** * DAILY:
|
|
@@ -271,14 +472,14 @@ module Google
|
|
|
271
472
|
# PHONE. * `countryCode` (string): the country or region of the user's device
|
|
272
473
|
# based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
|
|
273
474
|
# for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
|
|
274
|
-
# in buckets (
|
|
275
|
-
# primary system-on-chip, e.g., Samsung. [Reference](
|
|
276
|
-
# com/reference/android/os/Build#SOC_MANUFACTURER) * `
|
|
277
|
-
# Model of the device's primary system-on-chip, e.g., "
|
|
278
|
-
# https://developer.android.com/reference/android/os/
|
|
279
|
-
# deviceCpuMake` (string): Make of the device's CPU, e.g.,
|
|
280
|
-
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo
|
|
281
|
-
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
475
|
+
# in buckets (e.g., 1024 for 1-1.5GB, 4096 for 4-6GB). * `deviceSocMake` (string)
|
|
476
|
+
# : Make of the device's primary system-on-chip, e.g., Samsung. [Reference](
|
|
477
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MANUFACTURER) * `
|
|
478
|
+
# deviceSocModel` (string): Model of the device's primary system-on-chip, e.g., "
|
|
479
|
+
# Exynos 2100". [Reference](https://developer.android.com/reference/android/os/
|
|
480
|
+
# Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the device's CPU, e.g.,
|
|
481
|
+
# Qualcomm. * `deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo
|
|
482
|
+
# 240". * `deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
282
483
|
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
283
484
|
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
284
485
|
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
@@ -468,16 +669,16 @@ module Google
|
|
|
468
669
|
# identifier of the device's form factor, e.g., PHONE. * `issueId` (string): the
|
|
469
670
|
# id an error was assigned to. The value should correspond to the ``issue``
|
|
470
671
|
# component of the issue name. * `deviceRamBucket` (int64): RAM of the device,
|
|
471
|
-
# in MB, in buckets (
|
|
472
|
-
# device's primary system-on-chip, e.g., Samsung. [
|
|
473
|
-
# android.com/reference/android/os/Build#
|
|
474
|
-
# string): Model of the device's primary
|
|
475
|
-
# Reference](https://developer.android.com/
|
|
476
|
-
# * `deviceCpuMake` (string): Make of the
|
|
477
|
-
#
|
|
478
|
-
# deviceGpuMake` (string): Make of the device's GPU,
|
|
479
|
-
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali.
|
|
480
|
-
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
672
|
+
# in MB, in buckets (e.g., 1024 for 1-1.5GB, 4096 for 4-6GB). * `deviceSocMake` (
|
|
673
|
+
# string): Make of the device's primary system-on-chip, e.g., Samsung. [
|
|
674
|
+
# Reference](https://developer.android.com/reference/android/os/Build#
|
|
675
|
+
# SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's primary
|
|
676
|
+
# system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.android.com/
|
|
677
|
+
# reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the
|
|
678
|
+
# device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model of the device'
|
|
679
|
+
# s CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the device's GPU,
|
|
680
|
+
# e.g., ARM. * `deviceGpuModel` (string): Model of the device's GPU, e.g., Mali.
|
|
681
|
+
# * `deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
481
682
|
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
482
683
|
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
483
684
|
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
@@ -752,16 +953,16 @@ module Google
|
|
|
752
953
|
# user's device, e.g., PHONE. * `countryCode` (string): the country or region of
|
|
753
954
|
# the user's device based on their IP address, represented as a 2-letter ISO-
|
|
754
955
|
# 3166 code (e.g. US for the United States). * `deviceRamBucket` (int64): RAM of
|
|
755
|
-
# the device, in MB, in buckets (
|
|
756
|
-
# Make of the device's primary system-on-chip, e.g.,
|
|
757
|
-
#
|
|
758
|
-
# deviceSocModel` (string): Model of the device's primary
|
|
759
|
-
# Exynos 2100". [Reference](https://developer.android.com/
|
|
760
|
-
# Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the
|
|
761
|
-
# Qualcomm. * `deviceCpuModel` (string): Model of the device'
|
|
762
|
-
# 240". * `deviceGpuMake` (string): Make of the device's GPU,
|
|
763
|
-
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali.
|
|
764
|
-
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
956
|
+
# the device, in MB, in buckets (e.g., 1024 for 1-1.5GB, 4096 for 4-6GB). * `
|
|
957
|
+
# deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.,
|
|
958
|
+
# Samsung. [Reference](https://developer.android.com/reference/android/os/Build#
|
|
959
|
+
# SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's primary
|
|
960
|
+
# system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.android.com/
|
|
961
|
+
# reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the
|
|
962
|
+
# device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model of the device'
|
|
963
|
+
# s CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the device's GPU,
|
|
964
|
+
# e.g., ARM. * `deviceGpuModel` (string): Model of the device's GPU, e.g., Mali.
|
|
965
|
+
# * `deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
765
966
|
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
766
967
|
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
767
968
|
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
@@ -945,16 +1146,16 @@ module Google
|
|
|
945
1146
|
# user's device, e.g., PHONE. * `countryCode` (string): the country or region of
|
|
946
1147
|
# the user's device based on their IP address, represented as a 2-letter ISO-
|
|
947
1148
|
# 3166 code (e.g. US for the United States). * `deviceRamBucket` (int64): RAM of
|
|
948
|
-
# the device, in MB, in buckets (
|
|
949
|
-
# Make of the device's primary system-on-chip, e.g.,
|
|
950
|
-
#
|
|
951
|
-
# deviceSocModel` (string): Model of the device's primary
|
|
952
|
-
# Exynos 2100". [Reference](https://developer.android.com/
|
|
953
|
-
# Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the
|
|
954
|
-
# Qualcomm. * `deviceCpuModel` (string): Model of the device'
|
|
955
|
-
# 240". * `deviceGpuMake` (string): Make of the device's GPU,
|
|
956
|
-
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali.
|
|
957
|
-
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
1149
|
+
# the device, in MB, in buckets (e.g., 1024 for 1-1.5GB, 4096 for 4-6GB). * `
|
|
1150
|
+
# deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.,
|
|
1151
|
+
# Samsung. [Reference](https://developer.android.com/reference/android/os/Build#
|
|
1152
|
+
# SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's primary
|
|
1153
|
+
# system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.android.com/
|
|
1154
|
+
# reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the
|
|
1155
|
+
# device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model of the device'
|
|
1156
|
+
# s CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the device's GPU,
|
|
1157
|
+
# e.g., ARM. * `deviceGpuModel` (string): Model of the device's GPU, e.g., Mali.
|
|
1158
|
+
# * `deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
958
1159
|
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
959
1160
|
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
960
1161
|
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
@@ -1068,21 +1269,312 @@ module Google
|
|
|
1068
1269
|
|
|
1069
1270
|
# Update properties of this object
|
|
1070
1271
|
def update!(**args)
|
|
1071
|
-
@aggregation_period = args[:aggregation_period] if args.key?(:aggregation_period)
|
|
1272
|
+
@aggregation_period = args[:aggregation_period] if args.key?(:aggregation_period)
|
|
1273
|
+
@dimensions = args[:dimensions] if args.key?(:dimensions)
|
|
1274
|
+
@metrics = args[:metrics] if args.key?(:metrics)
|
|
1275
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
|
1276
|
+
end
|
|
1277
|
+
end
|
|
1278
|
+
|
|
1279
|
+
# Representation of an OS version.
|
|
1280
|
+
class GooglePlayDeveloperReportingV1beta1OsVersion
|
|
1281
|
+
include Google::Apis::Core::Hashable
|
|
1282
|
+
|
|
1283
|
+
# Optional. Numeric version code of the OS - API level
|
|
1284
|
+
# Corresponds to the JSON property `apiLevel`
|
|
1285
|
+
# @return [Fixnum]
|
|
1286
|
+
attr_accessor :api_level
|
|
1287
|
+
|
|
1288
|
+
def initialize(**args)
|
|
1289
|
+
update!(**args)
|
|
1290
|
+
end
|
|
1291
|
+
|
|
1292
|
+
# Update properties of this object
|
|
1293
|
+
def update!(**args)
|
|
1294
|
+
@api_level = args[:api_level] if args.key?(:api_level)
|
|
1295
|
+
end
|
|
1296
|
+
end
|
|
1297
|
+
|
|
1298
|
+
# Request message for QueryAnonRssAndSwapMemoryUsageMetricSet.
|
|
1299
|
+
class GooglePlayDeveloperReportingV1beta1QueryAnonRssAndSwapMemoryUsageMetricSetRequest
|
|
1300
|
+
include Google::Apis::Core::Hashable
|
|
1301
|
+
|
|
1302
|
+
# Optional. * Dimensions to slice the data by. **Supported dimensions:** * `
|
|
1303
|
+
# apiLevel` (string): the API level of Android that was running on the user's
|
|
1304
|
+
# device, e.g., 26. * `versionCode` (int64): version of the app that was running
|
|
1305
|
+
# on the user's device. * `deviceModel` (string): unique identifier of the user'
|
|
1306
|
+
# s device model. The form of the identifier is 'deviceBrand/device', where
|
|
1307
|
+
# deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1308
|
+
# e.g., google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
1309
|
+
# device brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
1310
|
+
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1311
|
+
# country or region of the user's device based on their IP address, represented
|
|
1312
|
+
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
1313
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
|
1314
|
+
# . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
|
|
1315
|
+
# , Samsung. * `deviceSocModel` (string): Model of the device's primary system-
|
|
1316
|
+
# on-chip, e.g., "Exynos 2100". * `deviceCpuMake` (string): Make of the device's
|
|
1317
|
+
# CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model of the device's CPU, e.
|
|
1318
|
+
# g., "Kryo 240". * `deviceGpuMake` (string): Make of the device's GPU, e.g.,
|
|
1319
|
+
# ARM. * `deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
1320
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
1321
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
1322
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
1323
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
1324
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
1325
|
+
# * `processName` (string): the name of the process that was running, e.g., com.
|
|
1326
|
+
# example.app. * `appState` (string): the state of the app when memory was
|
|
1327
|
+
# collected, e.g., FOREGROUND.
|
|
1328
|
+
# Corresponds to the JSON property `dimensions`
|
|
1329
|
+
# @return [Array<String>]
|
|
1330
|
+
attr_accessor :dimensions
|
|
1331
|
+
|
|
1332
|
+
# Optional. * Filters to apply to data. The filtering expression follows [AIP-
|
|
1333
|
+
# 160](https://google.aip.dev/160) standard and supports filtering by equality
|
|
1334
|
+
# of all breakdown dimensions.
|
|
1335
|
+
# Corresponds to the JSON property `filter`
|
|
1336
|
+
# @return [String]
|
|
1337
|
+
attr_accessor :filter
|
|
1338
|
+
|
|
1339
|
+
# Optional. * Metrics to aggregate. **Supported metrics:** * `
|
|
1340
|
+
# anonRssAndSwapMemoryUsageP50` (`google.type.Decimal`): 50th percentile of anon
|
|
1341
|
+
# RSS and swap memory usage. * `anonRssAndSwapMemoryUsageP75` (`google.type.
|
|
1342
|
+
# Decimal`): 75th percentile of anon RSS and swap memory usage. * `
|
|
1343
|
+
# anonRssAndSwapMemoryUsageP90` (`google.type.Decimal`): 90th percentile of anon
|
|
1344
|
+
# RSS and swap memory usage. * `anonRssAndSwapMemoryUsageP95` (`google.type.
|
|
1345
|
+
# Decimal`): 95th percentile of anon RSS and swap memory usage. * `
|
|
1346
|
+
# anonRssAndSwapMemoryUsageP99` (`google.type.Decimal`): 99th percentile of anon
|
|
1347
|
+
# RSS and swap memory usage. * `distinctUsers` (`google.type.Decimal`): Count of
|
|
1348
|
+
# distinct users for which memory metrics were reported during the aggregation
|
|
1349
|
+
# period. Care must be taken not to aggregate this count further, as it may
|
|
1350
|
+
# result in users being counted multiple times. The value is rounded to the
|
|
1351
|
+
# nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the magnitude of
|
|
1352
|
+
# the value.
|
|
1353
|
+
# Corresponds to the JSON property `metrics`
|
|
1354
|
+
# @return [Array<String>]
|
|
1355
|
+
attr_accessor :metrics
|
|
1356
|
+
|
|
1357
|
+
# Optional. * Maximum size of the returned data. If unspecified, at most 1000
|
|
1358
|
+
# rows will be returned. The maximum value is 100000; values above 100000 will
|
|
1359
|
+
# be coerced to 100000.
|
|
1360
|
+
# Corresponds to the JSON property `pageSize`
|
|
1361
|
+
# @return [Fixnum]
|
|
1362
|
+
attr_accessor :page_size
|
|
1363
|
+
|
|
1364
|
+
# Optional. * A page token, received from a previous call. Provide this to
|
|
1365
|
+
# retrieve the subsequent page. When paginating, all other parameters provided
|
|
1366
|
+
# to the request must match the call that provided the page token.
|
|
1367
|
+
# Corresponds to the JSON property `pageToken`
|
|
1368
|
+
# @return [String]
|
|
1369
|
+
attr_accessor :page_token
|
|
1370
|
+
|
|
1371
|
+
# Specification of the time-related aggregation parameters of a timeline.
|
|
1372
|
+
# Timelines have an aggregation period (`DAILY`, `HOURLY`, etc) which defines
|
|
1373
|
+
# how events are aggregated in metrics. The points in a timeline are defined by
|
|
1374
|
+
# the starting DateTime of the aggregation period. The duration is implicit in
|
|
1375
|
+
# the AggregationPeriod. Hourly aggregation periods, when supported by a metric
|
|
1376
|
+
# set, are always specified in UTC to avoid ambiguities around daylight saving
|
|
1377
|
+
# time transitions, where an hour is skipped when adopting DST, and repeated
|
|
1378
|
+
# when abandoning DST. For example, the timestamp '2021-11-07 01:00:00 America/
|
|
1379
|
+
# Los_Angeles' is ambiguous since it can correspond to '2021-11-07 08:00:00 UTC'
|
|
1380
|
+
# or '2021-11-07 09:00:00 UTC'. Daily aggregation periods require specifying a
|
|
1381
|
+
# timezone which will determine the precise instants of the start and the end of
|
|
1382
|
+
# the day. Not all metric sets support all timezones, so make sure to check
|
|
1383
|
+
# which timezones are supported by the metric set you want to query.
|
|
1384
|
+
# Corresponds to the JSON property `timelineSpec`
|
|
1385
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1TimelineSpec]
|
|
1386
|
+
attr_accessor :timeline_spec
|
|
1387
|
+
|
|
1388
|
+
# Optional. * User view to select. The output data will correspond to the
|
|
1389
|
+
# selected view. The only supported value is `OS_PUBLIC`.
|
|
1390
|
+
# Corresponds to the JSON property `userCohort`
|
|
1391
|
+
# @return [String]
|
|
1392
|
+
attr_accessor :user_cohort
|
|
1393
|
+
|
|
1394
|
+
def initialize(**args)
|
|
1395
|
+
update!(**args)
|
|
1396
|
+
end
|
|
1397
|
+
|
|
1398
|
+
# Update properties of this object
|
|
1399
|
+
def update!(**args)
|
|
1400
|
+
@dimensions = args[:dimensions] if args.key?(:dimensions)
|
|
1401
|
+
@filter = args[:filter] if args.key?(:filter)
|
|
1402
|
+
@metrics = args[:metrics] if args.key?(:metrics)
|
|
1403
|
+
@page_size = args[:page_size] if args.key?(:page_size)
|
|
1404
|
+
@page_token = args[:page_token] if args.key?(:page_token)
|
|
1405
|
+
@timeline_spec = args[:timeline_spec] if args.key?(:timeline_spec)
|
|
1406
|
+
@user_cohort = args[:user_cohort] if args.key?(:user_cohort)
|
|
1407
|
+
end
|
|
1408
|
+
end
|
|
1409
|
+
|
|
1410
|
+
# Response message for QueryAnonRssAndSwapMemoryUsageMetricSet.
|
|
1411
|
+
class GooglePlayDeveloperReportingV1beta1QueryAnonRssAndSwapMemoryUsageMetricSetResponse
|
|
1412
|
+
include Google::Apis::Core::Hashable
|
|
1413
|
+
|
|
1414
|
+
# * Continuation token to fetch the next page of data.
|
|
1415
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
1416
|
+
# @return [String]
|
|
1417
|
+
attr_accessor :next_page_token
|
|
1418
|
+
|
|
1419
|
+
# * Returned rows of data.
|
|
1420
|
+
# Corresponds to the JSON property `rows`
|
|
1421
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1MetricsRow>]
|
|
1422
|
+
attr_accessor :rows
|
|
1423
|
+
|
|
1424
|
+
def initialize(**args)
|
|
1425
|
+
update!(**args)
|
|
1426
|
+
end
|
|
1427
|
+
|
|
1428
|
+
# Update properties of this object
|
|
1429
|
+
def update!(**args)
|
|
1430
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
1431
|
+
@rows = args[:rows] if args.key?(:rows)
|
|
1432
|
+
end
|
|
1433
|
+
end
|
|
1434
|
+
|
|
1435
|
+
# Request message for QueryAnrRateMetricSet.
|
|
1436
|
+
class GooglePlayDeveloperReportingV1beta1QueryAnrRateMetricSetRequest
|
|
1437
|
+
include Google::Apis::Core::Hashable
|
|
1438
|
+
|
|
1439
|
+
# Optional. Dimensions to slice the metrics by. **Supported dimensions:** * `
|
|
1440
|
+
# apiLevel` (string): the API level of Android that was running on the user's
|
|
1441
|
+
# device, e.g., 26. * `versionCode` (int64): version of the app that was running
|
|
1442
|
+
# on the user's device. * `deviceModel` (string): unique identifier of the user'
|
|
1443
|
+
# s device model. The form of the identifier is 'deviceBrand/device', where
|
|
1444
|
+
# deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
|
1445
|
+
# e.g., google/coral. * `deviceBrand` (string): unique identifier of the user's
|
|
1446
|
+
# device brand, e.g., google. * `deviceType` (string): the type (also known as
|
|
1447
|
+
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1448
|
+
# country or region of the user's device based on their IP address, represented
|
|
1449
|
+
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
1450
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (e.g., 1024 for
|
|
1451
|
+
# 1-1.5GB, 4096 for 4-6GB). * `deviceSocMake` (string): Make of the device's
|
|
1452
|
+
# primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
|
|
1453
|
+
# com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
1454
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
1455
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
1456
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
|
1457
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
|
1458
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
1459
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
1460
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
1461
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
1462
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
1463
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
1464
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
1465
|
+
# Corresponds to the JSON property `dimensions`
|
|
1466
|
+
# @return [Array<String>]
|
|
1467
|
+
attr_accessor :dimensions
|
|
1468
|
+
|
|
1469
|
+
# Optional. Filters to apply to data. The filtering expression follows [AIP-160](
|
|
1470
|
+
# https://google.aip.dev/160) standard and supports filtering by equality of all
|
|
1471
|
+
# breakdown dimensions.
|
|
1472
|
+
# Corresponds to the JSON property `filter`
|
|
1473
|
+
# @return [String]
|
|
1474
|
+
attr_accessor :filter
|
|
1475
|
+
|
|
1476
|
+
# Optional. Metrics to aggregate. **Supported metrics:** * `anrRate` (`google.
|
|
1477
|
+
# type.Decimal`): Percentage of distinct users in the aggregation period that
|
|
1478
|
+
# experienced at least one ANR. * `anrRate7dUserWeighted` (`google.type.Decimal`)
|
|
1479
|
+
# : Rolling average value of `anrRate` in the last 7 days. The daily values are
|
|
1480
|
+
# weighted by the count of distinct users for the day. Not supported in HOURLY
|
|
1481
|
+
# granularity. * `anrRate28dUserWeighted` (`google.type.Decimal`): Rolling
|
|
1482
|
+
# average value of `anrRate` in the last 28 days. The daily values are weighted
|
|
1483
|
+
# by the count of distinct users for the day. Not supported in HOURLY
|
|
1484
|
+
# granularity. * `userPerceivedAnrRate` (`google.type.Decimal`): Percentage of
|
|
1485
|
+
# distinct users in the aggregation period that experienced at least one user-
|
|
1486
|
+
# perceived ANR. User-perceived ANRs are currently those of 'Input dispatching'
|
|
1487
|
+
# type. * `userPerceivedAnrRate7dUserWeighted` (`google.type.Decimal`): Rolling
|
|
1488
|
+
# average value of `userPerceivedAnrRate` in the last 7 days. The daily values
|
|
1489
|
+
# are weighted by the count of distinct users for the day. Not supported in
|
|
1490
|
+
# HOURLY granularity. * `userPerceivedAnrRate28dUserWeighted` (`google.type.
|
|
1491
|
+
# Decimal`): Rolling average value of `userPerceivedAnrRate` in the last 28 days.
|
|
1492
|
+
# The daily values are weighted by the count of distinct users for the day. Not
|
|
1493
|
+
# . supported in HOURLY granularity. * `distinctUsers` (`google.type.Decimal`):
|
|
1494
|
+
# Count of distinct users in the aggregation period that were used as
|
|
1495
|
+
# normalization value for the `anrRate` and `userPerceivedAnrRate` metrics. A
|
|
1496
|
+
# user is counted in this metric if they used the app in the foreground during
|
|
1497
|
+
# the aggregation period. Care must be taken not to aggregate this count further,
|
|
1498
|
+
# as it may result in users being counted multiple times. The value is rounded
|
|
1499
|
+
# to the nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the
|
|
1500
|
+
# magnitude of the value.
|
|
1501
|
+
# Corresponds to the JSON property `metrics`
|
|
1502
|
+
# @return [Array<String>]
|
|
1503
|
+
attr_accessor :metrics
|
|
1504
|
+
|
|
1505
|
+
# Optional. Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
1506
|
+
# will be returned. The maximum value is 100,000; values above 100,000 will be
|
|
1507
|
+
# coerced to 100,000.
|
|
1508
|
+
# Corresponds to the JSON property `pageSize`
|
|
1509
|
+
# @return [Fixnum]
|
|
1510
|
+
attr_accessor :page_size
|
|
1511
|
+
|
|
1512
|
+
# Optional. A page token, received from a previous call. Provide this to
|
|
1513
|
+
# retrieve the subsequent page. When paginating, all other parameters provided
|
|
1514
|
+
# to the request must match the call that provided the page token.
|
|
1515
|
+
# Corresponds to the JSON property `pageToken`
|
|
1516
|
+
# @return [String]
|
|
1517
|
+
attr_accessor :page_token
|
|
1518
|
+
|
|
1519
|
+
# Specification of the time-related aggregation parameters of a timeline.
|
|
1520
|
+
# Timelines have an aggregation period (`DAILY`, `HOURLY`, etc) which defines
|
|
1521
|
+
# how events are aggregated in metrics. The points in a timeline are defined by
|
|
1522
|
+
# the starting DateTime of the aggregation period. The duration is implicit in
|
|
1523
|
+
# the AggregationPeriod. Hourly aggregation periods, when supported by a metric
|
|
1524
|
+
# set, are always specified in UTC to avoid ambiguities around daylight saving
|
|
1525
|
+
# time transitions, where an hour is skipped when adopting DST, and repeated
|
|
1526
|
+
# when abandoning DST. For example, the timestamp '2021-11-07 01:00:00 America/
|
|
1527
|
+
# Los_Angeles' is ambiguous since it can correspond to '2021-11-07 08:00:00 UTC'
|
|
1528
|
+
# or '2021-11-07 09:00:00 UTC'. Daily aggregation periods require specifying a
|
|
1529
|
+
# timezone which will determine the precise instants of the start and the end of
|
|
1530
|
+
# the day. Not all metric sets support all timezones, so make sure to check
|
|
1531
|
+
# which timezones are supported by the metric set you want to query.
|
|
1532
|
+
# Corresponds to the JSON property `timelineSpec`
|
|
1533
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1TimelineSpec]
|
|
1534
|
+
attr_accessor :timeline_spec
|
|
1535
|
+
|
|
1536
|
+
# Optional. User view to select. The output data will correspond to the selected
|
|
1537
|
+
# view. **Supported values:** * `OS_PUBLIC` To select data from all publicly
|
|
1538
|
+
# released Android versions. This is the default. Supports all the above
|
|
1539
|
+
# dimensions. * `APP_TESTERS` To select data from users who have opted in to be
|
|
1540
|
+
# testers. Supports all the above dimensions. * `OS_BETA` To select data from
|
|
1541
|
+
# beta android versions only, excluding data from released android versions.
|
|
1542
|
+
# Only the following dimensions are supported: * `versionCode` (int64): version
|
|
1543
|
+
# of the app that was running on the user's device. * `osBuild` (string): OS
|
|
1544
|
+
# build of the user's device, e.g., "T1B2.220916.004".
|
|
1545
|
+
# Corresponds to the JSON property `userCohort`
|
|
1546
|
+
# @return [String]
|
|
1547
|
+
attr_accessor :user_cohort
|
|
1548
|
+
|
|
1549
|
+
def initialize(**args)
|
|
1550
|
+
update!(**args)
|
|
1551
|
+
end
|
|
1552
|
+
|
|
1553
|
+
# Update properties of this object
|
|
1554
|
+
def update!(**args)
|
|
1072
1555
|
@dimensions = args[:dimensions] if args.key?(:dimensions)
|
|
1556
|
+
@filter = args[:filter] if args.key?(:filter)
|
|
1073
1557
|
@metrics = args[:metrics] if args.key?(:metrics)
|
|
1074
|
-
@
|
|
1558
|
+
@page_size = args[:page_size] if args.key?(:page_size)
|
|
1559
|
+
@page_token = args[:page_token] if args.key?(:page_token)
|
|
1560
|
+
@timeline_spec = args[:timeline_spec] if args.key?(:timeline_spec)
|
|
1561
|
+
@user_cohort = args[:user_cohort] if args.key?(:user_cohort)
|
|
1075
1562
|
end
|
|
1076
1563
|
end
|
|
1077
1564
|
|
|
1078
|
-
#
|
|
1079
|
-
class
|
|
1565
|
+
# Response message for QueryAnrRateMetricSet.
|
|
1566
|
+
class GooglePlayDeveloperReportingV1beta1QueryAnrRateMetricSetResponse
|
|
1080
1567
|
include Google::Apis::Core::Hashable
|
|
1081
1568
|
|
|
1082
|
-
#
|
|
1083
|
-
# Corresponds to the JSON property `
|
|
1084
|
-
# @return [
|
|
1085
|
-
attr_accessor :
|
|
1569
|
+
# Continuation token to fetch the next page of data.
|
|
1570
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
1571
|
+
# @return [String]
|
|
1572
|
+
attr_accessor :next_page_token
|
|
1573
|
+
|
|
1574
|
+
# Returned rows of data.
|
|
1575
|
+
# Corresponds to the JSON property `rows`
|
|
1576
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1MetricsRow>]
|
|
1577
|
+
attr_accessor :rows
|
|
1086
1578
|
|
|
1087
1579
|
def initialize(**args)
|
|
1088
1580
|
update!(**args)
|
|
@@ -1090,15 +1582,16 @@ module Google
|
|
|
1090
1582
|
|
|
1091
1583
|
# Update properties of this object
|
|
1092
1584
|
def update!(**args)
|
|
1093
|
-
@
|
|
1585
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
1586
|
+
@rows = args[:rows] if args.key?(:rows)
|
|
1094
1587
|
end
|
|
1095
1588
|
end
|
|
1096
1589
|
|
|
1097
|
-
# Request message for
|
|
1098
|
-
class
|
|
1590
|
+
# Request message for QueryBitmapMemoryUsageMetricSet.
|
|
1591
|
+
class GooglePlayDeveloperReportingV1beta1QueryBitmapMemoryUsageMetricSetRequest
|
|
1099
1592
|
include Google::Apis::Core::Hashable
|
|
1100
1593
|
|
|
1101
|
-
# Optional. Dimensions to slice the
|
|
1594
|
+
# Optional. Dimensions to slice the data by. **Supported dimensions:** * `
|
|
1102
1595
|
# apiLevel` (string): the API level of Android that was running on the user's
|
|
1103
1596
|
# device, e.g., 26. * `versionCode` (int64): version of the app that was running
|
|
1104
1597
|
# on the user's device. * `deviceModel` (string): unique identifier of the user'
|
|
@@ -1111,19 +1604,19 @@ module Google
|
|
|
1111
1604
|
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
1112
1605
|
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
|
1113
1606
|
# . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
|
|
1114
|
-
# , Samsung.
|
|
1115
|
-
#
|
|
1116
|
-
#
|
|
1117
|
-
#
|
|
1118
|
-
#
|
|
1119
|
-
# of the device's
|
|
1120
|
-
#
|
|
1121
|
-
#
|
|
1122
|
-
#
|
|
1123
|
-
#
|
|
1124
|
-
#
|
|
1125
|
-
#
|
|
1126
|
-
# ,
|
|
1607
|
+
# , Samsung. * `deviceSocModel` (string): Model of the device's primary system-
|
|
1608
|
+
# on-chip, e.g., "Exynos 2100". * `deviceCpuMake` (string): Make of the device's
|
|
1609
|
+
# CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model of the device's CPU, e.
|
|
1610
|
+
# g., "Kryo 240". * `deviceGpuMake` (string): Make of the device's GPU, e.g.,
|
|
1611
|
+
# ARM. * `deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
1612
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
1613
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
1614
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
1615
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
1616
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
1617
|
+
# * `processName` (string): the name of the process that was running, e.g., com.
|
|
1618
|
+
# example.app. * `appState` (string): the state of the app when memory was
|
|
1619
|
+
# collected, e.g., FOREGROUND.
|
|
1127
1620
|
# Corresponds to the JSON property `dimensions`
|
|
1128
1621
|
# @return [Array<String>]
|
|
1129
1622
|
attr_accessor :dimensions
|
|
@@ -1135,38 +1628,25 @@ module Google
|
|
|
1135
1628
|
# @return [String]
|
|
1136
1629
|
attr_accessor :filter
|
|
1137
1630
|
|
|
1138
|
-
# Optional. Metrics to aggregate. **Supported metrics:** * `
|
|
1139
|
-
# type.Decimal`):
|
|
1140
|
-
#
|
|
1141
|
-
#
|
|
1142
|
-
#
|
|
1143
|
-
#
|
|
1144
|
-
#
|
|
1145
|
-
#
|
|
1146
|
-
#
|
|
1147
|
-
#
|
|
1148
|
-
#
|
|
1149
|
-
#
|
|
1150
|
-
# average value of `userPerceivedAnrRate` in the last 7 days. The daily values
|
|
1151
|
-
# are weighted by the count of distinct users for the day. Not supported in
|
|
1152
|
-
# HOURLY granularity. * `userPerceivedAnrRate28dUserWeighted` (`google.type.
|
|
1153
|
-
# Decimal`): Rolling average value of `userPerceivedAnrRate` in the last 28 days.
|
|
1154
|
-
# The daily values are weighted by the count of distinct users for the day. Not
|
|
1155
|
-
# . supported in HOURLY granularity. * `distinctUsers` (`google.type.Decimal`):
|
|
1156
|
-
# Count of distinct users in the aggregation period that were used as
|
|
1157
|
-
# normalization value for the `anrRate` and `userPerceivedAnrRate` metrics. A
|
|
1158
|
-
# user is counted in this metric if they used the app in the foreground during
|
|
1159
|
-
# the aggregation period. Care must be taken not to aggregate this count further,
|
|
1160
|
-
# as it may result in users being counted multiple times. The value is rounded
|
|
1161
|
-
# to the nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the
|
|
1162
|
-
# magnitude of the value.
|
|
1631
|
+
# Optional. Metrics to aggregate. **Supported metrics:** * `bitmapMemoryUsageP50`
|
|
1632
|
+
# (`google.type.Decimal`): 50th percentile of bitmap memory usage. * `
|
|
1633
|
+
# bitmapMemoryUsageP75` (`google.type.Decimal`): 75th percentile of bitmap
|
|
1634
|
+
# memory usage. * `bitmapMemoryUsageP90` (`google.type.Decimal`): 90th
|
|
1635
|
+
# percentile of bitmap memory usage. * `bitmapMemoryUsageP95` (`google.type.
|
|
1636
|
+
# Decimal`): 95th percentile of bitmap memory usage. * `bitmapMemoryUsageP99` (`
|
|
1637
|
+
# google.type.Decimal`): 99th percentile of bitmap memory usage. * `
|
|
1638
|
+
# distinctUsers` (`google.type.Decimal`): Count of distinct users for which
|
|
1639
|
+
# memory metrics were reported during the aggregation period. Care must be taken
|
|
1640
|
+
# not to aggregate this count further, as it may result in users being counted
|
|
1641
|
+
# multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000
|
|
1642
|
+
# or 1,000,000, depending on the magnitude of the value.
|
|
1163
1643
|
# Corresponds to the JSON property `metrics`
|
|
1164
1644
|
# @return [Array<String>]
|
|
1165
1645
|
attr_accessor :metrics
|
|
1166
1646
|
|
|
1167
1647
|
# Optional. Maximum size of the returned data. If unspecified, at most 1000 rows
|
|
1168
|
-
# will be returned. The maximum value is
|
|
1169
|
-
# coerced to
|
|
1648
|
+
# will be returned. The maximum value is 100000; values above 100000 will be
|
|
1649
|
+
# coerced to 100000.
|
|
1170
1650
|
# Corresponds to the JSON property `pageSize`
|
|
1171
1651
|
# @return [Fixnum]
|
|
1172
1652
|
attr_accessor :page_size
|
|
@@ -1196,14 +1676,7 @@ module Google
|
|
|
1196
1676
|
attr_accessor :timeline_spec
|
|
1197
1677
|
|
|
1198
1678
|
# Optional. User view to select. The output data will correspond to the selected
|
|
1199
|
-
# view.
|
|
1200
|
-
# released Android versions. This is the default. Supports all the above
|
|
1201
|
-
# dimensions. * `APP_TESTERS` To select data from users who have opted in to be
|
|
1202
|
-
# testers. Supports all the above dimensions. * `OS_BETA` To select data from
|
|
1203
|
-
# beta android versions only, excluding data from released android versions.
|
|
1204
|
-
# Only the following dimensions are supported: * `versionCode` (int64): version
|
|
1205
|
-
# of the app that was running on the user's device. * `osBuild` (string): OS
|
|
1206
|
-
# build of the user's device, e.g., "T1B2.220916.004".
|
|
1679
|
+
# view. The only supported value is `OS_PUBLIC`.
|
|
1207
1680
|
# Corresponds to the JSON property `userCohort`
|
|
1208
1681
|
# @return [String]
|
|
1209
1682
|
attr_accessor :user_cohort
|
|
@@ -1224,8 +1697,8 @@ module Google
|
|
|
1224
1697
|
end
|
|
1225
1698
|
end
|
|
1226
1699
|
|
|
1227
|
-
# Response message for
|
|
1228
|
-
class
|
|
1700
|
+
# Response message for QueryBitmapMemoryUsageMetricSet.
|
|
1701
|
+
class GooglePlayDeveloperReportingV1beta1QueryBitmapMemoryUsageMetricSetResponse
|
|
1229
1702
|
include Google::Apis::Core::Hashable
|
|
1230
1703
|
|
|
1231
1704
|
# Continuation token to fetch the next page of data.
|
|
@@ -1264,21 +1737,21 @@ module Google
|
|
|
1264
1737
|
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1265
1738
|
# country or region of the user's device based on their IP address, represented
|
|
1266
1739
|
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
1267
|
-
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (
|
|
1268
|
-
# . * `deviceSocMake` (string): Make of the device's
|
|
1269
|
-
# , Samsung. [Reference](https://developer.android.
|
|
1270
|
-
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
1271
|
-
# primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
1272
|
-
# android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
1273
|
-
# Make of the device's CPU, e.g., Qualcomm. * `
|
|
1274
|
-
# of the device's CPU, e.g., "Kryo 240". * `
|
|
1275
|
-
# device's GPU, e.g., ARM. * `
|
|
1276
|
-
#
|
|
1277
|
-
#
|
|
1278
|
-
#
|
|
1279
|
-
#
|
|
1280
|
-
#
|
|
1281
|
-
# , mdpi, hdpi.
|
|
1740
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (e.g., 1024 for
|
|
1741
|
+
# 1-1.5GB, 4096 for 4-6GB). * `deviceSocMake` (string): Make of the device's
|
|
1742
|
+
# primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
|
|
1743
|
+
# com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
1744
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
1745
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
1746
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
|
1747
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
|
1748
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
1749
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
1750
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
1751
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
1752
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
1753
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
1754
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
1282
1755
|
# Corresponds to the JSON property `dimensions`
|
|
1283
1756
|
# @return [Array<String>]
|
|
1284
1757
|
attr_accessor :dimensions
|
|
@@ -1421,16 +1894,16 @@ module Google
|
|
|
1421
1894
|
# correspond to one of the possible values in ErrorType. * `issueId` (string):
|
|
1422
1895
|
# the id an error was assigned to. The value should correspond to the ``issue``
|
|
1423
1896
|
# component of the issue name. * `deviceRamBucket` (int64): RAM of the device,
|
|
1424
|
-
# in MB, in buckets (
|
|
1425
|
-
# device's primary system-on-chip, e.g., Samsung. [
|
|
1426
|
-
# android.com/reference/android/os/Build#
|
|
1427
|
-
# string): Model of the device's primary
|
|
1428
|
-
# Reference](https://developer.android.com/
|
|
1429
|
-
# * `deviceCpuMake` (string): Make of the
|
|
1430
|
-
#
|
|
1431
|
-
# deviceGpuMake` (string): Make of the device's GPU,
|
|
1432
|
-
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali.
|
|
1433
|
-
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
1897
|
+
# in MB, in buckets (e.g., 1024 for 1-1.5GB, 4096 for 4-6GB). * `deviceSocMake` (
|
|
1898
|
+
# string): Make of the device's primary system-on-chip, e.g., Samsung. [
|
|
1899
|
+
# Reference](https://developer.android.com/reference/android/os/Build#
|
|
1900
|
+
# SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's primary
|
|
1901
|
+
# system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.android.com/
|
|
1902
|
+
# reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the
|
|
1903
|
+
# device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model of the device'
|
|
1904
|
+
# s CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the device's GPU,
|
|
1905
|
+
# e.g., ARM. * `deviceGpuModel` (string): Model of the device's GPU, e.g., Mali.
|
|
1906
|
+
# * `deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
1434
1907
|
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
1435
1908
|
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
1436
1909
|
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
@@ -1543,21 +2016,21 @@ module Google
|
|
|
1543
2016
|
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1544
2017
|
# country or region of the user's device based on their IP address, represented
|
|
1545
2018
|
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
1546
|
-
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (
|
|
1547
|
-
# . * `deviceSocMake` (string): Make of the device's
|
|
1548
|
-
# , Samsung. [Reference](https://developer.android.
|
|
1549
|
-
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
1550
|
-
# primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
1551
|
-
# android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
1552
|
-
# Make of the device's CPU, e.g., Qualcomm. * `
|
|
1553
|
-
# of the device's CPU, e.g., "Kryo 240". * `
|
|
1554
|
-
# device's GPU, e.g., ARM. * `
|
|
1555
|
-
#
|
|
1556
|
-
#
|
|
1557
|
-
#
|
|
1558
|
-
#
|
|
1559
|
-
#
|
|
1560
|
-
# , mdpi, hdpi.
|
|
2019
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (e.g., 1024 for
|
|
2020
|
+
# 1-1.5GB, 4096 for 4-6GB). * `deviceSocMake` (string): Make of the device's
|
|
2021
|
+
# primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
|
|
2022
|
+
# com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
2023
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
2024
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
2025
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
|
2026
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
|
2027
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
2028
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
2029
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
2030
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
2031
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
2032
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
2033
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
1561
2034
|
# Corresponds to the JSON property `dimensions`
|
|
1562
2035
|
# @return [Array<String>]
|
|
1563
2036
|
attr_accessor :dimensions
|
|
@@ -1682,21 +2155,21 @@ module Google
|
|
|
1682
2155
|
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1683
2156
|
# country or region of the user's device based on their IP address, represented
|
|
1684
2157
|
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
1685
|
-
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (
|
|
1686
|
-
# . * `deviceSocMake` (string): Make of the device's
|
|
1687
|
-
# , Samsung. [Reference](https://developer.android.
|
|
1688
|
-
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
1689
|
-
# primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
1690
|
-
# android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
1691
|
-
# Make of the device's CPU, e.g., Qualcomm. * `
|
|
1692
|
-
# of the device's CPU, e.g., "Kryo 240". * `
|
|
1693
|
-
# device's GPU, e.g., ARM. * `
|
|
1694
|
-
#
|
|
1695
|
-
#
|
|
1696
|
-
#
|
|
1697
|
-
#
|
|
1698
|
-
#
|
|
1699
|
-
# , mdpi, hdpi.
|
|
2158
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (e.g., 1024 for
|
|
2159
|
+
# 1-1.5GB, 4096 for 4-6GB). * `deviceSocMake` (string): Make of the device's
|
|
2160
|
+
# primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
|
|
2161
|
+
# com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
2162
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
2163
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
2164
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
|
2165
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
|
2166
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
2167
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
2168
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
2169
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
2170
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
2171
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
2172
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
1700
2173
|
# Corresponds to the JSON property `dimensions`
|
|
1701
2174
|
# @return [Array<String>]
|
|
1702
2175
|
attr_accessor :dimensions
|
|
@@ -1977,21 +2450,21 @@ module Google
|
|
|
1977
2450
|
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
1978
2451
|
# country or region of the user's device based on their IP address, represented
|
|
1979
2452
|
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
1980
|
-
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (
|
|
1981
|
-
# . * `deviceSocMake` (string): Make of the device's
|
|
1982
|
-
# , Samsung. [Reference](https://developer.android.
|
|
1983
|
-
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
1984
|
-
# primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
1985
|
-
# android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
1986
|
-
# Make of the device's CPU, e.g., Qualcomm. * `
|
|
1987
|
-
# of the device's CPU, e.g., "Kryo 240". * `
|
|
1988
|
-
# device's GPU, e.g., ARM. * `
|
|
1989
|
-
#
|
|
1990
|
-
#
|
|
1991
|
-
#
|
|
1992
|
-
#
|
|
1993
|
-
#
|
|
1994
|
-
# , mdpi, hdpi.
|
|
2453
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (e.g., 1024 for
|
|
2454
|
+
# 1-1.5GB, 4096 for 4-6GB). * `deviceSocMake` (string): Make of the device's
|
|
2455
|
+
# primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
|
|
2456
|
+
# com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
2457
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
2458
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
2459
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
|
2460
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
|
2461
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
2462
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
2463
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
2464
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
2465
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
2466
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
2467
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
1995
2468
|
# Corresponds to the JSON property `dimensions`
|
|
1996
2469
|
# @return [Array<String>]
|
|
1997
2470
|
attr_accessor :dimensions
|
|
@@ -2114,21 +2587,21 @@ module Google
|
|
|
2114
2587
|
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
|
2115
2588
|
# country or region of the user's device based on their IP address, represented
|
|
2116
2589
|
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
2117
|
-
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (
|
|
2118
|
-
# . * `deviceSocMake` (string): Make of the device's
|
|
2119
|
-
# , Samsung. [Reference](https://developer.android.
|
|
2120
|
-
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
2121
|
-
# primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
2122
|
-
# android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
2123
|
-
# Make of the device's CPU, e.g., Qualcomm. * `
|
|
2124
|
-
# of the device's CPU, e.g., "Kryo 240". * `
|
|
2125
|
-
# device's GPU, e.g., ARM. * `
|
|
2126
|
-
#
|
|
2127
|
-
#
|
|
2128
|
-
#
|
|
2129
|
-
#
|
|
2130
|
-
#
|
|
2131
|
-
# , mdpi, hdpi.
|
|
2590
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (e.g., 1024 for
|
|
2591
|
+
# 1-1.5GB, 4096 for 4-6GB). * `deviceSocMake` (string): Make of the device's
|
|
2592
|
+
# primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
|
|
2593
|
+
# com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
2594
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
2595
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
2596
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
|
2597
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
|
2598
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
2599
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
2600
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
2601
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
2602
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
2603
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
2604
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
2132
2605
|
# Corresponds to the JSON property `dimensions`
|
|
2133
2606
|
# @return [Array<String>]
|
|
2134
2607
|
attr_accessor :dimensions
|
|
@@ -2474,16 +2947,16 @@ module Google
|
|
|
2474
2947
|
# user's device, e.g., PHONE. * `countryCode` (string): the country or region of
|
|
2475
2948
|
# the user's device based on their IP address, represented as a 2-letter ISO-
|
|
2476
2949
|
# 3166 code (e.g. US for the United States). * `deviceRamBucket` (int64): RAM of
|
|
2477
|
-
# the device, in MB, in buckets (
|
|
2478
|
-
# Make of the device's primary system-on-chip, e.g.,
|
|
2479
|
-
#
|
|
2480
|
-
# deviceSocModel` (string): Model of the device's primary
|
|
2481
|
-
# Exynos 2100". [Reference](https://developer.android.com/
|
|
2482
|
-
# Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the
|
|
2483
|
-
# Qualcomm. * `deviceCpuModel` (string): Model of the device'
|
|
2484
|
-
# 240". * `deviceGpuMake` (string): Make of the device's GPU,
|
|
2485
|
-
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali.
|
|
2486
|
-
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
2950
|
+
# the device, in MB, in buckets (e.g., 1024 for 1-1.5GB, 4096 for 4-6GB). * `
|
|
2951
|
+
# deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.,
|
|
2952
|
+
# Samsung. [Reference](https://developer.android.com/reference/android/os/Build#
|
|
2953
|
+
# SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's primary
|
|
2954
|
+
# system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.android.com/
|
|
2955
|
+
# reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the
|
|
2956
|
+
# device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model of the device'
|
|
2957
|
+
# s CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the device's GPU,
|
|
2958
|
+
# e.g., ARM. * `deviceGpuModel` (string): Model of the device's GPU, e.g., Mali.
|
|
2959
|
+
# * `deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
2487
2960
|
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
2488
2961
|
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
2489
2962
|
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
@@ -2548,22 +3021,23 @@ module Google
|
|
|
2548
3021
|
# known as form factor) of the user's device, e.g., PHONE. * `countryCode` (
|
|
2549
3022
|
# string): the country or region of the user's device based on their IP address,
|
|
2550
3023
|
# represented as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
|
2551
|
-
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (
|
|
2552
|
-
# . * `deviceSocMake` (string): Make of the device's
|
|
2553
|
-
# , Samsung. [Reference](https://developer.android.
|
|
2554
|
-
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
2555
|
-
# primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
2556
|
-
# android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
2557
|
-
# Make of the device's CPU, e.g., Qualcomm. * `
|
|
2558
|
-
# of the device's CPU, e.g., "Kryo 240". * `
|
|
2559
|
-
# device's GPU, e.g., ARM. * `
|
|
2560
|
-
#
|
|
2561
|
-
#
|
|
2562
|
-
#
|
|
2563
|
-
#
|
|
2564
|
-
#
|
|
2565
|
-
#
|
|
2566
|
-
#
|
|
3024
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (e.g., 1024 for
|
|
3025
|
+
# 1-1.5GB, 4096 for 4-6GB). * `deviceSocMake` (string): Make of the device's
|
|
3026
|
+
# primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
|
|
3027
|
+
# com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
|
3028
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
|
3029
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
|
3030
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
|
3031
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
|
3032
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
|
3033
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
|
3034
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
|
3035
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
|
3036
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
|
3037
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
|
3038
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
3039
|
+
# **Required permissions**: to access this resource, the calling user needs the
|
|
3040
|
+
# _View app information (read-only)_ permission for the app.
|
|
2567
3041
|
class GooglePlayDeveloperReportingV1beta1StuckBackgroundWakelockRateMetricSet
|
|
2568
3042
|
include Google::Apis::Core::Hashable
|
|
2569
3043
|
|