google-apis-chromemanagement_v1 0.29.0 → 0.31.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 +9 -0
- data/lib/google/apis/chromemanagement_v1/classes.rb +271 -0
- data/lib/google/apis/chromemanagement_v1/gem_version.rb +3 -3
- data/lib/google/apis/chromemanagement_v1/representations.rb +129 -0
- data/lib/google/apis/chromemanagement_v1/service.rb +46 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9926e6402cdf5eae667e12e94c080fb3030d11cb0f96fb1515dc412d73745198
|
4
|
+
data.tar.gz: 98258369e254a653d78b5b1d99c843d8f13f6b508ca9fc13aec6e18edb4159b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2edbbc30a7a8ff5bddf364e3fbc03d88d9edf25dd1045048268e1ee6cb53ef64baf10b316a81c90fdbe1e2cb3a0c7f358a3dcca91a736992c2d0be256cf4a87
|
7
|
+
data.tar.gz: b1250c6e4eb8c9d2c64a24d12f88c0fcd44c4403938adbedc882d47ed510d3092eebac1728777169e37e31870ed35a8ca42c22e841875e80c02a53c8a8f8c81a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-chromemanagement_v1
|
2
2
|
|
3
|
+
### v0.31.0 (2022-11-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221126
|
6
|
+
|
7
|
+
### v0.30.0 (2022-10-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220929
|
10
|
+
* Regenerated using generator version 0.11.0
|
11
|
+
|
3
12
|
### v0.29.0 (2022-09-29)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20220926
|
@@ -454,6 +454,62 @@ module Google
|
|
454
454
|
end
|
455
455
|
end
|
456
456
|
|
457
|
+
# Boot performance report of a device. * This field is telemetry information and
|
458
|
+
# this will change over time as the device is utilized. * Data for this field is
|
459
|
+
# controlled via policy: [ReportDeviceBootMode](https://chromeenterprise.google/
|
460
|
+
# policies/#ReportDeviceBootMode) * Data Collection Frequency: On every boot up
|
461
|
+
# event * Default Data Reporting Frequency: 3 hours - Policy Controlled: Yes *
|
462
|
+
# Cache: If the device is offline, the collected data is stored locally, and
|
463
|
+
# will be reported when the device is next online: Yes * Reported for affiliated
|
464
|
+
# users only: N/A
|
465
|
+
class GoogleChromeManagementV1BootPerformanceReport
|
466
|
+
include Google::Apis::Core::Hashable
|
467
|
+
|
468
|
+
# Total time to boot up.
|
469
|
+
# Corresponds to the JSON property `bootUpDuration`
|
470
|
+
# @return [String]
|
471
|
+
attr_accessor :boot_up_duration
|
472
|
+
|
473
|
+
# The timestamp when power came on.
|
474
|
+
# Corresponds to the JSON property `bootUpTime`
|
475
|
+
# @return [String]
|
476
|
+
attr_accessor :boot_up_time
|
477
|
+
|
478
|
+
# Timestamp when the report was collected.
|
479
|
+
# Corresponds to the JSON property `reportTime`
|
480
|
+
# @return [String]
|
481
|
+
attr_accessor :report_time
|
482
|
+
|
483
|
+
# Total time since shutdown start to power off.
|
484
|
+
# Corresponds to the JSON property `shutdownDuration`
|
485
|
+
# @return [String]
|
486
|
+
attr_accessor :shutdown_duration
|
487
|
+
|
488
|
+
# The shutdown reason.
|
489
|
+
# Corresponds to the JSON property `shutdownReason`
|
490
|
+
# @return [String]
|
491
|
+
attr_accessor :shutdown_reason
|
492
|
+
|
493
|
+
# The timestamp when shutdown.
|
494
|
+
# Corresponds to the JSON property `shutdownTime`
|
495
|
+
# @return [String]
|
496
|
+
attr_accessor :shutdown_time
|
497
|
+
|
498
|
+
def initialize(**args)
|
499
|
+
update!(**args)
|
500
|
+
end
|
501
|
+
|
502
|
+
# Update properties of this object
|
503
|
+
def update!(**args)
|
504
|
+
@boot_up_duration = args[:boot_up_duration] if args.key?(:boot_up_duration)
|
505
|
+
@boot_up_time = args[:boot_up_time] if args.key?(:boot_up_time)
|
506
|
+
@report_time = args[:report_time] if args.key?(:report_time)
|
507
|
+
@shutdown_duration = args[:shutdown_duration] if args.key?(:shutdown_duration)
|
508
|
+
@shutdown_reason = args[:shutdown_reason] if args.key?(:shutdown_reason)
|
509
|
+
@shutdown_time = args[:shutdown_time] if args.key?(:shutdown_time)
|
510
|
+
end
|
511
|
+
end
|
512
|
+
|
457
513
|
# Describes a browser version and its install count.
|
458
514
|
class GoogleChromeManagementV1BrowserVersion
|
459
515
|
include Google::Apis::Core::Hashable
|
@@ -1526,6 +1582,31 @@ module Google
|
|
1526
1582
|
end
|
1527
1583
|
end
|
1528
1584
|
|
1585
|
+
# Response message for listing telemetry events for a customer.
|
1586
|
+
class GoogleChromeManagementV1ListTelemetryEventsResponse
|
1587
|
+
include Google::Apis::Core::Hashable
|
1588
|
+
|
1589
|
+
# Token to specify next page in the list.
|
1590
|
+
# Corresponds to the JSON property `nextPageToken`
|
1591
|
+
# @return [String]
|
1592
|
+
attr_accessor :next_page_token
|
1593
|
+
|
1594
|
+
# Telemetry events returned in the response.
|
1595
|
+
# Corresponds to the JSON property `telemetryEvents`
|
1596
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryEvent>]
|
1597
|
+
attr_accessor :telemetry_events
|
1598
|
+
|
1599
|
+
def initialize(**args)
|
1600
|
+
update!(**args)
|
1601
|
+
end
|
1602
|
+
|
1603
|
+
# Update properties of this object
|
1604
|
+
def update!(**args)
|
1605
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1606
|
+
@telemetry_events = args[:telemetry_events] if args.key?(:telemetry_events)
|
1607
|
+
end
|
1608
|
+
end
|
1609
|
+
|
1529
1610
|
# Memory information of a device. * This field has both telemetry and device
|
1530
1611
|
# information: - `totalRamBytes` - Device information - `availableRamBytes` -
|
1531
1612
|
# Telemetry information - `totalMemoryEncryption` - Device information * Data
|
@@ -2000,6 +2081,20 @@ module Google
|
|
2000
2081
|
end
|
2001
2082
|
end
|
2002
2083
|
|
2084
|
+
# `TelemetryAudioSevereUnderrunEvent` is triggered when a audio devices run out
|
2085
|
+
# of buffer data for more than 5 seconds.
|
2086
|
+
class GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
|
2087
|
+
include Google::Apis::Core::Hashable
|
2088
|
+
|
2089
|
+
def initialize(**args)
|
2090
|
+
update!(**args)
|
2091
|
+
end
|
2092
|
+
|
2093
|
+
# Update properties of this object
|
2094
|
+
def update!(**args)
|
2095
|
+
end
|
2096
|
+
end
|
2097
|
+
|
2003
2098
|
# Telemetry data collected from a managed device.
|
2004
2099
|
class GoogleChromeManagementV1TelemetryDevice
|
2005
2100
|
include Google::Apis::Core::Hashable
|
@@ -2020,6 +2115,11 @@ module Google
|
|
2020
2115
|
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport>]
|
2021
2116
|
attr_accessor :battery_status_report
|
2022
2117
|
|
2118
|
+
# Output only. Boot performance reports of the device.
|
2119
|
+
# Corresponds to the JSON property `bootPerformanceReport`
|
2120
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BootPerformanceReport>]
|
2121
|
+
attr_accessor :boot_performance_report
|
2122
|
+
|
2023
2123
|
# Output only. Information regarding CPU specs for the device.
|
2024
2124
|
# Corresponds to the JSON property `cpuInfo`
|
2025
2125
|
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuInfo>]
|
@@ -2155,6 +2255,7 @@ module Google
|
|
2155
2255
|
@audio_status_report = args[:audio_status_report] if args.key?(:audio_status_report)
|
2156
2256
|
@battery_info = args[:battery_info] if args.key?(:battery_info)
|
2157
2257
|
@battery_status_report = args[:battery_status_report] if args.key?(:battery_status_report)
|
2258
|
+
@boot_performance_report = args[:boot_performance_report] if args.key?(:boot_performance_report)
|
2158
2259
|
@cpu_info = args[:cpu_info] if args.key?(:cpu_info)
|
2159
2260
|
@cpu_status_report = args[:cpu_status_report] if args.key?(:cpu_status_report)
|
2160
2261
|
@customer = args[:customer] if args.key?(:customer)
|
@@ -2176,6 +2277,176 @@ module Google
|
|
2176
2277
|
end
|
2177
2278
|
end
|
2178
2279
|
|
2280
|
+
# Information about a device associated with telemetry data.
|
2281
|
+
class GoogleChromeManagementV1TelemetryDeviceInfo
|
2282
|
+
include Google::Apis::Core::Hashable
|
2283
|
+
|
2284
|
+
# Output only. The unique Directory API ID of the device. This value is the same
|
2285
|
+
# as the Admin Console's Directory API ID in the ChromeOS Devices tab.
|
2286
|
+
# Corresponds to the JSON property `deviceId`
|
2287
|
+
# @return [String]
|
2288
|
+
attr_accessor :device_id
|
2289
|
+
|
2290
|
+
# Output only. Organization unit ID of the device.
|
2291
|
+
# Corresponds to the JSON property `orgUnitId`
|
2292
|
+
# @return [String]
|
2293
|
+
attr_accessor :org_unit_id
|
2294
|
+
|
2295
|
+
def initialize(**args)
|
2296
|
+
update!(**args)
|
2297
|
+
end
|
2298
|
+
|
2299
|
+
# Update properties of this object
|
2300
|
+
def update!(**args)
|
2301
|
+
@device_id = args[:device_id] if args.key?(:device_id)
|
2302
|
+
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
|
2303
|
+
end
|
2304
|
+
end
|
2305
|
+
|
2306
|
+
# Telemetry data reported by a managed device.
|
2307
|
+
class GoogleChromeManagementV1TelemetryEvent
|
2308
|
+
include Google::Apis::Core::Hashable
|
2309
|
+
|
2310
|
+
# `TelemetryAudioSevereUnderrunEvent` is triggered when a audio devices run out
|
2311
|
+
# of buffer data for more than 5 seconds.
|
2312
|
+
# Corresponds to the JSON property `audioSevereUnderrunEvent`
|
2313
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent]
|
2314
|
+
attr_accessor :audio_severe_underrun_event
|
2315
|
+
|
2316
|
+
# Information about a device associated with telemetry data.
|
2317
|
+
# Corresponds to the JSON property `device`
|
2318
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDeviceInfo]
|
2319
|
+
attr_accessor :device
|
2320
|
+
|
2321
|
+
# The event type of the current event.
|
2322
|
+
# Corresponds to the JSON property `eventType`
|
2323
|
+
# @return [String]
|
2324
|
+
attr_accessor :event_type
|
2325
|
+
|
2326
|
+
# Https latency routine is run periodically and `
|
2327
|
+
# TelemetryHttpsLatencyChangeEvent` is triggered if a latency problem was
|
2328
|
+
# detected or if the device has recovered from a latency problem..
|
2329
|
+
# Corresponds to the JSON property `httpsLatencyChangeEvent`
|
2330
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent]
|
2331
|
+
attr_accessor :https_latency_change_event
|
2332
|
+
|
2333
|
+
# Output only. Resource name of the event.
|
2334
|
+
# Corresponds to the JSON property `name`
|
2335
|
+
# @return [String]
|
2336
|
+
attr_accessor :name
|
2337
|
+
|
2338
|
+
# `TelemetryNetworkConnectionStateChangeEvent` is triggered on network
|
2339
|
+
# connection state changes.
|
2340
|
+
# Corresponds to the JSON property `networkConnectionStateChangeEvent`
|
2341
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent]
|
2342
|
+
attr_accessor :network_connection_state_change_event
|
2343
|
+
|
2344
|
+
# Timestamp that represents when the event was reported.
|
2345
|
+
# Corresponds to the JSON property `reportTime`
|
2346
|
+
# @return [String]
|
2347
|
+
attr_accessor :report_time
|
2348
|
+
|
2349
|
+
# Information about a user associated with telemetry data.
|
2350
|
+
# Corresponds to the JSON property `user`
|
2351
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserInfo]
|
2352
|
+
attr_accessor :user
|
2353
|
+
|
2354
|
+
def initialize(**args)
|
2355
|
+
update!(**args)
|
2356
|
+
end
|
2357
|
+
|
2358
|
+
# Update properties of this object
|
2359
|
+
def update!(**args)
|
2360
|
+
@audio_severe_underrun_event = args[:audio_severe_underrun_event] if args.key?(:audio_severe_underrun_event)
|
2361
|
+
@device = args[:device] if args.key?(:device)
|
2362
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
2363
|
+
@https_latency_change_event = args[:https_latency_change_event] if args.key?(:https_latency_change_event)
|
2364
|
+
@name = args[:name] if args.key?(:name)
|
2365
|
+
@network_connection_state_change_event = args[:network_connection_state_change_event] if args.key?(:network_connection_state_change_event)
|
2366
|
+
@report_time = args[:report_time] if args.key?(:report_time)
|
2367
|
+
@user = args[:user] if args.key?(:user)
|
2368
|
+
end
|
2369
|
+
end
|
2370
|
+
|
2371
|
+
# Https latency routine is run periodically and `
|
2372
|
+
# TelemetryHttpsLatencyChangeEvent` is triggered if a latency problem was
|
2373
|
+
# detected or if the device has recovered from a latency problem..
|
2374
|
+
class GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent
|
2375
|
+
include Google::Apis::Core::Hashable
|
2376
|
+
|
2377
|
+
# Data that describes the result of the HTTPS latency diagnostics routine, with
|
2378
|
+
# the HTTPS requests issued to Google websites.
|
2379
|
+
# Corresponds to the JSON property `httpsLatencyRoutineData`
|
2380
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData]
|
2381
|
+
attr_accessor :https_latency_routine_data
|
2382
|
+
|
2383
|
+
# Current HTTPS latency state.
|
2384
|
+
# Corresponds to the JSON property `httpsLatencyState`
|
2385
|
+
# @return [String]
|
2386
|
+
attr_accessor :https_latency_state
|
2387
|
+
|
2388
|
+
def initialize(**args)
|
2389
|
+
update!(**args)
|
2390
|
+
end
|
2391
|
+
|
2392
|
+
# Update properties of this object
|
2393
|
+
def update!(**args)
|
2394
|
+
@https_latency_routine_data = args[:https_latency_routine_data] if args.key?(:https_latency_routine_data)
|
2395
|
+
@https_latency_state = args[:https_latency_state] if args.key?(:https_latency_state)
|
2396
|
+
end
|
2397
|
+
end
|
2398
|
+
|
2399
|
+
# `TelemetryNetworkConnectionStateChangeEvent` is triggered on network
|
2400
|
+
# connection state changes.
|
2401
|
+
class GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent
|
2402
|
+
include Google::Apis::Core::Hashable
|
2403
|
+
|
2404
|
+
# Current connection state of the network.
|
2405
|
+
# Corresponds to the JSON property `connectionState`
|
2406
|
+
# @return [String]
|
2407
|
+
attr_accessor :connection_state
|
2408
|
+
|
2409
|
+
# Unique identifier of the network.
|
2410
|
+
# Corresponds to the JSON property `guid`
|
2411
|
+
# @return [String]
|
2412
|
+
attr_accessor :guid
|
2413
|
+
|
2414
|
+
def initialize(**args)
|
2415
|
+
update!(**args)
|
2416
|
+
end
|
2417
|
+
|
2418
|
+
# Update properties of this object
|
2419
|
+
def update!(**args)
|
2420
|
+
@connection_state = args[:connection_state] if args.key?(:connection_state)
|
2421
|
+
@guid = args[:guid] if args.key?(:guid)
|
2422
|
+
end
|
2423
|
+
end
|
2424
|
+
|
2425
|
+
# Information about a user associated with telemetry data.
|
2426
|
+
class GoogleChromeManagementV1TelemetryUserInfo
|
2427
|
+
include Google::Apis::Core::Hashable
|
2428
|
+
|
2429
|
+
# Output only. User's email.
|
2430
|
+
# Corresponds to the JSON property `email`
|
2431
|
+
# @return [String]
|
2432
|
+
attr_accessor :email
|
2433
|
+
|
2434
|
+
# Output only. Organization unit ID of the user.
|
2435
|
+
# Corresponds to the JSON property `orgUnitId`
|
2436
|
+
# @return [String]
|
2437
|
+
attr_accessor :org_unit_id
|
2438
|
+
|
2439
|
+
def initialize(**args)
|
2440
|
+
update!(**args)
|
2441
|
+
end
|
2442
|
+
|
2443
|
+
# Update properties of this object
|
2444
|
+
def update!(**args)
|
2445
|
+
@email = args[:email] if args.key?(:email)
|
2446
|
+
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
|
2447
|
+
end
|
2448
|
+
end
|
2449
|
+
|
2179
2450
|
# Thunderbolt bus info. * This field provides device information, which is
|
2180
2451
|
# static and will not change over time. * Data for this field is controlled via
|
2181
2452
|
# policy: [ReportDeviceSecurityStatus](https://chromeenterprise.google/policies/#
|
@@ -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.31.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221126"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,12 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class GoogleChromeManagementV1BootPerformanceReport
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
67
73
|
class GoogleChromeManagementV1BrowserVersion
|
68
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
75
|
|
@@ -220,6 +226,12 @@ module Google
|
|
220
226
|
include Google::Apis::Core::JsonObjectSupport
|
221
227
|
end
|
222
228
|
|
229
|
+
class GoogleChromeManagementV1ListTelemetryEventsResponse
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
223
235
|
class GoogleChromeManagementV1MemoryInfo
|
224
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
237
|
|
@@ -280,12 +292,48 @@ module Google
|
|
280
292
|
include Google::Apis::Core::JsonObjectSupport
|
281
293
|
end
|
282
294
|
|
295
|
+
class GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
283
301
|
class GoogleChromeManagementV1TelemetryDevice
|
284
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
303
|
|
286
304
|
include Google::Apis::Core::JsonObjectSupport
|
287
305
|
end
|
288
306
|
|
307
|
+
class GoogleChromeManagementV1TelemetryDeviceInfo
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
|
+
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
311
|
+
end
|
312
|
+
|
313
|
+
class GoogleChromeManagementV1TelemetryEvent
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
319
|
+
class GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
325
|
+
class GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
331
|
+
class GoogleChromeManagementV1TelemetryUserInfo
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
289
337
|
class GoogleChromeManagementV1ThunderboltInfo
|
290
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
339
|
|
@@ -406,6 +454,18 @@ module Google
|
|
406
454
|
end
|
407
455
|
end
|
408
456
|
|
457
|
+
class GoogleChromeManagementV1BootPerformanceReport
|
458
|
+
# @private
|
459
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
460
|
+
property :boot_up_duration, as: 'bootUpDuration'
|
461
|
+
property :boot_up_time, as: 'bootUpTime'
|
462
|
+
property :report_time, as: 'reportTime'
|
463
|
+
property :shutdown_duration, as: 'shutdownDuration'
|
464
|
+
property :shutdown_reason, as: 'shutdownReason'
|
465
|
+
property :shutdown_time, as: 'shutdownTime'
|
466
|
+
end
|
467
|
+
end
|
468
|
+
|
409
469
|
class GoogleChromeManagementV1BrowserVersion
|
410
470
|
# @private
|
411
471
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -684,6 +744,15 @@ module Google
|
|
684
744
|
end
|
685
745
|
end
|
686
746
|
|
747
|
+
class GoogleChromeManagementV1ListTelemetryEventsResponse
|
748
|
+
# @private
|
749
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
750
|
+
property :next_page_token, as: 'nextPageToken'
|
751
|
+
collection :telemetry_events, as: 'telemetryEvents', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryEvent::Representation
|
752
|
+
|
753
|
+
end
|
754
|
+
end
|
755
|
+
|
687
756
|
class GoogleChromeManagementV1MemoryInfo
|
688
757
|
# @private
|
689
758
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -793,6 +862,12 @@ module Google
|
|
793
862
|
end
|
794
863
|
end
|
795
864
|
|
865
|
+
class GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
|
866
|
+
# @private
|
867
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
868
|
+
end
|
869
|
+
end
|
870
|
+
|
796
871
|
class GoogleChromeManagementV1TelemetryDevice
|
797
872
|
# @private
|
798
873
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -802,6 +877,8 @@ module Google
|
|
802
877
|
|
803
878
|
collection :battery_status_report, as: 'batteryStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport::Representation
|
804
879
|
|
880
|
+
collection :boot_performance_report, as: 'bootPerformanceReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BootPerformanceReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BootPerformanceReport::Representation
|
881
|
+
|
805
882
|
collection :cpu_info, as: 'cpuInfo', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuInfo::Representation
|
806
883
|
|
807
884
|
collection :cpu_status_report, as: 'cpuStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1CpuStatusReport::Representation
|
@@ -836,6 +913,58 @@ module Google
|
|
836
913
|
end
|
837
914
|
end
|
838
915
|
|
916
|
+
class GoogleChromeManagementV1TelemetryDeviceInfo
|
917
|
+
# @private
|
918
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
919
|
+
property :device_id, as: 'deviceId'
|
920
|
+
property :org_unit_id, as: 'orgUnitId'
|
921
|
+
end
|
922
|
+
end
|
923
|
+
|
924
|
+
class GoogleChromeManagementV1TelemetryEvent
|
925
|
+
# @private
|
926
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
927
|
+
property :audio_severe_underrun_event, as: 'audioSevereUnderrunEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent::Representation
|
928
|
+
|
929
|
+
property :device, as: 'device', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDeviceInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDeviceInfo::Representation
|
930
|
+
|
931
|
+
property :event_type, as: 'eventType'
|
932
|
+
property :https_latency_change_event, as: 'httpsLatencyChangeEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent::Representation
|
933
|
+
|
934
|
+
property :name, as: 'name'
|
935
|
+
property :network_connection_state_change_event, as: 'networkConnectionStateChangeEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent::Representation
|
936
|
+
|
937
|
+
property :report_time, as: 'reportTime'
|
938
|
+
property :user, as: 'user', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserInfo::Representation
|
939
|
+
|
940
|
+
end
|
941
|
+
end
|
942
|
+
|
943
|
+
class GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent
|
944
|
+
# @private
|
945
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
946
|
+
property :https_latency_routine_data, as: 'httpsLatencyRoutineData', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData::Representation
|
947
|
+
|
948
|
+
property :https_latency_state, as: 'httpsLatencyState'
|
949
|
+
end
|
950
|
+
end
|
951
|
+
|
952
|
+
class GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent
|
953
|
+
# @private
|
954
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
955
|
+
property :connection_state, as: 'connectionState'
|
956
|
+
property :guid, as: 'guid'
|
957
|
+
end
|
958
|
+
end
|
959
|
+
|
960
|
+
class GoogleChromeManagementV1TelemetryUserInfo
|
961
|
+
# @private
|
962
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
963
|
+
property :email, as: 'email'
|
964
|
+
property :org_unit_id, as: 'orgUnitId'
|
965
|
+
end
|
966
|
+
end
|
967
|
+
|
839
968
|
class GoogleChromeManagementV1ThunderboltInfo
|
840
969
|
# @private
|
841
970
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -552,6 +552,52 @@ module Google
|
|
552
552
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
553
553
|
execute_or_queue_command(command, &block)
|
554
554
|
end
|
555
|
+
|
556
|
+
# List telemetry events.
|
557
|
+
# @param [String] parent
|
558
|
+
# Required. Customer id or "my_customer" to use the customer associated to the
|
559
|
+
# account making the request.
|
560
|
+
# @param [String] filter
|
561
|
+
# Optional. Only include resources that match the filter. Supported filter
|
562
|
+
# fields: * device_id * user_id * device_org_unit_id * user_org_unit_id *
|
563
|
+
# timestamp * event_type
|
564
|
+
# @param [Fixnum] page_size
|
565
|
+
# Optional. Maximum number of results to return. Default value is 100. Maximum
|
566
|
+
# value is 1000.
|
567
|
+
# @param [String] page_token
|
568
|
+
# Optional. Token to specify next page in the list.
|
569
|
+
# @param [String] read_mask
|
570
|
+
# Required. Read mask to specify which fields to return.
|
571
|
+
# @param [String] fields
|
572
|
+
# Selector specifying which fields to include in a partial response.
|
573
|
+
# @param [String] quota_user
|
574
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
575
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
576
|
+
# @param [Google::Apis::RequestOptions] options
|
577
|
+
# Request-specific options
|
578
|
+
#
|
579
|
+
# @yield [result, err] Result & error if block supplied
|
580
|
+
# @yieldparam result [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ListTelemetryEventsResponse] parsed result object
|
581
|
+
# @yieldparam err [StandardError] error object if request failed
|
582
|
+
#
|
583
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ListTelemetryEventsResponse]
|
584
|
+
#
|
585
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
586
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
587
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
588
|
+
def list_customer_telemetry_events(parent, filter: nil, page_size: nil, page_token: nil, read_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
589
|
+
command = make_simple_command(:get, 'v1/{+parent}/telemetry/events', options)
|
590
|
+
command.response_representation = Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ListTelemetryEventsResponse::Representation
|
591
|
+
command.response_class = Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ListTelemetryEventsResponse
|
592
|
+
command.params['parent'] = parent unless parent.nil?
|
593
|
+
command.query['filter'] = filter unless filter.nil?
|
594
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
595
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
596
|
+
command.query['readMask'] = read_mask unless read_mask.nil?
|
597
|
+
command.query['fields'] = fields unless fields.nil?
|
598
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
599
|
+
execute_or_queue_command(command, &block)
|
600
|
+
end
|
555
601
|
|
556
602
|
protected
|
557
603
|
|
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.31.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-12-12 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.9.
|
19
|
+
version: 0.9.1
|
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.9.
|
29
|
+
version: 0.9.1
|
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.31.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: []
|