google-apis-playdeveloperreporting_v1alpha1 0.31.0 → 0.33.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 +10 -0
- data/lib/google/apis/playdeveloperreporting_v1alpha1/classes.rb +64 -58
- data/lib/google/apis/playdeveloperreporting_v1alpha1/gem_version.rb +3 -3
- data/lib/google/apis/playdeveloperreporting_v1alpha1/representations.rb +17 -0
- data/lib/google/apis/playdeveloperreporting_v1alpha1/service.rb +41 -41
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d654f0370f43d5b8960ed86596853ea8083501cab88818cd9c79250ccc0758e
|
4
|
+
data.tar.gz: '0148259ba585bdb6a555825c0570cea45be2e33629b3b73bd8296615d31b4fbb'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1fb2b9e612bbc9d12140de9fd0ba8b9acf2acaabca90e40f2eb9f518a81786795e83ac97eecd8d550e6379be46202c0bd551a523fae2260343f19fe87124e7c7
|
7
|
+
data.tar.gz: 04bf10cd308bddfabd9e06da0c57b078ec83b762fc7d650bc818f424d01afa836611880c9724d88515cb132fdaa7ad55b4b7f3d535fcd27e09f064efbaa4c666
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# Release history for google-apis-playdeveloperreporting_v1alpha1
|
2
2
|
|
3
|
+
### v0.33.0 (2025-02-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250204
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.32.0 (2024-12-02)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241128
|
11
|
+
* Regenerated using generator version 0.15.1
|
12
|
+
|
3
13
|
### v0.31.0 (2024-07-25)
|
4
14
|
|
5
15
|
* Regenerated from discovery document revision 20240704
|
@@ -322,19 +322,17 @@ module Google
|
|
322
322
|
include Google::Apis::Core::Hashable
|
323
323
|
|
324
324
|
# A representation of a decimal value, such as 2.5. Clients may convert values
|
325
|
-
# into language-native decimal formats, such as Java's BigDecimal
|
326
|
-
#
|
327
|
-
#
|
328
|
-
# org/3/library/decimal.html
|
325
|
+
# into language-native decimal formats, such as Java's [BigDecimal](https://docs.
|
326
|
+
# oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html) or
|
327
|
+
# Python's [decimal.Decimal](https://docs.python.org/3/library/decimal.html).
|
329
328
|
# Corresponds to the JSON property `lowerBound`
|
330
329
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GoogleTypeDecimal]
|
331
330
|
attr_accessor :lower_bound
|
332
331
|
|
333
332
|
# A representation of a decimal value, such as 2.5. Clients may convert values
|
334
|
-
# into language-native decimal formats, such as Java's BigDecimal
|
335
|
-
#
|
336
|
-
#
|
337
|
-
# org/3/library/decimal.html
|
333
|
+
# into language-native decimal formats, such as Java's [BigDecimal](https://docs.
|
334
|
+
# oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html) or
|
335
|
+
# Python's [decimal.Decimal](https://docs.python.org/3/library/decimal.html).
|
338
336
|
# Corresponds to the JSON property `upperBound`
|
339
337
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GoogleTypeDecimal]
|
340
338
|
attr_accessor :upper_bound
|
@@ -527,6 +525,12 @@ module Google
|
|
527
525
|
class GooglePlayDeveloperReportingV1alpha1ErrorIssue
|
528
526
|
include Google::Apis::Core::Hashable
|
529
527
|
|
528
|
+
# List of annotations for an issue. Annotations provide additional information
|
529
|
+
# that may help in diagnosing and fixing the issue.
|
530
|
+
# Corresponds to the JSON property `annotations`
|
531
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1IssueAnnotation>]
|
532
|
+
attr_accessor :annotations
|
533
|
+
|
530
534
|
# Cause of the issue. Depending on the type this can be either: *
|
531
535
|
# APPLICATION_NOT_RESPONDING: the type of ANR that occurred, e.g., 'Input
|
532
536
|
# dispatching timed out'. * CRASH: for Java unhandled exception errors, the type
|
@@ -544,10 +548,9 @@ module Google
|
|
544
548
|
attr_accessor :distinct_users
|
545
549
|
|
546
550
|
# A representation of a decimal value, such as 2.5. Clients may convert values
|
547
|
-
# into language-native decimal formats, such as Java's BigDecimal
|
548
|
-
#
|
549
|
-
#
|
550
|
-
# org/3/library/decimal.html
|
551
|
+
# into language-native decimal formats, such as Java's [BigDecimal](https://docs.
|
552
|
+
# oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html) or
|
553
|
+
# Python's [decimal.Decimal](https://docs.python.org/3/library/decimal.html).
|
551
554
|
# Corresponds to the JSON property `distinctUsersPercent`
|
552
555
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GoogleTypeDecimal]
|
553
556
|
attr_accessor :distinct_users_percent
|
@@ -618,6 +621,7 @@ module Google
|
|
618
621
|
|
619
622
|
# Update properties of this object
|
620
623
|
def update!(**args)
|
624
|
+
@annotations = args[:annotations] if args.key?(:annotations)
|
621
625
|
@cause = args[:cause] if args.key?(:cause)
|
622
626
|
@distinct_users = args[:distinct_users] if args.key?(:distinct_users)
|
623
627
|
@distinct_users_percent = args[:distinct_users_percent] if args.key?(:distinct_users_percent)
|
@@ -852,6 +856,38 @@ module Google
|
|
852
856
|
end
|
853
857
|
end
|
854
858
|
|
859
|
+
# Representation of an annotation message for an issue.
|
860
|
+
class GooglePlayDeveloperReportingV1alpha1IssueAnnotation
|
861
|
+
include Google::Apis::Core::Hashable
|
862
|
+
|
863
|
+
# Contains the contents of the annotation message.
|
864
|
+
# Corresponds to the JSON property `body`
|
865
|
+
# @return [String]
|
866
|
+
attr_accessor :body
|
867
|
+
|
868
|
+
# Category that the annotation belongs to. An annotation will belong to a single
|
869
|
+
# category. Example categories: "Potential fix", "Insight".
|
870
|
+
# Corresponds to the JSON property `category`
|
871
|
+
# @return [String]
|
872
|
+
attr_accessor :category
|
873
|
+
|
874
|
+
# Title for the annotation.
|
875
|
+
# Corresponds to the JSON property `title`
|
876
|
+
# @return [String]
|
877
|
+
attr_accessor :title
|
878
|
+
|
879
|
+
def initialize(**args)
|
880
|
+
update!(**args)
|
881
|
+
end
|
882
|
+
|
883
|
+
# Update properties of this object
|
884
|
+
def update!(**args)
|
885
|
+
@body = args[:body] if args.key?(:body)
|
886
|
+
@category = args[:category] if args.key?(:category)
|
887
|
+
@title = args[:title] if args.key?(:title)
|
888
|
+
end
|
889
|
+
end
|
890
|
+
|
855
891
|
# Response with a list of anomalies in datasets.
|
856
892
|
class GooglePlayDeveloperReportingV1alpha1ListAnomaliesResponse
|
857
893
|
include Google::Apis::Core::Hashable
|
@@ -882,10 +918,9 @@ module Google
|
|
882
918
|
include Google::Apis::Core::Hashable
|
883
919
|
|
884
920
|
# A representation of a decimal value, such as 2.5. Clients may convert values
|
885
|
-
# into language-native decimal formats, such as Java's BigDecimal
|
886
|
-
#
|
887
|
-
#
|
888
|
-
# org/3/library/decimal.html
|
921
|
+
# into language-native decimal formats, such as Java's [BigDecimal](https://docs.
|
922
|
+
# oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html) or
|
923
|
+
# Python's [decimal.Decimal](https://docs.python.org/3/library/decimal.html).
|
889
924
|
# Corresponds to the JSON property `decimalValue`
|
890
925
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GoogleTypeDecimal]
|
891
926
|
attr_accessor :decimal_value
|
@@ -1507,15 +1542,8 @@ module Google
|
|
1507
1542
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec]
|
1508
1543
|
attr_accessor :timeline_spec
|
1509
1544
|
|
1510
|
-
# User view to select. The output data will correspond to the selected view.
|
1511
|
-
#
|
1512
|
-
# Android versions. This is the default. Supports all the above dimensions. * `
|
1513
|
-
# APP_TESTERS` To select data from users who have opted in to be testers.
|
1514
|
-
# Supports all the above dimensions. * `OS_BETA` To select data from beta
|
1515
|
-
# android versions only, excluding data from released android versions. Only the
|
1516
|
-
# following dimensions are supported: * `versionCode` (int64): version of the
|
1517
|
-
# app that was running on the user's device. * `osBuild` (string): OS build of
|
1518
|
-
# the user's device, e.g., "T1B2.220916.004".
|
1545
|
+
# User view to select. The output data will correspond to the selected view. The
|
1546
|
+
# only supported value is `OS_PUBLIC`.
|
1519
1547
|
# Corresponds to the JSON property `userCohort`
|
1520
1548
|
# @return [String]
|
1521
1549
|
attr_accessor :user_cohort
|
@@ -1660,15 +1688,8 @@ module Google
|
|
1660
1688
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec]
|
1661
1689
|
attr_accessor :timeline_spec
|
1662
1690
|
|
1663
|
-
# User view to select. The output data will correspond to the selected view.
|
1664
|
-
#
|
1665
|
-
# Android versions. This is the default. Supports all the above dimensions. * `
|
1666
|
-
# APP_TESTERS` To select data from users who have opted in to be testers.
|
1667
|
-
# Supports all the above dimensions. * `OS_BETA` To select data from beta
|
1668
|
-
# Android versions only, excluding data from released Android versions. Only the
|
1669
|
-
# following dimensions are supported: * `versionCode` (int64): version of the
|
1670
|
-
# app that was running on the user's device. * `osBuild` (string): OS build of
|
1671
|
-
# the user's device, e.g., "T1B2.220916.004".
|
1691
|
+
# User view to select. The output data will correspond to the selected view. The
|
1692
|
+
# only supported value is `OS_PUBLIC`.
|
1672
1693
|
# Corresponds to the JSON property `userCohort`
|
1673
1694
|
# @return [String]
|
1674
1695
|
attr_accessor :user_cohort
|
@@ -1804,15 +1825,8 @@ module Google
|
|
1804
1825
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec]
|
1805
1826
|
attr_accessor :timeline_spec
|
1806
1827
|
|
1807
|
-
# User view to select. The output data will correspond to the selected view.
|
1808
|
-
#
|
1809
|
-
# Android versions. This is the default. Supports all the above dimensions. * `
|
1810
|
-
# APP_TESTERS` To select data from users who have opted in to be testers.
|
1811
|
-
# Supports all the above dimensions. * `OS_BETA` To select data from beta
|
1812
|
-
# Android versions only, excluding data from released Android versions. Only the
|
1813
|
-
# following dimensions are supported: * `versionCode` (int64): version of the
|
1814
|
-
# app that was running on the user's device. * `osBuild` (string): OS build of
|
1815
|
-
# the user's device, e.g., "T1B2.220916.004".
|
1828
|
+
# User view to select. The output data will correspond to the selected view. The
|
1829
|
+
# only supported value is `OS_PUBLIC`.
|
1816
1830
|
# Corresponds to the JSON property `userCohort`
|
1817
1831
|
# @return [String]
|
1818
1832
|
attr_accessor :user_cohort
|
@@ -1950,15 +1964,8 @@ module Google
|
|
1950
1964
|
# @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec]
|
1951
1965
|
attr_accessor :timeline_spec
|
1952
1966
|
|
1953
|
-
# User view to select. The output data will correspond to the selected view.
|
1954
|
-
#
|
1955
|
-
# Android versions. This is the default. Supports all the above dimensions. * `
|
1956
|
-
# APP_TESTERS` To select data from users who have opted in to be testers.
|
1957
|
-
# Supports all the above dimensions. * `OS_BETA` To select data from beta
|
1958
|
-
# android versions only, excluding data from released android versions. Only the
|
1959
|
-
# following dimensions are supported: * `versionCode` (int64): version of the
|
1960
|
-
# app that was running on the user's device. * `osBuild` (string): OS build of
|
1961
|
-
# the user's device, e.g., "T1B2.220916.004".
|
1967
|
+
# User view to select. The output data will correspond to the selected view. The
|
1968
|
+
# only supported value is `OS_PUBLIC`.
|
1962
1969
|
# Corresponds to the JSON property `userCohort`
|
1963
1970
|
# @return [String]
|
1964
1971
|
attr_accessor :user_cohort
|
@@ -2549,10 +2556,9 @@ module Google
|
|
2549
2556
|
end
|
2550
2557
|
|
2551
2558
|
# A representation of a decimal value, such as 2.5. Clients may convert values
|
2552
|
-
# into language-native decimal formats, such as Java's BigDecimal
|
2553
|
-
#
|
2554
|
-
#
|
2555
|
-
# org/3/library/decimal.html
|
2559
|
+
# into language-native decimal formats, such as Java's [BigDecimal](https://docs.
|
2560
|
+
# oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html) or
|
2561
|
+
# Python's [decimal.Decimal](https://docs.python.org/3/library/decimal.html).
|
2556
2562
|
class GoogleTypeDecimal
|
2557
2563
|
include Google::Apis::Core::Hashable
|
2558
2564
|
|
@@ -2610,12 +2616,12 @@ module Google
|
|
2610
2616
|
class GoogleTypeTimeZone
|
2611
2617
|
include Google::Apis::Core::Hashable
|
2612
2618
|
|
2613
|
-
# IANA Time Zone Database time zone
|
2619
|
+
# IANA Time Zone Database time zone. For example "America/New_York".
|
2614
2620
|
# Corresponds to the JSON property `id`
|
2615
2621
|
# @return [String]
|
2616
2622
|
attr_accessor :id
|
2617
2623
|
|
2618
|
-
# Optional. IANA Time Zone Database version number
|
2624
|
+
# Optional. IANA Time Zone Database version number. For example "2019a".
|
2619
2625
|
# Corresponds to the JSON property `version`
|
2620
2626
|
# @return [String]
|
2621
2627
|
attr_accessor :version
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module PlaydeveloperreportingV1alpha1
|
18
18
|
# Version of the google-apis-playdeveloperreporting_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.33.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250204"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -112,6 +112,12 @@ module Google
|
|
112
112
|
include Google::Apis::Core::JsonObjectSupport
|
113
113
|
end
|
114
114
|
|
115
|
+
class GooglePlayDeveloperReportingV1alpha1IssueAnnotation
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
115
121
|
class GooglePlayDeveloperReportingV1alpha1ListAnomaliesResponse
|
116
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
123
|
|
@@ -396,6 +402,8 @@ module Google
|
|
396
402
|
class GooglePlayDeveloperReportingV1alpha1ErrorIssue
|
397
403
|
# @private
|
398
404
|
class Representation < Google::Apis::Core::JsonRepresentation
|
405
|
+
collection :annotations, as: 'annotations', class: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1IssueAnnotation, decorator: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1IssueAnnotation::Representation
|
406
|
+
|
399
407
|
property :cause, as: 'cause'
|
400
408
|
property :distinct_users, :numeric_string => true, as: 'distinctUsers'
|
401
409
|
property :distinct_users_percent, as: 'distinctUsersPercent', class: Google::Apis::PlaydeveloperreportingV1alpha1::GoogleTypeDecimal, decorator: Google::Apis::PlaydeveloperreportingV1alpha1::GoogleTypeDecimal::Representation
|
@@ -462,6 +470,15 @@ module Google
|
|
462
470
|
end
|
463
471
|
end
|
464
472
|
|
473
|
+
class GooglePlayDeveloperReportingV1alpha1IssueAnnotation
|
474
|
+
# @private
|
475
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
476
|
+
property :body, as: 'body'
|
477
|
+
property :category, as: 'category'
|
478
|
+
property :title, as: 'title'
|
479
|
+
end
|
480
|
+
end
|
481
|
+
|
465
482
|
class GooglePlayDeveloperReportingV1alpha1ListAnomaliesResponse
|
466
483
|
# @private
|
467
484
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -380,17 +380,17 @@ module Google
|
|
380
380
|
# issues that occurred in the requested device brands. Example: `deviceBrand = "
|
381
381
|
# Google". * `deviceType`: Matches error issues that occurred in the requested
|
382
382
|
# device types. Example: `deviceType = "PHONE"`. * `errorIssueType`: Matches
|
383
|
-
# error issues of the requested types only. Valid candidates: `CRASH`, `ANR
|
384
|
-
# Example: `errorIssueType = CRASH OR errorIssueType = ANR`. * `
|
385
|
-
# Matches error issues on the process state of an app,
|
386
|
-
# app runs in the foreground (user-visible) or background.
|
387
|
-
# FOREGROUND`, `BACKGROUND`. Example: `appProcessState =
|
388
|
-
# isUserPerceived`: Matches error issues that are user-perceived.
|
389
|
-
# accompanied by any operators. Example: `isUserPerceived`. **
|
390
|
-
# operators:** * Comparison operators: The only supported comparison
|
391
|
-
# equality. The filtered field must appear on the left hand side of
|
392
|
-
# comparison. * Logical Operators: Logical operators `AND` and `OR` can be
|
393
|
-
# to build complex filters following a conjunctive normal form (CNF), i.e.,
|
383
|
+
# error issues of the requested types only. Valid candidates: `CRASH`, `ANR`, `
|
384
|
+
# NON_FATAL`. Example: `errorIssueType = CRASH OR errorIssueType = ANR`. * `
|
385
|
+
# appProcessState`: Matches error issues on the process state of an app,
|
386
|
+
# indicating whether an app runs in the foreground (user-visible) or background.
|
387
|
+
# Valid candidates: `FOREGROUND`, `BACKGROUND`. Example: `appProcessState =
|
388
|
+
# FOREGROUND`. * `isUserPerceived`: Matches error issues that are user-perceived.
|
389
|
+
# It is not accompanied by any operators. Example: `isUserPerceived`. **
|
390
|
+
# Supported operators:** * Comparison operators: The only supported comparison
|
391
|
+
# operator is equality. The filtered field must appear on the left hand side of
|
392
|
+
# the comparison. * Logical Operators: Logical operators `AND` and `OR` can be
|
393
|
+
# used to build complex filters following a conjunctive normal form (CNF), i.e.,
|
394
394
|
# conjunctions of disjunctions. The `OR` operator takes precedence over `AND` so
|
395
395
|
# the use of parenthesis is not necessary when building CNF. The `OR` operator
|
396
396
|
# is only supported to build disjunctions that apply to the same field, e.g., `
|
@@ -417,9 +417,9 @@ module Google
|
|
417
417
|
# Optional. Seconds of minutes of the time. Must normally be from 0 to 59,
|
418
418
|
# defaults to 0. An API may allow the value 60 if it allows leap-seconds.
|
419
419
|
# @param [String] interval_end_time_time_zone_id
|
420
|
-
# IANA Time Zone Database time zone
|
420
|
+
# IANA Time Zone Database time zone. For example "America/New_York".
|
421
421
|
# @param [String] interval_end_time_time_zone_version
|
422
|
-
# Optional. IANA Time Zone Database version number
|
422
|
+
# Optional. IANA Time Zone Database version number. For example "2019a".
|
423
423
|
# @param [String] interval_end_time_utc_offset
|
424
424
|
# UTC offset. Must be whole seconds, between -18 hours and +18 hours. For
|
425
425
|
# example, a UTC offset of -4:00 would be represented as ` seconds: -14400 `.
|
@@ -445,9 +445,9 @@ module Google
|
|
445
445
|
# Optional. Seconds of minutes of the time. Must normally be from 0 to 59,
|
446
446
|
# defaults to 0. An API may allow the value 60 if it allows leap-seconds.
|
447
447
|
# @param [String] interval_start_time_time_zone_id
|
448
|
-
# IANA Time Zone Database time zone
|
448
|
+
# IANA Time Zone Database time zone. For example "America/New_York".
|
449
449
|
# @param [String] interval_start_time_time_zone_version
|
450
|
-
# Optional. IANA Time Zone Database version number
|
450
|
+
# Optional. IANA Time Zone Database version number. For example "2019a".
|
451
451
|
# @param [String] interval_start_time_utc_offset
|
452
452
|
# UTC offset. Must be whole seconds, between -18 hours and +18 hours. For
|
453
453
|
# example, a UTC offset of -4:00 would be represented as ` seconds: -14400 `.
|
@@ -541,28 +541,28 @@ module Google
|
|
541
541
|
# requested device brands. Example: `deviceBrand = "Google". * `deviceType`:
|
542
542
|
# Matches error reports that occurred in the requested device types. Example: `
|
543
543
|
# deviceType = "PHONE"`. * `errorIssueType`: Matches error reports of the
|
544
|
-
# requested types only. Valid candidates: `
|
545
|
-
#
|
546
|
-
#
|
547
|
-
#
|
548
|
-
#
|
549
|
-
#
|
550
|
-
#
|
551
|
-
#
|
552
|
-
#
|
553
|
-
#
|
554
|
-
#
|
555
|
-
#
|
556
|
-
#
|
557
|
-
#
|
558
|
-
#
|
559
|
-
#
|
560
|
-
#
|
561
|
-
#
|
562
|
-
# versionCode =
|
563
|
-
#
|
564
|
-
#
|
565
|
-
#
|
544
|
+
# requested types only. Valid candidates: `CRASH`, `ANR`, `NON_FATAL`. Example: `
|
545
|
+
# errorIssueType = CRASH OR errorIssueType = ANR`. * `errorIssueId`: Matches
|
546
|
+
# error reports belonging to the requested error issue ids only. Example: `
|
547
|
+
# errorIssueId = 1234 OR errorIssueId = 4567`. * `errorReportId`: Matches error
|
548
|
+
# reports with the requested error report id. Example: `errorReportId = 1234 OR
|
549
|
+
# errorReportId = 4567`. * `appProcessState`: Matches error reports on the
|
550
|
+
# process state of an app, indicating whether an app runs in the foreground (
|
551
|
+
# user-visible) or background. Valid candidates: `FOREGROUND`, `BACKGROUND`.
|
552
|
+
# Example: `appProcessState = FOREGROUND`. * `isUserPerceived`: Matches error
|
553
|
+
# reports that are user-perceived. It is not accompanied by any operators.
|
554
|
+
# Example: `isUserPerceived`. ** Supported operators:** * Comparison operators:
|
555
|
+
# The only supported comparison operator is equality. The filtered field must
|
556
|
+
# appear on the left hand side of the comparison. * Logical Operators: Logical
|
557
|
+
# operators `AND` and `OR` can be used to build complex filters following a
|
558
|
+
# conjunctive normal form (CNF), i.e., conjunctions of disjunctions. The `OR`
|
559
|
+
# operator takes precedence over `AND` so the use of parenthesis is not
|
560
|
+
# necessary when building CNF. The `OR` operator is only supported to build
|
561
|
+
# disjunctions that apply to the same field, e.g., `versionCode = 123 OR
|
562
|
+
# versionCode = ANR`. The filter expression `versionCode = 123 OR errorIssueType
|
563
|
+
# = ANR` is not valid. ** Examples ** Some valid filtering expressions: * `
|
564
|
+
# versionCode = 123 AND errorIssueType = ANR` * `versionCode = 123 AND
|
565
|
+
# errorIssueType = OR errorIssueType = CRASH` * `versionCode = 123 AND (
|
566
566
|
# errorIssueType = OR errorIssueType = CRASH)`
|
567
567
|
# @param [Fixnum] interval_end_time_day
|
568
568
|
# Optional. Day of month. Must be from 1 to 31 and valid for the year and month,
|
@@ -583,9 +583,9 @@ module Google
|
|
583
583
|
# Optional. Seconds of minutes of the time. Must normally be from 0 to 59,
|
584
584
|
# defaults to 0. An API may allow the value 60 if it allows leap-seconds.
|
585
585
|
# @param [String] interval_end_time_time_zone_id
|
586
|
-
# IANA Time Zone Database time zone
|
586
|
+
# IANA Time Zone Database time zone. For example "America/New_York".
|
587
587
|
# @param [String] interval_end_time_time_zone_version
|
588
|
-
# Optional. IANA Time Zone Database version number
|
588
|
+
# Optional. IANA Time Zone Database version number. For example "2019a".
|
589
589
|
# @param [String] interval_end_time_utc_offset
|
590
590
|
# UTC offset. Must be whole seconds, between -18 hours and +18 hours. For
|
591
591
|
# example, a UTC offset of -4:00 would be represented as ` seconds: -14400 `.
|
@@ -611,9 +611,9 @@ module Google
|
|
611
611
|
# Optional. Seconds of minutes of the time. Must normally be from 0 to 59,
|
612
612
|
# defaults to 0. An API may allow the value 60 if it allows leap-seconds.
|
613
613
|
# @param [String] interval_start_time_time_zone_id
|
614
|
-
# IANA Time Zone Database time zone
|
614
|
+
# IANA Time Zone Database time zone. For example "America/New_York".
|
615
615
|
# @param [String] interval_start_time_time_zone_version
|
616
|
-
# Optional. IANA Time Zone Database version number
|
616
|
+
# Optional. IANA Time Zone Database version number. For example "2019a".
|
617
617
|
# @param [String] interval_start_time_utc_offset
|
618
618
|
# UTC offset. Must be whole seconds, between -18 hours and +18 hours. For
|
619
619
|
# example, a UTC offset of -4:00 would be represented as ` seconds: -14400 `.
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-playdeveloperreporting_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.33.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playdeveloperreporting_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1alpha1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1alpha1/v0.33.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playdeveloperreporting_v1alpha1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Google Play Developer Reporting API V1alpha1
|
82
79
|
test_files: []
|