google-apis-chromemanagement_v1 0.52.0 → 0.53.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 914a59f25d9aca40f5b31597a4341736d0c3df13e2d82cab428c930110a18d4e
|
4
|
+
data.tar.gz: a0ac4957737e52c2f0f1574dbf3dffd90a9f80f0db474a08e33b1f126654ede9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 448673a3c9b9ef1d6f496418d83c019c1bb79df5a4d326bbc7a8bcf9483944689974e1d782cf9e0eeafe0312e091cb3f9a5b495f3e3febf23649a745726135e2
|
7
|
+
data.tar.gz: 2584b9415416258b8723542f70af5f862860f7d9b665ab613f30fe82ae3a553dc8f96163002e0d252c2ffbb1d7b2ac9761d6168301ffe19ce575378a43d80bf2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-chromemanagement_v1
|
2
2
|
|
3
|
+
### v0.53.0 (2024-05-19)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240516
|
6
|
+
* Regenerated using generator version 0.15.0
|
7
|
+
|
3
8
|
### v0.52.0 (2024-03-24)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240321
|
@@ -2845,6 +2845,114 @@ module Google
|
|
2845
2845
|
end
|
2846
2846
|
end
|
2847
2847
|
|
2848
|
+
# App installation data.
|
2849
|
+
class GoogleChromeManagementV1TelemetryAppInstallEvent
|
2850
|
+
include Google::Apis::Core::Hashable
|
2851
|
+
|
2852
|
+
# App id. For PWAs this is the start URL, and for extensions this is the
|
2853
|
+
# extension id.
|
2854
|
+
# Corresponds to the JSON property `appId`
|
2855
|
+
# @return [String]
|
2856
|
+
attr_accessor :app_id
|
2857
|
+
|
2858
|
+
# App installation reason.
|
2859
|
+
# Corresponds to the JSON property `appInstallReason`
|
2860
|
+
# @return [String]
|
2861
|
+
attr_accessor :app_install_reason
|
2862
|
+
|
2863
|
+
# App installation source.
|
2864
|
+
# Corresponds to the JSON property `appInstallSource`
|
2865
|
+
# @return [String]
|
2866
|
+
attr_accessor :app_install_source
|
2867
|
+
|
2868
|
+
# App installation time depending on the app lifecycle.
|
2869
|
+
# Corresponds to the JSON property `appInstallTime`
|
2870
|
+
# @return [String]
|
2871
|
+
attr_accessor :app_install_time
|
2872
|
+
|
2873
|
+
# Type of app.
|
2874
|
+
# Corresponds to the JSON property `appType`
|
2875
|
+
# @return [String]
|
2876
|
+
attr_accessor :app_type
|
2877
|
+
|
2878
|
+
def initialize(**args)
|
2879
|
+
update!(**args)
|
2880
|
+
end
|
2881
|
+
|
2882
|
+
# Update properties of this object
|
2883
|
+
def update!(**args)
|
2884
|
+
@app_id = args[:app_id] if args.key?(:app_id)
|
2885
|
+
@app_install_reason = args[:app_install_reason] if args.key?(:app_install_reason)
|
2886
|
+
@app_install_source = args[:app_install_source] if args.key?(:app_install_source)
|
2887
|
+
@app_install_time = args[:app_install_time] if args.key?(:app_install_time)
|
2888
|
+
@app_type = args[:app_type] if args.key?(:app_type)
|
2889
|
+
end
|
2890
|
+
end
|
2891
|
+
|
2892
|
+
# App launch data.
|
2893
|
+
class GoogleChromeManagementV1TelemetryAppLaunchEvent
|
2894
|
+
include Google::Apis::Core::Hashable
|
2895
|
+
|
2896
|
+
# App id. For PWAs this is the start URL, and for extensions this is the
|
2897
|
+
# extension id.
|
2898
|
+
# Corresponds to the JSON property `appId`
|
2899
|
+
# @return [String]
|
2900
|
+
attr_accessor :app_id
|
2901
|
+
|
2902
|
+
# App launch source.
|
2903
|
+
# Corresponds to the JSON property `appLaunchSource`
|
2904
|
+
# @return [String]
|
2905
|
+
attr_accessor :app_launch_source
|
2906
|
+
|
2907
|
+
# Type of app.
|
2908
|
+
# Corresponds to the JSON property `appType`
|
2909
|
+
# @return [String]
|
2910
|
+
attr_accessor :app_type
|
2911
|
+
|
2912
|
+
def initialize(**args)
|
2913
|
+
update!(**args)
|
2914
|
+
end
|
2915
|
+
|
2916
|
+
# Update properties of this object
|
2917
|
+
def update!(**args)
|
2918
|
+
@app_id = args[:app_id] if args.key?(:app_id)
|
2919
|
+
@app_launch_source = args[:app_launch_source] if args.key?(:app_launch_source)
|
2920
|
+
@app_type = args[:app_type] if args.key?(:app_type)
|
2921
|
+
end
|
2922
|
+
end
|
2923
|
+
|
2924
|
+
# App uninstall data.
|
2925
|
+
class GoogleChromeManagementV1TelemetryAppUninstallEvent
|
2926
|
+
include Google::Apis::Core::Hashable
|
2927
|
+
|
2928
|
+
# App id. For PWAs this is the start URL, and for extensions this is the
|
2929
|
+
# extension id.
|
2930
|
+
# Corresponds to the JSON property `appId`
|
2931
|
+
# @return [String]
|
2932
|
+
attr_accessor :app_id
|
2933
|
+
|
2934
|
+
# Type of app.
|
2935
|
+
# Corresponds to the JSON property `appType`
|
2936
|
+
# @return [String]
|
2937
|
+
attr_accessor :app_type
|
2938
|
+
|
2939
|
+
# App uninstall source.
|
2940
|
+
# Corresponds to the JSON property `appUninstallSource`
|
2941
|
+
# @return [String]
|
2942
|
+
attr_accessor :app_uninstall_source
|
2943
|
+
|
2944
|
+
def initialize(**args)
|
2945
|
+
update!(**args)
|
2946
|
+
end
|
2947
|
+
|
2948
|
+
# Update properties of this object
|
2949
|
+
def update!(**args)
|
2950
|
+
@app_id = args[:app_id] if args.key?(:app_id)
|
2951
|
+
@app_type = args[:app_type] if args.key?(:app_type)
|
2952
|
+
@app_uninstall_source = args[:app_uninstall_source] if args.key?(:app_uninstall_source)
|
2953
|
+
end
|
2954
|
+
end
|
2955
|
+
|
2848
2956
|
# `TelemetryAudioSevereUnderrunEvent` is triggered when a audio devices run out
|
2849
2957
|
# of buffer data for more than 5 seconds. * Granular permission needed:
|
2850
2958
|
# TELEMETRY_API_AUDIO_REPORT
|
@@ -3112,6 +3220,21 @@ module Google
|
|
3112
3220
|
class GoogleChromeManagementV1TelemetryEvent
|
3113
3221
|
include Google::Apis::Core::Hashable
|
3114
3222
|
|
3223
|
+
# App installation data.
|
3224
|
+
# Corresponds to the JSON property `appInstallEvent`
|
3225
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppInstallEvent]
|
3226
|
+
attr_accessor :app_install_event
|
3227
|
+
|
3228
|
+
# App launch data.
|
3229
|
+
# Corresponds to the JSON property `appLaunchEvent`
|
3230
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppLaunchEvent]
|
3231
|
+
attr_accessor :app_launch_event
|
3232
|
+
|
3233
|
+
# App uninstall data.
|
3234
|
+
# Corresponds to the JSON property `appUninstallEvent`
|
3235
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppUninstallEvent]
|
3236
|
+
attr_accessor :app_uninstall_event
|
3237
|
+
|
3115
3238
|
# `TelemetryAudioSevereUnderrunEvent` is triggered when a audio devices run out
|
3116
3239
|
# of buffer data for more than 5 seconds. * Granular permission needed:
|
3117
3240
|
# TELEMETRY_API_AUDIO_REPORT
|
@@ -3186,6 +3309,9 @@ module Google
|
|
3186
3309
|
|
3187
3310
|
# Update properties of this object
|
3188
3311
|
def update!(**args)
|
3312
|
+
@app_install_event = args[:app_install_event] if args.key?(:app_install_event)
|
3313
|
+
@app_launch_event = args[:app_launch_event] if args.key?(:app_launch_event)
|
3314
|
+
@app_uninstall_event = args[:app_uninstall_event] if args.key?(:app_uninstall_event)
|
3189
3315
|
@audio_severe_underrun_event = args[:audio_severe_underrun_event] if args.key?(:audio_severe_underrun_event)
|
3190
3316
|
@device = args[:device] if args.key?(:device)
|
3191
3317
|
@event_type = args[:event_type] if args.key?(:event_type)
|
@@ -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.53.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 = "20240516"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -412,6 +412,24 @@ module Google
|
|
412
412
|
include Google::Apis::Core::JsonObjectSupport
|
413
413
|
end
|
414
414
|
|
415
|
+
class GoogleChromeManagementV1TelemetryAppInstallEvent
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
421
|
+
class GoogleChromeManagementV1TelemetryAppLaunchEvent
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
427
|
+
class GoogleChromeManagementV1TelemetryAppUninstallEvent
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
415
433
|
class GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
|
416
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
435
|
|
@@ -1267,6 +1285,35 @@ module Google
|
|
1267
1285
|
end
|
1268
1286
|
end
|
1269
1287
|
|
1288
|
+
class GoogleChromeManagementV1TelemetryAppInstallEvent
|
1289
|
+
# @private
|
1290
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1291
|
+
property :app_id, as: 'appId'
|
1292
|
+
property :app_install_reason, as: 'appInstallReason'
|
1293
|
+
property :app_install_source, as: 'appInstallSource'
|
1294
|
+
property :app_install_time, as: 'appInstallTime'
|
1295
|
+
property :app_type, as: 'appType'
|
1296
|
+
end
|
1297
|
+
end
|
1298
|
+
|
1299
|
+
class GoogleChromeManagementV1TelemetryAppLaunchEvent
|
1300
|
+
# @private
|
1301
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1302
|
+
property :app_id, as: 'appId'
|
1303
|
+
property :app_launch_source, as: 'appLaunchSource'
|
1304
|
+
property :app_type, as: 'appType'
|
1305
|
+
end
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
class GoogleChromeManagementV1TelemetryAppUninstallEvent
|
1309
|
+
# @private
|
1310
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1311
|
+
property :app_id, as: 'appId'
|
1312
|
+
property :app_type, as: 'appType'
|
1313
|
+
property :app_uninstall_source, as: 'appUninstallSource'
|
1314
|
+
end
|
1315
|
+
end
|
1316
|
+
|
1270
1317
|
class GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
|
1271
1318
|
# @private
|
1272
1319
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1339,6 +1386,12 @@ module Google
|
|
1339
1386
|
class GoogleChromeManagementV1TelemetryEvent
|
1340
1387
|
# @private
|
1341
1388
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1389
|
+
property :app_install_event, as: 'appInstallEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppInstallEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppInstallEvent::Representation
|
1390
|
+
|
1391
|
+
property :app_launch_event, as: 'appLaunchEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppLaunchEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppLaunchEvent::Representation
|
1392
|
+
|
1393
|
+
property :app_uninstall_event, as: 'appUninstallEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppUninstallEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAppUninstallEvent::Representation
|
1394
|
+
|
1342
1395
|
property :audio_severe_underrun_event, as: 'audioSevereUnderrunEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent::Representation
|
1343
1396
|
|
1344
1397
|
property :device, as: 'device', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDeviceInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDeviceInfo::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.53.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-05-26 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.53.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: []
|