google-apis-chromemanagement_v1 0.53.0 → 0.55.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/chromemanagement_v1/classes.rb +76 -0
- data/lib/google/apis/chromemanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/chromemanagement_v1/representations.rb +35 -0
- data/lib/google/apis/chromemanagement_v1/service.rb +5 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1eb88b42c927b0e6ec347ac478c839b934e07200f9fa30f1d64d737e5b21cb57
|
4
|
+
data.tar.gz: b6723a4e345f532f2d66e7daf10ef6033b5e2525bb6dc6909fa98a91e9ebec60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8e64f2c2d5d42838a623fef82c405da9bb2fe14b9bb465df7340d0140a2ec3edf1745688c756d6668fd9cae6d14834f0df6a98c7857fe0ed626aefacd75dbe5
|
7
|
+
data.tar.gz: eefa264807a2f4422754b25aebea28c65a1d52af90e72ae1ed5db4776c8365cfaf4e4fe19cdff2e25d6155cef0add8bed92a82f4de75f24ea1c1d0ef7c0fadc8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-chromemanagement_v1
|
2
2
|
|
3
|
+
### v0.55.0 (2024-07-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240709
|
6
|
+
|
7
|
+
### v0.54.0 (2024-06-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240602
|
10
|
+
|
3
11
|
### v0.53.0 (2024-05-19)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240516
|
@@ -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.
|
@@ -2973,6 +3035,12 @@ module Google
|
|
2973
3035
|
class GoogleChromeManagementV1TelemetryDevice
|
2974
3036
|
include Google::Apis::Core::Hashable
|
2975
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
|
+
|
2976
3044
|
# Output only. Audio reports collected periodically sorted in a decreasing order
|
2977
3045
|
# of report_time.
|
2978
3046
|
# Corresponds to the JSON property `audioStatusReport`
|
@@ -3159,6 +3227,7 @@ module Google
|
|
3159
3227
|
|
3160
3228
|
# Update properties of this object
|
3161
3229
|
def update!(**args)
|
3230
|
+
@app_report = args[:app_report] if args.key?(:app_report)
|
3162
3231
|
@audio_status_report = args[:audio_status_report] if args.key?(:audio_status_report)
|
3163
3232
|
@battery_info = args[:battery_info] if args.key?(:battery_info)
|
3164
3233
|
@battery_status_report = args[:battery_status_report] if args.key?(:battery_status_report)
|
@@ -3585,6 +3654,12 @@ module Google
|
|
3585
3654
|
class GoogleChromeManagementV1TelemetryUserDevice
|
3586
3655
|
include Google::Apis::Core::Hashable
|
3587
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
|
+
|
3588
3663
|
# Output only. Audio reports collected periodically sorted in a decreasing order
|
3589
3664
|
# of report_time.
|
3590
3665
|
# Corresponds to the JSON property `audioStatusReport`
|
@@ -3621,6 +3696,7 @@ module Google
|
|
3621
3696
|
|
3622
3697
|
# Update properties of this object
|
3623
3698
|
def update!(**args)
|
3699
|
+
@app_report = args[:app_report] if args.key?(:app_report)
|
3624
3700
|
@audio_status_report = args[:audio_status_report] if args.key?(:audio_status_report)
|
3625
3701
|
@device_activity_report = args[:device_activity_report] if args.key?(:device_activity_report)
|
3626
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.55.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240709"
|
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
|
|
@@ -617,6 +629,25 @@ module Google
|
|
617
629
|
end
|
618
630
|
end
|
619
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
|
+
|
620
651
|
class GoogleChromeManagementV1AudioStatusReport
|
621
652
|
# @private
|
622
653
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1323,6 +1354,8 @@ module Google
|
|
1323
1354
|
class GoogleChromeManagementV1TelemetryDevice
|
1324
1355
|
# @private
|
1325
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
|
+
|
1326
1359
|
collection :audio_status_report, as: 'audioStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport::Representation
|
1327
1360
|
|
1328
1361
|
collection :battery_info, as: 'batteryInfo', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryInfo::Representation
|
@@ -1493,6 +1526,8 @@ module Google
|
|
1493
1526
|
class GoogleChromeManagementV1TelemetryUserDevice
|
1494
1527
|
# @private
|
1495
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
|
+
|
1496
1531
|
collection :audio_status_report, as: 'audioStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport::Representation
|
1497
1532
|
|
1498
1533
|
collection :device_activity_report, as: 'deviceActivityReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DeviceActivityReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1DeviceActivityReport::Representation
|
@@ -550,10 +550,12 @@ module Google
|
|
550
550
|
# Query string to filter results, AND-separated fields in EBNF syntax. Note: OR
|
551
551
|
# operations are not supported in this filter. Supported filter fields: *
|
552
552
|
# app_name * app_type * install_type * number_of_permissions *
|
553
|
-
# total_install_count * latest_profile_active_date * permission_name * app_id
|
553
|
+
# total_install_count * latest_profile_active_date * permission_name * app_id *
|
554
|
+
# manifest_versions
|
554
555
|
# @param [String] order_by
|
555
556
|
# Field used to order results. Supported order by fields: * app_name * app_type *
|
556
|
-
# install_type * number_of_permissions * total_install_count * app_id
|
557
|
+
# install_type * number_of_permissions * total_install_count * app_id *
|
558
|
+
# manifest_versions
|
557
559
|
# @param [String] org_unit_id
|
558
560
|
# The ID of the organizational unit.
|
559
561
|
# @param [Fixnum] page_size
|
@@ -937,7 +939,7 @@ module Google
|
|
937
939
|
# user - audio_severe_underrun_event - usb_peripherals_event -
|
938
940
|
# https_latency_change_event - network_state_change_event -
|
939
941
|
# wifi_signal_strength_event - vpn_connection_state_change_event -
|
940
|
-
# app_install_event - app_uninstall_event - app_launch_event
|
942
|
+
# app_install_event - app_uninstall_event - app_launch_event - os_crash_event
|
941
943
|
# @param [String] fields
|
942
944
|
# Selector specifying which fields to include in a partial response.
|
943
945
|
# @param [String] quota_user
|
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.55.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-07-25 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-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.55.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: []
|