google-apis-chromemanagement_v1 0.15.0 → 0.18.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 +12 -0
- data/lib/google/apis/chromemanagement_v1/classes.rb +87 -10
- data/lib/google/apis/chromemanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/chromemanagement_v1/representations.rb +23 -0
- data/lib/google/apis/chromemanagement_v1/service.rb +3 -2
- 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: e5ec68980deed94d97ef514115031208c2e6e32368b441f3e4a85f47b9e9ddfc
|
4
|
+
data.tar.gz: 3533b39969c1d4bb5f309f7f67775a8417b707e85916c74213c1ad652e3ba98c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72b2eafd2febcdff36609f1f1d6d36e9f1c564b1004809a61ec964c1c0bd8d20b03306ac3c46f6381dc2451237910fe57f6bcb1821dbb485a3288e869d1bb3e5
|
7
|
+
data.tar.gz: 92c7fe1c911d830ce4c79d60ccdc154713bd0bb2dab3b3161cab5002f65c43fb5f7e65bc9cd5738120c428986f63f794f44b7e637976005b4a750a8c88bfcffd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-chromemanagement_v1
|
2
2
|
|
3
|
+
### v0.18.0 (2022-04-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220331
|
6
|
+
|
7
|
+
### v0.17.0 (2022-03-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220228
|
10
|
+
|
11
|
+
### v0.16.0 (2022-02-15)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220212
|
14
|
+
|
3
15
|
### v0.15.0 (2022-02-03)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220131
|
@@ -201,6 +201,63 @@ module Google
|
|
201
201
|
end
|
202
202
|
end
|
203
203
|
|
204
|
+
# Audio report.
|
205
|
+
class GoogleChromeManagementV1AudioStatusReport
|
206
|
+
include Google::Apis::Core::Hashable
|
207
|
+
|
208
|
+
# Output only. Active input device's name.
|
209
|
+
# Corresponds to the JSON property `inputDevice`
|
210
|
+
# @return [String]
|
211
|
+
attr_accessor :input_device
|
212
|
+
|
213
|
+
# Output only. Active input device's gain in [0, 100].
|
214
|
+
# Corresponds to the JSON property `inputGain`
|
215
|
+
# @return [Fixnum]
|
216
|
+
attr_accessor :input_gain
|
217
|
+
|
218
|
+
# Output only. Is active input device mute or not.
|
219
|
+
# Corresponds to the JSON property `inputMute`
|
220
|
+
# @return [Boolean]
|
221
|
+
attr_accessor :input_mute
|
222
|
+
alias_method :input_mute?, :input_mute
|
223
|
+
|
224
|
+
# Output only. Active output device's name.
|
225
|
+
# Corresponds to the JSON property `outputDevice`
|
226
|
+
# @return [String]
|
227
|
+
attr_accessor :output_device
|
228
|
+
|
229
|
+
# Output only. Is active output device mute or not.
|
230
|
+
# Corresponds to the JSON property `outputMute`
|
231
|
+
# @return [Boolean]
|
232
|
+
attr_accessor :output_mute
|
233
|
+
alias_method :output_mute?, :output_mute
|
234
|
+
|
235
|
+
# Output only. Active output device's volume in [0, 100].
|
236
|
+
# Corresponds to the JSON property `outputVolume`
|
237
|
+
# @return [Fixnum]
|
238
|
+
attr_accessor :output_volume
|
239
|
+
|
240
|
+
# Output only. Timestamp of when the sample was collected on device.
|
241
|
+
# Corresponds to the JSON property `reportTime`
|
242
|
+
# @return [String]
|
243
|
+
attr_accessor :report_time
|
244
|
+
|
245
|
+
def initialize(**args)
|
246
|
+
update!(**args)
|
247
|
+
end
|
248
|
+
|
249
|
+
# Update properties of this object
|
250
|
+
def update!(**args)
|
251
|
+
@input_device = args[:input_device] if args.key?(:input_device)
|
252
|
+
@input_gain = args[:input_gain] if args.key?(:input_gain)
|
253
|
+
@input_mute = args[:input_mute] if args.key?(:input_mute)
|
254
|
+
@output_device = args[:output_device] if args.key?(:output_device)
|
255
|
+
@output_mute = args[:output_mute] if args.key?(:output_mute)
|
256
|
+
@output_volume = args[:output_volume] if args.key?(:output_volume)
|
257
|
+
@report_time = args[:report_time] if args.key?(:report_time)
|
258
|
+
end
|
259
|
+
end
|
260
|
+
|
204
261
|
# Battery info
|
205
262
|
class GoogleChromeManagementV1BatteryInfo
|
206
263
|
include Google::Apis::Core::Hashable
|
@@ -218,11 +275,11 @@ module Google
|
|
218
275
|
# Represents a whole or partial calendar date, such as a birthday. The time of
|
219
276
|
# day and time zone are either specified elsewhere or are insignificant. The
|
220
277
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
221
|
-
# following: * A full date, with non-zero year, month, and day values * A month
|
222
|
-
# and day, with a zero year (
|
223
|
-
# zero month and a zero day * A year and month, with a zero day (
|
224
|
-
# card expiration date) Related types: * google.type.
|
225
|
-
# DateTime * google.protobuf.Timestamp
|
278
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
279
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
280
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
281
|
+
# example, a credit card expiration date). Related types: * google.type.
|
282
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
226
283
|
# Corresponds to the JSON property `manufactureDate`
|
227
284
|
# @return [Google::Apis::ChromemanagementV1::GoogleTypeDate]
|
228
285
|
attr_accessor :manufacture_date
|
@@ -430,12 +487,24 @@ module Google
|
|
430
487
|
attr_accessor :is_cws_hosted
|
431
488
|
alias_method :is_cws_hosted?, :is_cws_hosted
|
432
489
|
|
490
|
+
# Output only. Whether the app is only for Kiosk mode on Chrome OS devices
|
491
|
+
# Corresponds to the JSON property `isKioskOnly`
|
492
|
+
# @return [Boolean]
|
493
|
+
attr_accessor :is_kiosk_only
|
494
|
+
alias_method :is_kiosk_only?, :is_kiosk_only
|
495
|
+
|
433
496
|
# Output only. Whether the app or extension is a theme.
|
434
497
|
# Corresponds to the JSON property `isTheme`
|
435
498
|
# @return [Boolean]
|
436
499
|
attr_accessor :is_theme
|
437
500
|
alias_method :is_theme?, :is_theme
|
438
501
|
|
502
|
+
# Output only. Whether this app is enabled for Kiosk mode on Chrome OS devices
|
503
|
+
# Corresponds to the JSON property `kioskEnabled`
|
504
|
+
# @return [Boolean]
|
505
|
+
attr_accessor :kiosk_enabled
|
506
|
+
alias_method :kiosk_enabled?, :kiosk_enabled
|
507
|
+
|
439
508
|
# Output only. The minimum number of users using this app.
|
440
509
|
# Corresponds to the JSON property `minUserCount`
|
441
510
|
# @return [Fixnum]
|
@@ -470,7 +539,9 @@ module Google
|
|
470
539
|
def update!(**args)
|
471
540
|
@google_owned = args[:google_owned] if args.key?(:google_owned)
|
472
541
|
@is_cws_hosted = args[:is_cws_hosted] if args.key?(:is_cws_hosted)
|
542
|
+
@is_kiosk_only = args[:is_kiosk_only] if args.key?(:is_kiosk_only)
|
473
543
|
@is_theme = args[:is_theme] if args.key?(:is_theme)
|
544
|
+
@kiosk_enabled = args[:kiosk_enabled] if args.key?(:kiosk_enabled)
|
474
545
|
@min_user_count = args[:min_user_count] if args.key?(:min_user_count)
|
475
546
|
@permissions = args[:permissions] if args.key?(:permissions)
|
476
547
|
@site_access = args[:site_access] if args.key?(:site_access)
|
@@ -1406,6 +1477,11 @@ module Google
|
|
1406
1477
|
class GoogleChromeManagementV1TelemetryDevice
|
1407
1478
|
include Google::Apis::Core::Hashable
|
1408
1479
|
|
1480
|
+
# Output only. Audio reports collected periodically.
|
1481
|
+
# Corresponds to the JSON property `audioStatusReport`
|
1482
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport>]
|
1483
|
+
attr_accessor :audio_status_report
|
1484
|
+
|
1409
1485
|
# Output only. Information on battery specs for the device.
|
1410
1486
|
# Corresponds to the JSON property `batteryInfo`
|
1411
1487
|
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryInfo>]
|
@@ -1499,6 +1575,7 @@ module Google
|
|
1499
1575
|
|
1500
1576
|
# Update properties of this object
|
1501
1577
|
def update!(**args)
|
1578
|
+
@audio_status_report = args[:audio_status_report] if args.key?(:audio_status_report)
|
1502
1579
|
@battery_info = args[:battery_info] if args.key?(:battery_info)
|
1503
1580
|
@battery_status_report = args[:battery_status_report] if args.key?(:battery_status_report)
|
1504
1581
|
@cpu_info = args[:cpu_info] if args.key?(:cpu_info)
|
@@ -1561,11 +1638,11 @@ module Google
|
|
1561
1638
|
# Represents a whole or partial calendar date, such as a birthday. The time of
|
1562
1639
|
# day and time zone are either specified elsewhere or are insignificant. The
|
1563
1640
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
1564
|
-
# following: * A full date, with non-zero year, month, and day values * A month
|
1565
|
-
# and day, with a zero year (
|
1566
|
-
# zero month and a zero day * A year and month, with a zero day (
|
1567
|
-
# card expiration date) Related types: * google.type.
|
1568
|
-
# DateTime * google.protobuf.Timestamp
|
1641
|
+
# following: * A full date, with non-zero year, month, and day values. * A month
|
1642
|
+
# and day, with a zero year (for example, an anniversary). * A year on its own,
|
1643
|
+
# with a zero month and a zero day. * A year and month, with a zero day (for
|
1644
|
+
# example, a credit card expiration date). Related types: * google.type.
|
1645
|
+
# TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
1569
1646
|
class GoogleTypeDate
|
1570
1647
|
include Google::Apis::Core::Hashable
|
1571
1648
|
|
@@ -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.18.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220331"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,12 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class GoogleChromeManagementV1AudioStatusReport
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
43
49
|
class GoogleChromeManagementV1BatteryInfo
|
44
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
51
|
|
@@ -281,6 +287,19 @@ module Google
|
|
281
287
|
end
|
282
288
|
end
|
283
289
|
|
290
|
+
class GoogleChromeManagementV1AudioStatusReport
|
291
|
+
# @private
|
292
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
293
|
+
property :input_device, as: 'inputDevice'
|
294
|
+
property :input_gain, as: 'inputGain'
|
295
|
+
property :input_mute, as: 'inputMute'
|
296
|
+
property :output_device, as: 'outputDevice'
|
297
|
+
property :output_mute, as: 'outputMute'
|
298
|
+
property :output_volume, as: 'outputVolume'
|
299
|
+
property :report_time, as: 'reportTime'
|
300
|
+
end
|
301
|
+
end
|
302
|
+
|
284
303
|
class GoogleChromeManagementV1BatteryInfo
|
285
304
|
# @private
|
286
305
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -337,7 +356,9 @@ module Google
|
|
337
356
|
class Representation < Google::Apis::Core::JsonRepresentation
|
338
357
|
property :google_owned, as: 'googleOwned'
|
339
358
|
property :is_cws_hosted, as: 'isCwsHosted'
|
359
|
+
property :is_kiosk_only, as: 'isKioskOnly'
|
340
360
|
property :is_theme, as: 'isTheme'
|
361
|
+
property :kiosk_enabled, as: 'kioskEnabled'
|
341
362
|
property :min_user_count, as: 'minUserCount'
|
342
363
|
collection :permissions, as: 'permissions', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppPermission, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1ChromeAppPermission::Representation
|
343
364
|
|
@@ -606,6 +627,8 @@ module Google
|
|
606
627
|
class GoogleChromeManagementV1TelemetryDevice
|
607
628
|
# @private
|
608
629
|
class Representation < Google::Apis::Core::JsonRepresentation
|
630
|
+
collection :audio_status_report, as: 'audioStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1AudioStatusReport::Representation
|
631
|
+
|
609
632
|
collection :battery_info, as: 'batteryInfo', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryInfo::Representation
|
610
633
|
|
611
634
|
collection :battery_status_report, as: 'batteryStatusReport', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1BatteryStatusReport::Representation
|
@@ -355,9 +355,10 @@ module Google
|
|
355
355
|
# account making the request.
|
356
356
|
# @param [String] filter
|
357
357
|
# Optional. Only include resources that match the filter. Supported filter
|
358
|
-
# fields: - org_unit_id - serial_number
|
358
|
+
# fields: - org_unit_id - serial_number - device_id
|
359
359
|
# @param [Fixnum] page_size
|
360
|
-
# Maximum number of results to return.
|
360
|
+
# Maximum number of results to return. Default value is 100. Maximum value is
|
361
|
+
# 200.
|
361
362
|
# @param [String] page_token
|
362
363
|
# Token to specify next page in the list.
|
363
364
|
# @param [String] read_mask
|
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.18.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-04-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.18.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: []
|