google-apis-playdeveloperreporting_v1alpha1 0.15.0 → 0.16.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: 143708110827515117a44cc3ee2b1ef93b935a3ec45cb920123be968f0d9c9c6
4
- data.tar.gz: f4aae408997368ceb60d3b0a39cfc2af646077ffd6eef6d68ad5cd60bfe0c792
3
+ metadata.gz: f4ba5cd43b18f736771cb6b2d6b53f5736697d559d04394a99df060cb7f4f941
4
+ data.tar.gz: ddbdf8745dae0574d77f435dea81f2eb01adf18da99ed870d48fd6f1be369c52
5
5
  SHA512:
6
- metadata.gz: 2cb6b58a4e59d0eea40c4d40f17e71de33bf4975fab1b92add07abf574563a2c8cd56385da077f7ccd1e32ae93ff1069e6ca0826adf487898dc5fa7122d5c29a
7
- data.tar.gz: b793efd2bdaca1a8f2cfce41d79c69df34d19fcdc6091f557f37aafbecfa1e3a6b0313b06c305ca72e777527ba5f54c743bc3ccaf0e4af0c7add6db5688ed5a3
6
+ metadata.gz: f231395f42603275ece5b5dc3c872a882107dd6159724e12b6a8cbbac90a56009b15c5a1548d2e4333614c8dafa0d607249bf2e6e6e85f0c5e909de9c0f5ccae
7
+ data.tar.gz: 8cc02e2a0bf6d56cc33078bddba36edee7a040a3c7ba728427ab0667dd7e3af7bde705ae18c455179dbd6ed303d4cefe918b3342968681de0dc2feec9e57e559
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-playdeveloperreporting_v1alpha1
2
2
 
3
+ ### v0.16.0 (2023-03-26)
4
+
5
+ * Regenerated from discovery document revision 20230323
6
+
3
7
  ### v0.15.0 (2023-03-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20230309
@@ -1245,6 +1245,293 @@ module Google
1245
1245
  end
1246
1246
  end
1247
1247
 
1248
+ # Request message for QuerySlowRenderingRateMetricSet.
1249
+ class GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetRequest
1250
+ include Google::Apis::Core::Hashable
1251
+
1252
+ # Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
1253
+ # string): the API level of Android that was running on the user's device. * `
1254
+ # versionCode` (int64): version of the app that was running on the user's device.
1255
+ # * `deviceModel` (string): unique identifier of the user's device model. * `
1256
+ # deviceType` (string): the type (also known as form factor) of the user's
1257
+ # device. * `countryCode` (string): the country or region of the user's device
1258
+ # based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
1259
+ # for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
1260
+ # in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
1261
+ # primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
1262
+ # com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
1263
+ # Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
1264
+ # https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
1265
+ # deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
1266
+ # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
1267
+ # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
1268
+ # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
1269
+ # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
1270
+ # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
1271
+ # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
1272
+ # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
1273
+ # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
1274
+ # Corresponds to the JSON property `dimensions`
1275
+ # @return [Array<String>]
1276
+ attr_accessor :dimensions
1277
+
1278
+ # Filters to apply to data. The filtering expression follows [AIP-160](https://
1279
+ # google.aip.dev/160) standard and supports filtering by equality of all
1280
+ # breakdown dimensions.
1281
+ # Corresponds to the JSON property `filter`
1282
+ # @return [String]
1283
+ attr_accessor :filter
1284
+
1285
+ # Metrics to aggregate. **Supported metrics:** * `slowRenderingRate20Fps` (`
1286
+ # google.type.Decimal`): Percentage of distinct users in the aggregation period
1287
+ # that had a slow rendering. * `slowRenderingRate20Fps7dUserWeighted` (`google.
1288
+ # type.Decimal`): Rolling average value of `slowRenderingRate20Fps` in the last
1289
+ # 7 days. The daily values are weighted by the count of distinct users for the
1290
+ # day. * `slowRenderingRate20Fps28dUserWeighted` (`google.type.Decimal`):
1291
+ # Rolling average value of `slowRenderingRate20Fps` in the last 28 days. The
1292
+ # daily values are weighted by the count of distinct users for the day. * `
1293
+ # slowRenderingRate30Fps` (`google.type.Decimal`): Percentage of distinct users
1294
+ # in the aggregation period that had a slow rendering. * `
1295
+ # slowRenderingRate30Fps7dUserWeighted` (`google.type.Decimal`): Rolling average
1296
+ # value of `slowRenderingRate30Fps` in the last 7 days. The daily values are
1297
+ # weighted by the count of distinct users for the day. * `
1298
+ # slowRenderingRate30Fps28dUserWeighted` (`google.type.Decimal`): Rolling
1299
+ # average value of `slowRenderingRate30Fps` in the last 28 days. The daily
1300
+ # values are weighted by the count of distinct users for the day. * `
1301
+ # distinctUsers` (`google.type.Decimal`): Count of distinct users in the
1302
+ # aggregation period that were used as normalization value for the `
1303
+ # slowRenderingRate20Fps`/`slowRenderingRate30Fps` metric. A user is counted in
1304
+ # this metric if their app was launched in the device. Care must be taken not to
1305
+ # aggregate this count further, as it may result in users being counted multiple
1306
+ # times.
1307
+ # Corresponds to the JSON property `metrics`
1308
+ # @return [Array<String>]
1309
+ attr_accessor :metrics
1310
+
1311
+ # Maximum size of the returned data. If unspecified, at most 1000 rows will be
1312
+ # returned. The maximum value is 100000; values above 100000 will be coerced to
1313
+ # 100000.
1314
+ # Corresponds to the JSON property `pageSize`
1315
+ # @return [Fixnum]
1316
+ attr_accessor :page_size
1317
+
1318
+ # A page token, received from a previous call. Provide this to retrieve the
1319
+ # subsequent page. When paginating, all other parameters provided to the request
1320
+ # must match the call that provided the page token.
1321
+ # Corresponds to the JSON property `pageToken`
1322
+ # @return [String]
1323
+ attr_accessor :page_token
1324
+
1325
+ # Specification of the time-related aggregation parameters of a timeline.
1326
+ # Timelines have an aggregation period (`DAILY`, `HOURLY`, etc) which defines
1327
+ # how events are aggregated in metrics. The points in a timeline are defined by
1328
+ # the starting DateTime of the aggregation period. The duration is implicit in
1329
+ # the AggregationPeriod. Hourly aggregation periods, when supported by a metric
1330
+ # set, are always specified in UTC to avoid ambiguities around daylight saving
1331
+ # time transitions, where an hour is skipped when adopting DST, and repeated
1332
+ # when abandoning DST. For example, the timestamp '2021-11-07 01:00:00 America/
1333
+ # Los_Angeles' is ambiguous since it can correspond to '2021-11-07 08:00:00 UTC'
1334
+ # or '2021-11-07 09:00:00 UTC'. Daily aggregation periods require specifying a
1335
+ # timezone which will determine the precise instants of the start and the end of
1336
+ # the day. Not all metric sets support all timezones, so make sure to check
1337
+ # which timezones are supported by the metric set you want to query.
1338
+ # Corresponds to the JSON property `timelineSpec`
1339
+ # @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec]
1340
+ attr_accessor :timeline_spec
1341
+
1342
+ # User view to select. The output data will correspond to the selected view. **
1343
+ # Supported values:** * `OS_PUBLIC` To select data from all publicly released
1344
+ # Android versions. This is the default. Supports all the above dimensions. * `
1345
+ # APP_TESTERS` To select data from users who have opted in to be testers.
1346
+ # Supports all the above dimensions. * `OS_BETA` To select data from beta
1347
+ # Android versions only, excluding data from released Android versions. Only the
1348
+ # following dimensions are supported: * `versionCode` (int64): version of the
1349
+ # app that was running on the user's device. * `osBuild` (string): OS build of
1350
+ # the user's device, e.g., "T1B2.220916.004".
1351
+ # Corresponds to the JSON property `userCohort`
1352
+ # @return [String]
1353
+ attr_accessor :user_cohort
1354
+
1355
+ def initialize(**args)
1356
+ update!(**args)
1357
+ end
1358
+
1359
+ # Update properties of this object
1360
+ def update!(**args)
1361
+ @dimensions = args[:dimensions] if args.key?(:dimensions)
1362
+ @filter = args[:filter] if args.key?(:filter)
1363
+ @metrics = args[:metrics] if args.key?(:metrics)
1364
+ @page_size = args[:page_size] if args.key?(:page_size)
1365
+ @page_token = args[:page_token] if args.key?(:page_token)
1366
+ @timeline_spec = args[:timeline_spec] if args.key?(:timeline_spec)
1367
+ @user_cohort = args[:user_cohort] if args.key?(:user_cohort)
1368
+ end
1369
+ end
1370
+
1371
+ # Response message for QuerySlowRenderingRateMetricSet.
1372
+ class GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetResponse
1373
+ include Google::Apis::Core::Hashable
1374
+
1375
+ # Continuation token to fetch the next page of data.
1376
+ # Corresponds to the JSON property `nextPageToken`
1377
+ # @return [String]
1378
+ attr_accessor :next_page_token
1379
+
1380
+ # Returned rows of data.
1381
+ # Corresponds to the JSON property `rows`
1382
+ # @return [Array<Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1MetricsRow>]
1383
+ attr_accessor :rows
1384
+
1385
+ def initialize(**args)
1386
+ update!(**args)
1387
+ end
1388
+
1389
+ # Update properties of this object
1390
+ def update!(**args)
1391
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1392
+ @rows = args[:rows] if args.key?(:rows)
1393
+ end
1394
+ end
1395
+
1396
+ # Request message for QuerySlowStartRateMetricSet.
1397
+ class GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetRequest
1398
+ include Google::Apis::Core::Hashable
1399
+
1400
+ # Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
1401
+ # string): the API level of Android that was running on the user's device. * `
1402
+ # versionCode` (int64): version of the app that was running on the user's device.
1403
+ # * `deviceModel` (string): unique identifier of the user's device model. * `
1404
+ # deviceType` (string): the type (also known as form factor) of the user's
1405
+ # device. * `countryCode` (string): the country or region of the user's device
1406
+ # based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
1407
+ # for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
1408
+ # in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
1409
+ # primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
1410
+ # com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
1411
+ # Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
1412
+ # https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
1413
+ # deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
1414
+ # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
1415
+ # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
1416
+ # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
1417
+ # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
1418
+ # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
1419
+ # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
1420
+ # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
1421
+ # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
1422
+ # Corresponds to the JSON property `dimensions`
1423
+ # @return [Array<String>]
1424
+ attr_accessor :dimensions
1425
+
1426
+ # Filters to apply to data. The filtering expression follows [AIP-160](https://
1427
+ # google.aip.dev/160) standard and supports filtering by equality of all
1428
+ # breakdown dimensions.
1429
+ # Corresponds to the JSON property `filter`
1430
+ # @return [String]
1431
+ attr_accessor :filter
1432
+
1433
+ # Metrics to aggregate. **Supported metrics:** * `slowStartRate` (`google.type.
1434
+ # Decimal`): Percentage of distinct users in the aggregation period that had a
1435
+ # slow start. * `slowStartRate7dUserWeighted` (`google.type.Decimal`): Rolling
1436
+ # average value of `slowStartRate` in the last 7 days. The daily values are
1437
+ # weighted by the count of distinct users for the day. * `
1438
+ # slowStartRate28dUserWeighted` (`google.type.Decimal`): Rolling average value
1439
+ # of `slowStartRate` in the last 28 days. The daily values are weighted by the
1440
+ # count of distinct users for the day. * `distinctUsers` (`google.type.Decimal`):
1441
+ # Count of distinct users in the aggregation period that were used as
1442
+ # normalization value for the `slowStartRate` metric. A user is counted in this
1443
+ # metric if their app was launched in the device. Care must be taken not to
1444
+ # aggregate this count further, as it may result in users being counted multiple
1445
+ # times.
1446
+ # Corresponds to the JSON property `metrics`
1447
+ # @return [Array<String>]
1448
+ attr_accessor :metrics
1449
+
1450
+ # Maximum size of the returned data. If unspecified, at most 1000 rows will be
1451
+ # returned. The maximum value is 100000; values above 100000 will be coerced to
1452
+ # 100000.
1453
+ # Corresponds to the JSON property `pageSize`
1454
+ # @return [Fixnum]
1455
+ attr_accessor :page_size
1456
+
1457
+ # A page token, received from a previous call. Provide this to retrieve the
1458
+ # subsequent page. When paginating, all other parameters provided to the request
1459
+ # must match the call that provided the page token.
1460
+ # Corresponds to the JSON property `pageToken`
1461
+ # @return [String]
1462
+ attr_accessor :page_token
1463
+
1464
+ # Specification of the time-related aggregation parameters of a timeline.
1465
+ # Timelines have an aggregation period (`DAILY`, `HOURLY`, etc) which defines
1466
+ # how events are aggregated in metrics. The points in a timeline are defined by
1467
+ # the starting DateTime of the aggregation period. The duration is implicit in
1468
+ # the AggregationPeriod. Hourly aggregation periods, when supported by a metric
1469
+ # set, are always specified in UTC to avoid ambiguities around daylight saving
1470
+ # time transitions, where an hour is skipped when adopting DST, and repeated
1471
+ # when abandoning DST. For example, the timestamp '2021-11-07 01:00:00 America/
1472
+ # Los_Angeles' is ambiguous since it can correspond to '2021-11-07 08:00:00 UTC'
1473
+ # or '2021-11-07 09:00:00 UTC'. Daily aggregation periods require specifying a
1474
+ # timezone which will determine the precise instants of the start and the end of
1475
+ # the day. Not all metric sets support all timezones, so make sure to check
1476
+ # which timezones are supported by the metric set you want to query.
1477
+ # Corresponds to the JSON property `timelineSpec`
1478
+ # @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec]
1479
+ attr_accessor :timeline_spec
1480
+
1481
+ # User view to select. The output data will correspond to the selected view. **
1482
+ # Supported values:** * `OS_PUBLIC` To select data from all publicly released
1483
+ # Android versions. This is the default. Supports all the above dimensions. * `
1484
+ # APP_TESTERS` To select data from users who have opted in to be testers.
1485
+ # Supports all the above dimensions. * `OS_BETA` To select data from beta
1486
+ # Android versions only, excluding data from released Android versions. Only the
1487
+ # following dimensions are supported: * `versionCode` (int64): version of the
1488
+ # app that was running on the user's device. * `osBuild` (string): OS build of
1489
+ # the user's device, e.g., "T1B2.220916.004".
1490
+ # Corresponds to the JSON property `userCohort`
1491
+ # @return [String]
1492
+ attr_accessor :user_cohort
1493
+
1494
+ def initialize(**args)
1495
+ update!(**args)
1496
+ end
1497
+
1498
+ # Update properties of this object
1499
+ def update!(**args)
1500
+ @dimensions = args[:dimensions] if args.key?(:dimensions)
1501
+ @filter = args[:filter] if args.key?(:filter)
1502
+ @metrics = args[:metrics] if args.key?(:metrics)
1503
+ @page_size = args[:page_size] if args.key?(:page_size)
1504
+ @page_token = args[:page_token] if args.key?(:page_token)
1505
+ @timeline_spec = args[:timeline_spec] if args.key?(:timeline_spec)
1506
+ @user_cohort = args[:user_cohort] if args.key?(:user_cohort)
1507
+ end
1508
+ end
1509
+
1510
+ # Response message for QuerySlowStartRateMetricSet.
1511
+ class GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetResponse
1512
+ include Google::Apis::Core::Hashable
1513
+
1514
+ # Continuation token to fetch the next page of data.
1515
+ # Corresponds to the JSON property `nextPageToken`
1516
+ # @return [String]
1517
+ attr_accessor :next_page_token
1518
+
1519
+ # Returned rows of data.
1520
+ # Corresponds to the JSON property `rows`
1521
+ # @return [Array<Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1MetricsRow>]
1522
+ attr_accessor :rows
1523
+
1524
+ def initialize(**args)
1525
+ update!(**args)
1526
+ end
1527
+
1528
+ # Update properties of this object
1529
+ def update!(**args)
1530
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1531
+ @rows = args[:rows] if args.key?(:rows)
1532
+ end
1533
+ end
1534
+
1248
1535
  # Request message for QueryStuckBackgroundWakelockRateMetricSet.
1249
1536
  class GooglePlayDeveloperReportingV1alpha1QueryStuckBackgroundWakelockRateMetricSetRequest
1250
1537
  include Google::Apis::Core::Hashable
@@ -1436,6 +1723,154 @@ module Google
1436
1723
  end
1437
1724
  end
1438
1725
 
1726
+ # Singleton resource representing the set of Slow Rendering metrics. This metric
1727
+ # set contains low-level rendering data captured by SurafeFlinger. Sessions are
1728
+ # evaluated based on the present-to-present histogram of frames handled by any
1729
+ # SurfaceFlinger layer owned by the app. A slow session is a session where more
1730
+ # than 25% of frames for the session did not meet the metric's target frame rate
1731
+ # (either 20fps, or 30fps). *NOTE:* This metric set is only available for games.
1732
+ # **Supported aggregation periods:** * DAILY: metrics are aggregated in calendar
1733
+ # date intervals. Due to historical constraints, the only supported timezone is `
1734
+ # America/Los_Angeles`. **Supported metrics:** * `slowRenderingRate20Fps` (`
1735
+ # google.type.Decimal`): Percentage of distinct users in the aggregation period
1736
+ # that had slow rendering. * `slowRenderingRate20Fps7dUserWeighted` (`google.
1737
+ # type.Decimal`): Rolling average value of `slowRenderingRate20Fps` in the last
1738
+ # 7 days. The daily values are weighted by the count of distinct users for the
1739
+ # day. * `slowRenderingRate20Fps28dUserWeighted` (`google.type.Decimal`):
1740
+ # Rolling average value of `slowRenderingRate20Fps` in the last 28 days. The
1741
+ # daily values are weighted by the count of distinct users for the day. * `
1742
+ # slowRenderingRate30Fps` (`google.type.Decimal`): Percentage of distinct users
1743
+ # in the aggregation period that had slow rendering. * `
1744
+ # slowRenderingRate30Fps7dUserWeighted` (`google.type.Decimal`): Rolling average
1745
+ # value of `slowRenderingRate30Fps` in the last 7 days. The daily values are
1746
+ # weighted by the count of distinct users for the day. * `
1747
+ # slowRenderingRate30Fps28dUserWeighted` (`google.type.Decimal`): Rolling
1748
+ # average value of `slowRenderingRate30Fps` in the last 28 days. The daily
1749
+ # values are weighted by the count of distinct users for the day. * `
1750
+ # distinctUsers` (`google.type.Decimal`): Count of distinct users in the
1751
+ # aggregation period that were used as normalization value for the `
1752
+ # slowRenderingRate20Fps`/`slowRenderingRate30Fps` metric. A user is counted in
1753
+ # this metric if their app rendered any frames. Care must be taken not to
1754
+ # aggregate this count further, as it may result in users being counted multiple
1755
+ # times. **Supported dimensions:** * `apiLevel` (string): the API level of
1756
+ # Android that was running on the user's device. * `versionCode` (int64):
1757
+ # version of the app that was running on the user's device. * `deviceModel` (
1758
+ # string): unique identifier of the user's device model. * `deviceType` (string):
1759
+ # the type (also known as form factor) of the user's device. * `countryCode` (
1760
+ # string): the country or region of the user's device based on their IP address,
1761
+ # represented as a 2-letter ISO-3166 code (e.g. US for the United States). * `
1762
+ # deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
1763
+ # . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
1764
+ # , Samsung. [Reference](https://developer.android.com/reference/android/os/
1765
+ # Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
1766
+ # primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
1767
+ # android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
1768
+ # Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
1769
+ # of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
1770
+ # device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
1771
+ # GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
1772
+ # g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
1773
+ # "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
1774
+ # g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
1775
+ # NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
1776
+ # , mdpi, hdpi. **Required permissions**: to access this resource, the calling
1777
+ # user needs the _View app information (read-only)_ permission for the app.
1778
+ class GooglePlayDeveloperReportingV1alpha1SlowRenderingRateMetricSet
1779
+ include Google::Apis::Core::Hashable
1780
+
1781
+ # Represents the latest available time that can be requested in a TimelineSpec.
1782
+ # Different aggregation periods have different freshness. For example, `DAILY`
1783
+ # aggregation may lag behind `HOURLY` in cases where such aggregation is
1784
+ # computed only once at the end of the day.
1785
+ # Corresponds to the JSON property `freshnessInfo`
1786
+ # @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1FreshnessInfo]
1787
+ attr_accessor :freshness_info
1788
+
1789
+ # The resource name. Format: apps/`app`/slowRenderingRateMetricSet
1790
+ # Corresponds to the JSON property `name`
1791
+ # @return [String]
1792
+ attr_accessor :name
1793
+
1794
+ def initialize(**args)
1795
+ update!(**args)
1796
+ end
1797
+
1798
+ # Update properties of this object
1799
+ def update!(**args)
1800
+ @freshness_info = args[:freshness_info] if args.key?(:freshness_info)
1801
+ @name = args[:name] if args.key?(:name)
1802
+ end
1803
+ end
1804
+
1805
+ # Singleton resource representing the set of Slow Start metrics. This metric set
1806
+ # contains Activity start duration data. **Supported aggregation periods:** *
1807
+ # DAILY: metrics are aggregated in calendar date intervals. Due to historical
1808
+ # constraints, the only supported timezone is `America/Los_Angeles`. **Supported
1809
+ # metrics:** * `slowStartRate` (`google.type.Decimal`): Percentage of distinct
1810
+ # users in the aggregation period that had a slow start. * `
1811
+ # slowStartRate7dUserWeighted` (`google.type.Decimal`): Rolling average value of
1812
+ # `slowStartRate` in the last 7 days. The daily values are weighted by the count
1813
+ # of distinct users for the day. * `slowStartRate28dUserWeighted` (`google.type.
1814
+ # Decimal`): Rolling average value of `slowStartRate` in the last 28 days. The
1815
+ # daily values are weighted by the count of distinct users for the day. * `
1816
+ # distinctUsers` (`google.type.Decimal`): Count of distinct users in the
1817
+ # aggregation period that were used as normalization value for the `
1818
+ # slowStartRate` metric. A user is counted in this metric if their app was
1819
+ # launched in the device. Care must be taken not to aggregate this count further,
1820
+ # as it may result in users being counted multiple times. **Required dimension:*
1821
+ # * This dimension must be specified with each request for the request to be
1822
+ # valid. * `startType` (string): the type of start that was measured. Valid
1823
+ # types are `HOT`, `WARM` and `COLD`. **Supported dimensions:** * `apiLevel` (
1824
+ # string): the API level of Android that was running on the user's device. * `
1825
+ # versionCode` (int64): version of the app that was running on the user's device.
1826
+ # * `deviceModel` (string): unique identifier of the user's device model. * `
1827
+ # deviceType` (string): the type (also known as form factor) of the user's
1828
+ # device. * `countryCode` (string): the country or region of the user's device
1829
+ # based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
1830
+ # for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
1831
+ # in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
1832
+ # primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
1833
+ # com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
1834
+ # Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
1835
+ # https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
1836
+ # deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
1837
+ # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
1838
+ # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
1839
+ # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
1840
+ # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
1841
+ # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
1842
+ # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
1843
+ # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
1844
+ # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
1845
+ # **Required permissions**: to access this resource, the calling user needs the
1846
+ # _View app information (read-only)_ permission for the app.
1847
+ class GooglePlayDeveloperReportingV1alpha1SlowStartRateMetricSet
1848
+ include Google::Apis::Core::Hashable
1849
+
1850
+ # Represents the latest available time that can be requested in a TimelineSpec.
1851
+ # Different aggregation periods have different freshness. For example, `DAILY`
1852
+ # aggregation may lag behind `HOURLY` in cases where such aggregation is
1853
+ # computed only once at the end of the day.
1854
+ # Corresponds to the JSON property `freshnessInfo`
1855
+ # @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1FreshnessInfo]
1856
+ attr_accessor :freshness_info
1857
+
1858
+ # The resource name. Format: apps/`app`/slowStartRateMetricSet
1859
+ # Corresponds to the JSON property `name`
1860
+ # @return [String]
1861
+ attr_accessor :name
1862
+
1863
+ def initialize(**args)
1864
+ update!(**args)
1865
+ end
1866
+
1867
+ # Update properties of this object
1868
+ def update!(**args)
1869
+ @freshness_info = args[:freshness_info] if args.key?(:freshness_info)
1870
+ @name = args[:name] if args.key?(:name)
1871
+ end
1872
+ end
1873
+
1439
1874
  # Singleton resource representing the set of Stuck Background Wakelocks metrics.
1440
1875
  # This metric set contains PowerManager wakelock duration data combined with
1441
1876
  # process state data to produce a normalized metric independent of user counts. *
@@ -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.15.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230309"
25
+ REVISION = "20230323"
26
26
  end
27
27
  end
28
28
  end
@@ -148,6 +148,30 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
+ class GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetRequest
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
157
+ class GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetResponse
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
163
+ class GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetRequest
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
169
+ class GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetResponse
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
151
175
  class GooglePlayDeveloperReportingV1alpha1QueryStuckBackgroundWakelockRateMetricSetRequest
152
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
177
 
@@ -172,6 +196,18 @@ module Google
172
196
  include Google::Apis::Core::JsonObjectSupport
173
197
  end
174
198
 
199
+ class GooglePlayDeveloperReportingV1alpha1SlowRenderingRateMetricSet
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
205
+ class GooglePlayDeveloperReportingV1alpha1SlowStartRateMetricSet
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
175
211
  class GooglePlayDeveloperReportingV1alpha1StuckBackgroundWakelockRateMetricSet
176
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
213
 
@@ -421,6 +457,52 @@ module Google
421
457
  end
422
458
  end
423
459
 
460
+ class GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetRequest
461
+ # @private
462
+ class Representation < Google::Apis::Core::JsonRepresentation
463
+ collection :dimensions, as: 'dimensions'
464
+ property :filter, as: 'filter'
465
+ collection :metrics, as: 'metrics'
466
+ property :page_size, as: 'pageSize'
467
+ property :page_token, as: 'pageToken'
468
+ property :timeline_spec, as: 'timelineSpec', class: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec, decorator: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec::Representation
469
+
470
+ property :user_cohort, as: 'userCohort'
471
+ end
472
+ end
473
+
474
+ class GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetResponse
475
+ # @private
476
+ class Representation < Google::Apis::Core::JsonRepresentation
477
+ property :next_page_token, as: 'nextPageToken'
478
+ collection :rows, as: 'rows', class: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1MetricsRow, decorator: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1MetricsRow::Representation
479
+
480
+ end
481
+ end
482
+
483
+ class GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetRequest
484
+ # @private
485
+ class Representation < Google::Apis::Core::JsonRepresentation
486
+ collection :dimensions, as: 'dimensions'
487
+ property :filter, as: 'filter'
488
+ collection :metrics, as: 'metrics'
489
+ property :page_size, as: 'pageSize'
490
+ property :page_token, as: 'pageToken'
491
+ property :timeline_spec, as: 'timelineSpec', class: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec, decorator: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1TimelineSpec::Representation
492
+
493
+ property :user_cohort, as: 'userCohort'
494
+ end
495
+ end
496
+
497
+ class GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetResponse
498
+ # @private
499
+ class Representation < Google::Apis::Core::JsonRepresentation
500
+ property :next_page_token, as: 'nextPageToken'
501
+ collection :rows, as: 'rows', class: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1MetricsRow, decorator: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1MetricsRow::Representation
502
+
503
+ end
504
+ end
505
+
424
506
  class GooglePlayDeveloperReportingV1alpha1QueryStuckBackgroundWakelockRateMetricSetRequest
425
507
  # @private
426
508
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -462,6 +544,24 @@ module Google
462
544
  end
463
545
  end
464
546
 
547
+ class GooglePlayDeveloperReportingV1alpha1SlowRenderingRateMetricSet
548
+ # @private
549
+ class Representation < Google::Apis::Core::JsonRepresentation
550
+ property :freshness_info, as: 'freshnessInfo', class: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1FreshnessInfo, decorator: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1FreshnessInfo::Representation
551
+
552
+ property :name, as: 'name'
553
+ end
554
+ end
555
+
556
+ class GooglePlayDeveloperReportingV1alpha1SlowStartRateMetricSet
557
+ # @private
558
+ class Representation < Google::Apis::Core::JsonRepresentation
559
+ property :freshness_info, as: 'freshnessInfo', class: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1FreshnessInfo, decorator: Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1FreshnessInfo::Representation
560
+
561
+ property :name, as: 'name'
562
+ end
563
+ end
564
+
465
565
  class GooglePlayDeveloperReportingV1alpha1StuckBackgroundWakelockRateMetricSet
466
566
  # @private
467
567
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -654,6 +654,132 @@ module Google
654
654
  execute_or_queue_command(command, &block)
655
655
  end
656
656
 
657
+ # Describes the properties of the metric set.
658
+ # @param [String] name
659
+ # Required. The resource name. Format: apps/`app`/slowRenderingRateMetricSet
660
+ # @param [String] fields
661
+ # Selector specifying which fields to include in a partial response.
662
+ # @param [String] quota_user
663
+ # Available to use for quota purposes for server-side applications. Can be any
664
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
665
+ # @param [Google::Apis::RequestOptions] options
666
+ # Request-specific options
667
+ #
668
+ # @yield [result, err] Result & error if block supplied
669
+ # @yieldparam result [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1SlowRenderingRateMetricSet] parsed result object
670
+ # @yieldparam err [StandardError] error object if request failed
671
+ #
672
+ # @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1SlowRenderingRateMetricSet]
673
+ #
674
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
675
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
676
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
677
+ def get_vital_slowrenderingrate(name, fields: nil, quota_user: nil, options: nil, &block)
678
+ command = make_simple_command(:get, 'v1alpha1/{+name}', options)
679
+ command.response_representation = Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1SlowRenderingRateMetricSet::Representation
680
+ command.response_class = Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1SlowRenderingRateMetricSet
681
+ command.params['name'] = name unless name.nil?
682
+ command.query['fields'] = fields unless fields.nil?
683
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
684
+ execute_or_queue_command(command, &block)
685
+ end
686
+
687
+ # Queries the metrics in the metric set.
688
+ # @param [String] name
689
+ # Required. The resource name. Format: apps/`app`/slowRenderingRateMetricSet
690
+ # @param [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetRequest] google_play_developer_reporting_v1alpha1_query_slow_rendering_rate_metric_set_request_object
691
+ # @param [String] fields
692
+ # Selector specifying which fields to include in a partial response.
693
+ # @param [String] quota_user
694
+ # Available to use for quota purposes for server-side applications. Can be any
695
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
696
+ # @param [Google::Apis::RequestOptions] options
697
+ # Request-specific options
698
+ #
699
+ # @yield [result, err] Result & error if block supplied
700
+ # @yieldparam result [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetResponse] parsed result object
701
+ # @yieldparam err [StandardError] error object if request failed
702
+ #
703
+ # @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetResponse]
704
+ #
705
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
706
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
707
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
708
+ def query_vital_slowrenderingrate(name, google_play_developer_reporting_v1alpha1_query_slow_rendering_rate_metric_set_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
709
+ command = make_simple_command(:post, 'v1alpha1/{+name}:query', options)
710
+ command.request_representation = Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetRequest::Representation
711
+ command.request_object = google_play_developer_reporting_v1alpha1_query_slow_rendering_rate_metric_set_request_object
712
+ command.response_representation = Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetResponse::Representation
713
+ command.response_class = Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetResponse
714
+ command.params['name'] = name unless name.nil?
715
+ command.query['fields'] = fields unless fields.nil?
716
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
717
+ execute_or_queue_command(command, &block)
718
+ end
719
+
720
+ # Describes the properties of the metric set.
721
+ # @param [String] name
722
+ # Required. The resource name. Format: apps/`app`/slowStartRateMetricSet
723
+ # @param [String] fields
724
+ # Selector specifying which fields to include in a partial response.
725
+ # @param [String] quota_user
726
+ # Available to use for quota purposes for server-side applications. Can be any
727
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
728
+ # @param [Google::Apis::RequestOptions] options
729
+ # Request-specific options
730
+ #
731
+ # @yield [result, err] Result & error if block supplied
732
+ # @yieldparam result [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1SlowStartRateMetricSet] parsed result object
733
+ # @yieldparam err [StandardError] error object if request failed
734
+ #
735
+ # @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1SlowStartRateMetricSet]
736
+ #
737
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
738
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
739
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
740
+ def get_vital_slowstartrate(name, fields: nil, quota_user: nil, options: nil, &block)
741
+ command = make_simple_command(:get, 'v1alpha1/{+name}', options)
742
+ command.response_representation = Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1SlowStartRateMetricSet::Representation
743
+ command.response_class = Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1SlowStartRateMetricSet
744
+ command.params['name'] = name unless name.nil?
745
+ command.query['fields'] = fields unless fields.nil?
746
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
747
+ execute_or_queue_command(command, &block)
748
+ end
749
+
750
+ # Queries the metrics in the metric set.
751
+ # @param [String] name
752
+ # Required. The resource name. Format: apps/`app`/slowStartRateMetricSet
753
+ # @param [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetRequest] google_play_developer_reporting_v1alpha1_query_slow_start_rate_metric_set_request_object
754
+ # @param [String] fields
755
+ # Selector specifying which fields to include in a partial response.
756
+ # @param [String] quota_user
757
+ # Available to use for quota purposes for server-side applications. Can be any
758
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
759
+ # @param [Google::Apis::RequestOptions] options
760
+ # Request-specific options
761
+ #
762
+ # @yield [result, err] Result & error if block supplied
763
+ # @yieldparam result [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetResponse] parsed result object
764
+ # @yieldparam err [StandardError] error object if request failed
765
+ #
766
+ # @return [Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetResponse]
767
+ #
768
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
769
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
770
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
771
+ def query_vital_slowstartrate(name, google_play_developer_reporting_v1alpha1_query_slow_start_rate_metric_set_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
772
+ command = make_simple_command(:post, 'v1alpha1/{+name}:query', options)
773
+ command.request_representation = Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetRequest::Representation
774
+ command.request_object = google_play_developer_reporting_v1alpha1_query_slow_start_rate_metric_set_request_object
775
+ command.response_representation = Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetResponse::Representation
776
+ command.response_class = Google::Apis::PlaydeveloperreportingV1alpha1::GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetResponse
777
+ command.params['name'] = name unless name.nil?
778
+ command.query['fields'] = fields unless fields.nil?
779
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
780
+ execute_or_queue_command(command, &block)
781
+ end
782
+
657
783
  # Describes the properties of the metric set.
658
784
  # @param [String] name
659
785
  # Required. The resource name. Format: apps/`app`/
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.15.0
4
+ version: 0.16.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: 2023-03-12 00:00:00.000000000 Z
11
+ date: 2023-03-26 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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1alpha1/v0.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-playdeveloperreporting_v1alpha1/v0.16.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: []