google-apis-playdeveloperreporting_v1beta1 0.16.0 → 0.18.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 +625 -266
- data/lib/google/apis/playdeveloperreporting_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/playdeveloperreporting_v1beta1/representations.rb +149 -0
- data/lib/google/apis/playdeveloperreporting_v1beta1/service.rb +121 -41
- metadata +3 -3
@@ -119,20 +119,24 @@ module Google
|
|
119
119
|
# counted multiple times. The value is rounded to the nearest multiple of 10,
|
120
120
|
# 100, 1,000 or 1,000,000, depending on the magnitude of the value. **Supported
|
121
121
|
# dimensions:** * `apiLevel` (string): the API level of Android that was running
|
122
|
-
# on the user's device. * `versionCode` (int64): version of the app
|
123
|
-
# running on the user's device. * `deviceModel` (string): unique
|
124
|
-
# the user's device model.
|
125
|
-
#
|
126
|
-
#
|
127
|
-
#
|
128
|
-
# the
|
129
|
-
#
|
130
|
-
#
|
131
|
-
#
|
132
|
-
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
122
|
+
# on the user's device, e.g., 26. * `versionCode` (int64): version of the app
|
123
|
+
# that was running on the user's device. * `deviceModel` (string): unique
|
124
|
+
# identifier of the user's device model. The form of the identifier is '
|
125
|
+
# deviceBrand/device', where deviceBrand corresponds to Build.BRAND and device
|
126
|
+
# corresponds to Build.DEVICE, e.g., google/coral. * `deviceBrand` (string):
|
127
|
+
# unique identifier of the user's device brand, e.g., google. * `deviceType` (
|
128
|
+
# string): the type (also known as form factor) of the user's device, e.g.,
|
129
|
+
# PHONE. * `countryCode` (string): the country or region of the user's device
|
130
|
+
# based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
|
131
|
+
# for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
|
132
|
+
# in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
|
133
|
+
# primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
|
134
|
+
# com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
135
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
136
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
137
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
138
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
139
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
136
140
|
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
137
141
|
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
138
142
|
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
@@ -171,6 +175,58 @@ module Google
|
|
171
175
|
end
|
172
176
|
end
|
173
177
|
|
178
|
+
# A representation of an app in the Play Store.
|
179
|
+
class GooglePlayDeveloperReportingV1beta1App
|
180
|
+
include Google::Apis::Core::Hashable
|
181
|
+
|
182
|
+
# Title of the app. This is the latest title as set in the Play Console and may
|
183
|
+
# not yet have been reviewed, so might not match the Play Store. Example: `
|
184
|
+
# Google Maps`.
|
185
|
+
# Corresponds to the JSON property `displayName`
|
186
|
+
# @return [String]
|
187
|
+
attr_accessor :display_name
|
188
|
+
|
189
|
+
# The resource name. Format: apps/`app`
|
190
|
+
# Corresponds to the JSON property `name`
|
191
|
+
# @return [String]
|
192
|
+
attr_accessor :name
|
193
|
+
|
194
|
+
# Package name of the app. Example: `com.example.app123`.
|
195
|
+
# Corresponds to the JSON property `packageName`
|
196
|
+
# @return [String]
|
197
|
+
attr_accessor :package_name
|
198
|
+
|
199
|
+
def initialize(**args)
|
200
|
+
update!(**args)
|
201
|
+
end
|
202
|
+
|
203
|
+
# Update properties of this object
|
204
|
+
def update!(**args)
|
205
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
206
|
+
@name = args[:name] if args.key?(:name)
|
207
|
+
@package_name = args[:package_name] if args.key?(:package_name)
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
211
|
+
# Representations of an app version.
|
212
|
+
class GooglePlayDeveloperReportingV1beta1AppVersion
|
213
|
+
include Google::Apis::Core::Hashable
|
214
|
+
|
215
|
+
# Numeric version code of the app version (set by the app's developer).
|
216
|
+
# Corresponds to the JSON property `versionCode`
|
217
|
+
# @return [Fixnum]
|
218
|
+
attr_accessor :version_code
|
219
|
+
|
220
|
+
def initialize(**args)
|
221
|
+
update!(**args)
|
222
|
+
end
|
223
|
+
|
224
|
+
# Update properties of this object
|
225
|
+
def update!(**args)
|
226
|
+
@version_code = args[:version_code] if args.key?(:version_code)
|
227
|
+
end
|
228
|
+
end
|
229
|
+
|
174
230
|
# Singleton resource representing the set of crashrate metrics. This metric set
|
175
231
|
# contains crashes data combined with usage data to produce a normalized metric
|
176
232
|
# independent of user counts. **Supported aggregation periods:** * DAILY:
|
@@ -205,20 +261,24 @@ module Google
|
|
205
261
|
# counted multiple times. The value is rounded to the nearest multiple of 10,
|
206
262
|
# 100, 1,000 or 1,000,000, depending on the magnitude of the value. **Supported
|
207
263
|
# dimensions:** * `apiLevel` (string): the API level of Android that was running
|
208
|
-
# on the user's device. * `versionCode` (int64): version of the app
|
209
|
-
# running on the user's device. * `deviceModel` (string): unique
|
210
|
-
# the user's device model.
|
211
|
-
#
|
212
|
-
#
|
213
|
-
#
|
214
|
-
# the
|
215
|
-
#
|
216
|
-
#
|
217
|
-
#
|
218
|
-
#
|
219
|
-
#
|
220
|
-
#
|
221
|
-
#
|
264
|
+
# on the user's device, e.g., 26. * `versionCode` (int64): version of the app
|
265
|
+
# that was running on the user's device. * `deviceModel` (string): unique
|
266
|
+
# identifier of the user's device model. The form of the identifier is '
|
267
|
+
# deviceBrand/device', where deviceBrand corresponds to Build.BRAND and device
|
268
|
+
# corresponds to Build.DEVICE, e.g., google/coral. * `deviceBrand` (string):
|
269
|
+
# unique identifier of the user's device brand, e.g., google. * `deviceType` (
|
270
|
+
# string): the type (also known as form factor) of the user's device, e.g.,
|
271
|
+
# PHONE. * `countryCode` (string): the country or region of the user's device
|
272
|
+
# based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
|
273
|
+
# for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
|
274
|
+
# in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
|
275
|
+
# primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
|
276
|
+
# com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
|
277
|
+
# Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
|
278
|
+
# https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
|
279
|
+
# deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
|
280
|
+
# deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
|
281
|
+
# deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
222
282
|
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
223
283
|
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
224
284
|
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
@@ -290,6 +350,62 @@ module Google
|
|
290
350
|
end
|
291
351
|
end
|
292
352
|
|
353
|
+
# Identifier of a device.
|
354
|
+
class GooglePlayDeveloperReportingV1beta1DeviceId
|
355
|
+
include Google::Apis::Core::Hashable
|
356
|
+
|
357
|
+
# Value of Build.BRAND.
|
358
|
+
# Corresponds to the JSON property `buildBrand`
|
359
|
+
# @return [String]
|
360
|
+
attr_accessor :build_brand
|
361
|
+
|
362
|
+
# Value of Build.DEVICE.
|
363
|
+
# Corresponds to the JSON property `buildDevice`
|
364
|
+
# @return [String]
|
365
|
+
attr_accessor :build_device
|
366
|
+
|
367
|
+
def initialize(**args)
|
368
|
+
update!(**args)
|
369
|
+
end
|
370
|
+
|
371
|
+
# Update properties of this object
|
372
|
+
def update!(**args)
|
373
|
+
@build_brand = args[:build_brand] if args.key?(:build_brand)
|
374
|
+
@build_device = args[:build_device] if args.key?(:build_device)
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
378
|
+
# Summary of a device
|
379
|
+
class GooglePlayDeveloperReportingV1beta1DeviceModelSummary
|
380
|
+
include Google::Apis::Core::Hashable
|
381
|
+
|
382
|
+
# Identifier of a device.
|
383
|
+
# Corresponds to the JSON property `deviceId`
|
384
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1DeviceId]
|
385
|
+
attr_accessor :device_id
|
386
|
+
|
387
|
+
# Link to the device in Play Device Catalog.
|
388
|
+
# Corresponds to the JSON property `deviceUri`
|
389
|
+
# @return [String]
|
390
|
+
attr_accessor :device_uri
|
391
|
+
|
392
|
+
# Display name of the device.
|
393
|
+
# Corresponds to the JSON property `marketingName`
|
394
|
+
# @return [String]
|
395
|
+
attr_accessor :marketing_name
|
396
|
+
|
397
|
+
def initialize(**args)
|
398
|
+
update!(**args)
|
399
|
+
end
|
400
|
+
|
401
|
+
# Update properties of this object
|
402
|
+
def update!(**args)
|
403
|
+
@device_id = args[:device_id] if args.key?(:device_id)
|
404
|
+
@device_uri = args[:device_uri] if args.key?(:device_uri)
|
405
|
+
@marketing_name = args[:marketing_name] if args.key?(:marketing_name)
|
406
|
+
end
|
407
|
+
end
|
408
|
+
|
293
409
|
# Represents the value of a single dimension.
|
294
410
|
class GooglePlayDeveloperReportingV1beta1DimensionValue
|
295
411
|
include Google::Apis::Core::Hashable
|
@@ -345,14 +461,16 @@ module Google
|
|
345
461
|
# requests. * `reportType` (string): the type of error. The value should
|
346
462
|
# correspond to one of the possible values in ErrorType. **Supported dimensions:*
|
347
463
|
# * * `apiLevel` (string): the API level of Android that was running on the user'
|
348
|
-
# s device. * `versionCode` (int64): version of the app that was
|
349
|
-
# user's device. * `deviceModel` (string): unique identifier of
|
350
|
-
# device model.
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
# .
|
355
|
-
# ,
|
464
|
+
# s device, e.g., 26. * `versionCode` (int64): version of the app that was
|
465
|
+
# running on the user's device. * `deviceModel` (string): unique identifier of
|
466
|
+
# the user's device model. The form of the identifier is 'deviceBrand/device',
|
467
|
+
# where deviceBrand corresponds to Build.BRAND and device corresponds to Build.
|
468
|
+
# DEVICE, e.g., google/coral. * `deviceType` (string): identifier of the device'
|
469
|
+
# s form factor, e.g., PHONE. * `issueId` (string): the id an error was assigned
|
470
|
+
# to. The value should correspond to the ``issue`` component of the issue name. *
|
471
|
+
# `deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB,
|
472
|
+
# etc.). * `deviceSocMake` (string): Make of the device's primary system-on-chip,
|
473
|
+
# e.g., Samsung. [Reference](https://developer.android.com/reference/android/os/
|
356
474
|
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
|
357
475
|
# primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
|
358
476
|
# android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
|
@@ -416,6 +534,58 @@ module Google
|
|
416
534
|
# @return [String]
|
417
535
|
attr_accessor :cause
|
418
536
|
|
537
|
+
# An estimate of the number of unique users who have experienced this issue (
|
538
|
+
# only considering occurrences matching the filters and within the requested
|
539
|
+
# time period).
|
540
|
+
# Corresponds to the JSON property `distinctUsers`
|
541
|
+
# @return [Fixnum]
|
542
|
+
attr_accessor :distinct_users
|
543
|
+
|
544
|
+
# A representation of a decimal value, such as 2.5. Clients may convert values
|
545
|
+
# into language-native decimal formats, such as Java's BigDecimal or Python's
|
546
|
+
# decimal.Decimal. [BigDecimal]: https://docs.oracle.com/en/java/javase/11/docs/
|
547
|
+
# api/java.base/java/math/BigDecimal.html [decimal.Decimal]: https://docs.python.
|
548
|
+
# org/3/library/decimal.html
|
549
|
+
# Corresponds to the JSON property `distinctUsersPercent`
|
550
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GoogleTypeDecimal]
|
551
|
+
attr_accessor :distinct_users_percent
|
552
|
+
|
553
|
+
# The total number of error reports in this issue (only considering occurrences
|
554
|
+
# matching the filters and within the requested time period).
|
555
|
+
# Corresponds to the JSON property `errorReportCount`
|
556
|
+
# @return [Fixnum]
|
557
|
+
attr_accessor :error_report_count
|
558
|
+
|
559
|
+
# Representations of an app version.
|
560
|
+
# Corresponds to the JSON property `firstAppVersion`
|
561
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1AppVersion]
|
562
|
+
attr_accessor :first_app_version
|
563
|
+
|
564
|
+
# Representation of an OS version.
|
565
|
+
# Corresponds to the JSON property `firstOsVersion`
|
566
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1OsVersion]
|
567
|
+
attr_accessor :first_os_version
|
568
|
+
|
569
|
+
# Link to the issue in Android vitals in the Play Console.
|
570
|
+
# Corresponds to the JSON property `issueUri`
|
571
|
+
# @return [String]
|
572
|
+
attr_accessor :issue_uri
|
573
|
+
|
574
|
+
# Representations of an app version.
|
575
|
+
# Corresponds to the JSON property `lastAppVersion`
|
576
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1AppVersion]
|
577
|
+
attr_accessor :last_app_version
|
578
|
+
|
579
|
+
# Start of the hour during which the last error report in this issue occurred.
|
580
|
+
# Corresponds to the JSON property `lastErrorReportTime`
|
581
|
+
# @return [String]
|
582
|
+
attr_accessor :last_error_report_time
|
583
|
+
|
584
|
+
# Representation of an OS version.
|
585
|
+
# Corresponds to the JSON property `lastOsVersion`
|
586
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1OsVersion]
|
587
|
+
attr_accessor :last_os_version
|
588
|
+
|
419
589
|
# Location where the issue happened. Depending on the type this can be either: *
|
420
590
|
# APPLICATION_NOT_RESPONDING: the name of the activity or service that stopped
|
421
591
|
# responding. * CRASH: the likely method name that caused the error.
|
@@ -440,6 +610,15 @@ module Google
|
|
440
610
|
# Update properties of this object
|
441
611
|
def update!(**args)
|
442
612
|
@cause = args[:cause] if args.key?(:cause)
|
613
|
+
@distinct_users = args[:distinct_users] if args.key?(:distinct_users)
|
614
|
+
@distinct_users_percent = args[:distinct_users_percent] if args.key?(:distinct_users_percent)
|
615
|
+
@error_report_count = args[:error_report_count] if args.key?(:error_report_count)
|
616
|
+
@first_app_version = args[:first_app_version] if args.key?(:first_app_version)
|
617
|
+
@first_os_version = args[:first_os_version] if args.key?(:first_os_version)
|
618
|
+
@issue_uri = args[:issue_uri] if args.key?(:issue_uri)
|
619
|
+
@last_app_version = args[:last_app_version] if args.key?(:last_app_version)
|
620
|
+
@last_error_report_time = args[:last_error_report_time] if args.key?(:last_error_report_time)
|
621
|
+
@last_os_version = args[:last_os_version] if args.key?(:last_os_version)
|
443
622
|
@location = args[:location] if args.key?(:location)
|
444
623
|
@name = args[:name] if args.key?(:name)
|
445
624
|
@type = args[:type] if args.key?(:type)
|
@@ -455,6 +634,16 @@ module Google
|
|
455
634
|
class GooglePlayDeveloperReportingV1beta1ErrorReport
|
456
635
|
include Google::Apis::Core::Hashable
|
457
636
|
|
637
|
+
# Summary of a device
|
638
|
+
# Corresponds to the JSON property `deviceModel`
|
639
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1DeviceModelSummary]
|
640
|
+
attr_accessor :device_model
|
641
|
+
|
642
|
+
# Start of the hour during which the latest event in this error report occurred.
|
643
|
+
# Corresponds to the JSON property `eventTime`
|
644
|
+
# @return [String]
|
645
|
+
attr_accessor :event_time
|
646
|
+
|
458
647
|
# The issue this report was associated with. **Please note:** this resource is
|
459
648
|
# currently in Alpha. There could be changes to the issue grouping that would
|
460
649
|
# result in similar but more recent error reports being assigned to a different
|
@@ -468,6 +657,11 @@ module Google
|
|
468
657
|
# @return [String]
|
469
658
|
attr_accessor :name
|
470
659
|
|
660
|
+
# Representation of an OS version.
|
661
|
+
# Corresponds to the JSON property `osVersion`
|
662
|
+
# @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1OsVersion]
|
663
|
+
attr_accessor :os_version
|
664
|
+
|
471
665
|
# Textual representation of the error report. These textual reports are produced
|
472
666
|
# by the platform. The reports are then sanitized and filtered to remove any
|
473
667
|
# potentially sensitive information. Although their format is fairly stable,
|
@@ -489,8 +683,11 @@ module Google
|
|
489
683
|
|
490
684
|
# Update properties of this object
|
491
685
|
def update!(**args)
|
686
|
+
@device_model = args[:device_model] if args.key?(:device_model)
|
687
|
+
@event_time = args[:event_time] if args.key?(:event_time)
|
492
688
|
@issue = args[:issue] if args.key?(:issue)
|
493
689
|
@name = args[:name] if args.key?(:name)
|
690
|
+
@os_version = args[:os_version] if args.key?(:os_version)
|
494
691
|
@report_text = args[:report_text] if args.key?(:report_text)
|
495
692
|
@type = args[:type] if args.key?(:type)
|
496
693
|
end
|
@@ -517,28 +714,32 @@ module Google
|
|
517
714
|
# may result in users being counted multiple times. The value is rounded to the
|
518
715
|
# nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the magnitude of
|
519
716
|
# the value. **Supported dimensions:** * `apiLevel` (string): the API level of
|
520
|
-
# Android that was running on the user's device. * `versionCode` (
|
521
|
-
# version of the app that was running on the user's device. * `
|
522
|
-
# string): unique identifier of the user's device model.
|
523
|
-
# the
|
524
|
-
#
|
525
|
-
#
|
526
|
-
#
|
527
|
-
# . * `
|
528
|
-
# ,
|
529
|
-
#
|
530
|
-
#
|
531
|
-
#
|
532
|
-
#
|
533
|
-
# of the device's
|
534
|
-
#
|
535
|
-
#
|
536
|
-
#
|
537
|
-
# "
|
538
|
-
#
|
539
|
-
#
|
540
|
-
#
|
541
|
-
#
|
717
|
+
# Android that was running on the user's device, e.g., 26. * `versionCode` (
|
718
|
+
# int64): version of the app that was running on the user's device. * `
|
719
|
+
# deviceModel` (string): unique identifier of the user's device model. The form
|
720
|
+
# of the identifier is 'deviceBrand/device', where deviceBrand corresponds to
|
721
|
+
# Build.BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * `
|
722
|
+
# deviceBrand` (string): unique identifier of the user's device brand, e.g.,
|
723
|
+
# google. * `deviceType` (string): the type (also known as form factor) of the
|
724
|
+
# user's device, e.g., PHONE. * `countryCode` (string): the country or region of
|
725
|
+
# the user's device based on their IP address, represented as a 2-letter ISO-
|
726
|
+
# 3166 code (e.g. US for the United States). * `deviceRamBucket` (int64): RAM of
|
727
|
+
# the device, in MB, in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string):
|
728
|
+
# Make of the device's primary system-on-chip, e.g., Samsung. [Reference](https:/
|
729
|
+
# /developer.android.com/reference/android/os/Build#SOC_MANUFACTURER) * `
|
730
|
+
# deviceSocModel` (string): Model of the device's primary system-on-chip, e.g., "
|
731
|
+
# Exynos 2100". [Reference](https://developer.android.com/reference/android/os/
|
732
|
+
# Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the device's CPU, e.g.,
|
733
|
+
# Qualcomm. * `deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo
|
734
|
+
# 240". * `deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
735
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
736
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
737
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
738
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
739
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
740
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
741
|
+
# **Required permissions**: to access this resource, the calling user needs the
|
742
|
+
# _View app information (read-only)_ permission for the app.
|
542
743
|
class GooglePlayDeveloperReportingV1beta1ExcessiveWakeupRateMetricSet
|
543
744
|
include Google::Apis::Core::Hashable
|
544
745
|
|
@@ -737,32 +938,55 @@ module Google
|
|
737
938
|
end
|
738
939
|
end
|
739
940
|
|
941
|
+
# Representation of an OS version.
|
942
|
+
class GooglePlayDeveloperReportingV1beta1OsVersion
|
943
|
+
include Google::Apis::Core::Hashable
|
944
|
+
|
945
|
+
# Numeric version code of the OS - API level
|
946
|
+
# Corresponds to the JSON property `apiLevel`
|
947
|
+
# @return [Fixnum]
|
948
|
+
attr_accessor :api_level
|
949
|
+
|
950
|
+
def initialize(**args)
|
951
|
+
update!(**args)
|
952
|
+
end
|
953
|
+
|
954
|
+
# Update properties of this object
|
955
|
+
def update!(**args)
|
956
|
+
@api_level = args[:api_level] if args.key?(:api_level)
|
957
|
+
end
|
958
|
+
end
|
959
|
+
|
740
960
|
# Request message for QueryAnrRateMetricSet.
|
741
961
|
class GooglePlayDeveloperReportingV1beta1QueryAnrRateMetricSetRequest
|
742
962
|
include Google::Apis::Core::Hashable
|
743
963
|
|
744
964
|
# Dimensions to slice the metrics by. **Supported dimensions:** * `apiLevel` (
|
745
|
-
# string): the API level of Android that was running on the user's device.
|
746
|
-
# versionCode` (int64): version of the app that was running on the user's
|
747
|
-
# * `deviceModel` (string): unique identifier of the user's device model.
|
748
|
-
#
|
749
|
-
#
|
750
|
-
#
|
751
|
-
#
|
752
|
-
#
|
753
|
-
#
|
754
|
-
#
|
755
|
-
#
|
756
|
-
#
|
757
|
-
#
|
758
|
-
#
|
759
|
-
#
|
760
|
-
#
|
761
|
-
#
|
762
|
-
#
|
763
|
-
# `
|
764
|
-
# * `
|
765
|
-
# * `
|
965
|
+
# string): the API level of Android that was running on the user's device, e.g.,
|
966
|
+
# 26. * `versionCode` (int64): version of the app that was running on the user's
|
967
|
+
# device. * `deviceModel` (string): unique identifier of the user's device model.
|
968
|
+
# The form of the identifier is 'deviceBrand/device', where deviceBrand
|
969
|
+
# corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g.,
|
970
|
+
# google/coral. * `deviceBrand` (string): unique identifier of the user's device
|
971
|
+
# brand, e.g., google. * `deviceType` (string): the type (also known as form
|
972
|
+
# factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
973
|
+
# country or region of the user's device based on their IP address, represented
|
974
|
+
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
975
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
976
|
+
# . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
|
977
|
+
# , Samsung. [Reference](https://developer.android.com/reference/android/os/
|
978
|
+
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
|
979
|
+
# primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
|
980
|
+
# android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
|
981
|
+
# Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
|
982
|
+
# of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
|
983
|
+
# device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
|
984
|
+
# GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
|
985
|
+
# g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
|
986
|
+
# "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
|
987
|
+
# g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
|
988
|
+
# NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
|
989
|
+
# , mdpi, hdpi.
|
766
990
|
# Corresponds to the JSON property `dimensions`
|
767
991
|
# @return [Array<String>]
|
768
992
|
attr_accessor :dimensions
|
@@ -893,27 +1117,31 @@ module Google
|
|
893
1117
|
include Google::Apis::Core::Hashable
|
894
1118
|
|
895
1119
|
# Dimensions to slice the metrics by. **Supported dimensions:** * `apiLevel` (
|
896
|
-
# string): the API level of Android that was running on the user's device.
|
897
|
-
# versionCode` (int64): version of the app that was running on the user's
|
898
|
-
# * `deviceModel` (string): unique identifier of the user's device model.
|
899
|
-
#
|
900
|
-
#
|
901
|
-
#
|
902
|
-
#
|
903
|
-
#
|
904
|
-
#
|
905
|
-
#
|
906
|
-
#
|
907
|
-
#
|
908
|
-
#
|
909
|
-
#
|
910
|
-
#
|
911
|
-
#
|
912
|
-
#
|
913
|
-
#
|
914
|
-
# `
|
915
|
-
# * `
|
916
|
-
# * `
|
1120
|
+
# string): the API level of Android that was running on the user's device, e.g.,
|
1121
|
+
# 26. * `versionCode` (int64): version of the app that was running on the user's
|
1122
|
+
# device. * `deviceModel` (string): unique identifier of the user's device model.
|
1123
|
+
# The form of the identifier is 'deviceBrand/device', where deviceBrand
|
1124
|
+
# corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g.,
|
1125
|
+
# google/coral. * `deviceBrand` (string): unique identifier of the user's device
|
1126
|
+
# brand, e.g., google. * `deviceType` (string): the type (also known as form
|
1127
|
+
# factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
1128
|
+
# country or region of the user's device based on their IP address, represented
|
1129
|
+
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
1130
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
1131
|
+
# . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
|
1132
|
+
# , Samsung. [Reference](https://developer.android.com/reference/android/os/
|
1133
|
+
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
|
1134
|
+
# primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
|
1135
|
+
# android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
|
1136
|
+
# Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
|
1137
|
+
# of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
|
1138
|
+
# device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
|
1139
|
+
# GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
|
1140
|
+
# g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
|
1141
|
+
# "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
|
1142
|
+
# g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
|
1143
|
+
# NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
|
1144
|
+
# , mdpi, hdpi.
|
917
1145
|
# Corresponds to the JSON property `dimensions`
|
918
1146
|
# @return [Array<String>]
|
919
1147
|
attr_accessor :dimensions
|
@@ -1046,24 +1274,27 @@ module Google
|
|
1046
1274
|
include Google::Apis::Core::Hashable
|
1047
1275
|
|
1048
1276
|
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
1049
|
-
# string): the API level of Android that was running on the user's device.
|
1050
|
-
# versionCode` (int64):
|
1051
|
-
#
|
1277
|
+
# string): the API level of Android that was running on the user's device, e.g.,
|
1278
|
+
# 26. * `versionCode` (int64): unique identifier of the user's device model. The
|
1279
|
+
# form of the identifier is 'deviceBrand/device', where deviceBrand corresponds
|
1280
|
+
# to Build.BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * `
|
1281
|
+
# deviceModel` (string): unique identifier of the user's device model. * `
|
1052
1282
|
# deviceType` (string): identifier of the device's form factor, e.g., PHONE. * `
|
1053
1283
|
# reportType` (string): the type of error. The value should correspond to one of
|
1054
|
-
# the possible values in ErrorType. * `
|
1055
|
-
#
|
1056
|
-
#
|
1057
|
-
#
|
1058
|
-
#
|
1059
|
-
#
|
1060
|
-
#
|
1061
|
-
#
|
1062
|
-
#
|
1063
|
-
#
|
1064
|
-
#
|
1065
|
-
#
|
1066
|
-
#
|
1284
|
+
# the possible values in ErrorType. * `isUserPerceived` (string): denotes
|
1285
|
+
# whether error is user perceived or not, USER_PERCEIVED or NOT_USER_PERCEIVED. *
|
1286
|
+
# `issueId` (string): the id an error was assigned to. The value should
|
1287
|
+
# correspond to the ``issue`` component of the issue name. * `deviceRamBucket` (
|
1288
|
+
# int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.). * `
|
1289
|
+
# deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.,
|
1290
|
+
# Samsung. [Reference](https://developer.android.com/reference/android/os/Build#
|
1291
|
+
# SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's primary
|
1292
|
+
# system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.android.com/
|
1293
|
+
# reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the
|
1294
|
+
# device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model of the device'
|
1295
|
+
# s CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the device's GPU,
|
1296
|
+
# e.g., ARM. * `deviceGpuModel` (string): Model of the device's GPU, e.g., Mali.
|
1297
|
+
# * `deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
1067
1298
|
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
1068
1299
|
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
1069
1300
|
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
@@ -1165,27 +1396,31 @@ module Google
|
|
1165
1396
|
include Google::Apis::Core::Hashable
|
1166
1397
|
|
1167
1398
|
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
1168
|
-
# string): the API level of Android that was running on the user's device.
|
1169
|
-
# versionCode` (int64): version of the app that was running on the user's
|
1170
|
-
# * `deviceModel` (string): unique identifier of the user's device model.
|
1171
|
-
#
|
1172
|
-
#
|
1173
|
-
#
|
1174
|
-
#
|
1175
|
-
#
|
1176
|
-
#
|
1177
|
-
#
|
1178
|
-
#
|
1179
|
-
#
|
1180
|
-
#
|
1181
|
-
#
|
1182
|
-
#
|
1183
|
-
#
|
1184
|
-
#
|
1185
|
-
#
|
1186
|
-
# `
|
1187
|
-
# * `
|
1188
|
-
# * `
|
1399
|
+
# string): the API level of Android that was running on the user's device, e.g.,
|
1400
|
+
# 26. * `versionCode` (int64): version of the app that was running on the user's
|
1401
|
+
# device. * `deviceModel` (string): unique identifier of the user's device model.
|
1402
|
+
# The form of the identifier is 'deviceBrand/device', where deviceBrand
|
1403
|
+
# corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g.,
|
1404
|
+
# google/coral. * `deviceBrand` (string): unique identifier of the user's device
|
1405
|
+
# brand, e.g., google. * `deviceType` (string): the type (also known as form
|
1406
|
+
# factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
1407
|
+
# country or region of the user's device based on their IP address, represented
|
1408
|
+
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
1409
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
1410
|
+
# . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
|
1411
|
+
# , Samsung. [Reference](https://developer.android.com/reference/android/os/
|
1412
|
+
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
|
1413
|
+
# primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
|
1414
|
+
# android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
|
1415
|
+
# Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
|
1416
|
+
# of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
|
1417
|
+
# device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
|
1418
|
+
# GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
|
1419
|
+
# g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
|
1420
|
+
# "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
|
1421
|
+
# g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
|
1422
|
+
# NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
|
1423
|
+
# , mdpi, hdpi.
|
1189
1424
|
# Corresponds to the JSON property `dimensions`
|
1190
1425
|
# @return [Array<String>]
|
1191
1426
|
attr_accessor :dimensions
|
@@ -1307,27 +1542,31 @@ module Google
|
|
1307
1542
|
include Google::Apis::Core::Hashable
|
1308
1543
|
|
1309
1544
|
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
1310
|
-
# string): the API level of Android that was running on the user's device.
|
1311
|
-
# versionCode` (int64): version of the app that was running on the user's
|
1312
|
-
# * `deviceModel` (string): unique identifier of the user's device model.
|
1313
|
-
#
|
1314
|
-
#
|
1315
|
-
#
|
1316
|
-
#
|
1317
|
-
#
|
1318
|
-
#
|
1319
|
-
#
|
1320
|
-
#
|
1321
|
-
#
|
1322
|
-
#
|
1323
|
-
#
|
1324
|
-
#
|
1325
|
-
#
|
1326
|
-
#
|
1327
|
-
#
|
1328
|
-
# `
|
1329
|
-
# * `
|
1330
|
-
# * `
|
1545
|
+
# string): the API level of Android that was running on the user's device, e.g.,
|
1546
|
+
# 26. * `versionCode` (int64): version of the app that was running on the user's
|
1547
|
+
# device. * `deviceModel` (string): unique identifier of the user's device model.
|
1548
|
+
# The form of the identifier is 'deviceBrand/device', where deviceBrand
|
1549
|
+
# corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g.,
|
1550
|
+
# google/coral. * `deviceBrand` (string): unique identifier of the user's device
|
1551
|
+
# brand, e.g., google. * `deviceType` (string): the type (also known as form
|
1552
|
+
# factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
1553
|
+
# country or region of the user's device based on their IP address, represented
|
1554
|
+
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
1555
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
1556
|
+
# . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
|
1557
|
+
# , Samsung. [Reference](https://developer.android.com/reference/android/os/
|
1558
|
+
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
|
1559
|
+
# primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
|
1560
|
+
# android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
|
1561
|
+
# Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
|
1562
|
+
# of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
|
1563
|
+
# device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
|
1564
|
+
# GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
|
1565
|
+
# g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
|
1566
|
+
# "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
|
1567
|
+
# g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
|
1568
|
+
# NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
|
1569
|
+
# , mdpi, hdpi.
|
1331
1570
|
# Corresponds to the JSON property `dimensions`
|
1332
1571
|
# @return [Array<String>]
|
1333
1572
|
attr_accessor :dimensions
|
@@ -1456,27 +1695,31 @@ module Google
|
|
1456
1695
|
include Google::Apis::Core::Hashable
|
1457
1696
|
|
1458
1697
|
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
1459
|
-
# string): the API level of Android that was running on the user's device.
|
1460
|
-
# versionCode` (int64): version of the app that was running on the user's
|
1461
|
-
# * `deviceModel` (string): unique identifier of the user's device model.
|
1462
|
-
#
|
1463
|
-
#
|
1464
|
-
#
|
1465
|
-
#
|
1466
|
-
#
|
1467
|
-
#
|
1468
|
-
#
|
1469
|
-
#
|
1470
|
-
#
|
1471
|
-
#
|
1472
|
-
#
|
1473
|
-
#
|
1474
|
-
#
|
1475
|
-
#
|
1476
|
-
#
|
1477
|
-
# `
|
1478
|
-
# * `
|
1479
|
-
# * `
|
1698
|
+
# string): the API level of Android that was running on the user's device, e.g.,
|
1699
|
+
# 26. * `versionCode` (int64): version of the app that was running on the user's
|
1700
|
+
# device. * `deviceModel` (string): unique identifier of the user's device model.
|
1701
|
+
# The form of the identifier is 'deviceBrand/device', where deviceBrand
|
1702
|
+
# corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g.,
|
1703
|
+
# google/coral. * `deviceBrand` (string): unique identifier of the user's device
|
1704
|
+
# brand, e.g., google. * `deviceType` (string): the type (also known as form
|
1705
|
+
# factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
1706
|
+
# country or region of the user's device based on their IP address, represented
|
1707
|
+
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
1708
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
1709
|
+
# . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
|
1710
|
+
# , Samsung. [Reference](https://developer.android.com/reference/android/os/
|
1711
|
+
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
|
1712
|
+
# primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
|
1713
|
+
# android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
|
1714
|
+
# Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
|
1715
|
+
# of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
|
1716
|
+
# device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
|
1717
|
+
# GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
|
1718
|
+
# g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
|
1719
|
+
# "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
|
1720
|
+
# g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
|
1721
|
+
# NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
|
1722
|
+
# , mdpi, hdpi.
|
1480
1723
|
# Corresponds to the JSON property `dimensions`
|
1481
1724
|
# @return [Array<String>]
|
1482
1725
|
attr_accessor :dimensions
|
@@ -1596,27 +1839,31 @@ module Google
|
|
1596
1839
|
include Google::Apis::Core::Hashable
|
1597
1840
|
|
1598
1841
|
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
1599
|
-
# string): the API level of Android that was running on the user's device.
|
1600
|
-
# versionCode` (int64): version of the app that was running on the user's
|
1601
|
-
# * `deviceModel` (string): unique identifier of the user's device model.
|
1602
|
-
#
|
1603
|
-
#
|
1604
|
-
#
|
1605
|
-
#
|
1606
|
-
#
|
1607
|
-
#
|
1608
|
-
#
|
1609
|
-
#
|
1610
|
-
#
|
1611
|
-
#
|
1612
|
-
#
|
1613
|
-
#
|
1614
|
-
#
|
1615
|
-
#
|
1616
|
-
#
|
1617
|
-
# `
|
1618
|
-
# * `
|
1619
|
-
# * `
|
1842
|
+
# string): the API level of Android that was running on the user's device, e.g.,
|
1843
|
+
# 26. * `versionCode` (int64): version of the app that was running on the user's
|
1844
|
+
# device. * `deviceModel` (string): unique identifier of the user's device model.
|
1845
|
+
# The form of the identifier is 'deviceBrand/device', where deviceBrand
|
1846
|
+
# corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g.,
|
1847
|
+
# google/coral. * `deviceBrand` (string): unique identifier of the user's device
|
1848
|
+
# brand, e.g., google. * `deviceType` (string): the type (also known as form
|
1849
|
+
# factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
1850
|
+
# country or region of the user's device based on their IP address, represented
|
1851
|
+
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
1852
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
1853
|
+
# . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
|
1854
|
+
# , Samsung. [Reference](https://developer.android.com/reference/android/os/
|
1855
|
+
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
|
1856
|
+
# primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
|
1857
|
+
# android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
|
1858
|
+
# Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
|
1859
|
+
# of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
|
1860
|
+
# device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
|
1861
|
+
# GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
|
1862
|
+
# g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
|
1863
|
+
# "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
|
1864
|
+
# g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
|
1865
|
+
# NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
|
1866
|
+
# , mdpi, hdpi.
|
1620
1867
|
# Corresponds to the JSON property `dimensions`
|
1621
1868
|
# @return [Array<String>]
|
1622
1869
|
attr_accessor :dimensions
|
@@ -1733,6 +1980,77 @@ module Google
|
|
1733
1980
|
end
|
1734
1981
|
end
|
1735
1982
|
|
1983
|
+
# A representation of an app release.
|
1984
|
+
class GooglePlayDeveloperReportingV1beta1Release
|
1985
|
+
include Google::Apis::Core::Hashable
|
1986
|
+
|
1987
|
+
# Readable identifier of the release.
|
1988
|
+
# Corresponds to the JSON property `displayName`
|
1989
|
+
# @return [String]
|
1990
|
+
attr_accessor :display_name
|
1991
|
+
|
1992
|
+
# The version codes contained in this release.
|
1993
|
+
# Corresponds to the JSON property `versionCodes`
|
1994
|
+
# @return [Array<Fixnum>]
|
1995
|
+
attr_accessor :version_codes
|
1996
|
+
|
1997
|
+
def initialize(**args)
|
1998
|
+
update!(**args)
|
1999
|
+
end
|
2000
|
+
|
2001
|
+
# Update properties of this object
|
2002
|
+
def update!(**args)
|
2003
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2004
|
+
@version_codes = args[:version_codes] if args.key?(:version_codes)
|
2005
|
+
end
|
2006
|
+
end
|
2007
|
+
|
2008
|
+
# A set of filtering options for releases and version codes specific to an app.
|
2009
|
+
class GooglePlayDeveloperReportingV1beta1ReleaseFilterOptions
|
2010
|
+
include Google::Apis::Core::Hashable
|
2011
|
+
|
2012
|
+
# List of tracks to filter releases over. Provides the grouping of version codes
|
2013
|
+
# under releases and tracks.
|
2014
|
+
# Corresponds to the JSON property `tracks`
|
2015
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1Track>]
|
2016
|
+
attr_accessor :tracks
|
2017
|
+
|
2018
|
+
def initialize(**args)
|
2019
|
+
update!(**args)
|
2020
|
+
end
|
2021
|
+
|
2022
|
+
# Update properties of this object
|
2023
|
+
def update!(**args)
|
2024
|
+
@tracks = args[:tracks] if args.key?(:tracks)
|
2025
|
+
end
|
2026
|
+
end
|
2027
|
+
|
2028
|
+
# Response message for SearchAccessibleApps.
|
2029
|
+
class GooglePlayDeveloperReportingV1beta1SearchAccessibleAppsResponse
|
2030
|
+
include Google::Apis::Core::Hashable
|
2031
|
+
|
2032
|
+
# The apps accessible to the user calling the endpoint.
|
2033
|
+
# Corresponds to the JSON property `apps`
|
2034
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1App>]
|
2035
|
+
attr_accessor :apps
|
2036
|
+
|
2037
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
2038
|
+
# field is omitted, there are no subsequent pages.
|
2039
|
+
# Corresponds to the JSON property `nextPageToken`
|
2040
|
+
# @return [String]
|
2041
|
+
attr_accessor :next_page_token
|
2042
|
+
|
2043
|
+
def initialize(**args)
|
2044
|
+
update!(**args)
|
2045
|
+
end
|
2046
|
+
|
2047
|
+
# Update properties of this object
|
2048
|
+
def update!(**args)
|
2049
|
+
@apps = args[:apps] if args.key?(:apps)
|
2050
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2051
|
+
end
|
2052
|
+
end
|
2053
|
+
|
1736
2054
|
# Response with a paginated list of issues that matched the request.
|
1737
2055
|
class GooglePlayDeveloperReportingV1beta1SearchErrorIssuesResponse
|
1738
2056
|
include Google::Apis::Core::Hashable
|
@@ -1815,28 +2133,31 @@ module Google
|
|
1815
2133
|
# times. The value is rounded to the nearest multiple of 10, 100, 1,000 or 1,000,
|
1816
2134
|
# 000, depending on the magnitude of the value. **Supported dimensions:** * `
|
1817
2135
|
# apiLevel` (string): the API level of Android that was running on the user's
|
1818
|
-
# device. * `versionCode` (int64): version of the app that was running
|
1819
|
-
# user's device. * `deviceModel` (string): unique identifier of the user'
|
1820
|
-
# device model.
|
1821
|
-
#
|
1822
|
-
#
|
1823
|
-
#
|
1824
|
-
#
|
1825
|
-
#
|
1826
|
-
#
|
1827
|
-
#
|
1828
|
-
#
|
1829
|
-
#
|
1830
|
-
#
|
1831
|
-
#
|
1832
|
-
#
|
1833
|
-
#
|
1834
|
-
#
|
1835
|
-
# `
|
1836
|
-
# * `
|
1837
|
-
# * `
|
1838
|
-
#
|
1839
|
-
#
|
2136
|
+
# device, e.g., 26. * `versionCode` (int64): version of the app that was running
|
2137
|
+
# on the user's device. * `deviceModel` (string): unique identifier of the user'
|
2138
|
+
# s device model. The form of the identifier is 'deviceBrand/device', where
|
2139
|
+
# deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE,
|
2140
|
+
# e.g., google/coral. * `deviceBrand` (string): unique identifier of the user's
|
2141
|
+
# device brand, e.g., google. * `deviceType` (string): the type (also known as
|
2142
|
+
# form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
|
2143
|
+
# country or region of the user's device based on their IP address, represented
|
2144
|
+
# as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
2145
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
2146
|
+
# . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
|
2147
|
+
# , Samsung. [Reference](https://developer.android.com/reference/android/os/
|
2148
|
+
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
|
2149
|
+
# primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
|
2150
|
+
# android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
|
2151
|
+
# Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
|
2152
|
+
# of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
|
2153
|
+
# device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
|
2154
|
+
# GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
|
2155
|
+
# g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
|
2156
|
+
# "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
|
2157
|
+
# g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
|
2158
|
+
# NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
|
2159
|
+
# , mdpi, hdpi. **Required permissions**: to access this resource, the calling
|
2160
|
+
# user needs the _View app information (read-only)_ permission for the app.
|
1840
2161
|
class GooglePlayDeveloperReportingV1beta1SlowRenderingRateMetricSet
|
1841
2162
|
include Google::Apis::Core::Hashable
|
1842
2163
|
|
@@ -1885,28 +2206,32 @@ module Google
|
|
1885
2206
|
# specified with each request for the request to be valid. * `startType` (string)
|
1886
2207
|
# : the type of start that was measured. Valid types are `HOT`, `WARM` and `COLD`
|
1887
2208
|
# . **Supported dimensions:** * `apiLevel` (string): the API level of Android
|
1888
|
-
# that was running on the user's device. * `versionCode` (int64):
|
1889
|
-
# app that was running on the user's device. * `deviceModel` (
|
1890
|
-
# identifier of the user's device model.
|
1891
|
-
#
|
1892
|
-
#
|
1893
|
-
#
|
1894
|
-
#
|
1895
|
-
# . * `
|
1896
|
-
# ,
|
1897
|
-
#
|
1898
|
-
#
|
1899
|
-
#
|
1900
|
-
#
|
1901
|
-
# of the device's
|
1902
|
-
#
|
1903
|
-
#
|
1904
|
-
#
|
1905
|
-
# "
|
1906
|
-
#
|
1907
|
-
#
|
1908
|
-
#
|
1909
|
-
#
|
2209
|
+
# that was running on the user's device, e.g., 26. * `versionCode` (int64):
|
2210
|
+
# version of the app that was running on the user's device. * `deviceModel` (
|
2211
|
+
# string): unique identifier of the user's device model. The form of the
|
2212
|
+
# identifier is 'deviceBrand/device', where deviceBrand corresponds to Build.
|
2213
|
+
# BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * `
|
2214
|
+
# deviceBrand` (string): unique identifier of the user's device brand, e.g.,
|
2215
|
+
# google. * `deviceType` (string): the type (also known as form factor) of the
|
2216
|
+
# user's device, e.g., PHONE. * `countryCode` (string): the country or region of
|
2217
|
+
# the user's device based on their IP address, represented as a 2-letter ISO-
|
2218
|
+
# 3166 code (e.g. US for the United States). * `deviceRamBucket` (int64): RAM of
|
2219
|
+
# the device, in MB, in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string):
|
2220
|
+
# Make of the device's primary system-on-chip, e.g., Samsung. [Reference](https:/
|
2221
|
+
# /developer.android.com/reference/android/os/Build#SOC_MANUFACTURER) * `
|
2222
|
+
# deviceSocModel` (string): Model of the device's primary system-on-chip, e.g., "
|
2223
|
+
# Exynos 2100". [Reference](https://developer.android.com/reference/android/os/
|
2224
|
+
# Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the device's CPU, e.g.,
|
2225
|
+
# Qualcomm. * `deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo
|
2226
|
+
# 240". * `deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
|
2227
|
+
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
2228
|
+
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
2229
|
+
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
2230
|
+
# `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
|
2231
|
+
# * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
|
2232
|
+
# * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
2233
|
+
# **Required permissions**: to access this resource, the calling user needs the
|
2234
|
+
# _View app information (read-only)_ permission for the app.
|
1910
2235
|
class GooglePlayDeveloperReportingV1beta1SlowStartRateMetricSet
|
1911
2236
|
include Google::Apis::Core::Hashable
|
1912
2237
|
|
@@ -1956,28 +2281,31 @@ module Google
|
|
1956
2281
|
# multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000
|
1957
2282
|
# or 1,000,000, depending on the magnitude of the value. **Supported dimensions:*
|
1958
2283
|
# * * `apiLevel` (string): the API level of Android that was running on the user'
|
1959
|
-
# s device. * `versionCode` (int64): version of the app that was
|
1960
|
-
# user's device. * `deviceModel` (string): unique identifier of
|
1961
|
-
# device model.
|
1962
|
-
#
|
1963
|
-
#
|
1964
|
-
#
|
1965
|
-
#
|
1966
|
-
#
|
1967
|
-
#
|
1968
|
-
#
|
1969
|
-
#
|
1970
|
-
#
|
1971
|
-
#
|
1972
|
-
#
|
1973
|
-
#
|
1974
|
-
#
|
1975
|
-
#
|
1976
|
-
# `
|
1977
|
-
# * `
|
1978
|
-
# * `
|
1979
|
-
#
|
1980
|
-
#
|
2284
|
+
# s device, e.g., 26. * `versionCode` (int64): version of the app that was
|
2285
|
+
# running on the user's device. * `deviceModel` (string): unique identifier of
|
2286
|
+
# the user's device model. The form of the identifier is 'deviceBrand/device',
|
2287
|
+
# where deviceBrand corresponds to Build.BRAND and device corresponds to Build.
|
2288
|
+
# DEVICE, e.g., google/coral. * `deviceBrand` (string): unique identifier of the
|
2289
|
+
# user's device brand, e.g., google. * `deviceType` (string): the type (also
|
2290
|
+
# known as form factor) of the user's device, e.g., PHONE. * `countryCode` (
|
2291
|
+
# string): the country or region of the user's device based on their IP address,
|
2292
|
+
# represented as a 2-letter ISO-3166 code (e.g. US for the United States). * `
|
2293
|
+
# deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
|
2294
|
+
# . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
|
2295
|
+
# , Samsung. [Reference](https://developer.android.com/reference/android/os/
|
2296
|
+
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
|
2297
|
+
# primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
|
2298
|
+
# android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
|
2299
|
+
# Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
|
2300
|
+
# of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
|
2301
|
+
# device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
|
2302
|
+
# GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
|
2303
|
+
# g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
|
2304
|
+
# "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
|
2305
|
+
# g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
|
2306
|
+
# NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
|
2307
|
+
# , mdpi, hdpi. **Required permissions**: to access this resource, the calling
|
2308
|
+
# user needs the _View app information (read-only)_ permission for the app.
|
1981
2309
|
class GooglePlayDeveloperReportingV1beta1StuckBackgroundWakelockRateMetricSet
|
1982
2310
|
include Google::Apis::Core::Hashable
|
1983
2311
|
|
@@ -2075,6 +2403,37 @@ module Google
|
|
2075
2403
|
end
|
2076
2404
|
end
|
2077
2405
|
|
2406
|
+
# A representation of a Play release track.
|
2407
|
+
class GooglePlayDeveloperReportingV1beta1Track
|
2408
|
+
include Google::Apis::Core::Hashable
|
2409
|
+
|
2410
|
+
# Readable identifier of the track.
|
2411
|
+
# Corresponds to the JSON property `displayName`
|
2412
|
+
# @return [String]
|
2413
|
+
attr_accessor :display_name
|
2414
|
+
|
2415
|
+
# Represents all active releases in the track.
|
2416
|
+
# Corresponds to the JSON property `servingReleases`
|
2417
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1Release>]
|
2418
|
+
attr_accessor :serving_releases
|
2419
|
+
|
2420
|
+
# The type of the track.
|
2421
|
+
# Corresponds to the JSON property `type`
|
2422
|
+
# @return [String]
|
2423
|
+
attr_accessor :type
|
2424
|
+
|
2425
|
+
def initialize(**args)
|
2426
|
+
update!(**args)
|
2427
|
+
end
|
2428
|
+
|
2429
|
+
# Update properties of this object
|
2430
|
+
def update!(**args)
|
2431
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2432
|
+
@serving_releases = args[:serving_releases] if args.key?(:serving_releases)
|
2433
|
+
@type = args[:type] if args.key?(:type)
|
2434
|
+
end
|
2435
|
+
end
|
2436
|
+
|
2078
2437
|
# Represents civil time (or occasionally physical time). This type can represent
|
2079
2438
|
# a civil time in one of a few possible ways: * When utc_offset is set and
|
2080
2439
|
# time_zone is unset: a civil time on a calendar day with a particular offset
|