google-apis-playdeveloperreporting_v1alpha1 0.1.0 → 0.4.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: 648904dc77bba4659b1e9ea5f7ce4710280cfc1b145dd7179101309f2ffcc620
4
- data.tar.gz: a371def29f77fd5c9533a2d8b3b75149e86624a065acd8b6bb052c5b57c831a9
3
+ metadata.gz: c0cd0f1aa7eb322db7299bee3f747c5bc50d641df3055c7ece17fbf7bb8ca391
4
+ data.tar.gz: 5a39dc289f1334af6616a9dfb61a6887c4a07d550186d264415ed5c5804e8dd3
5
5
  SHA512:
6
- metadata.gz: 28d61fb0a1c7ef57fc07873bf596449910d29c4dbf498be07012f57e935357c3509dcde39d510edbc22303cb0427f4ff7696860ffd68de8c38526af3edd99b72
7
- data.tar.gz: 975276a23cf1cbaf5daef1cc1a997e55f0d87d1d182b63fe7cb71b683fbcd16b3c184fab5151b94b90dd096efc765c7c9a6e41fdda3b23a0e5acb4a0310199a4
6
+ metadata.gz: 67ffee5a80c4bbed203ced45d0b9f826233f547905be120620ab48fb3a31a140ac9fe6ad8b04f30aec4acf9f78772deb6c72e9e658eea415b561295d51c48697
7
+ data.tar.gz: 17329498759e85b9dcb6d0cd2ce632064a473bf743a91ae669ca4c0b4e0d536e87c01afe8c7c6cdaa6e7bc7e658e9fa8cc6ab8bba0393175ccd4c49469224aee
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-playdeveloperreporting_v1alpha1
2
2
 
3
+ ### v0.4.0 (2022-06-02)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.3.0 (2022-05-25)
8
+
9
+ * Regenerated from discovery document revision 20220522
10
+
11
+ ### v0.2.0 (2022-05-04)
12
+
13
+ * Regenerated from discovery document revision 20220429
14
+
3
15
  ### v0.1.0 (2022-04-07)
4
16
 
5
17
  * Regenerated from discovery document revision 20220308
@@ -222,6 +222,15 @@ module Google
222
222
  # @return [String]
223
223
  attr_accessor :string_value
224
224
 
225
+ # Optional. Human-friendly label for the value, always in English. For example, '
226
+ # Spain' for the 'ES' country code. Whereas the dimension value is stable, this
227
+ # value label is subject to change. Do not assume that the (value, value_label)
228
+ # relationship is stable. For example, the ISO country code 'MK' changed its
229
+ # name recently to 'North Macedonia'.
230
+ # Corresponds to the JSON property `valueLabel`
231
+ # @return [String]
232
+ attr_accessor :value_label
233
+
225
234
  def initialize(**args)
226
235
  update!(**args)
227
236
  end
@@ -231,30 +240,33 @@ module Google
231
240
  @dimension = args[:dimension] if args.key?(:dimension)
232
241
  @int64_value = args[:int64_value] if args.key?(:int64_value)
233
242
  @string_value = args[:string_value] if args.key?(:string_value)
243
+ @value_label = args[:value_label] if args.key?(:value_label)
234
244
  end
235
245
  end
236
246
 
237
247
  # Singleton resource representing the set of error report metrics. This metric
238
- # set contains unnormalized error report counts. **Supported aggregation periods:
239
- # ** * DAILY: metrics are aggregated in calendar date intervals. The default and
240
- # only supported timezone is `America/Los_Angeles`. **Supported metrics:** * `
241
- # errorReportCount` (`google.type.Decimal`): Absolute count of individual error
242
- # reports that have been received for an app. * `distinctUsers` (`google.type.
243
- # Decimal`): Count of distinct users for which reports have been received. Care
244
- # must be taken not to aggregate this count further, as it may result in users
245
- # being counted multiple times. **Supported dimensions:** * `apiLevel` (string):
246
- # the API level of Android that was running on the user's device. * `versionCode`
247
- # (int64): version of the app that was running on the user's device. * `
248
- # deviceModel` (string): unique identifier of the user's device model. * `
249
- # deviceType` (string): identifier of the device's form factor, e.g., PHONE. * `
250
- # reportType` (string): the type of error. The value should correspond to one of
251
- # the possible values in ErrorType. * `issueId` (string): the id an error was
252
- # assigned to. The value should correspond to the ``issue`` component of the
253
- # issue name. **Required permissions**: to access this resource, the calling
254
- # user needs the _View app information (read-only)_ permission for the app. **
255
- # Related metric sets:** * vitals.errors.counts contains normalized metrics
256
- # about Crashes, another stability metric. * vitals.errors.counts contains
257
- # normalized metrics about ANRs, another stability metric.
248
+ # set contains un-normalized error report counts. **Supported aggregation
249
+ # periods:** * DAILY: metrics are aggregated in calendar date intervals. The
250
+ # default and only supported timezone is `America/Los_Angeles`. **Supported
251
+ # metrics:** * `errorReportCount` (`google.type.Decimal`): Absolute count of
252
+ # individual error reports that have been received for an app. * `distinctUsers`
253
+ # (`google.type.Decimal`): Count of distinct users for which reports have been
254
+ # received. Care must be taken not to aggregate this count further, as it may
255
+ # result in users being counted multiple times. **Required dimension:** This
256
+ # dimension must be always specified in all requests in the `dimensions` field
257
+ # in query requests. * `reportType` (string): the type of error. The value
258
+ # should correspond to one of the possible values in ErrorType. **Supported
259
+ # dimensions:** * `apiLevel` (string): the API level of Android that was running
260
+ # on the user's device. * `versionCode` (int64): version of the app that was
261
+ # running on the user's device. * `deviceModel` (string): unique identifier of
262
+ # the user's device model. * `deviceType` (string): identifier of the device's
263
+ # form factor, e.g., PHONE. * `issueId` (string): the id an error was assigned
264
+ # to. The value should correspond to the ``issue`` component of the issue name. *
265
+ # *Required permissions**: to access this resource, the calling user needs the
266
+ # _View app information (read-only)_ permission for the app. **Related metric
267
+ # sets:** * vitals.errors.counts contains normalized metrics about Crashes,
268
+ # another stability metric. * vitals.errors.counts contains normalized metrics
269
+ # about ANRs, another stability metric.
258
270
  class GooglePlayDeveloperReportingV1alpha1ErrorCountMetricSet
259
271
  include Google::Apis::Core::Hashable
260
272
 
@@ -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.1.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220308"
25
+ REVISION = "20220522"
26
26
  end
27
27
  end
28
28
  end
@@ -240,6 +240,7 @@ module Google
240
240
  property :dimension, as: 'dimension'
241
241
  property :int64_value, :numeric_string => true, as: 'int64Value'
242
242
  property :string_value, as: 'stringValue'
243
+ property :value_label, as: 'valueLabel'
243
244
  end
244
245
  end
245
246
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-playdeveloperreporting_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.4.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: 2022-04-11 00:00:00.000000000 Z
11
+ date: 2022-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.5'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.5'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1alpha1/v0.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1alpha1/v0.4.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-playdeveloperreporting_v1alpha1
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.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Play Developer Reporting API V1alpha1