google-apis-chromemanagement_v1 0.30.0 → 0.32.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 +271 -0
- data/lib/google/apis/chromemanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/chromemanagement_v1/representations.rb +130 -0
- data/lib/google/apis/chromemanagement_v1/service.rb +46 -0
- 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: 6dff5e26ddf04251774fae8b5715030c2177cbb91b3dc3c0649e8c0c05096012
|
4
|
+
data.tar.gz: 864625d3084baee0f257f7ea6b3b4b197bd0e7f3d1084b03ffd2ef7911ccde85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83245d9fa99a41480a58e0f15d1b78df18e112503c372f73ef2a7a1d295f027c7f30ec31c82723319c6b5f9cdb47e1c98acd41cc632b7c2d76f10398652ab4d5
|
7
|
+
data.tar.gz: b77a5a0dca38ad4ed20e645cd1c3c9fc56be4855993b02d9561bdce49b2eef92cc0ad341ad98a113cfc3557fa0be4adbbebbe58dab5e715bb4026ee944a7e385
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-chromemanagement_v1
|
2
2
|
|
3
|
+
### v0.32.0 (2023-01-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230102
|
6
|
+
|
7
|
+
### v0.31.0 (2022-11-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221126
|
10
|
+
|
3
11
|
### v0.30.0 (2022-10-27)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20220929
|
@@ -622,6 +622,11 @@ module Google
|
|
622
622
|
attr_accessor :support_enabled
|
623
623
|
alias_method :support_enabled?, :support_enabled
|
624
624
|
|
625
|
+
# Output only. Types of an item in the Chrome Web Store
|
626
|
+
# Corresponds to the JSON property `type`
|
627
|
+
# @return [String]
|
628
|
+
attr_accessor :type
|
629
|
+
|
625
630
|
def initialize(**args)
|
626
631
|
update!(**args)
|
627
632
|
end
|
@@ -638,6 +643,7 @@ module Google
|
|
638
643
|
@permissions = args[:permissions] if args.key?(:permissions)
|
639
644
|
@site_access = args[:site_access] if args.key?(:site_access)
|
640
645
|
@support_enabled = args[:support_enabled] if args.key?(:support_enabled)
|
646
|
+
@type = args[:type] if args.key?(:type)
|
641
647
|
end
|
642
648
|
end
|
643
649
|
|
@@ -1582,6 +1588,31 @@ module Google
|
|
1582
1588
|
end
|
1583
1589
|
end
|
1584
1590
|
|
1591
|
+
# Response message for listing telemetry events for a customer.
|
1592
|
+
class GoogleChromeManagementV1ListTelemetryEventsResponse
|
1593
|
+
include Google::Apis::Core::Hashable
|
1594
|
+
|
1595
|
+
# Token to specify next page in the list.
|
1596
|
+
# Corresponds to the JSON property `nextPageToken`
|
1597
|
+
# @return [String]
|
1598
|
+
attr_accessor :next_page_token
|
1599
|
+
|
1600
|
+
# Telemetry events returned in the response.
|
1601
|
+
# Corresponds to the JSON property `telemetryEvents`
|
1602
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryEvent>]
|
1603
|
+
attr_accessor :telemetry_events
|
1604
|
+
|
1605
|
+
def initialize(**args)
|
1606
|
+
update!(**args)
|
1607
|
+
end
|
1608
|
+
|
1609
|
+
# Update properties of this object
|
1610
|
+
def update!(**args)
|
1611
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1612
|
+
@telemetry_events = args[:telemetry_events] if args.key?(:telemetry_events)
|
1613
|
+
end
|
1614
|
+
end
|
1615
|
+
|
1585
1616
|
# Memory information of a device. * This field has both telemetry and device
|
1586
1617
|
# information: - `totalRamBytes` - Device information - `availableRamBytes` -
|
1587
1618
|
# Telemetry information - `totalMemoryEncryption` - Device information * Data
|
@@ -2056,6 +2087,20 @@ module Google
|
|
2056
2087
|
end
|
2057
2088
|
end
|
2058
2089
|
|
2090
|
+
# `TelemetryAudioSevereUnderrunEvent` is triggered when a audio devices run out
|
2091
|
+
# of buffer data for more than 5 seconds.
|
2092
|
+
class GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
|
2093
|
+
include Google::Apis::Core::Hashable
|
2094
|
+
|
2095
|
+
def initialize(**args)
|
2096
|
+
update!(**args)
|
2097
|
+
end
|
2098
|
+
|
2099
|
+
# Update properties of this object
|
2100
|
+
def update!(**args)
|
2101
|
+
end
|
2102
|
+
end
|
2103
|
+
|
2059
2104
|
# Telemetry data collected from a managed device.
|
2060
2105
|
class GoogleChromeManagementV1TelemetryDevice
|
2061
2106
|
include Google::Apis::Core::Hashable
|
@@ -2238,6 +2283,170 @@ module Google
|
|
2238
2283
|
end
|
2239
2284
|
end
|
2240
2285
|
|
2286
|
+
# Information about a device associated with telemetry data.
|
2287
|
+
class GoogleChromeManagementV1TelemetryDeviceInfo
|
2288
|
+
include Google::Apis::Core::Hashable
|
2289
|
+
|
2290
|
+
# Output only. The unique Directory API ID of the device. This value is the same
|
2291
|
+
# as the Admin Console's Directory API ID in the ChromeOS Devices tab.
|
2292
|
+
# Corresponds to the JSON property `deviceId`
|
2293
|
+
# @return [String]
|
2294
|
+
attr_accessor :device_id
|
2295
|
+
|
2296
|
+
# Output only. Organization unit ID of the device.
|
2297
|
+
# Corresponds to the JSON property `orgUnitId`
|
2298
|
+
# @return [String]
|
2299
|
+
attr_accessor :org_unit_id
|
2300
|
+
|
2301
|
+
def initialize(**args)
|
2302
|
+
update!(**args)
|
2303
|
+
end
|
2304
|
+
|
2305
|
+
# Update properties of this object
|
2306
|
+
def update!(**args)
|
2307
|
+
@device_id = args[:device_id] if args.key?(:device_id)
|
2308
|
+
@org_unit_id = args[:org_unit_id] if args.key?(:org_unit_id)
|
2309
|
+
end
|
2310
|
+
end
|
2311
|
+
|
2312
|
+
# Telemetry data reported by a managed device.
|
2313
|
+
class GoogleChromeManagementV1TelemetryEvent
|
2314
|
+
include Google::Apis::Core::Hashable
|
2315
|
+
|
2316
|
+
# `TelemetryAudioSevereUnderrunEvent` is triggered when a audio devices run out
|
2317
|
+
# of buffer data for more than 5 seconds.
|
2318
|
+
# Corresponds to the JSON property `audioSevereUnderrunEvent`
|
2319
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent]
|
2320
|
+
attr_accessor :audio_severe_underrun_event
|
2321
|
+
|
2322
|
+
# Information about a device associated with telemetry data.
|
2323
|
+
# Corresponds to the JSON property `device`
|
2324
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDeviceInfo]
|
2325
|
+
attr_accessor :device
|
2326
|
+
|
2327
|
+
# The event type of the current event.
|
2328
|
+
# Corresponds to the JSON property `eventType`
|
2329
|
+
# @return [String]
|
2330
|
+
attr_accessor :event_type
|
2331
|
+
|
2332
|
+
# Https latency routine is run periodically and `
|
2333
|
+
# TelemetryHttpsLatencyChangeEvent` is triggered if a latency problem was
|
2334
|
+
# detected or if the device has recovered from a latency problem..
|
2335
|
+
# Corresponds to the JSON property `httpsLatencyChangeEvent`
|
2336
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent]
|
2337
|
+
attr_accessor :https_latency_change_event
|
2338
|
+
|
2339
|
+
# Output only. Resource name of the event.
|
2340
|
+
# Corresponds to the JSON property `name`
|
2341
|
+
# @return [String]
|
2342
|
+
attr_accessor :name
|
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
|
+
# `TelemetryUsbPeripheralsEvent` is triggered USB devices are either added or
|
2350
|
+
# removed.
|
2351
|
+
# Corresponds to the JSON property `usbPeripheralsEvent`
|
2352
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUsbPeripheralsEvent]
|
2353
|
+
attr_accessor :usb_peripherals_event
|
2354
|
+
|
2355
|
+
# Information about a user associated with telemetry data.
|
2356
|
+
# Corresponds to the JSON property `user`
|
2357
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserInfo]
|
2358
|
+
attr_accessor :user
|
2359
|
+
|
2360
|
+
def initialize(**args)
|
2361
|
+
update!(**args)
|
2362
|
+
end
|
2363
|
+
|
2364
|
+
# Update properties of this object
|
2365
|
+
def update!(**args)
|
2366
|
+
@audio_severe_underrun_event = args[:audio_severe_underrun_event] if args.key?(:audio_severe_underrun_event)
|
2367
|
+
@device = args[:device] if args.key?(:device)
|
2368
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
2369
|
+
@https_latency_change_event = args[:https_latency_change_event] if args.key?(:https_latency_change_event)
|
2370
|
+
@name = args[:name] if args.key?(:name)
|
2371
|
+
@report_time = args[:report_time] if args.key?(:report_time)
|
2372
|
+
@usb_peripherals_event = args[:usb_peripherals_event] if args.key?(:usb_peripherals_event)
|
2373
|
+
@user = args[:user] if args.key?(:user)
|
2374
|
+
end
|
2375
|
+
end
|
2376
|
+
|
2377
|
+
# Https latency routine is run periodically and `
|
2378
|
+
# TelemetryHttpsLatencyChangeEvent` is triggered if a latency problem was
|
2379
|
+
# detected or if the device has recovered from a latency problem..
|
2380
|
+
class GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent
|
2381
|
+
include Google::Apis::Core::Hashable
|
2382
|
+
|
2383
|
+
# Data that describes the result of the HTTPS latency diagnostics routine, with
|
2384
|
+
# the HTTPS requests issued to Google websites.
|
2385
|
+
# Corresponds to the JSON property `httpsLatencyRoutineData`
|
2386
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData]
|
2387
|
+
attr_accessor :https_latency_routine_data
|
2388
|
+
|
2389
|
+
# Current HTTPS latency state.
|
2390
|
+
# Corresponds to the JSON property `httpsLatencyState`
|
2391
|
+
# @return [String]
|
2392
|
+
attr_accessor :https_latency_state
|
2393
|
+
|
2394
|
+
def initialize(**args)
|
2395
|
+
update!(**args)
|
2396
|
+
end
|
2397
|
+
|
2398
|
+
# Update properties of this object
|
2399
|
+
def update!(**args)
|
2400
|
+
@https_latency_routine_data = args[:https_latency_routine_data] if args.key?(:https_latency_routine_data)
|
2401
|
+
@https_latency_state = args[:https_latency_state] if args.key?(:https_latency_state)
|
2402
|
+
end
|
2403
|
+
end
|
2404
|
+
|
2405
|
+
# `TelemetryUsbPeripheralsEvent` is triggered USB devices are either added or
|
2406
|
+
# removed.
|
2407
|
+
class GoogleChromeManagementV1TelemetryUsbPeripheralsEvent
|
2408
|
+
include Google::Apis::Core::Hashable
|
2409
|
+
|
2410
|
+
# List of usb devices that were either added or removed.
|
2411
|
+
# Corresponds to the JSON property `usbPeripheralReport`
|
2412
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1UsbPeripheralReport>]
|
2413
|
+
attr_accessor :usb_peripheral_report
|
2414
|
+
|
2415
|
+
def initialize(**args)
|
2416
|
+
update!(**args)
|
2417
|
+
end
|
2418
|
+
|
2419
|
+
# Update properties of this object
|
2420
|
+
def update!(**args)
|
2421
|
+
@usb_peripheral_report = args[:usb_peripheral_report] if args.key?(:usb_peripheral_report)
|
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
|
+
|
2241
2450
|
# Thunderbolt bus info. * This field provides device information, which is
|
2242
2451
|
# static and will not change over time. * Data for this field is controlled via
|
2243
2452
|
# policy: [ReportDeviceSecurityStatus](https://chromeenterprise.google/policies/#
|
@@ -2308,6 +2517,68 @@ module Google
|
|
2308
2517
|
end
|
2309
2518
|
end
|
2310
2519
|
|
2520
|
+
# USB connected peripheral report.
|
2521
|
+
class GoogleChromeManagementV1UsbPeripheralReport
|
2522
|
+
include Google::Apis::Core::Hashable
|
2523
|
+
|
2524
|
+
# Output only. Categories the device belongs to https://www.usb.org/defined-
|
2525
|
+
# class-codes
|
2526
|
+
# Corresponds to the JSON property `categories`
|
2527
|
+
# @return [Array<String>]
|
2528
|
+
attr_accessor :categories
|
2529
|
+
|
2530
|
+
# Output only. Class ID https://www.usb.org/defined-class-codes
|
2531
|
+
# Corresponds to the JSON property `classId`
|
2532
|
+
# @return [Fixnum]
|
2533
|
+
attr_accessor :class_id
|
2534
|
+
|
2535
|
+
# Output only. Firmware version
|
2536
|
+
# Corresponds to the JSON property `firmwareVersion`
|
2537
|
+
# @return [String]
|
2538
|
+
attr_accessor :firmware_version
|
2539
|
+
|
2540
|
+
# Output only. Device name, model name, or product name
|
2541
|
+
# Corresponds to the JSON property `name`
|
2542
|
+
# @return [String]
|
2543
|
+
attr_accessor :name
|
2544
|
+
|
2545
|
+
# Output only. Product ID
|
2546
|
+
# Corresponds to the JSON property `pid`
|
2547
|
+
# @return [Fixnum]
|
2548
|
+
attr_accessor :pid
|
2549
|
+
|
2550
|
+
# Output only. Subclass ID https://www.usb.org/defined-class-codes
|
2551
|
+
# Corresponds to the JSON property `subclassId`
|
2552
|
+
# @return [Fixnum]
|
2553
|
+
attr_accessor :subclass_id
|
2554
|
+
|
2555
|
+
# Output only. Vendor name
|
2556
|
+
# Corresponds to the JSON property `vendor`
|
2557
|
+
# @return [String]
|
2558
|
+
attr_accessor :vendor
|
2559
|
+
|
2560
|
+
# Output only. Vendor ID
|
2561
|
+
# Corresponds to the JSON property `vid`
|
2562
|
+
# @return [Fixnum]
|
2563
|
+
attr_accessor :vid
|
2564
|
+
|
2565
|
+
def initialize(**args)
|
2566
|
+
update!(**args)
|
2567
|
+
end
|
2568
|
+
|
2569
|
+
# Update properties of this object
|
2570
|
+
def update!(**args)
|
2571
|
+
@categories = args[:categories] if args.key?(:categories)
|
2572
|
+
@class_id = args[:class_id] if args.key?(:class_id)
|
2573
|
+
@firmware_version = args[:firmware_version] if args.key?(:firmware_version)
|
2574
|
+
@name = args[:name] if args.key?(:name)
|
2575
|
+
@pid = args[:pid] if args.key?(:pid)
|
2576
|
+
@subclass_id = args[:subclass_id] if args.key?(:subclass_id)
|
2577
|
+
@vendor = args[:vendor] if args.key?(:vendor)
|
2578
|
+
@vid = args[:vid] if args.key?(:vid)
|
2579
|
+
end
|
2580
|
+
end
|
2581
|
+
|
2311
2582
|
# The `Status` type defines a logical error model that is suitable for different
|
2312
2583
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
2313
2584
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
@@ -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.32.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230102"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -226,6 +226,12 @@ module Google
|
|
226
226
|
include Google::Apis::Core::JsonObjectSupport
|
227
227
|
end
|
228
228
|
|
229
|
+
class GoogleChromeManagementV1ListTelemetryEventsResponse
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
229
235
|
class GoogleChromeManagementV1MemoryInfo
|
230
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
237
|
|
@@ -286,12 +292,48 @@ module Google
|
|
286
292
|
include Google::Apis::Core::JsonObjectSupport
|
287
293
|
end
|
288
294
|
|
295
|
+
class GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
289
301
|
class GoogleChromeManagementV1TelemetryDevice
|
290
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
303
|
|
292
304
|
include Google::Apis::Core::JsonObjectSupport
|
293
305
|
end
|
294
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 GoogleChromeManagementV1TelemetryUsbPeripheralsEvent
|
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
|
+
|
295
337
|
class GoogleChromeManagementV1ThunderboltInfo
|
296
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
339
|
|
@@ -304,6 +346,12 @@ module Google
|
|
304
346
|
include Google::Apis::Core::JsonObjectSupport
|
305
347
|
end
|
306
348
|
|
349
|
+
class GoogleChromeManagementV1UsbPeripheralReport
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
307
355
|
class GoogleRpcStatus
|
308
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
357
|
|
@@ -450,6 +498,7 @@ module Google
|
|
450
498
|
collection :site_access, as: 'siteAccess', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppSiteAccess, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppSiteAccess::Representation
|
451
499
|
|
452
500
|
property :support_enabled, as: 'supportEnabled'
|
501
|
+
property :type, as: 'type'
|
453
502
|
end
|
454
503
|
end
|
455
504
|
|
@@ -702,6 +751,15 @@ module Google
|
|
702
751
|
end
|
703
752
|
end
|
704
753
|
|
754
|
+
class GoogleChromeManagementV1ListTelemetryEventsResponse
|
755
|
+
# @private
|
756
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
757
|
+
property :next_page_token, as: 'nextPageToken'
|
758
|
+
collection :telemetry_events, as: 'telemetryEvents', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryEvent::Representation
|
759
|
+
|
760
|
+
end
|
761
|
+
end
|
762
|
+
|
705
763
|
class GoogleChromeManagementV1MemoryInfo
|
706
764
|
# @private
|
707
765
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -811,6 +869,12 @@ module Google
|
|
811
869
|
end
|
812
870
|
end
|
813
871
|
|
872
|
+
class GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
|
873
|
+
# @private
|
874
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
875
|
+
end
|
876
|
+
end
|
877
|
+
|
814
878
|
class GoogleChromeManagementV1TelemetryDevice
|
815
879
|
# @private
|
816
880
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -856,6 +920,58 @@ module Google
|
|
856
920
|
end
|
857
921
|
end
|
858
922
|
|
923
|
+
class GoogleChromeManagementV1TelemetryDeviceInfo
|
924
|
+
# @private
|
925
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
926
|
+
property :device_id, as: 'deviceId'
|
927
|
+
property :org_unit_id, as: 'orgUnitId'
|
928
|
+
end
|
929
|
+
end
|
930
|
+
|
931
|
+
class GoogleChromeManagementV1TelemetryEvent
|
932
|
+
# @private
|
933
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
934
|
+
property :audio_severe_underrun_event, as: 'audioSevereUnderrunEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent::Representation
|
935
|
+
|
936
|
+
property :device, as: 'device', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDeviceInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryDeviceInfo::Representation
|
937
|
+
|
938
|
+
property :event_type, as: 'eventType'
|
939
|
+
property :https_latency_change_event, as: 'httpsLatencyChangeEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent::Representation
|
940
|
+
|
941
|
+
property :name, as: 'name'
|
942
|
+
property :report_time, as: 'reportTime'
|
943
|
+
property :usb_peripherals_event, as: 'usbPeripheralsEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUsbPeripheralsEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUsbPeripheralsEvent::Representation
|
944
|
+
|
945
|
+
property :user, as: 'user', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserInfo::Representation
|
946
|
+
|
947
|
+
end
|
948
|
+
end
|
949
|
+
|
950
|
+
class GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent
|
951
|
+
# @private
|
952
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
953
|
+
property :https_latency_routine_data, as: 'httpsLatencyRoutineData', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1HttpsLatencyRoutineData::Representation
|
954
|
+
|
955
|
+
property :https_latency_state, as: 'httpsLatencyState'
|
956
|
+
end
|
957
|
+
end
|
958
|
+
|
959
|
+
class GoogleChromeManagementV1TelemetryUsbPeripheralsEvent
|
960
|
+
# @private
|
961
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
962
|
+
collection :usb_peripheral_report, as: 'usbPeripheralReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1UsbPeripheralReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1UsbPeripheralReport::Representation
|
963
|
+
|
964
|
+
end
|
965
|
+
end
|
966
|
+
|
967
|
+
class GoogleChromeManagementV1TelemetryUserInfo
|
968
|
+
# @private
|
969
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
970
|
+
property :email, as: 'email'
|
971
|
+
property :org_unit_id, as: 'orgUnitId'
|
972
|
+
end
|
973
|
+
end
|
974
|
+
|
859
975
|
class GoogleChromeManagementV1ThunderboltInfo
|
860
976
|
# @private
|
861
977
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -873,6 +989,20 @@ module Google
|
|
873
989
|
end
|
874
990
|
end
|
875
991
|
|
992
|
+
class GoogleChromeManagementV1UsbPeripheralReport
|
993
|
+
# @private
|
994
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
995
|
+
collection :categories, as: 'categories'
|
996
|
+
property :class_id, as: 'classId'
|
997
|
+
property :firmware_version, as: 'firmwareVersion'
|
998
|
+
property :name, as: 'name'
|
999
|
+
property :pid, as: 'pid'
|
1000
|
+
property :subclass_id, as: 'subclassId'
|
1001
|
+
property :vendor, as: 'vendor'
|
1002
|
+
property :vid, as: 'vid'
|
1003
|
+
end
|
1004
|
+
end
|
1005
|
+
|
876
1006
|
class GoogleRpcStatus
|
877
1007
|
# @private
|
878
1008
|
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.32.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:
|
11
|
+
date: 2023-01-04 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.32.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: []
|