google-apis-playdeveloperreporting_v1beta1 0.31.0 → 0.32.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae416955e5bfff3154d2bc92868d592d5760ada6ce70a8a00742260f2d57ded8
|
|
4
|
+
data.tar.gz: 7f4e6f2bed48a8e1eb1992ef5c53ca690b37fe104b00c49f50f4502e645516ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 74ca018af197d07fdaa7c3f47e468bfd6f695a529d42900036580581334278b76271723cc4067820ea39dbb51bff85839dde931c01128ddf2d171857c4e84fd1
|
|
7
|
+
data.tar.gz: f82a17b25277c0d83c4666887d33d169a463b4e714b3aba67557a8dd40e0aeadb1220debda0c161cef735dc5f7032a853a6416e716fbb7bd8d32dc7e1b5f9b98
|
data/CHANGELOG.md
CHANGED
|
@@ -527,6 +527,12 @@ module Google
|
|
|
527
527
|
class GooglePlayDeveloperReportingV1beta1ErrorIssue
|
|
528
528
|
include Google::Apis::Core::Hashable
|
|
529
529
|
|
|
530
|
+
# List of annotations for an issue. Annotations provide additional information
|
|
531
|
+
# that may help in diagnosing and fixing the issue.
|
|
532
|
+
# Corresponds to the JSON property `annotations`
|
|
533
|
+
# @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1IssueAnnotation>]
|
|
534
|
+
attr_accessor :annotations
|
|
535
|
+
|
|
530
536
|
# Cause of the issue. Depending on the type this can be either: *
|
|
531
537
|
# APPLICATION_NOT_RESPONDING: the type of ANR that occurred, e.g., 'Input
|
|
532
538
|
# dispatching timed out'. * CRASH: for Java unhandled exception errors, the type
|
|
@@ -618,6 +624,7 @@ module Google
|
|
|
618
624
|
|
|
619
625
|
# Update properties of this object
|
|
620
626
|
def update!(**args)
|
|
627
|
+
@annotations = args[:annotations] if args.key?(:annotations)
|
|
621
628
|
@cause = args[:cause] if args.key?(:cause)
|
|
622
629
|
@distinct_users = args[:distinct_users] if args.key?(:distinct_users)
|
|
623
630
|
@distinct_users_percent = args[:distinct_users_percent] if args.key?(:distinct_users_percent)
|
|
@@ -852,6 +859,38 @@ module Google
|
|
|
852
859
|
end
|
|
853
860
|
end
|
|
854
861
|
|
|
862
|
+
# Representation of an annotation message for an issue.
|
|
863
|
+
class GooglePlayDeveloperReportingV1beta1IssueAnnotation
|
|
864
|
+
include Google::Apis::Core::Hashable
|
|
865
|
+
|
|
866
|
+
# Contains the contents of the annotation message.
|
|
867
|
+
# Corresponds to the JSON property `body`
|
|
868
|
+
# @return [String]
|
|
869
|
+
attr_accessor :body
|
|
870
|
+
|
|
871
|
+
# Category that the annotation belongs to. An annotation will belong to a single
|
|
872
|
+
# category. Example categories: "Potential fix", "Insight".
|
|
873
|
+
# Corresponds to the JSON property `category`
|
|
874
|
+
# @return [String]
|
|
875
|
+
attr_accessor :category
|
|
876
|
+
|
|
877
|
+
# Title for the annotation.
|
|
878
|
+
# Corresponds to the JSON property `title`
|
|
879
|
+
# @return [String]
|
|
880
|
+
attr_accessor :title
|
|
881
|
+
|
|
882
|
+
def initialize(**args)
|
|
883
|
+
update!(**args)
|
|
884
|
+
end
|
|
885
|
+
|
|
886
|
+
# Update properties of this object
|
|
887
|
+
def update!(**args)
|
|
888
|
+
@body = args[:body] if args.key?(:body)
|
|
889
|
+
@category = args[:category] if args.key?(:category)
|
|
890
|
+
@title = args[:title] if args.key?(:title)
|
|
891
|
+
end
|
|
892
|
+
end
|
|
893
|
+
|
|
855
894
|
# Response with a list of anomalies in datasets.
|
|
856
895
|
class GooglePlayDeveloperReportingV1beta1ListAnomaliesResponse
|
|
857
896
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module PlaydeveloperreportingV1beta1
|
|
18
18
|
# Version of the google-apis-playdeveloperreporting_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.32.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20241009"
|
|
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 GooglePlayDeveloperReportingV1beta1IssueAnnotation
|
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
117
|
+
|
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
119
|
+
end
|
|
120
|
+
|
|
115
121
|
class GooglePlayDeveloperReportingV1beta1ListAnomaliesResponse
|
|
116
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
117
123
|
|
|
@@ -396,6 +402,8 @@ module Google
|
|
|
396
402
|
class GooglePlayDeveloperReportingV1beta1ErrorIssue
|
|
397
403
|
# @private
|
|
398
404
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
405
|
+
collection :annotations, as: 'annotations', class: Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1IssueAnnotation, decorator: Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1IssueAnnotation::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::PlaydeveloperreportingV1beta1::GoogleTypeDecimal, decorator: Google::Apis::PlaydeveloperreportingV1beta1::GoogleTypeDecimal::Representation
|
|
@@ -462,6 +470,15 @@ module Google
|
|
|
462
470
|
end
|
|
463
471
|
end
|
|
464
472
|
|
|
473
|
+
class GooglePlayDeveloperReportingV1beta1IssueAnnotation
|
|
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 GooglePlayDeveloperReportingV1beta1ListAnomaliesResponse
|
|
466
483
|
# @private
|
|
467
484
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-playdeveloperreporting_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.32.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-10-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playdeveloperreporting_v1beta1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1beta1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1beta1/v0.32.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playdeveloperreporting_v1beta1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.5.
|
|
78
|
+
rubygems_version: 3.5.21
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Google Play Developer Reporting API V1beta1
|