google-apis-chromemanagement_v1 0.52.0 → 0.54.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: 2c997a641c17f40ce3033f261660df62b776672eda84427ab7124b93d0e32e8f
|
4
|
+
data.tar.gz: 20bf0feaf7f322da20f19870720a5618ae3444d41c538fdf9751f4d8d780c21f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e45b09e688c2ef4b567a66e39d66429c08e989dc76d45cc263113d0be3c1c043956969955a620d8c1aeedf301cf5be10ee5e2ad47bc249f13378c7f321ade909
|
7
|
+
data.tar.gz: fd940fd2b14b2a9d8c4c0790e284059549ec8cb76f6aab50ddead5bccf02b3e6fe63263a697be43988f04c01cc78895ff4152c286f23d49bd42edd14268e5d92
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-chromemanagement_v1
|
2
2
|
|
3
|
+
### v0.54.0 (2024-06-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240602
|
6
|
+
|
7
|
+
### v0.53.0 (2024-05-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240516
|
10
|
+
* Regenerated using generator version 0.15.0
|
11
|
+
|
3
12
|
### v0.52.0 (2024-03-24)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240321
|
@@ -201,6 +201,68 @@ module Google
|
|
201
201
|
end
|
202
202
|
end
|
203
203
|
|
204
|
+
# App report.
|
205
|
+
class GoogleChromeManagementV1AppReport
|
206
|
+
include Google::Apis::Core::Hashable
|
207
|
+
|
208
|
+
# Timestamp when the report was collected.
|
209
|
+
# Corresponds to the JSON property `reportTime`
|
210
|
+
# @return [String]
|
211
|
+
attr_accessor :report_time
|
212
|
+
|
213
|
+
# App usage data.
|
214
|
+
# Corresponds to the JSON property `usageData`
|
215
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AppUsageData>]
|
216
|
+
attr_accessor :usage_data
|
217
|
+
|
218
|
+
def initialize(**args)
|
219
|
+
update!(**args)
|
220
|
+
end
|
221
|
+
|
222
|
+
# Update properties of this object
|
223
|
+
def update!(**args)
|
224
|
+
@report_time = args[:report_time] if args.key?(:report_time)
|
225
|
+
@usage_data = args[:usage_data] if args.key?(:usage_data)
|
226
|
+
end
|
227
|
+
end
|
228
|
+
|
229
|
+
# App usage data.
|
230
|
+
class GoogleChromeManagementV1AppUsageData
|
231
|
+
include Google::Apis::Core::Hashable
|
232
|
+
|
233
|
+
# App id.
|
234
|
+
# Corresponds to the JSON property `appId`
|
235
|
+
# @return [String]
|
236
|
+
attr_accessor :app_id
|
237
|
+
|
238
|
+
# Application instance id. This will be unique per window/instance.
|
239
|
+
# Corresponds to the JSON property `appInstanceId`
|
240
|
+
# @return [String]
|
241
|
+
attr_accessor :app_instance_id
|
242
|
+
|
243
|
+
# Type of app.
|
244
|
+
# Corresponds to the JSON property `appType`
|
245
|
+
# @return [String]
|
246
|
+
attr_accessor :app_type
|
247
|
+
|
248
|
+
# App foreground running time.
|
249
|
+
# Corresponds to the JSON property `runningDuration`
|
250
|
+
# @return [String]
|
251
|
+
attr_accessor :running_duration
|
252
|
+
|
253
|
+
def initialize(**args)
|
254
|
+
update!(**args)
|
255
|
+
end
|
256
|
+
|
257
|
+
# Update properties of this object
|
258
|
+
def update!(**args)
|
259
|
+
@app_id = args[:app_id] if args.key?(:app_id)
|
260
|
+
@app_instance_id = args[:app_instance_id] if args.key?(:app_instance_id)
|
261
|
+
@app_type = args[:app_type] if args.key?(:app_type)
|
262
|
+
@running_duration = args[:running_duration] if args.key?(:running_duration)
|
263
|
+
end
|
264
|
+
end
|
265
|
+
|
204
266
|
# Status data for storage. * This field is telemetry information and this will
|
205
267
|
# change over time as the device is utilized. * Data for this field is
|
206
268
|
# controlled via policy: [ReportDeviceAudioStatus](https://chromeenterprise.
|
@@ -2845,6 +2907,114 @@ module Google
|
|
2845
2907
|
end
|
2846
2908
|
end
|
2847
2909
|
|
2910
|
+
# App installation data.
|
2911
|
+
class GoogleChromeManagementV1TelemetryAppInstallEvent
|
2912
|
+
include Google::Apis::Core::Hashable
|
2913
|
+
|
2914
|
+
# App id. For PWAs this is the start URL, and for extensions this is the
|
2915
|
+
# extension id.
|
2916
|
+
# Corresponds to the JSON property `appId`
|
2917
|
+
# @return [String]
|
2918
|
+
attr_accessor :app_id
|
2919
|
+
|
2920
|
+
# App installation reason.
|
2921
|
+
# Corresponds to the JSON property `appInstallReason`
|
2922
|
+
# @return [String]
|
2923
|
+
attr_accessor :app_install_reason
|
2924
|
+
|
2925
|
+
# App installation source.
|
2926
|
+
# Corresponds to the JSON property `appInstallSource`
|
2927
|
+
# @return [String]
|
2928
|
+
attr_accessor :app_install_source
|
2929
|
+
|
2930
|
+
# App installation time depending on the app lifecycle.
|
2931
|
+
# Corresponds to the JSON property `appInstallTime`
|
2932
|
+
# @return [String]
|
2933
|
+
attr_accessor :app_install_time
|
2934
|
+
|
2935
|
+
# Type of app.
|
2936
|
+
# Corresponds to the JSON property `appType`
|
2937
|
+
# @return [String]
|
2938
|
+
attr_accessor :app_type
|
2939
|
+
|
2940
|
+
def initialize(**args)
|
2941
|
+
update!(**args)
|
2942
|
+
end
|
2943
|
+
|
2944
|
+
# Update properties of this object
|
2945
|
+
def update!(**args)
|
2946
|
+
@app_id = args[:app_id] if args.key?(:app_id)
|
2947
|
+
@app_install_reason = args[:app_install_reason] if args.key?(:app_install_reason)
|
2948
|
+
@app_install_source = args[:app_install_source] if args.key?(:app_install_source)
|
2949
|
+
@app_install_time = args[:app_install_time] if args.key?(:app_install_time)
|
2950
|
+
@app_type = args[:app_type] if args.key?(:app_type)
|
2951
|
+
end
|
2952
|
+
end
|
2953
|
+
|
2954
|
+
# App launch data.
|
2955
|
+
class GoogleChromeManagementV1TelemetryAppLaunchEvent
|
2956
|
+
include Google::Apis::Core::Hashable
|
2957
|
+
|
2958
|
+
# App id. For PWAs this is the start URL, and for extensions this is the
|
2959
|
+
# extension id.
|
2960
|
+
# Corresponds to the JSON property `appId`
|
2961
|
+
# @return [String]
|
2962
|
+
attr_accessor :app_id
|
2963
|
+
|
2964
|
+
# App launch source.
|
2965
|
+
# Corresponds to the JSON property `appLaunchSource`
|
2966
|
+
# @return [String]
|
2967
|
+
attr_accessor :app_launch_source
|
2968
|
+
|
2969
|
+
# Type of app.
|
2970
|
+
# Corresponds to the JSON property `appType`
|
2971
|
+
# @return [String]
|
2972
|
+
attr_accessor :app_type
|
2973
|
+
|
2974
|
+
def initialize(**args)
|
2975
|
+
update!(**args)
|
2976
|
+
end
|
2977
|
+
|
2978
|
+
# Update properties of this object
|
2979
|
+
def update!(**args)
|
2980
|
+
@app_id = args[:app_id] if args.key?(:app_id)
|
2981
|
+
@app_launch_source = args[:app_launch_source] if args.key?(:app_launch_source)
|
2982
|
+
@app_type = args[:app_type] if args.key?(:app_type)
|
2983
|
+
end
|
2984
|
+
end
|
2985
|
+
|
2986
|
+
# App uninstall data.
|
2987
|
+
class GoogleChromeManagementV1TelemetryAppUninstallEvent
|
2988
|
+
include Google::Apis::Core::Hashable
|
2989
|
+
|
2990
|
+
# App id. For PWAs this is the start URL, and for extensions this is the
|
2991
|
+
# extension id.
|
2992
|
+
# Corresponds to the JSON property `appId`
|
2993
|
+
# @return [String]
|
2994
|
+
attr_accessor :app_id
|
2995
|
+
|
2996
|
+
# Type of app.
|
2997
|
+
# Corresponds to the JSON property `appType`
|
2998
|
+
# @return [String]
|
2999
|
+
attr_accessor :app_type
|
3000
|
+
|
3001
|
+
# App uninstall source.
|
3002
|
+
# Corresponds to the JSON property `appUninstallSource`
|
3003
|
+
# @return [String]
|
3004
|
+
attr_accessor :app_uninstall_source
|
3005
|
+
|
3006
|
+
def initialize(**args)
|
3007
|
+
update!(**args)
|
3008
|
+
end
|
3009
|
+
|
3010
|
+
# Update properties of this object
|
3011
|
+
def update!(**args)
|
3012
|
+
@app_id = args[:app_id] if args.key?(:app_id)
|
3013
|
+
@app_type = args[:app_type] if args.key?(:app_type)
|
3014
|
+
@app_uninstall_source = args[:app_uninstall_source] if args.key?(:app_uninstall_source)
|
3015
|
+
end
|
3016
|
+
end
|
3017
|
+
|
2848
3018
|
# `TelemetryAudioSevereUnderrunEvent` is triggered when a audio devices run out
|
2849
3019
|
# of buffer data for more than 5 seconds. * Granular permission needed:
|
2850
3020
|
# TELEMETRY_API_AUDIO_REPORT
|
@@ -2865,6 +3035,12 @@ module Google
|
|
2865
3035
|
class GoogleChromeManagementV1TelemetryDevice
|
2866
3036
|
include Google::Apis::Core::Hashable
|
2867
3037
|
|
3038
|
+
# Output only. App reports collected periodically sorted in a decreasing order
|
3039
|
+
# of report_time.
|
3040
|
+
# Corresponds to the JSON property `appReport`
|
3041
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AppReport>]
|
3042
|
+
attr_accessor :app_report
|
3043
|
+
|
2868
3044
|
# Output only. Audio reports collected periodically sorted in a decreasing order
|
2869
3045
|
# of report_time.
|
2870
3046
|
# Corresponds to the JSON property `audioStatusReport`
|
@@ -3051,6 +3227,7 @@ module Google
|
|
3051
3227
|
|
3052
3228
|
# Update properties of this object
|
3053
3229
|
def update!(**args)
|
3230
|
+
@app_report = args[:app_report] if args.key?(:app_report)
|
3054
3231
|
@audio_status_report = args[:audio_status_report] if args.key?(:audio_status_report)
|
3055
3232
|
@battery_info = args[:battery_info] if args.key?(:battery_info)
|
3056
3233
|
@battery_status_report = args[:battery_status_report] if args.key?(:battery_status_report)
|
@@ -3112,6 +3289,21 @@ module Google
|
|
3112
3289
|
class GoogleChromeManagementV1TelemetryEvent
|
3113
3290
|
include Google::Apis::Core::Hashable
|
3114
3291
|
|
3292
|
+
# App installation data.
|
3293
|
+
# Corresponds to the JSON property `appInstallEvent`
|
3294
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppInstallEvent]
|
3295
|
+
attr_accessor :app_install_event
|
3296
|
+
|
3297
|
+
# App launch data.
|
3298
|
+
# Corresponds to the JSON property `appLaunchEvent`
|
3299
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppLaunchEvent]
|
3300
|
+
attr_accessor :app_launch_event
|
3301
|
+
|
3302
|
+
# App uninstall data.
|
3303
|
+
# Corresponds to the JSON property `appUninstallEvent`
|
3304
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppUninstallEvent]
|
3305
|
+
attr_accessor :app_uninstall_event
|
3306
|
+
|
3115
3307
|
# `TelemetryAudioSevereUnderrunEvent` is triggered when a audio devices run out
|
3116
3308
|
# of buffer data for more than 5 seconds. * Granular permission needed:
|
3117
3309
|
# TELEMETRY_API_AUDIO_REPORT
|
@@ -3186,6 +3378,9 @@ module Google
|
|
3186
3378
|
|
3187
3379
|
# Update properties of this object
|
3188
3380
|
def update!(**args)
|
3381
|
+
@app_install_event = args[:app_install_event] if args.key?(:app_install_event)
|
3382
|
+
@app_launch_event = args[:app_launch_event] if args.key?(:app_launch_event)
|
3383
|
+
@app_uninstall_event = args[:app_uninstall_event] if args.key?(:app_uninstall_event)
|
3189
3384
|
@audio_severe_underrun_event = args[:audio_severe_underrun_event] if args.key?(:audio_severe_underrun_event)
|
3190
3385
|
@device = args[:device] if args.key?(:device)
|
3191
3386
|
@event_type = args[:event_type] if args.key?(:event_type)
|
@@ -3459,6 +3654,12 @@ module Google
|
|
3459
3654
|
class GoogleChromeManagementV1TelemetryUserDevice
|
3460
3655
|
include Google::Apis::Core::Hashable
|
3461
3656
|
|
3657
|
+
# Output only. App reports collected periodically sorted in a decreasing order
|
3658
|
+
# of report_time.
|
3659
|
+
# Corresponds to the JSON property `appReport`
|
3660
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AppReport>]
|
3661
|
+
attr_accessor :app_report
|
3662
|
+
|
3462
3663
|
# Output only. Audio reports collected periodically sorted in a decreasing order
|
3463
3664
|
# of report_time.
|
3464
3665
|
# Corresponds to the JSON property `audioStatusReport`
|
@@ -3495,6 +3696,7 @@ module Google
|
|
3495
3696
|
|
3496
3697
|
# Update properties of this object
|
3497
3698
|
def update!(**args)
|
3699
|
+
@app_report = args[:app_report] if args.key?(:app_report)
|
3498
3700
|
@audio_status_report = args[:audio_status_report] if args.key?(:audio_status_report)
|
3499
3701
|
@device_activity_report = args[:device_activity_report] if args.key?(:device_activity_report)
|
3500
3702
|
@device_id = args[:device_id] if args.key?(:device_id)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ChromemanagementV1
|
18
18
|
# Version of the google-apis-chromemanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.54.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240602"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,18 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class GoogleChromeManagementV1AppReport
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
49
|
+
class GoogleChromeManagementV1AppUsageData
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
43
55
|
class GoogleChromeManagementV1AudioStatusReport
|
44
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
57
|
|
@@ -412,6 +424,24 @@ module Google
|
|
412
424
|
include Google::Apis::Core::JsonObjectSupport
|
413
425
|
end
|
414
426
|
|
427
|
+
class GoogleChromeManagementV1TelemetryAppInstallEvent
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
433
|
+
class GoogleChromeManagementV1TelemetryAppLaunchEvent
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
|
+
|
436
|
+
include Google::Apis::Core::JsonObjectSupport
|
437
|
+
end
|
438
|
+
|
439
|
+
class GoogleChromeManagementV1TelemetryAppUninstallEvent
|
440
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
|
+
|
442
|
+
include Google::Apis::Core::JsonObjectSupport
|
443
|
+
end
|
444
|
+
|
415
445
|
class GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
|
416
446
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
447
|
|
@@ -599,6 +629,25 @@ module Google
|
|
599
629
|
end
|
600
630
|
end
|
601
631
|
|
632
|
+
class GoogleChromeManagementV1AppReport
|
633
|
+
# @private
|
634
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
635
|
+
property :report_time, as: 'reportTime'
|
636
|
+
collection :usage_data, as: 'usageData', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AppUsageData, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AppUsageData::Representation
|
637
|
+
|
638
|
+
end
|
639
|
+
end
|
640
|
+
|
641
|
+
class GoogleChromeManagementV1AppUsageData
|
642
|
+
# @private
|
643
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
644
|
+
property :app_id, as: 'appId'
|
645
|
+
property :app_instance_id, as: 'appInstanceId'
|
646
|
+
property :app_type, as: 'appType'
|
647
|
+
property :running_duration, as: 'runningDuration'
|
648
|
+
end
|
649
|
+
end
|
650
|
+
|
602
651
|
class GoogleChromeManagementV1AudioStatusReport
|
603
652
|
# @private
|
604
653
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1267,6 +1316,35 @@ module Google
|
|
1267
1316
|
end
|
1268
1317
|
end
|
1269
1318
|
|
1319
|
+
class GoogleChromeManagementV1TelemetryAppInstallEvent
|
1320
|
+
# @private
|
1321
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1322
|
+
property :app_id, as: 'appId'
|
1323
|
+
property :app_install_reason, as: 'appInstallReason'
|
1324
|
+
property :app_install_source, as: 'appInstallSource'
|
1325
|
+
property :app_install_time, as: 'appInstallTime'
|
1326
|
+
property :app_type, as: 'appType'
|
1327
|
+
end
|
1328
|
+
end
|
1329
|
+
|
1330
|
+
class GoogleChromeManagementV1TelemetryAppLaunchEvent
|
1331
|
+
# @private
|
1332
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1333
|
+
property :app_id, as: 'appId'
|
1334
|
+
property :app_launch_source, as: 'appLaunchSource'
|
1335
|
+
property :app_type, as: 'appType'
|
1336
|
+
end
|
1337
|
+
end
|
1338
|
+
|
1339
|
+
class GoogleChromeManagementV1TelemetryAppUninstallEvent
|
1340
|
+
# @private
|
1341
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1342
|
+
property :app_id, as: 'appId'
|
1343
|
+
property :app_type, as: 'appType'
|
1344
|
+
property :app_uninstall_source, as: 'appUninstallSource'
|
1345
|
+
end
|
1346
|
+
end
|
1347
|
+
|
1270
1348
|
class GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
|
1271
1349
|
# @private
|
1272
1350
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1276,6 +1354,8 @@ module Google
|
|
1276
1354
|
class GoogleChromeManagementV1TelemetryDevice
|
1277
1355
|
# @private
|
1278
1356
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1357
|
+
collection :app_report, as: 'appReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AppReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AppReport::Representation
|
1358
|
+
|
1279
1359
|
collection :audio_status_report, as: 'audioStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport::Representation
|
1280
1360
|
|
1281
1361
|
collection :battery_info, as: 'batteryInfo', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryInfo::Representation
|
@@ -1339,6 +1419,12 @@ module Google
|
|
1339
1419
|
class GoogleChromeManagementV1TelemetryEvent
|
1340
1420
|
# @private
|
1341
1421
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1422
|
+
property :app_install_event, as: 'appInstallEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppInstallEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppInstallEvent::Representation
|
1423
|
+
|
1424
|
+
property :app_launch_event, as: 'appLaunchEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppLaunchEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppLaunchEvent::Representation
|
1425
|
+
|
1426
|
+
property :app_uninstall_event, as: 'appUninstallEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppUninstallEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppUninstallEvent::Representation
|
1427
|
+
|
1342
1428
|
property :audio_severe_underrun_event, as: 'audioSevereUnderrunEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent::Representation
|
1343
1429
|
|
1344
1430
|
property :device, as: 'device', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDeviceInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDeviceInfo::Representation
|
@@ -1440,6 +1526,8 @@ module Google
|
|
1440
1526
|
class GoogleChromeManagementV1TelemetryUserDevice
|
1441
1527
|
# @private
|
1442
1528
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1529
|
+
collection :app_report, as: 'appReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AppReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AppReport::Representation
|
1530
|
+
|
1443
1531
|
collection :audio_status_report, as: 'audioStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport::Representation
|
1444
1532
|
|
1445
1533
|
collection :device_activity_report, as: 'deviceActivityReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DeviceActivityReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DeviceActivityReport::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-chromemanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.54.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-06-16 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.
|
19
|
+
version: 0.15.0
|
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.
|
29
|
+
version: 0.15.0
|
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-chromemanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.54.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromemanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|