google-apis-playdeveloperreporting_v1alpha1 0.19.0 → 0.20.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb +611 -265
- data/lib/google/apis/playdeveloperreporting_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/playdeveloperreporting_v1alpha1/representations.rb +149 -0
- data/lib/google/apis/playdeveloperreporting_v1alpha1/service.rb +78 -1
- metadata +3 -3
@@ -119,21 +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
|
-
# of the user's device
|
128
|
-
#
|
129
|
-
#
|
130
|
-
#
|
131
|
-
#
|
132
|
-
#
|
133
|
-
#
|
134
|
-
# Build#
|
135
|
-
#
|
136
|
-
#
|
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. * `
|
137
140
|
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
138
141
|
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
139
142
|
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
@@ -172,6 +175,58 @@ module Google
|
|
172
175
|
end
|
173
176
|
end
|
174
177
|
|
178
|
+
# A representation of an app in the Play Store.
|
179
|
+
class GooglePlayDeveloperReportingV1alpha1App
|
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 GooglePlayDeveloperReportingV1alpha1AppVersion
|
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
|
+
|
175
230
|
# Singleton resource representing the set of crashrate metrics. This metric set
|
176
231
|
# contains crashes data combined with usage data to produce a normalized metric
|
177
232
|
# independent of user counts. **Supported aggregation periods:** * DAILY:
|
@@ -206,21 +261,24 @@ module Google
|
|
206
261
|
# counted multiple times. The value is rounded to the nearest multiple of 10,
|
207
262
|
# 100, 1,000 or 1,000,000, depending on the magnitude of the value. **Supported
|
208
263
|
# dimensions:** * `apiLevel` (string): the API level of Android that was running
|
209
|
-
# on the user's device. * `versionCode` (int64): version of the app
|
210
|
-
# running on the user's device. * `deviceModel` (string): unique
|
211
|
-
# the user's device model.
|
212
|
-
#
|
213
|
-
#
|
214
|
-
# of the user's device
|
215
|
-
#
|
216
|
-
#
|
217
|
-
#
|
218
|
-
#
|
219
|
-
#
|
220
|
-
#
|
221
|
-
# Build#
|
222
|
-
#
|
223
|
-
#
|
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. * `
|
224
282
|
# deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
|
225
283
|
# deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
|
226
284
|
# deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
|
@@ -292,6 +350,62 @@ module Google
|
|
292
350
|
end
|
293
351
|
end
|
294
352
|
|
353
|
+
# Identifier of a device.
|
354
|
+
class GooglePlayDeveloperReportingV1alpha1DeviceId
|
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 GooglePlayDeveloperReportingV1alpha1DeviceModelSummary
|
380
|
+
include Google::Apis::Core::Hashable
|
381
|
+
|
382
|
+
# Identifier of a device.
|
383
|
+
# Corresponds to the JSON property `deviceId`
|
384
|
+
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1DeviceId]
|
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
|
+
|
295
409
|
# Represents the value of a single dimension.
|
296
410
|
class GooglePlayDeveloperReportingV1alpha1DimensionValue
|
297
411
|
include Google::Apis::Core::Hashable
|
@@ -347,14 +461,16 @@ module Google
|
|
347
461
|
# requests. * `reportType` (string): the type of error. The value should
|
348
462
|
# correspond to one of the possible values in ErrorType. **Supported dimensions:*
|
349
463
|
# * * `apiLevel` (string): the API level of Android that was running on the user'
|
350
|
-
# s device. * `versionCode` (int64): version of the app that was
|
351
|
-
# user's device. * `deviceModel` (string): unique identifier of
|
352
|
-
# device model.
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
# .
|
357
|
-
# ,
|
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/
|
358
474
|
# Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
|
359
475
|
# primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
|
360
476
|
# android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
|
@@ -418,6 +534,58 @@ module Google
|
|
418
534
|
# @return [String]
|
419
535
|
attr_accessor :cause
|
420
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::PlaydeveloperreportingV1alpha1::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::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1AppVersion]
|
562
|
+
attr_accessor :first_app_version
|
563
|
+
|
564
|
+
# Representation of an OS version.
|
565
|
+
# Corresponds to the JSON property `firstOsVersion`
|
566
|
+
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1OsVersion]
|
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::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1AppVersion]
|
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::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1OsVersion]
|
587
|
+
attr_accessor :last_os_version
|
588
|
+
|
421
589
|
# Location where the issue happened. Depending on the type this can be either: *
|
422
590
|
# APPLICATION_NOT_RESPONDING: the name of the activity or service that stopped
|
423
591
|
# responding. * CRASH: the likely method name that caused the error.
|
@@ -442,6 +610,15 @@ module Google
|
|
442
610
|
# Update properties of this object
|
443
611
|
def update!(**args)
|
444
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)
|
445
622
|
@location = args[:location] if args.key?(:location)
|
446
623
|
@name = args[:name] if args.key?(:name)
|
447
624
|
@type = args[:type] if args.key?(:type)
|
@@ -457,6 +634,16 @@ module Google
|
|
457
634
|
class GooglePlayDeveloperReportingV1alpha1ErrorReport
|
458
635
|
include Google::Apis::Core::Hashable
|
459
636
|
|
637
|
+
# Summary of a device
|
638
|
+
# Corresponds to the JSON property `deviceModel`
|
639
|
+
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1DeviceModelSummary]
|
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
|
+
|
460
647
|
# The issue this report was associated with. **Please note:** this resource is
|
461
648
|
# currently in Alpha. There could be changes to the issue grouping that would
|
462
649
|
# result in similar but more recent error reports being assigned to a different
|
@@ -470,6 +657,11 @@ module Google
|
|
470
657
|
# @return [String]
|
471
658
|
attr_accessor :name
|
472
659
|
|
660
|
+
# Representation of an OS version.
|
661
|
+
# Corresponds to the JSON property `osVersion`
|
662
|
+
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1OsVersion]
|
663
|
+
attr_accessor :os_version
|
664
|
+
|
473
665
|
# Textual representation of the error report. These textual reports are produced
|
474
666
|
# by the platform. The reports are then sanitized and filtered to remove any
|
475
667
|
# potentially sensitive information. Although their format is fairly stable,
|
@@ -491,8 +683,11 @@ module Google
|
|
491
683
|
|
492
684
|
# Update properties of this object
|
493
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)
|
494
688
|
@issue = args[:issue] if args.key?(:issue)
|
495
689
|
@name = args[:name] if args.key?(:name)
|
690
|
+
@os_version = args[:os_version] if args.key?(:os_version)
|
496
691
|
@report_text = args[:report_text] if args.key?(:report_text)
|
497
692
|
@type = args[:type] if args.key?(:type)
|
498
693
|
end
|
@@ -519,29 +714,32 @@ module Google
|
|
519
714
|
# may result in users being counted multiple times. The value is rounded to the
|
520
715
|
# nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the magnitude of
|
521
716
|
# the value. **Supported dimensions:** * `apiLevel` (string): the API level of
|
522
|
-
# Android that was running on the user's device. * `versionCode` (
|
523
|
-
# version of the app that was running on the user's device. * `
|
524
|
-
# string): unique identifier of the user's device model.
|
525
|
-
#
|
526
|
-
#
|
527
|
-
# :
|
528
|
-
#
|
529
|
-
#
|
530
|
-
#
|
531
|
-
#
|
532
|
-
#
|
533
|
-
# primary system-on-chip, e.g.,
|
534
|
-
# android.com/reference/android/os/Build#
|
535
|
-
#
|
536
|
-
#
|
537
|
-
#
|
538
|
-
#
|
539
|
-
#
|
540
|
-
#
|
541
|
-
#
|
542
|
-
#
|
543
|
-
#
|
544
|
-
#
|
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.
|
545
743
|
class GooglePlayDeveloperReportingV1alpha1ExcessiveWakeupRateMetricSet
|
546
744
|
include Google::Apis::Core::Hashable
|
547
745
|
|
@@ -740,33 +938,55 @@ module Google
|
|
740
938
|
end
|
741
939
|
end
|
742
940
|
|
941
|
+
# Representation of an OS version.
|
942
|
+
class GooglePlayDeveloperReportingV1alpha1OsVersion
|
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
|
+
|
743
960
|
# Request message for QueryAnrRateMetricSet.
|
744
961
|
class GooglePlayDeveloperReportingV1alpha1QueryAnrRateMetricSetRequest
|
745
962
|
include Google::Apis::Core::Hashable
|
746
963
|
|
747
964
|
# Dimensions to slice the metrics by. **Supported dimensions:** * `apiLevel` (
|
748
|
-
# string): the API level of Android that was running on the user's device.
|
749
|
-
# versionCode` (int64): version of the app that was running on the user's
|
750
|
-
# * `deviceModel` (string): unique identifier of the user's device model.
|
751
|
-
#
|
752
|
-
#
|
753
|
-
#
|
754
|
-
#
|
755
|
-
#
|
756
|
-
#
|
757
|
-
#
|
758
|
-
#
|
759
|
-
#
|
760
|
-
# https://developer.android.com/reference/android/os/
|
761
|
-
#
|
762
|
-
#
|
763
|
-
#
|
764
|
-
#
|
765
|
-
#
|
766
|
-
#
|
767
|
-
# `
|
768
|
-
# * `
|
769
|
-
# * `
|
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.
|
770
990
|
# Corresponds to the JSON property `dimensions`
|
771
991
|
# @return [Array<String>]
|
772
992
|
attr_accessor :dimensions
|
@@ -897,28 +1117,31 @@ module Google
|
|
897
1117
|
include Google::Apis::Core::Hashable
|
898
1118
|
|
899
1119
|
# Dimensions to slice the metrics by. **Supported dimensions:** * `apiLevel` (
|
900
|
-
# string): the API level of Android that was running on the user's device.
|
901
|
-
# versionCode` (int64): version of the app that was running on the user's
|
902
|
-
# * `deviceModel` (string): unique identifier of the user's device model.
|
903
|
-
#
|
904
|
-
#
|
905
|
-
#
|
906
|
-
#
|
907
|
-
#
|
908
|
-
#
|
909
|
-
#
|
910
|
-
#
|
911
|
-
#
|
912
|
-
# https://developer.android.com/reference/android/os/
|
913
|
-
#
|
914
|
-
#
|
915
|
-
#
|
916
|
-
#
|
917
|
-
#
|
918
|
-
#
|
919
|
-
# `
|
920
|
-
# * `
|
921
|
-
# * `
|
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.
|
922
1145
|
# Corresponds to the JSON property `dimensions`
|
923
1146
|
# @return [Array<String>]
|
924
1147
|
attr_accessor :dimensions
|
@@ -1051,9 +1274,11 @@ module Google
|
|
1051
1274
|
include Google::Apis::Core::Hashable
|
1052
1275
|
|
1053
1276
|
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
1054
|
-
# string): the API level of Android that was running on the user's device.
|
1055
|
-
# versionCode` (int64):
|
1056
|
-
#
|
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. * `
|
1057
1282
|
# deviceType` (string): identifier of the device's form factor, e.g., PHONE. * `
|
1058
1283
|
# reportType` (string): the type of error. The value should correspond to one of
|
1059
1284
|
# the possible values in ErrorType. * `isUserPerceived` (string): denotes
|
@@ -1171,28 +1396,31 @@ module Google
|
|
1171
1396
|
include Google::Apis::Core::Hashable
|
1172
1397
|
|
1173
1398
|
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
1174
|
-
# string): the API level of Android that was running on the user's device.
|
1175
|
-
# versionCode` (int64): version of the app that was running on the user's
|
1176
|
-
# * `deviceModel` (string): unique identifier of the user's device model.
|
1177
|
-
#
|
1178
|
-
#
|
1179
|
-
#
|
1180
|
-
#
|
1181
|
-
#
|
1182
|
-
#
|
1183
|
-
#
|
1184
|
-
#
|
1185
|
-
#
|
1186
|
-
# https://developer.android.com/reference/android/os/
|
1187
|
-
#
|
1188
|
-
#
|
1189
|
-
#
|
1190
|
-
#
|
1191
|
-
#
|
1192
|
-
#
|
1193
|
-
# `
|
1194
|
-
# * `
|
1195
|
-
# * `
|
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.
|
1196
1424
|
# Corresponds to the JSON property `dimensions`
|
1197
1425
|
# @return [Array<String>]
|
1198
1426
|
attr_accessor :dimensions
|
@@ -1314,28 +1542,31 @@ module Google
|
|
1314
1542
|
include Google::Apis::Core::Hashable
|
1315
1543
|
|
1316
1544
|
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
1317
|
-
# string): the API level of Android that was running on the user's device.
|
1318
|
-
# versionCode` (int64): version of the app that was running on the user's
|
1319
|
-
# * `deviceModel` (string): unique identifier of the user's device model.
|
1320
|
-
#
|
1321
|
-
#
|
1322
|
-
#
|
1323
|
-
#
|
1324
|
-
#
|
1325
|
-
#
|
1326
|
-
#
|
1327
|
-
#
|
1328
|
-
#
|
1329
|
-
# https://developer.android.com/reference/android/os/
|
1330
|
-
#
|
1331
|
-
#
|
1332
|
-
#
|
1333
|
-
#
|
1334
|
-
#
|
1335
|
-
#
|
1336
|
-
# `
|
1337
|
-
# * `
|
1338
|
-
# * `
|
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.
|
1339
1570
|
# Corresponds to the JSON property `dimensions`
|
1340
1571
|
# @return [Array<String>]
|
1341
1572
|
attr_accessor :dimensions
|
@@ -1464,28 +1695,31 @@ module Google
|
|
1464
1695
|
include Google::Apis::Core::Hashable
|
1465
1696
|
|
1466
1697
|
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
1467
|
-
# string): the API level of Android that was running on the user's device.
|
1468
|
-
# versionCode` (int64): version of the app that was running on the user's
|
1469
|
-
# * `deviceModel` (string): unique identifier of the user's device model.
|
1470
|
-
#
|
1471
|
-
#
|
1472
|
-
#
|
1473
|
-
#
|
1474
|
-
#
|
1475
|
-
#
|
1476
|
-
#
|
1477
|
-
#
|
1478
|
-
#
|
1479
|
-
# https://developer.android.com/reference/android/os/
|
1480
|
-
#
|
1481
|
-
#
|
1482
|
-
#
|
1483
|
-
#
|
1484
|
-
#
|
1485
|
-
#
|
1486
|
-
# `
|
1487
|
-
# * `
|
1488
|
-
# * `
|
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.
|
1489
1723
|
# Corresponds to the JSON property `dimensions`
|
1490
1724
|
# @return [Array<String>]
|
1491
1725
|
attr_accessor :dimensions
|
@@ -1605,28 +1839,31 @@ module Google
|
|
1605
1839
|
include Google::Apis::Core::Hashable
|
1606
1840
|
|
1607
1841
|
# Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
|
1608
|
-
# string): the API level of Android that was running on the user's device.
|
1609
|
-
# versionCode` (int64): version of the app that was running on the user's
|
1610
|
-
# * `deviceModel` (string): unique identifier of the user's device model.
|
1611
|
-
#
|
1612
|
-
#
|
1613
|
-
#
|
1614
|
-
#
|
1615
|
-
#
|
1616
|
-
#
|
1617
|
-
#
|
1618
|
-
#
|
1619
|
-
#
|
1620
|
-
# https://developer.android.com/reference/android/os/
|
1621
|
-
#
|
1622
|
-
#
|
1623
|
-
#
|
1624
|
-
#
|
1625
|
-
#
|
1626
|
-
#
|
1627
|
-
# `
|
1628
|
-
# * `
|
1629
|
-
# * `
|
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.
|
1630
1867
|
# Corresponds to the JSON property `dimensions`
|
1631
1868
|
# @return [Array<String>]
|
1632
1869
|
attr_accessor :dimensions
|
@@ -1743,6 +1980,77 @@ module Google
|
|
1743
1980
|
end
|
1744
1981
|
end
|
1745
1982
|
|
1983
|
+
# A representation of an app release.
|
1984
|
+
class GooglePlayDeveloperReportingV1alpha1Release
|
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 GooglePlayDeveloperReportingV1alpha1ReleaseFilterOptions
|
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::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1Track>]
|
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 GooglePlayDeveloperReportingV1alpha1SearchAccessibleAppsResponse
|
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::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1App>]
|
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
|
+
|
1746
2054
|
# Response with a paginated list of issues that matched the request.
|
1747
2055
|
class GooglePlayDeveloperReportingV1alpha1SearchErrorIssuesResponse
|
1748
2056
|
include Google::Apis::Core::Hashable
|
@@ -1825,29 +2133,31 @@ module Google
|
|
1825
2133
|
# times. The value is rounded to the nearest multiple of 10, 100, 1,000 or 1,000,
|
1826
2134
|
# 000, depending on the magnitude of the value. **Supported dimensions:** * `
|
1827
2135
|
# apiLevel` (string): the API level of Android that was running on the user's
|
1828
|
-
# device. * `versionCode` (int64): version of the app that was running
|
1829
|
-
# user's device. * `deviceModel` (string): unique identifier of the user'
|
1830
|
-
# device model.
|
1831
|
-
#
|
1832
|
-
#
|
1833
|
-
# device
|
1834
|
-
#
|
1835
|
-
#
|
1836
|
-
#
|
1837
|
-
#
|
1838
|
-
# string):
|
1839
|
-
# Reference](https://developer.android.com/reference/android/os/
|
1840
|
-
# * `
|
1841
|
-
#
|
1842
|
-
#
|
1843
|
-
#
|
1844
|
-
#
|
1845
|
-
#
|
1846
|
-
# `
|
1847
|
-
# * `
|
1848
|
-
# * `
|
1849
|
-
#
|
1850
|
-
#
|
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.
|
1851
2161
|
class GooglePlayDeveloperReportingV1alpha1SlowRenderingRateMetricSet
|
1852
2162
|
include Google::Apis::Core::Hashable
|
1853
2163
|
|
@@ -1896,29 +2206,32 @@ module Google
|
|
1896
2206
|
# specified with each request for the request to be valid. * `startType` (string)
|
1897
2207
|
# : the type of start that was measured. Valid types are `HOT`, `WARM` and `COLD`
|
1898
2208
|
# . **Supported dimensions:** * `apiLevel` (string): the API level of Android
|
1899
|
-
# that was running on the user's device. * `versionCode` (int64):
|
1900
|
-
# app that was running on the user's device. * `deviceModel` (
|
1901
|
-
# identifier of the user's device model.
|
1902
|
-
# identifier
|
1903
|
-
#
|
1904
|
-
#
|
1905
|
-
#
|
1906
|
-
#
|
1907
|
-
#
|
1908
|
-
#
|
1909
|
-
#
|
1910
|
-
# primary system-on-chip, e.g.,
|
1911
|
-
# android.com/reference/android/os/Build#
|
1912
|
-
#
|
1913
|
-
#
|
1914
|
-
#
|
1915
|
-
#
|
1916
|
-
#
|
1917
|
-
#
|
1918
|
-
#
|
1919
|
-
#
|
1920
|
-
#
|
1921
|
-
#
|
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.
|
1922
2235
|
class GooglePlayDeveloperReportingV1alpha1SlowStartRateMetricSet
|
1923
2236
|
include Google::Apis::Core::Hashable
|
1924
2237
|
|
@@ -1968,29 +2281,31 @@ module Google
|
|
1968
2281
|
# multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000
|
1969
2282
|
# or 1,000,000, depending on the magnitude of the value. **Supported dimensions:*
|
1970
2283
|
# * * `apiLevel` (string): the API level of Android that was running on the user'
|
1971
|
-
# s device. * `versionCode` (int64): version of the app that was
|
1972
|
-
# user's device. * `deviceModel` (string): unique identifier of
|
1973
|
-
# device model.
|
1974
|
-
#
|
1975
|
-
#
|
1976
|
-
# device
|
1977
|
-
#
|
1978
|
-
#
|
1979
|
-
#
|
1980
|
-
#
|
1981
|
-
# string):
|
1982
|
-
# Reference](https://developer.android.com/reference/android/os/
|
1983
|
-
# * `
|
1984
|
-
#
|
1985
|
-
#
|
1986
|
-
#
|
1987
|
-
#
|
1988
|
-
#
|
1989
|
-
# `
|
1990
|
-
# * `
|
1991
|
-
# * `
|
1992
|
-
#
|
1993
|
-
#
|
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.
|
1994
2309
|
class GooglePlayDeveloperReportingV1alpha1StuckBackgroundWakelockRateMetricSet
|
1995
2310
|
include Google::Apis::Core::Hashable
|
1996
2311
|
|
@@ -2088,6 +2403,37 @@ module Google
|
|
2088
2403
|
end
|
2089
2404
|
end
|
2090
2405
|
|
2406
|
+
# A representation of a Play release track.
|
2407
|
+
class GooglePlayDeveloperReportingV1alpha1Track
|
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::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1Release>]
|
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
|
+
|
2091
2437
|
# Represents civil time (or occasionally physical time). This type can represent
|
2092
2438
|
# a civil time in one of a few possible ways: * When utc_offset is set and
|
2093
2439
|
# time_zone is unset: a civil time on a calendar day with a particular offset
|