google-apis-chromemanagement_v1 0.30.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 +4 -0
- data/lib/google/apis/chromemanagement_v1/classes.rb +209 -0
- data/lib/google/apis/chromemanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/chromemanagement_v1/representations.rb +109 -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: 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
@@ -1582,6 +1582,31 @@ module Google
|
|
1582
1582
|
end
|
1583
1583
|
end
|
1584
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
|
+
|
1585
1610
|
# Memory information of a device. * This field has both telemetry and device
|
1586
1611
|
# information: - `totalRamBytes` - Device information - `availableRamBytes` -
|
1587
1612
|
# Telemetry information - `totalMemoryEncryption` - Device information * Data
|
@@ -2056,6 +2081,20 @@ module Google
|
|
2056
2081
|
end
|
2057
2082
|
end
|
2058
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
|
+
|
2059
2098
|
# Telemetry data collected from a managed device.
|
2060
2099
|
class GoogleChromeManagementV1TelemetryDevice
|
2061
2100
|
include Google::Apis::Core::Hashable
|
@@ -2238,6 +2277,176 @@ module Google
|
|
2238
2277
|
end
|
2239
2278
|
end
|
2240
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
|
+
|
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/#
|
@@ -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
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
|
@@ -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 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
|
+
|
295
337
|
class GoogleChromeManagementV1ThunderboltInfo
|
296
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
339
|
|
@@ -702,6 +744,15 @@ module Google
|
|
702
744
|
end
|
703
745
|
end
|
704
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
|
+
|
705
756
|
class GoogleChromeManagementV1MemoryInfo
|
706
757
|
# @private
|
707
758
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -811,6 +862,12 @@ module Google
|
|
811
862
|
end
|
812
863
|
end
|
813
864
|
|
865
|
+
class GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent
|
866
|
+
# @private
|
867
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
868
|
+
end
|
869
|
+
end
|
870
|
+
|
814
871
|
class GoogleChromeManagementV1TelemetryDevice
|
815
872
|
# @private
|
816
873
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -856,6 +913,58 @@ module Google
|
|
856
913
|
end
|
857
914
|
end
|
858
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
|
+
|
859
968
|
class GoogleChromeManagementV1ThunderboltInfo
|
860
969
|
# @private
|
861
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
|
@@ -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: []
|